/* Global Styles */
:root {
    --primary-color: #004aad;
    /* Corporate Blue from 'HUB' text */
    --secondary-color: #1a1a1a;
    /* Dark Black/Gray from 'GM BUSINESS' text */
    --accent-color: #f7b731;
    /* Keeping Gold for small highlights/CTAs */
    --light-bg: #f4f7f6;
    --dark-bg: #111;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.loader-text span {
    display: inline-block;
    color: #1a1a1a;
    animation: letterBounce 1.4s ease-in-out infinite;
    animation-delay: calc(var(--d) * 0.08s);
}

/* HUB letters = blue (indices 13, 14, 15 counting from 1) */
.loader-text span:nth-child(n+13) {
    color: #004aad;
}

.loader-space {
    width: 18px;
}

@keyframes letterBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-18px);
    }

    40% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    65% {
        transform: translateY(0);
    }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: #e8e8e8;
    border-radius: 3px;
    margin: 30px auto 0;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #004aad, #1a1a1a);
    border-radius: 3px;
    animation: barFill 2s ease-in-out forwards;
}

@keyframes barFill {
    0% {
        width: 0%;
    }

    50% {
        width: 60%;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .loader-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .loader-space {
        width: 12px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background-color: #003a8a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    /* Override default container width so logo can go to the edge */
    padding: 0 50px;
    /* Add padding for breathing room */
}

.logo img {
    height: 85px;
    /* Adjust based on actual logo aspect ratio */
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list .btn-primary {
    color: var(--white);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: 80px;
    /* Account for fixed header */
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced darkness at the top so the logo is visible, keeping it darker below for white text */
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-logo {
    max-width: 280px;
    margin: 0 auto 30px auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Visa Services Section (Revamp) */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-header-text p {
    color: #636e72;
    max-width: 600px;
}

.view-all-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.view-all-link:hover {
    color: #003a8a;
    transform: translateX(5px);
}

/* ===== 3D Flag Carousel ===== */
.flag-carousel-section {
    background: #ffffff;
    padding: 20px 0 30px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    cursor: grab;
    user-select: none;
    position: relative;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    width: 200px;
    height: 140px;
    position: relative;
    transform-style: preserve-3d;
    animation: carouselSpin 30s linear infinite;
}

.carousel-track.dragging {
    animation-play-state: paused;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    backface-visibility: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.carousel-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Position each flag around the circle (8 items = 45deg apart) */
.carousel-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(380px);
}

.carousel-item:nth-child(2) {
    transform: rotateY(45deg) translateZ(380px);
}

.carousel-item:nth-child(3) {
    transform: rotateY(90deg) translateZ(380px);
}

.carousel-item:nth-child(4) {
    transform: rotateY(135deg) translateZ(380px);
}

.carousel-item:nth-child(5) {
    transform: rotateY(180deg) translateZ(380px);
}

.carousel-item:nth-child(6) {
    transform: rotateY(225deg) translateZ(380px);
}

.carousel-item:nth-child(7) {
    transform: rotateY(270deg) translateZ(380px);
}

.carousel-item:nth-child(8) {
    transform: rotateY(315deg) translateZ(380px);
}





/* Reflection / Floor Shadow */
.carousel-container::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes carouselSpin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* Flag Carousel — Mobile */
@media (max-width: 768px) {
    .flag-carousel-section {
        padding: 40px 0 60px;
    }

    .carousel-container {
        perspective: 800px;
        min-height: 220px;
    }

    .carousel-track {
        width: 130px;
        height: 90px;
    }

    .carousel-item {
        width: 130px;
        height: 90px;
        border-radius: 8px;
    }

    .carousel-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(220px);
    }

    .carousel-item:nth-child(2) {
        transform: rotateY(45deg) translateZ(220px);
    }

    .carousel-item:nth-child(3) {
        transform: rotateY(90deg) translateZ(220px);
    }

    .carousel-item:nth-child(4) {
        transform: rotateY(135deg) translateZ(220px);
    }

    .carousel-item:nth-child(5) {
        transform: rotateY(180deg) translateZ(220px);
    }

    .carousel-item:nth-child(6) {
        transform: rotateY(225deg) translateZ(220px);
    }

    .carousel-item:nth-child(7) {
        transform: rotateY(270deg) translateZ(220px);
    }

    .carousel-item:nth-child(8) {
        transform: rotateY(315deg) translateZ(220px);
    }





    .carousel-container::after {
        width: 300px;
        height: 40px;
        bottom: -30px;
    }
}

/* Social Sidebar (Left) - Interactive */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: -60px;
    /* Hidden by default */
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: left 0.4s ease;
}

.social-sidebar.active {
    left: 0;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.social-sidebar a {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-sidebar a:first-child {
    border-top-right-radius: 0;
}

.social-sidebar a:last-child {
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.social-sidebar a:hover {
    background: var(--accent-color);
    padding-left: 10px;
    /* Slide effect inside */
}

/* Visa Cards (Refactor - Image Top, Content Bottom) */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.visa-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 340px;
    /* Increased height for better text spacing */
    display: flex;
    flex-direction: column;
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.visa-img-container {
    height: 180px;
    /* Top Image Section */
    position: relative;
    background-size: cover;
    background-position: center;
}

.visa-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #d35400;
    /* Burnt Orange/Gold for price */
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
}

.visa-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Space out title/text from button */
}

.visa-info-block {
    margin-bottom: 15px;
}

.visa-content h3 {
    font-size: 1.2rem;
    color: #2d3436;
    margin-bottom: 5px;
    font-weight: 700;
}

.visa-sub-text {
    color: #b2bec3;
    font-size: 0.9rem;
    display: block;
    /* Make it a block to sit on its own line */
    margin-bottom: 0;
}

.visa-footer {
    display: flex;
    justify-content: flex-end;
    /* "Apply >" to the right */
    align-items: center;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}

.apply-link {
    color: #00b894;
    /* Green/Teal like screenshot */
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.apply-link:hover {
    color: #004aad;
    transform: translateX(3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns */
        gap: 15px;
    }

    .visa-card {
        height: 290px;
        /* Adjusted for mobile */
    }

    .visa-img-container {
        height: 130px;
    }

    .visa-content {
        padding: 12px;
    }

    .visa-content h3 {
        font-size: 1rem;
    }

    .visa-sub-text {
        font-size: 0.8rem;
    }

    .visa-badge {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .flag {
        font-size: 1.2rem;
    }
}

/* Instagram Reels Section */
.reels-section {
    background-color: #f0f4f4;
    /* Light greenish/grey background */
    padding: 60px 0;
}

.reel-nav-btns {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.reels-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

.reels-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.reel-card {
    min-width: 250px;
    height: 400px;
    /* Vertical Reel Ratio */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    cursor: pointer;
}

.reel-video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.insta-icon {
    align-self: flex-end;
    color: white;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.reel-card:hover .play-btn-circle {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.reel-info {
    color: white;
    z-index: 2;
}

.reel-info p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.reel-info a:hover {
    color: white;
}

.insta-follow-btn-container {
    text-align: center;
    margin-top: 40px;
}

.insta-follow-btn {
    background-color: #003a8a;
    /* Darker Teal */
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(11, 142, 136, 0.3);
}

.insta-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 142, 136, 0.4);
    background-color: #00796b;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #636e72;
    margin-bottom: 20px;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Why Choose Us / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #636e72;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-section .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.package-card.popular .tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 10px;
}

.package-header {
    background-color: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.package-card.popular .package-header {
    background-color: var(--primary-color);
    color: var(--white);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-card.popular .price {
    color: var(--white);
}

.package-features {
    padding: 30px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #636e72;
}

.package-features li i {
    color: var(--primary-color);
}

.package-card a {
    margin: 0 30px 30px;
    text-align: center;
}

.btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-light:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.package-card.popular .btn-outline-light {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.package-card.popular .btn-outline-light:hover {
    background-color: #003a8a;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.testimonial-card .feedback {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.client-info p {
    font-size: 0.9rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 40px;
    color: #b2bec3;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* ===== Contact Form Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), #002d6b);
    color: var(--white);
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-info-card>p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 35px;
    line-height: 1.5;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-detail h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-detail p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    font-size: 0.9rem;
}

.contact-socials a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.contact-form-card {
    background: #fff;
    padding: 45px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #2d3436;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b2bec3;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23636e72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.full-width {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-form-card {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Footer */
footer {
    background-color: #111;
    color: #b2bec3;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        height: 80px;
        /* Reduce header height on mobile */
    }

    header .container {
        padding: 0 10px;
        /* Reduce padding on mobile so logo goes to the edge */
    }

    .logo img {
        height: 75px;
        /* Make the logo larger on mobile */
        margin-left: -5px;
        /* Adjust alignment to look balanced */
        margin-top: 10px;
        /* Push the logo slightly down as requested */
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 80px;
        /* Reduced to match the new 80px header height */
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-list.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 250px;
        margin: 30px auto 20px auto;
    }

    .hero {
        padding-top: 130px;
        /* Increase top padding on mobile to clear the header */
    }

    .hero-btns {
        flex-direction: column;
    }

    .package-card.popular {
        transform: scale(1);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 2px;
    /* Minor adjustment for icon alignment */
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================================
   AI SMART NAVIGATION WIDGET
   ============================================================ */

/* ── Section highlight on navigate ── */
.ai-section-highlight {
    animation: ai-highlight-pulse 2s ease;
}

@keyframes ai-highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.4);
    }

    30% {
        box-shadow: 0 0 0 18px rgba(0, 74, 173, 0.15);
        outline: 3px solid rgba(0, 74, 173, 0.35);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 74, 173, 0);
        outline: 3px solid transparent;
    }
}

/* ── Widget Container ── */
#ai-nav-widget {
    position: fixed;
    bottom: 100px;
    /* sits above WhatsApp button */
    right: 22px;
    z-index: 99998;
    font-family: 'Poppins', sans-serif;
}

/* ── Trigger Button ── */
#ai-nav-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #004aad 0%, #0066ff 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px 12px 14px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 74, 173, 0.45);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    animation: ai-bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1.5s;
    opacity: 0;
}

@keyframes ai-bounce-in {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#ai-nav-trigger:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.55);
}

#ai-nav-trigger.ai-trigger-active {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.ai-trigger-icon {
    font-size: 1.1rem;
}

.ai-trigger-label {
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

/* Notification dot */
.ai-notification-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 11px;
    height: 11px;
    background: #f7b731;
    border-radius: 50%;
    border: 2px solid #fff;
    display: none;
    animation: ai-dot-pulse 1.6s infinite;
}

@keyframes ai-dot-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.7;
    }
}

/* ── Chat Panel ── */
#ai-nav-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 360px;
    max-height: 540px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(0, 74, 173, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), visibility 0.3s;
}

#ai-nav-panel.ai-panel-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ── Panel Header ── */
.ai-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #004aad 0%, #0066ff 100%);
    color: #fff;
    flex-shrink: 0;
}

.ai-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.ai-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    opacity: 0.9;
}

.ai-status-dot {
    width: 7px;
    height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    animation: ai-dot-pulse 2s infinite;
    flex-shrink: 0;
}

#ai-panel-close {
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

#ai-panel-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ── Messages Area ── */
.ai-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

.ai-messages::-webkit-scrollbar {
    width: 4px;
}

.ai-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ai-messages::-webkit-scrollbar-thumb {
    background: #d0dbe8;
    border-radius: 10px;
}

/* Message bubbles */
.ai-message {
    display: flex;
    flex-direction: column;
    animation: ai-msg-in 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes ai-msg-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ai-bot-message {
    align-items: flex-start;
}

.ai-user-message {
    align-items: flex-end;
}

.ai-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.855rem;
    line-height: 1.55;
}

.ai-bot-message .ai-bubble {
    background: #f0f4ff;
    color: #1a1a2e;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0, 74, 173, 0.08);
}

.ai-user-message .ai-bubble {
    background: linear-gradient(135deg, #004aad, #0066ff);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ai-time {
    font-size: 0.68rem;
    color: #b2bec3;
    margin-top: 4px;
    padding: 0 4px;
}

/* ── Typing Indicator ── */
.ai-typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px !important;
    width: 62px;
}

.ai-typing-indicator span {
    width: 7px;
    height: 7px;
    background: #004aad;
    border-radius: 50%;
    display: inline-block;
    animation: ai-typing-dot 1.2s infinite ease-in-out;
    opacity: 0.5;
}

.ai-typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.ai-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes ai-typing-dot {

    0%,
    80%,
    100% {
        transform: scale(0.7);
        opacity: 0.4;
    }

    40% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ── Quick Command Buttons ── */
.ai-quick-commands {
    padding: 0 12px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-shrink: 0;
}

.ai-quick-btn {
    background: #eef3ff;
    color: #004aad;
    border: 1px solid rgba(0, 74, 173, 0.18);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.76rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ai-quick-btn:hover {
    background: #004aad;
    color: #fff;
    border-color: #004aad;
    transform: translateY(-1px);
}

/* ── Input Area ── */
.ai-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid #eef1f8;
    flex-shrink: 0;
    background: #fafbff;
}

#ai-nav-input {
    flex: 1;
    border: 1.5px solid #dce4f5;
    border-radius: 50px;
    padding: 9px 16px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    background: #fff;
    color: #1a1a2e;
    transition: border-color 0.25s;
}

#ai-nav-input:focus {
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.08);
}

#ai-nav-input::placeholder {
    color: #b0bac8;
}

#ai-send-btn {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #004aad, #0066ff);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

#ai-send-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 4px 14px rgba(0, 74, 173, 0.45);
}

/* ── Footer note ── */
.ai-footer-note {
    text-align: center;
    font-size: 0.67rem;
    color: #b2bec3;
    padding: 4px 0 8px;
    letter-spacing: 0.2px;
}

/* ── Mobile ── */
@media (max-width: 500px) {
    #ai-nav-widget {
        bottom: 90px;
        right: 12px;
    }

    #ai-nav-panel {
        width: calc(100vw - 24px);
        max-height: 70vh;
        right: 0;
    }

    #ai-nav-trigger {
        padding: 10px 16px 10px 12px;
    }

    .ai-trigger-label {
        font-size: 0.82rem;
    }

    .ai-quick-btn {
        font-size: 0.72rem;
        padding: 4px 10px;
    }
}

/* ── Detail Answer Bubble (service info card) ── */
.ai-detail-bubble {
    max-width: 92% !important;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%) !important;
    border: 1px solid rgba(0, 74, 173, 0.15) !important;
    padding: 12px 14px !important;
    font-size: 0.83rem !important;
}

.ai-detail-heading {
    font-weight: 700;
    color: #004aad;
    margin-bottom: 6px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(0, 74, 173, 0.12);
    padding-bottom: 4px;
}

.ai-detail-bullet {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 3px 0;
    color: #1a1a2e;
    line-height: 1.5;
}

.ai-detail-bullet::before {
    content: '✅';
    font-size: 0.72rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ai-detail-line {
    color: #2d3436;
    margin: 4px 0;
    line-height: 1.55;
}

/* Last line CTA styling */
.ai-detail-bubble .ai-detail-line:last-child {
    color: #004aad;
    font-weight: 600;
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px dashed rgba(0, 74, 173, 0.2);
}

/* ===== NEW MODERN SERVICE CARD STYLES (MATCHING SCREENSHOT) ===== */

.services-slider-section {
    background-color: #f1f4f6;
    /* Light gray-blue background */
    padding: 80px 0;
}

.modern-service-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    margin: 10px;
    /* Prevent shadow clipping */
}

/* Decorative background circles */
.modern-service-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20%;
    width: 120px;
    height: 120px;
    background: rgba(247, 183, 49, 0.08);
    /* Faint gold circle */
    border-radius: 50%;
    z-index: 0;
}

.modern-service-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(0, 74, 173, 0.03);
    /* Faint blue corner radius */
    border-radius: 20px;
    z-index: 0;
}

/* Left Content */
.modern-service-content {
    flex: 1;
    min-width: 300px;
    z-index: 1;
}

/* Badge (Special Offer) */
.modern-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    background: #ebf3fa;
    /* Light blue */
    color: #004aad;
    /* Dark blue */
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-badge i {
    color: #f7b731;
    /* Gold star */
    margin-right: 6px;
}

/* Title */
.modern-service-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.modern-service-title span {
    color: #004aad;
    /* Blue text for the main service name */
}

/* Description */
.modern-service-desc {
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.6;
}

/* Button */
.modern-btn-primary {
    background-color: #004aad;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 74, 173, 0.2);
}

.modern-btn-primary:hover {
    background-color: #003a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 74, 173, 0.3);
}

/* Right Features Box (Adjusted for 3 columns now) */
.modern-service-image-container {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.modern-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.4s ease;
}

.modern-card-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.modern-service-features {
    flex: 1;
    min-width: 280px;
    z-index: 1;
}

.modern-features-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    /* Box shadow for the inner card */
    border: 1px solid #f9f9f9;
}

.modern-features-box h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f2f6;
}

.modern-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modern-feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #2d3436;
    font-weight: 500;
}

/* Green Check Icon */
.modern-feature-icon {
    width: 24px;
    height: 24px;
    background: #e6f7ec;
    /* Very light green */
    color: #00b894;
    /* Green check */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Slider Overrides */
.services-slider-container {
    padding-bottom: 50px;
}

.services-swiper-pagination .swiper-pagination-bullet {
    background: #b2bec3;
    opacity: 0.5;
}

.services-swiper-pagination .swiper-pagination-bullet-active {
    background: #004aad;
    opacity: 1;
}

/* Adjustments for Mobile */
@media (max-width: 768px) {
    .modern-service-card {
        padding: 20px 15px;
        gap: 15px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        background-color: #ffffff;
        margin: 5px;
    }

    .modern-service-card::before,
    .modern-service-card::after {
        display: none;
    }

    .modern-service-content {
        min-width: 0;
        width: auto;
        flex: 1;
        order: 1;
    }

    .modern-service-image-container {
        min-width: 80px;
        width: 100px;
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modern-card-image {
        width: 100%;
        height: auto;
        transform: none !important;
        box-shadow: none !important;
    }

    .modern-service-features {
        display: none !important;
    }

    .modern-badge {
        display: none !important;
    }

    .modern-service-title {
        font-size: 1.25rem;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .modern-service-desc {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 8px;
        color: #718093;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .modern-btn-primary {
        padding: 6px 12px;
        font-size: 0.75rem;
        width: max-content;
        display: inline-flex;
        border-radius: 4px;
        margin-top: 5px;
    }

    .services-slider-container .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .services-swiper-pagination {
        display: none !important;
    }

    /* Package Cards Mobile Adjustments */
    .packages-grid {
        gap: 15px;
    }

    .package-card {
        border-radius: 12px;
    }

    .package-header {
        padding: 20px 15px;
    }

    .package-header h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .price {
        font-size: 1.5rem;
    }

    .package-features {
        padding: 15px 20px 5px 20px;
    }

    .package-features li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .package-card a {
        margin: 0 15px 20px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .package-card.popular .tag {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}