/* PASTE THIS AT THE VERY TOP OF YOUR CSS FILE */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Then your existing CSS continues below */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0px;
    overflow-x: hidden;
    width: 100%;
}

/* Main container - full width with scrolling */
.container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(8px, 2vw, 20px) clamp(8px, 2vw, 20px) 20px clamp(8px, 2vw, 20px);
    overflow-x: hidden;
}

/* ===== MODERN NAVBAR WITH SMOOTH TRANSITIONS ===== */


.navbar {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    width: 100%;
    flex-wrap: wrap;
    z-index: 1000;
    animation: slideDown 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Fixed positioning */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: clamp(8px, 2vw, 12px) clamp(8px, 2vw, 20px);
    
    transition: box-shadow 0.35s ease, background-color 0.35s ease, backdrop-filter 0.35s ease;
}


/* Scrolled state */
.navbar.scrolled {
    background-color: rgba(242, 243, 244, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.07);
}

/* Logo rectangle with shine effect */
.logo-rectangle {
    background-color: #F2F3F4;
    padding: clamp(6px, 1.5vw, 8px) clamp(15px, 3vw, 22px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.381);
    height: clamp(60px, 8vh, 80px);
    min-width: 120px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Shine effect overlay */
.logo-rectangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.logo-rectangle:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #333;
}

.logo-rectangle:hover::before {
    left: 100%;
}

.logo-img {
    height: clamp(60px, 6vh, 60px);
    width: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-rectangle:hover .logo-img {
    transform: scale(1.08);
}

/* Navigation rectangle with glass morphism */
.nav-rectangle {
    background-color: rgba(242, 243, 244, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(8px, 1.5vw, 18px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.381);
    height: clamp(60px, 8vh, 80px);
    min-width: 280px;
    transition: all 0.4s ease;
}

.nav-rectangle:hover {
    background-color: rgba(242, 243, 244, 0.95);
    border-color: black;
}

/* Desktop navigation with modern link effects */
.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2.5vw, 35px);
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    opacity: 0;
    animation: fadeInLinks 0.5s ease-out forwards;
}

/* Staggered fade-in animations */
.nav-links a:nth-child(1) { animation-delay: 0.1s; }
.nav-links a:nth-child(2) { animation-delay: 0.15s; }
.nav-links a:nth-child(3) { animation-delay: 0.2s; }
.nav-links a:nth-child(4) { animation-delay: 0.25s; }
.nav-links a:nth-child(5) { animation-delay: 0.3s; }
.nav-links a:nth-child(6) { animation-delay: 0.35s; }

/* Modern gradient underline */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, black, #666, black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #000;
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Login section with modern effects */
.login-section {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1vw, 10px);
    flex-shrink: 0;
    opacity: 0;
    animation: fadeInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s forwards;
}

.globe-icon {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: black;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background-color: transparent;
}

.globe-icon:hover {
    transform: rotate(180deg) scale(1.15);
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

.login-btn {
    background-color: black;
    color: white;
    border: none;
    padding: clamp(6px, 1.5vw, 6px) clamp(15px, 3vw, 25px);
    border-radius: 8px;
    font-weight: 500;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.381);
    height: clamp(34px, 5vh, 38px);
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Button shine effect */
.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.login-btn:hover {
    background-color: #f2f3f4;
    color: black;
}

.login-btn:hover::before {
    left: 100%;
}

/* Hamburger menu with modern animation */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger-menu:hover span {
    background-color: #666;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile navigation with smooth slide */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: rgba(242, 243, 244, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid black;
    z-index: 1000;
    padding: 80px 30px 30px 30px;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-links-mobile a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
    transform: translateX(0);
}

.mobile-nav .nav-links-mobile a:hover {
    color: #666;
    padding-left: 15px;
    border-bottom-color: black;
}

/* Mobile nav close button */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.381);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-close:hover {
    background-color: black;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Mobile overlay with fade */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== NEW ANIMATIONS ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLinks {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== BLUE SQUARE SECTION ===== */
.blue-square {
    background-color: #DFEFF6;
    border-radius: clamp(20px, 3vw, 30px);
    padding: clamp(15px, 3vw, 20px);
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    width: 100%;
    min-height: clamp(500px, 70vh, 750px);
    border: 1px solid rgba(0, 0, 0, 0.381);
    flex-wrap: wrap;
    overflow: hidden;
}

/* Left side - text */
.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: clamp(10px, 2vw, 20px);
    min-width: 260px;
}

/* Top text */
.top-text {
    color: black;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 200;
    margin-bottom: clamp(15px, 3vw, 20px);
    max-width: 500px;
    width: 100%;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out;
}

/* Main headline */
.left-side h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: black;
    line-height: 1.2;
    margin-bottom: clamp(20px, 3vw, 25px);
    max-width: 700px;
    width: 120%;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Description container */
.description-container {
    position: relative;
    margin-bottom: clamp(25px, 4vw, 30px);
    max-width: 550px;
    width: 100%;
}

/* Empty black box behind */
.description-container::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.381);
    border-radius: 0;
    pointer-events: none;
    z-index: 1;
}

/* Description in black rectangle */
.description-box {
    background-color: black;
    color: white;
    padding: clamp(20px, 3vw, 25px) clamp(25px, 4vw, 32px);
    border-radius: 0;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 1.5;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: clamp(10px, 2vw, 20px);
}

/* Button */
.see-more-btn {
    background-color: #76C5EF;
    border: 1px solid rgba(0, 0, 0, 0.381);
    padding: clamp(12px, 2vw, 16px) clamp(40px, 8vw, 75px);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: white;
    cursor: pointer;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.see-more-btn:hover {
    background-color: #5aa5d0;
    transform: translateY(-3px);
}

/* Right side - image */
.right-side {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    min-width: 280px;
    max-width: 50%;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 650px;
    max-width: 950px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.381);
    display: block;
    animation: fadeInScale 1s ease-out;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    display: flex;
    gap: clamp(20px, 3vw, 30px);
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
    width: 100%;
    min-height: clamp(400px, 60vh, 600px);
    padding: 0;
    flex-wrap: wrap;
    overflow: hidden;
}

/* Left side - Image collage */
.products-left {
    flex: 1;
    min-height: clamp(300px, 50vh, 600px);
    min-width: 280px;
    max-width: 100%;
}

.image-collage {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
}

/* First image - BIGGER */
.collage-main {
    flex: 0.9;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.381);
    min-width: 200px;
}

.collage-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.collage-main-img:hover {
    transform: scale(1.05);
}

/* Second image - MEDIUM */
.collage-side {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 10px);
    height: 100%;
    min-width: 200px;
}

.collage-side-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.381);
    display: block;
    transition: transform 0.5s ease;
}

.collage-side-img:hover {
    transform: scale(1.05);
}

.collage-side-img:nth-child(1) {
    height: calc(50% - 5px);
    min-height: 120px;
}

.collage-side-img:nth-child(2) {
    height: calc(30% - 5px);
    min-height: 80px;
}

.collage-side-img:nth-child(3) {
    height: calc(20% - 5px);
    min-height: 60px;
}

/* Right side - Text box with #FDF0D5 */
.products-right {
    flex: 1;
    min-height: 400px;
    background-color: #FDF0D5;
    border-radius: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(0, 0, 0, 0.381);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 40px);
    min-width: 280px;
    max-width: 100%;
}

.products-content-box {
    width: 100%;
    max-width: 500px;
}

/* Products heading */
.products-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out;
}

.products-heading::after {
    content: '';
    width: clamp(60px, 8vw, 80px);
    height: 2px;
    background-color: black;
    margin-top: 8px;
}

/* First paragraph - GLASS EFFECT */
.products-text-empty-box {
    position: relative;
    margin-bottom: clamp(20px, 3vw, 30px);
    width: 100%;
}

.products-text-empty-box .text-content {
    padding: clamp(15px, 2.5vw, 20px) clamp(20px, 3vw, 25px);
    font-size: clamp(1.5rem, 1vw, 1rem);
    color: #333;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: center;
    z-index: 2;
    border: none;
    border-radius: 8px;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Second paragraph - black box with empty box behind */
.products-text-black-box-container {
    position: relative;
    margin-bottom: clamp(20px, 3vw, 30px);
    margin-top: -10px;
    width: 100%;
}

/* Empty black box behind */
.products-text-black-box-container::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.381);
    border-radius: 0;
    pointer-events: none;
    z-index: 1;
}

/* Black box */
.products-text-black-box {
    background-color: black;
    color: white;
    padding: clamp(15px, 2.5vw, 20px) clamp(20px, 3vw, 25px);
    border-radius: 0;
    font-size: clamp(1.5rem, 2vw, 1.2rem);
    line-height: 1.6;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Button container */
.products-button-container {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 50px;
    width: 100%;
}

/* Button with GLASS EFFECT */
.products-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: black;
    text-decoration: none;
    padding: clamp(10px, 2vw, 12px) clamp(30px, 5vw, 45px);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    border: 1px solid rgba(0, 0, 0, 0.381);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    line-height: 1.2;
}

.products-button:hover {
    background-color: black;
    color: white;
    backdrop-filter: none;
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-links {
        display: none;
    }

    /* Keep login section visible in navbar */
    .login-section {
        display: flex;
        margin-right: 10px;
    }

    /* Make sure hamburger menu is visible */
    .hamburger-menu {
        display: flex !important;
    }

    /* Adjust nav-rectangle for mobile */
    .nav-rectangle {
        justify-content: flex-end;
        padding-right: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Ensure no horizontal scroll */
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        width: 100%;
        overflow-x: hidden;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FIXED BORDER RADIUS - same for all screens */
    .logo-rectangle,
    .nav-rectangle,
    .blue-square,
    .products-right,
    .collage-main,
    .collage-side-img {
        border-radius: 15px !important;
    }

    /* Adjust offset boxes for mobile */
    .description-container::before {
        bottom: -6px;
        right: -6px;
    }

    .products-text-black-box-container::before {
        top: -6px;
        right: -6px;
    }

    /* ===== PRODUCTS SECTION MOBILE LAYOUT ===== */
    .products-section {
        flex-direction: column-reverse;
        gap: 30px;
    }

    /* Yellow box - SMALLER with FIXED radius */
    .products-right {
        min-height: auto;
        padding: 25px 20px;
        margin-bottom: 0;
        width: 100%;
        border-radius: 15px !important;
    }

    .products-content-box {
        max-width: 100%;
    }

    /* Add gaps between content in products section */
    .products-content-box > * {
        margin-bottom: 20px;
    }

    .products-heading {
        margin-bottom: 15px;
        font-size: 2.2rem;
    }

    .products-heading::after {
        margin-top: 5px;
    }

    .products-text-empty-box {
        margin-bottom: 25px;
    }

    .products-text-empty-box .text-content {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .products-text-black-box-container {
        margin-bottom: 25px;
        margin-top: 5px;
    }

    .products-text-black-box {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .products-button-container {
        margin-top: 5px;
    }

    .products-button {
        padding: 10px 35px;
        font-size: 1rem;
    }

    /* Image below - ONLY FIRST IMAGE SHOWN ON MOBILE */
    .products-left {
        min-height: auto;
        height: auto;
        width: 100%;
        margin-top: 0;
    }

    .image-collage {
        display: flex;
        flex-direction: column !important;
        gap: 10px;
        width: 100%;
        height: auto;
    }

    /* Hide collage-side completely on mobile */
    .collage-side {
        display: none !important;
    }

    /* Show only the main image */
    .collage-main {
        display: block;
        width: 100%;
        height: auto;
        min-height: auto;
        overflow: hidden;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.381);
    }

    .collage-main-img {
        width: 100%;
        height: 100px;
        max-height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 15px;
    }

    /* ===== FIX 1: HERO IMAGE WIDER ON MOBILE ===== */
    .blue-square .right-side {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 15px !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .hero-prev, 
    .hero-next {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
        background: rgba(0, 0, 0, 0.5) !important;
        color: white !important;
    }
    
    .hero-prev {
        left: 5px !important;
    }
    
    .hero-next {
        right: 5px !important;
    }

    /* ===== FIX 2: NAVBAR LOGO AND NAV IN SAME ROW ===== */
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 10px !important;
    }
    
    .logo-rectangle {
        flex-shrink: 0 !important;
        min-width: auto !important;
        height: auto !important;
        padding: 6px 12px !important;
    }
    
    .logo-img {
        height: 35px !important;
        width: auto !important;
    }
    
    .nav-rectangle {
        flex: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 8px 15px !important;
        min-width: auto !important;
        height: auto !important;
    }
    
    .login-section {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }
    
    .lang-btn {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }
}

/* Additional mobile fixes for smaller screens */
@media (max-width: 480px) {
    .logo-rectangle {
        height: 45px;
        min-width: 90px;
        padding: 5px 12px;
        border-radius: 12px !important;
    }

    .logo-img {
        height: 30px;
    }

    .nav-rectangle {
        height: 45px;
        min-height: 45px;
        padding: 0 12px;
        gap: 10px;
        border-radius: 12px !important;
    }

    .login-btn {
        padding: 4px 12px;
        font-size: 0.75rem;
        height: 28px;
    }

    .globe-icon {
        font-size: 0.9rem;
    }

    .hamburger-menu {
        width: 22px;
        height: 16px;
    }

    .hamburger-menu span {
        height: 2px;
    }

    .blue-square {
        padding: 15px 12px;
        border-radius: 15px !important;
    }

    .left-side h1 {
        font-size: 1.6rem;
    }

    .see-more-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
    }

    /* Products section for very small screens */
    .products-right {
        padding: 20px 15px;
        border-radius: 15px !important;
    }

    .products-heading {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .products-text-empty-box .text-content {
        padding: 15px;
        font-size: 0.9rem;
    }

    .products-text-black-box {
        padding: 15px;
        font-size: 0.9rem;
    }

    .products-button {
        padding: 8px 25px;
        font-size: 0.9rem;
    }

    .products-left {
        margin-top: 0;
    }

    .collage-main-img {
        max-height: 220px;
    }

    /* Hero slider buttons smaller on very small screens */
    .hero-prev, 
    .hero-next {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .hero-image {
        border-radius: 12px !important;
    }
}

/* Fix for medium mobile devices (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .products-right {
        padding: 25px 20px;
    }

    .collage-main-img {
        max-height: 260px;
    }
}

/* Fix for larger mobile devices (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .products-right {
        padding: 30px 25px;
    }

    .products-heading {
        font-size: 2rem;
    }

    .collage-main-img {
        max-height: 300px;
    }
}

/* Ensure hamburger is always visible on mobile */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }
}

/* Fix for tablets in portrait */
@media (min-width: 769px) and (max-width: 900px) {
    .products-section {
        flex-direction: row;
    }

    .products-right {
        min-height: 400px;
    }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop */
@media (min-width: 1600px) {
    .container {
        max-width: 1800px;
    }

    .hero-image {
        max-width: 1100px;
        max-height: 700px;
    }

    .left-side h1 {
        font-size: 4rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .left-side h1 {
        font-size: clamp(2.5rem, 4vw, 3.2rem);
    }

    .hero-image {
        max-height: 550px;
        max-width: 700px;
    }

    .products-heading {
        font-size: clamp(2rem, 3.5vw, 2.5rem);
    }
}

/* Tablet Landscape */
@media (max-width: 900px) {
    .blue-square {
        flex-direction: column;
        min-height: auto;
        padding: 25px 20px;
    }

    .right-side {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .hero-image {
        max-height: 400px;
        max-width: 100%;
    }

    .left-side h1 {
        font-size: clamp(2.2rem, 4vw, 2.8rem);
    }
}

/* Handle tall screens (landscape orientation) */
@media (orientation: landscape) and (max-height: 500px) {
    .blue-square {
        min-height: 300px;
    }

    .hero-image {
        max-height: 250px;
    }

    .left-side h1 {
        font-size: 1.8rem;
    }

    .products-left {
        min-height: 250px;
    }
}

/* High-DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .collage-main-img,
    .collage-side-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger-menu,
    .mobile-nav-overlay,
    .mobile-nav,
    .button-container,
    .products-button-container {
        display: none;
    }

    .blue-square,
    .products-right {
        border: 1px solid #000;
        background: #fff;
    }

    .description-box,
    .products-text-black-box {
        background: #fff;
        color: #000;
        border: 1px solid #000;
    }
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    width: 100%;
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
}

.partners-blue-box {
    background-color: #DFEFF6;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.381);
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
    box-sizing: border-box;
}

.partners-heading {
    font-size: 4rem;
    font-weight: 650;
    color: black;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
}

/* Partners grid - 5 columns with equal gaps */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
    justify-items: center;
}

/* Partner item */
.partner-item {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.381);
    border-radius: 20px;
    width: 200%;
    max-width: 400px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Shine effect on hover */
.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.partner-item:hover {
    transform: translateY(-4px);
    border-color: black;
}

.partner-item:hover::before {
    left: 100%;
}

.partner-logo {
    max-width: 95%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.partner-item:hover .partner-logo {
    transform: scale(1.05);
}

/* Glass button wrapper */
.partners-button-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.partners-glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: black;
    text-decoration: none;
    padding: 16px 75px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.3rem;
    border: 1px solid rgba(0, 0, 0, 0.381);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.partners-glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.partners-glass-btn:hover {
    background-color: black;
    color: white;
    backdrop-filter: none;
    transform: translateY(-4px);
}

.partners-glass-btn:hover::before {
    left: 100%;
}

/* Partners responsive */
@media (min-width: 1600px) {
    .partners-grid { gap: 35px; }
    .partner-item { max-width: 250px; height: 120px; }
    .partners-blue-box { padding: 45px; }
}

@media (min-width: 1401px) and (max-width: 1599px) {
    .partner-item { max-width: 230px; height: 140px; }
}

@media (min-width: 1101px) and (max-width: 1400px) {
    .partners-grid { gap: 25px; }
    .partner-item { max-width: 200px; height: 120px; }
}

@media (max-width: 1100px) {
    .partners-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; }
    .partner-item { max-width: 200px; height: 100px; }
}

@media (max-width: 900px) {
    .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .partner-item { max-width: 220px; height: 130px; }
    .partners-blue-box { padding: 35px; }
    .partners-heading { font-size: 2.2rem; margin-bottom: 35px; }
}

@media (max-width: 700px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .partner-item { max-width: 240px; height: 140px; }
}

@media (max-width: 500px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .partner-item { max-width: 150px; height: 100px; border-radius: 16px; padding: 12px; }
    .partner-logo { max-height: 70px; }
    .partners-blue-box { padding: 30px 20px; }
    .partners-heading { font-size: 2rem; margin-bottom: 30px; }
    .partners-glass-btn { padding: 14px 55px; font-size: 1.1rem; }
}

@media (max-width: 380px) {
    .partner-item { max-width: 150px; height: 88px; }
    .partners-grid { gap: 15px; }
}

/* Animation for partner items */
.partner-item {
    opacity: 0;
    animation: fadeInPartner 0.5s ease-out forwards;
}

@keyframes fadeInPartner {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.partner-item:nth-child(1) { animation-delay: 0.05s; }
.partner-item:nth-child(2) { animation-delay: 0.1s; }
.partner-item:nth-child(3) { animation-delay: 0.15s; }
.partner-item:nth-child(4) { animation-delay: 0.2s; }
.partner-item:nth-child(5) { animation-delay: 0.25s; }
.partner-item:nth-child(6) { animation-delay: 0.3s; }
.partner-item:nth-child(7) { animation-delay: 0.35s; }
.partner-item:nth-child(8) { animation-delay: 0.4s; }
.partner-item:nth-child(9) { animation-delay: 0.45s; }
.partner-item:nth-child(10) { animation-delay: 0.5s; }

/* ===== CLIENTS/REFERENCES SECTION ===== */
.clients-section {
    width: 100%;
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
}

.clients-dark-blue-box {
    background-color: #001D3D;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
    box-sizing: border-box;
}

.clients-heading {
    font-size: 3.5rem;
    font-weight: 650;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.clients-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: white;
    margin: 10px auto 0;
}

.clients-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin-bottom: 25px;
    font-weight: 300;
}

.clients-button-wrapper {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.clients-glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 14px 65px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.clients-glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.clients-glass-btn:hover {
    background-color: white;
    color: #001D3D;
    backdrop-filter: none;
    transform: translateY(-4px);
    border-color: white;
}

.clients-glass-btn:hover::before {
    left: 100%;
}

.clients-logos-container {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.clients-glass-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1;
}

.clients-glass-background:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.clients-icons-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    justify-items: center;
    padding: 40px 50px;
}

.client-icon-item {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.client-icon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.client-icon-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.2);
}

.client-icon-item:hover::before {
    left: 100%;
}

.client-icon {
    max-width: 85%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: brightness(1) contrast(1.1);
}

.client-icon-item:hover .client-icon {
    transform: scale(1.1);
}

/* Clients responsive */
@media (min-width: 1600px) {
    .clients-icons-grid { gap: 35px; padding: 45px 70px; }
    .client-icon-item { max-width: 220px; height: 110px; }
    .client-icon { max-height: 70px; }
}

@media (max-width: 1200px) {
    .clients-icons-grid { gap: 25px; padding: 35px 40px; }
    .client-icon-item { max-width: 180px; height: 90px; }
    .client-icon { max-height: 55px; }
}

@media (max-width: 900px) {
    .clients-icons-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; padding: 30px 30px; }
    .client-icon-item { max-width: 180px; height: 95px; }
    .client-icon { max-height: 60px; }
    .clients-dark-blue-box { padding: 30px 25px; }
    .clients-heading { font-size: 3rem; }
    .clients-description { font-size: 1.1rem; }
}

@media (max-width: 700px) {
    .clients-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; padding: 30px 25px; }
    .client-icon-item { max-width: 210px; height: 100px; }
    .client-icon { max-height: 65px; }
    .clients-glass-btn { padding: 12px 50px; font-size: 1.1rem; }
}

@media (max-width: 500px) {
    .clients-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 25px 18px; }
    .client-icon-item { max-width: 140px; height: 85px; border-radius: 16px; padding: 10px; }
    .client-icon { max-height: 50px; }
    .clients-dark-blue-box { padding: 25px 15px; border-radius: 20px; }
    .clients-heading { font-size: 2.2rem; }
    .clients-description { font-size: 1rem; margin-bottom: 20px; }
    .clients-glass-btn { padding: 10px 35px; font-size: 1rem; }
}

@media (max-width: 380px) {
    .client-icon-item { max-width: 125px; height: 75px; }
    .client-icon { max-height: 45px; }
    .clients-icons-grid { gap: 12px; padding: 20px 12px; }
}

.client-icon-item {
    opacity: 0;
    animation: fadeInClient 0.5s ease-out forwards;
}

@keyframes fadeInClient {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.client-icon-item:nth-child(1) { animation-delay: 0.05s; }
.client-icon-item:nth-child(2) { animation-delay: 0.1s; }
.client-icon-item:nth-child(3) { animation-delay: 0.15s; }
.client-icon-item:nth-child(4) { animation-delay: 0.2s; }
.client-icon-item:nth-child(5) { animation-delay: 0.25s; }
.client-icon-item:nth-child(6) { animation-delay: 0.3s; }
.client-icon-item:nth-child(7) { animation-delay: 0.35s; }
.client-icon-item:nth-child(8) { animation-delay: 0.4s; }

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    display: flex;
    gap: 30px;
    margin: clamp(10px, 2vw, 12px) 0;
    width: 100%;
    min-height: 750px;
    flex-wrap: wrap;
}

.solutions-left {
    flex: 1;
    min-width: 280px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.381);
    height: 750px;
    position: relative;
}

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.city-image:hover {
    transform: scale(1.03);
}

.solutions-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 750px;
}

.solutions-top-rectangle {
    width: 100%;
    height: 30%;
    min-height: 200px;
    max-height: 250px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.381);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solutions-top-rectangle:hover {
    transform: translateY(-3px);
}

.glass-rectangle {
    background-color: rgba(32, 32, 32, 0.034);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgb(8, 8, 8);
    border-radius: 16px;
    padding: 18px 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.black-glass {
    background-color: rgba(0, 0, 0, 0.322);
}

.glass-rectangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.glass-rectangle:hover {
    background-color: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.glass-rectangle:hover::before {
    left: 100%;
}

.glass-text {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    white-space: nowrap;
}

.glass-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: white;
}

.solutions-dark-box {
    background-color: #001D3D;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 40px;
    width: 100%;
    height: 70%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solutions-dark-box:hover {
    transform: translateY(-5px);
}

.solutions-top-logo {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.top-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.top-logo-img:hover {
    transform: scale(1.05);
}

.solutions-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
    overflow-y: auto;
    padding: 0 20px;
}

.service-dynamic-title {
    font-size: 2.5rem !important;
    margin-bottom: 25px !important;
    color: #76C5EF !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    text-align: center !important;
    width: 100%;
}

#service-description {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-weight: 300 !important;
}

.solutions-circles {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 8px;
    z-index: 5;
    flex-wrap: nowrap;
    max-width: calc(100% - 150px);
    overflow-x: auto;
    padding-bottom: 5px;
}

.solutions-circles::-webkit-scrollbar { height: 3px; }
.solutions-circles::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 10px; }

.circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.circle:hover::after {
    content: attr(data-service);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    margin-bottom: 5px;
    z-index: 10;
    pointer-events: none;
}

.circle:hover {
    transform: scale(1.2);
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    border-radius: 50%;
}

.circle:hover::before {
    left: 100%;
}

.solutions-bottom-logo {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 5;
}

.bottom-logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.bottom-logo-img:hover {
    transform: scale(1.1) rotate(2deg);
    opacity: 1;
}

.circle {
    opacity: 0;
    animation: fadeInCircle 0.4s ease-out forwards;
}

.circle:nth-child(1) { animation-delay: 0.03s; }
.circle:nth-child(2) { animation-delay: 0.06s; }
.circle:nth-child(3) { animation-delay: 0.09s; }
.circle:nth-child(4) { animation-delay: 0.12s; }
.circle:nth-child(5) { animation-delay: 0.15s; }
.circle:nth-child(6) { animation-delay: 0.18s; }
.circle:nth-child(7) { animation-delay: 0.21s; }
.circle:nth-child(8) { animation-delay: 0.24s; }
.circle:nth-child(9) { animation-delay: 0.27s; }

@keyframes fadeInCircle {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SERVICE CIRCLES ON CITY IMAGE ===== */
.solutions-left {
    position: relative;
    overflow: hidden;
}

.service-circle {
    position: absolute;
    width: 65px;
    height: 65px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.service-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 20;
}

.circle-glass {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(112, 164, 192, 0.582);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    z-index: 5;
    border: 2px solid white;
}

.circle-glass::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0.7;
    pointer-events: none;
    animation: wave-small 2s infinite ease-out;
    z-index: 1;
}

.circle-glass::after {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    pointer-events: none;
    animation: wave-small 2s infinite ease-out 0.6s;
    z-index: 1;
}

@keyframes wave-small {
    0%   { transform: scale(0.9); opacity: 0.8; border-color: white; border-width: 2px; }
    50%  { transform: scale(1.1); opacity: 0.5; border-color: white; border-width: 1.5px; }
    100% { transform: scale(1.2); opacity: 0;   border-color: white; border-width: 1px; }
}

.service-circle.active .circle-glass {
    background: rgba(91, 166, 207, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid white;
}

.service-circle.active .circle-glass::before {
    border-color: #5ba6cf;
    animation: wave-small-active 1.8s infinite ease-out;
}

.service-circle.active .circle-glass::after {
    border-color: #5ba6cf;
    animation: wave-small-active 1.8s infinite ease-out 0.5s;
}

@keyframes wave-small-active {
    0%   { transform: scale(0.95); opacity: 0.9; border-color: #5ba6cf; border-width: 2px; }
    50%  { transform: scale(1.15); opacity: 0.5; border-color: #5ba6cf; border-width: 1.5px; }
    100% { transform: scale(1.3);  opacity: 0;   border-color: #5ba6cf; border-width: 1px; }
}

.service-icon {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 6;
    cursor: pointer;
}

.service-circle.active .service-icon {
    color: white;
    transform: scale(1.1);
}

.service-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 30;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-circle:hover .service-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

.service-circle,
.circle-glass,
.service-icon {
    cursor: pointer;
}

/* Solutions responsive */
@media (max-width: 1200px) {
    .service-dynamic-title { font-size: 2.2rem !important; }
    #service-description { font-size: 1.2rem !important; }
}

@media (max-width: 1100px) {
    .solutions-section { min-height: auto; }
    .solutions-left { height: 600px; }
    .solutions-right { height: 600px; }
    .solutions-dark-box { padding: 30px 30px; }
    .service-dynamic-title { font-size: 2rem !important; }
    #service-description { font-size: 1.1rem !important; }
}

@media (max-width: 900px) {
    .solutions-section {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 25px;
        min-height: unset;
    }

    .solutions-right { display: contents !important; }

    .solutions-top-rectangle {
        order: 1;
        width: 100%;
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
        border-radius: 30px;
    }

    .solutions-left {
        order: 2;
        width: 100%;
        height: 380px !important;
        min-height: 380px !important;
        border-radius: 30px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.381);
        position: relative !important;
    }

    .city-image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block;
        transition: none;
        z-index: 1;
    }

    .city-image:hover { transform: none; }

    .solutions-left::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 220px;
        background: linear-gradient(to top, rgba(0, 10, 25, 0.88) 0%, rgba(0, 10, 25, 0.55) 55%, transparent 100%);
        border-radius: 0 0 30px 30px;
        pointer-events: none;
        z-index: 2;
    }

    .solutions-left .service-circle {
        position: absolute !important;
        top: unset !important;
        right: unset !important;
        transform: none !important;
        z-index: 5 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important;
        width: 60px !important;
        height: auto !important;
        cursor: pointer;
    }

    .solutions-left .service-circle:nth-child(2) { bottom: 195px !important; left: 4%   !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(3) { bottom: 172px !important; left: 27%  !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(4) { bottom: 188px !important; left: 53%  !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(5) { bottom: 168px !important; left: 74%  !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(6) { bottom: 72px !important;  left: 14%  !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(7) { bottom: 58px !important;  left: 38%  !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(8) { bottom: 75px !important;  left: 60%  !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(9) { bottom: 55px !important;  left: 82%  !important; right: unset !important; }

    .solutions-left .service-circle:hover {
        transform: scale(1.1) !important;
        z-index: 20 !important;
    }

    .solutions-left .service-circle .circle-glass {
        width: 42px !important;
        height: 42px !important;
        flex-shrink: 0;
    }

    .solutions-left .service-circle .service-icon { font-size: 17px !important; }

    .solutions-left .service-circle .circle-glass::before {
        top: -5px !important; left: -5px !important;
        right: -5px !important; bottom: -5px !important;
        border-width: 1.5px !important;
    }

    .solutions-left .service-circle .circle-glass::after {
        top: -9px !important; left: -9px !important;
        right: -9px !important; bottom: -9px !important;
        border-width: 1.5px !important;
    }

    .solutions-left .service-circle .service-tooltip {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        bottom: unset !important;
        left: unset !important;
        margin-bottom: 0 !important;
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        color: rgba(255, 255, 255, 0.92) !important;
        font-size: 0.58rem !important;
        font-weight: 500 !important;
        padding: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
        max-width: 58px !important;
        line-height: 1.2 !important;
        pointer-events: none;
        z-index: auto !important;
    }

    .solutions-left .service-circle.active .circle-glass {
        box-shadow: 0 0 20px #5ba6cf, 0 4px 12px rgba(0,0,0,0.35) !important;
    }

    .solutions-left .service-circle.active .service-tooltip {
        color: white !important;
        font-weight: 700 !important;
    }

    .solutions-dark-box {
        order: 3;
        width: 100%;
        height: auto !important;
        min-height: 450px;
        padding: 25px 25px 80px 25px;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .solutions-top-logo { margin-bottom: 15px; flex-shrink: 0; }
    .top-logo-img { max-height: 50px; }

    .solutions-text-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow-y: auto;
        padding: 0 5px;
    }

    .service-dynamic-title {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
        color: #76C5EF !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }

    #service-description {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        color: rgba(255, 255, 255, 0.95) !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-weight: 300 !important;
    }

    .solutions-circles { bottom: 25px; left: 30px; max-width: calc(100% - 120px); }
    .solutions-bottom-logo { bottom: 25px; right: 30px; }
    .bottom-logo-img { max-height: 40px; }
}

@media (max-width: 480px) {
    .solutions-top-rectangle {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }

    .solutions-left {
        height: 320px !important;
        min-height: 320px !important;
    }

    .glass-rectangle { padding: 10px 22px; }
    .glass-text { font-size: 1.3rem; }
    .glass-text::after { width: 40px; }

    .solutions-dark-box {
        min-height: 420px;
        padding: 22px 18px 75px 18px;
    }

    .top-logo-img { max-height: 42px; }
    .service-dynamic-title { font-size: 1.35rem !important; }
    #service-description { font-size: 0.92rem !important; line-height: 1.6 !important; }

    .solutions-left .service-circle .circle-glass { width: 36px !important; height: 36px !important; }
    .solutions-left .service-circle .service-icon { font-size: 14px !important; }

    .solutions-left .service-circle .service-tooltip {
        font-size: 0.52rem !important;
        max-width: 50px !important;
    }

    .solutions-left .service-circle:nth-child(2) { bottom: 165px !important; left: 4%  !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(3) { bottom: 146px !important; left: 27% !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(4) { bottom: 160px !important; left: 53% !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(5) { bottom: 142px !important; left: 74% !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(6) { bottom: 58px !important;  left: 14% !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(7) { bottom: 46px !important;  left: 38% !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(8) { bottom: 62px !important;  left: 60% !important; right: unset !important; }
    .solutions-left .service-circle:nth-child(9) { bottom: 44px !important;  left: 82% !important; right: unset !important; }

    .solutions-circles { gap: 5px; left: 18px; bottom: 18px; }
    .solutions-bottom-logo { bottom: 18px; right: 18px; }
    .bottom-logo-img { max-height: 32px; }
}

/* =====================================================
   BLOG SECTION - SLIGHTLY TALLER CARDS
   ===================================================== */

.blog-section {
    width: 100%;
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
}

.blog-outer-box {
    background-color: #DFEFF6;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 50px 40px 45px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    animation: fadeInUp 0.8s ease-out;
}

.blog-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #001D3D;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
    align-items: stretch;
}

.blog-card {
    background-color: #DFEFF6;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.15s; }
.blog-card:nth-child(3) { animation-delay: 0.25s; }

.blog-card:hover {
    transform: translateY(-5px);
    border-color: white;
}

.blog-card-image-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 18px 18px 0 0;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-img-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    white-space: normal;
    width: calc(100% - 32px);
    line-height: 1.4;
    pointer-events: none;
    z-index: 2;
}

.blog-card-body {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.blog-date-badge {
    display: inline-flex;
    align-items: center;
    background-color: #001D3D;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    width: fit-content;
    flex-shrink: 0;
}

.blog-card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #001D3D;
    font-weight: 600;
    flex: 1;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #001D3D;
    text-decoration: none;
    padding: 9px 26px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.blog-read-more-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transition: left 0.5s ease;
}

.blog-read-more-btn:hover {
    background-color: #001D3D;
    color: white;
    border-color: #001D3D;
    transform: translateY(-2px);
}

.blog-read-more-btn:hover::before { left: 100%; }

.blog-visit-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.blog-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #001D3D;
    text-decoration: none;
    padding: 15px 80px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-visit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transition: left 0.5s ease;
}

.blog-visit-btn:hover {
    background-color: #001D3D;
    color: white;
    border-color: #001D3D;
    transform: translateY(-3px);
}

.blog-visit-btn:hover::before { left: 100%; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Blog responsive - adjusted for taller images */
@media (max-width: 1100px) {
    .blog-card-image-wrap { height: 200px; }
}

@media (max-width: 900px) {
    .blog-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .blog-card:nth-child(3) { grid-column: 1 / -1; max-width: 460px; justify-self: center; }
    .blog-outer-box { padding: 40px 28px 35px; }
    .blog-heading { margin-bottom: 28px; }
    .blog-card-image-wrap { height: 190px; }
}

@media (max-width: 600px) {
    .blog-cards-grid { grid-template-columns: 1fr; gap: 18px; }
    .blog-card:nth-child(3) { grid-column: auto; max-width: 100%; justify-self: auto; }
    .blog-outer-box { padding: 28px 16px 26px; border-radius: 20px; }
    .blog-heading { font-size: 1.7rem; margin-bottom: 22px; }
    .blog-card-image-wrap { height: 210px; }
    .blog-card-img-label { font-size: 0.95rem; padding: 11px 14px; }
    .blog-card-body { padding: 16px 16px 20px; gap: 12px; }
    .blog-card-text { font-size: 0.93rem; }
    .blog-visit-btn { padding: 13px 45px; font-size: 1rem; }
}

@media (max-width: 400px) {
    .blog-heading { font-size: 1.5rem; }
    .blog-card-image-wrap { height: 190px; }
}

/* =====================================================
   ABOUT US SECTION
   ===================================================== */

.about-section {
    width: 100%;
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.about-left {
    flex: 1.5;
    background-color: #1C1C1C;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.about-title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    align-self: flex-start;
}

.about-title-wrap::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 8px;
    right: -8px;
    bottom: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

.about-title-box {
    position: relative;
    z-index: 2;
    background-color: #1C1C1C;
    border: 1.5px solid white;
    border-radius: 4px;
    padding: 16px 32px;
    display: inline-block;
}

.about-title-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    margin-bottom: 32px;
}

.about-text p:first-child {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    font-weight: 500;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.01em;
}

.about-text p:last-child {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    letter-spacing: 0.01em;
}

.about-read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    text-decoration: none;
    padding: 14px 48px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.about-read-more-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s ease;
}

.about-read-more-btn:hover {
    background-color: white;
    color: #1C1C1C;
    border-color: white;
    transform: translateY(-2px);
}

.about-read-more-btn:hover::before { left: 100%; }

.about-right {
    flex: 1;
    min-width: 0;
    border-radius: 30px;
    border: 1.5px solid white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-right-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    border-radius: 28px;
    transition: transform 0.5s ease;
}

.about-right:hover .about-right-img {
    transform: scale(1.02);
}

/* About responsive */
@media (max-width: 900px) {
    .about-section { flex-direction: column; gap: 16px; }
    .about-left { flex: unset; width: 100%; padding: 32px 30px; border-radius: 22px; }
    .about-right { flex: unset; width: 100%; height: auto; border-radius: 22px; }
    .about-right-img { width: 100%; height: auto; object-fit: contain; border-radius: 20px; }
    .about-title-box h2 { font-size: 1.8rem; }
    .about-text p:first-child { font-size: 1.05rem; }
    .about-text p:last-child { font-size: 0.95rem; }
    .about-read-more-btn { font-size: 1rem; padding: 12px 38px; }
}

@media (max-width: 600px) {
    .about-left { padding: 26px 22px 24px; border-radius: 18px; }
    .about-right { border-radius: 18px; }
    .about-right-img { width: 100%; height: auto; border-radius: 16px; }
    .about-title-box { padding: 12px 22px; }
    .about-title-box h2 { font-size: 1.5rem; }
    .about-text { gap: 16px; margin-bottom: 24px; }
    .about-text p:first-child { font-size: 0.97rem; line-height: 1.7; }
    .about-text p:last-child { font-size: 0.88rem; line-height: 1.7; }
    .about-read-more-btn { padding: 11px 30px; font-size: 0.95rem; }
}

@media (max-width: 400px) {
    .about-left { padding: 22px 18px 20px; }
    .about-title-box h2 { font-size: 1.3rem; }
    .about-text p:first-child { font-size: 0.92rem; }
    .about-text p:last-child { font-size: 0.82rem; }
    .about-read-more-btn { padding: 10px 24px; font-size: 0.88rem; }
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-section {
    width: 100%;
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.faq-left {
    flex: 1.6;
    background-color: #6391C3;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 48px 48px 42px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.faq-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}

.faq-item.open {
    background-color: rgba(255, 255, 255, 0.28);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    font-weight: 600;
    color: white;
    text-align: left;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.faq-question:hover { opacity: 0.85; }

.faq-question span:first-child {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    line-height: 1;
    color: white;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0.25);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.faq-answer code {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 8px 24px 22px 24px;
}

.faq-btn-wrap {
    display: flex;
    justify-content: center;
}

.faq-item.open .faq-answer p {
    opacity: 1;
}

.faq-see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    text-decoration: none;
    padding: 13px 60px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-see-more-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.faq-see-more-btn:hover {
    background-color: white;
    color: #6391C3;
    border-color: white;
    transform: translateY(-2px);
}

.faq-see-more-btn:hover::before { left: 100%; }

.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.faq-contact-box {
    flex: 0.9;
    background-color: #DFEFF6;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.faq-contact-logo {
    max-height: 90px;
    max-width: 85%;
    width: auto;
    object-fit: contain;
}

.faq-contact-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 1.7vw, 1.4rem);
    font-weight: 400;
    line-height: 1.5;
    color: #001D3D;
    margin: 0;
}

.faq-contact-text strong {
    font-weight: 700;
    display: block;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #001D3D;
    text-decoration: none;
    padding: 10px 36px;
    border-radius: 10px;
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-contact-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.faq-contact-btn:hover {
    background-color: #001D3D;
    color: white;
    border-color: #001D3D;
    transform: translateY(-2px);
}

.faq-contact-btn:hover::before { left: 100%; }

.faq-blog-box {
    flex: 1.1;
    background-color: #001D3D;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-blog-box:hover { background-color: #002a55; }

.faq-blog-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: white;
    line-height: 1.35;
    margin: 0;
}

.faq-blog-arrow {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-blog-arrow:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-2px);
}

/* FAQ responsive */
@media (max-width: 900px) {
    .faq-section { flex-direction: column; gap: 16px; }
    .faq-left { flex: unset; padding: 30px 28px 28px; border-radius: 22px; }
    .faq-right { flex: unset; flex-direction: row; gap: 14px; }
    .faq-contact-box, .faq-blog-box { flex: 1; border-radius: 20px; }
    .faq-contact-box { padding: 22px 20px; }
    .faq-blog-box { padding: 20px 20px; }
}

@media (max-width: 600px) {
    .faq-left { padding: 24px 20px 22px; border-radius: 18px; gap: 18px; }
    .faq-heading { font-size: 1.6rem; }
    .faq-right { flex-direction: column; gap: 12px; }
    .faq-contact-box, .faq-blog-box { border-radius: 18px; }
    .faq-see-more-btn { padding: 11px 44px; font-size: 0.95rem; }
    .faq-blog-text { font-size: 1.3rem; }
}

@media (max-width: 400px) {
    .faq-heading { font-size: 1.4rem; }
    .faq-question { font-size: 0.85rem; padding: 13px 16px; }
    .faq-answer p { font-size: 0.82rem; }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    width: 100%;
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
    display: flex;
    gap: 20px;
    align-items: stretch;
    min-height: 620px;
}

.contact-left {
    flex: 1;
    background-color: #DFEFF6;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-width: 0;
    text-align: center;
}

.contact-logo-wrap { display: flex; align-items: center; justify-content: center; }
.contact-logo { max-height: 90px; max-width: 85%; width: auto; object-fit: contain; transition: transform 0.4s ease; }
.contact-logo:hover { transform: scale(1.04); }
.contact-heading-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.contact-sub { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 400; color: #001D3D; margin: 0; line-height: 1.4; }
.contact-title { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; color: #001D3D; margin: 0; line-height: 1.15; letter-spacing: -0.5px; }

.contact-info-glass {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    padding: 10px 28px;
    display: flex;
    flex-direction: column;
}

.contact-info-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; text-align: left; }
.contact-info-divider { width: 100%; height: 1px; background-color: rgba(0, 29, 61, 0.12); }
.contact-info-icon { width: 38px; height: 38px; border-radius: 50%; background-color: rgba(0, 29, 61, 0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; color: #001D3D; }
.contact-info-text { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 500; color: #001D3D; line-height: 1.45; }

.contact-call-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #001D3D; text-decoration: none; padding: 15px 50px; border-radius: 12px; border: 1.5px solid rgba(0, 0, 0, 0.35); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; position: relative; overflow: hidden; align-self: center; }
.contact-call-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent); transition: left 0.5s ease; }
.contact-call-btn:hover { background-color: #001D3D; color: white; border-color: #001D3D; transform: translateY(-2px); }
.contact-call-btn:hover::before { left: 100%; }

.contact-right {
    flex: 1;
    background-color: transparent;
    border-radius: 0;
    border: none;
    padding: 20px 10px 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-form-intro {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-input { width: 100%; background-color: rgba(255, 255, 255, 0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 12px; padding: 18px 22px; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 400; color: #001D3D; outline: none; transition: border-color 0.25s ease, background-color 0.25s ease; box-sizing: border-box; resize: none; }
.contact-input::placeholder { color: rgba(0, 29, 61, 0.4); }
.contact-input:focus { border-color: rgba(0, 29, 61, 0.5); background-color: rgba(255, 255, 255, 0.7); }

.contact-textarea { flex: 1; min-height: 160px; resize: none; line-height: 1.6; }

.contact-submit-btn { margin-top: 20px; align-self: flex-start; display: inline-flex; align-items: center; justify-content: center; background-color: #001D3D; color: white; border: 1.5px solid #001D3D; padding: 16px 70px; border-radius: 12px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; }
.contact-submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s ease; }
.contact-submit-btn:hover { background-color: #DFEFF6; color: #001D3D; border-color: #001D3D; transform: translateY(-2px); }
.contact-submit-btn:hover::before { left: 100%; }
.contact-submit-btn.sent { background-color: #001D3D; color: white; pointer-events: none; }

@media (max-width: 768px) {
    .contact-section { flex-direction: column; min-height: unset; gap: 16px; }
    .contact-left { order: 1; padding: 36px 30px; border-radius: 15px; }
    .contact-right { order: 2; padding: 10px 0 0 0; }
    .contact-submit-btn { align-self: stretch; text-align: center; }
}

@media (max-width: 400px) {
    .contact-left { padding: 22px 16px; }
    .contact-title { font-size: 1.5rem; }
    .contact-info-text { font-size: 0.78rem; }
    .contact-input { padding: 12px 14px; }
    .contact-submit-btn { padding: 12px 30px; font-size: 0.95rem; }
}

@keyframes contactShake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* ===== MAP SECTION ===== */
.map-section {
    width: 100%;
    margin-top: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.381);
    overflow: hidden;
    position: relative;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background-color: #DFEFF6;
    color: #001D3D;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 12px;
    border: 1px solid rgba(0, 29, 61, 0.2);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background-color: #001D3D;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .map-section { height: 350px; border-radius: 22px; }
}

@media (max-width: 400px) {
    .map-section { height: 280px; border-radius: 18px; }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background-color: #0096C7;
    border-radius: 20px;
    padding: 32px 45px 28px;
    margin: clamp(10px, 2vw, 12px) 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 190px;
}

.footer-left-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    padding: 4px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 40px;
    row-gap: 12px;
    justify-content: start;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.footer-links a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.footer-copy {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.footer-center-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-group-img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    align-self: stretch;
    padding: 4px 0;
}

.footer-logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-right-bottom {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-social span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icons a:hover {
    transform: scale(1.15);
    opacity: 0.75;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.footer-legal a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* Footer responsive */
@media (max-width: 900px) {
    .footer-section { padding: 32px 30px 26px; }
    .footer-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; min-height: unset; gap: 20px; }
    .footer-center-col { grid-column: 1 / -1; order: -1; }
    .footer-group-img { max-height: 150px; }
    .footer-right-bottom { flex-direction: column; align-items: flex-end; gap: 12px; }
    .footer-links a { font-size: 1.1rem; }
    .footer-legal a { font-size: 1rem; }
    .footer-social span { font-size: 1rem; }
}

@media (max-width: 600px) {
    .footer-section { padding: 26px 20px 22px; border-radius: 16px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .footer-left-col { align-items: center; gap: 18px; }
    .footer-links { justify-content: center; column-gap: 24px; }
    .footer-links a { font-size: 1rem; }
    .footer-right-col { align-items: center; }
    .footer-right-bottom { flex-direction: column; align-items: center; gap: 12px; }
    .footer-social { align-items: center; }
    .footer-legal { align-items: center; }
    .footer-legal a { font-size: 0.95rem; }
    .footer-copy { font-size: 0.88rem; }
    .footer-group-img { max-height: 90px; }
    .footer-logo img { max-height: 50px; }
}

@media (max-width: 400px) {
    .footer-links { column-gap: 16px; }
    .footer-links a { font-size: 0.9rem; }
    .footer-group-img { max-height: 75px; }
}

/* ===== FIX FOR MACBOOK AIR / 13-14" LAPTOPS ===== */
/* This prevents scrolling in the solutions text box on smaller laptop screens */

@media (min-width: 1200px) and (max-height: 900px) {
    /* Solutions section height adjustment */
    .solutions-section {
        min-height: 600px !important;
    }
    
    .solutions-left {
        height: 600px !important;
    }
    
    .solutions-right {
        height: 600px !important;
    }
    
    /* Dark box padding reduced */
    .solutions-dark-box {
        padding: 25px 30px !important;
    }
    
    /* Title size slightly smaller */
    .service-dynamic-title {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    /* Description text size smaller and line height tighter */
    #service-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }
    
    /* Remove any overflow scrolling */
    .solutions-text-content {
        overflow-y: visible !important;
        padding: 0 10px !important;
    }
}

/* Even tighter for smaller MacBook Air 13" */
@media (min-width: 1200px) and (max-height: 800px) {
    .solutions-section {
        min-height: 520px !important;
    }
    
    .solutions-left {
        height: 520px !important;
    }
    
    .solutions-right {
        height: 520px !important;
    }
    
    .solutions-dark-box {
        padding: 20px 25px !important;
    }
    
    .service-dynamic-title {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
    }
    
    #service-description {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
    }
    
    .top-logo-img {
        max-height: 45px !important;
    }
}


/* ===== FULLSCREEN MOBILE MENU - GLASSMORPHISM (NO NAVBAR CHANGES) ===== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 150, 199, 0.85), rgba(11, 63, 80, 0.75)) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fullscreen-menu.active {
    transform: translateX(0);
}

.fullscreen-menu-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 24px;
    color: white;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.2s;
    opacity: 0.9;
}

.close-menu:hover {
    transform: scale(1.1);
    opacity: 1;
}

.fullscreen-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 60px;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.fullscreen-menu.active .menu-links a {
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-menu.active .menu-links a:nth-child(1) { transition-delay: 0.05s; }
.fullscreen-menu.active .menu-links a:nth-child(2) { transition-delay: 0.10s; }
.fullscreen-menu.active .menu-links a:nth-child(3) { transition-delay: 0.15s; }
.fullscreen-menu.active .menu-links a:nth-child(4) { transition-delay: 0.20s; }
.fullscreen-menu.active .menu-links a:nth-child(5) { transition-delay: 0.25s; }
.fullscreen-menu.active .menu-links a:nth-child(6) { transition-delay: 0.30s; }
.fullscreen-menu.active .menu-links a:nth-child(7) { transition-delay: 0.35s; }

.menu-links a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.menu-footer {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
}

.fullscreen-menu.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-contact p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.9);
}

.menu-contact i {
    width: 28px;
    margin-right: 10px;
    color: white;
}

.menu-social {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.menu-social a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s;
    display: inline-block;
}

.menu-social a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* 27 Years Badge - After Menu Links, Above Contact, Slow & Smooth */
.menu-badge {
    text-align: left;
    margin: 30px 0 20px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: none;
}

.fullscreen-menu.active .menu-badge {
    animation: badgeFloatUp 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.2) forwards;
    animation-delay: 0.2s;
}

@keyframes badgeFloatUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.7);
    }
    30% {
        opacity: 0.3;
        transform: translateY(-10px) scale(1.05);
    }
    60% {
        opacity: 0.7;
        transform: translateY(5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-image {
    max-width: 140px;  /* bigger */
    width: 100%;
    height: auto;
    /* no shadow */
    transition: transform 0.2s ease;
}

.badge-image:hover {
    transform: scale(1.03);
}

/* Responsive: slightly smaller on mobile but still prominent */
@media (max-width: 600px) {
    .badge-image {
        max-width: 110px;
    }
    .menu-badge {
        margin: 20px 0 15px;
    }
}

@media (max-width: 400px) {
    .badge-image {
        max-width: 90px;
    }
}

                /* ===== NAVBAR SHINE EFFECT ON SCROLL ===== */
               /* ===== NAVBAR SHINE EFFECT ON SCROLL ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), backdrop-filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        /* Background fade using pseudo-element */
        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(62, 142, 188, 0.95), rgba(8, 35, 62, 0.95));
            opacity: 0;
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: -1;
            pointer-events: none;
        }
        
        /* Shine effect when scrolled */
        .navbar.scrolled {
            box-shadow: 0 0 70px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .navbar.scrolled::before {
            opacity: 1;
        }
        
        /* Shine line above - slower and smoother */
        .navbar.scrolled::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            
            animation: shineMove 4s ease-in-out infinite;
            opacity: 0.8;
        }
        
        /* Shine line below */
        .navbar.scrolled .navbar::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            
            animation: shineMove 4s ease-in-out infinite 1s;
            opacity: 0.8;
        }
        
        @keyframes shineMove {
            0% { 
                transform: translateX(-100%);
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            80% {
                opacity: 1;
            }
            100% { 
                transform: translateX(100%);
                opacity: 0;
            }
        }


                       /* ===== HAMBURGER MENU STYLES - RESPONSIVE & HIGHER CONTENT ===== */
        @media (max-width: 768px) {
            .fullscreen-menu-container {
                padding: 20px 24px !important;
                justify-content: flex-start !important;
            }
            
            .fullscreen-menu-content {
                justify-content: flex-start !important;
                margin-top: 40px !important;
                gap: 30px !important;
            }
            
            .menu-links {
                align-items: center !important;
                gap: 20px !important;
                margin-top: 0 !important;
            }
            
            .menu-links a {
                font-size: 1.3rem !important;
                font-weight: 500 !important;
                position: relative;
                display: inline-block;
                padding: 10px 0;
                text-align: center;
            }
            
            /* White fading line under mobile menu links */
            .menu-links a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1.5px;
                background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.5), transparent);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
            }
            
            .menu-links a:hover::after {
                transform: scaleX(1);
            }
            
            .menu-badge {
                text-align: center !important;
                margin: 10px 0 5px 0 !important;
            }
            
            .badge-image {
                max-width: 80px !important;
                margin: 0 auto;
            }
            
            .menu-footer {
                text-align: center !important;
                margin-top: 20px !important;
                margin-bottom: 20px !important;
            }
            
            .menu-contact p {
                text-align: center !important;
                font-size: 0.85rem !important;
                margin: 8px 0 !important;
            }
            
            .menu-social {
                justify-content: center !important;
                margin-top: 15px !important;
            }
            
            .close-menu {
                top: 15px !important;
                right: 20px !important;
                font-size: 40px !important;
            }
        }
        
        /* Extra small devices (phones, 480px and down) */
        @media (max-width: 480px) {
            .fullscreen-menu-container {
                padding: 15px 20px !important;
            }
            
            .fullscreen-menu-content {
                margin-top: 30px !important;
                gap: 20px !important;
            }
            
            .menu-links {
                gap: 15px !important;
            }
            
            .menu-links a {
                font-size: 1.1rem !important;
                padding: 8px 0;
            }
            
            .badge-image {
                max-width: 70px !important;
            }
            
            .menu-contact p {
                font-size: 0.75rem !important;
                margin: 6px 0 !important;
            }
            
            .menu-social a {
                font-size: 1.2rem !important;
            }
            
            .close-menu {
                font-size: 36px !important;
                top: 10px !important;
                right: 15px !important;
            }
        }
        
        /* Small devices (375px and down) */
        @media (max-width: 375px) {
            .menu-links a {
                font-size: 1rem !important;
            }
            
            .fullscreen-menu-content {
                margin-top: 25px !important;
                gap: 15px !important;
            }
            
            .badge-image {
                max-width: 60px !important;
            }
        }
        
        /* Landscape mode on mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .fullscreen-menu-content {
                margin-top: 20px !important;
                gap: 15px !important;
            }
            
            .menu-links {
                gap: 12px !important;
            }
            
            .menu-links a {
                font-size: 1rem !important;
                padding: 5px 0;
            }
            
            .menu-badge {
                margin: 5px 0 !important;
            }
            
            .badge-image {
                max-width: 55px !important;
            }
            
            .menu-footer {
                margin-top: 10px !important;
            }
            
            .menu-contact p {
                font-size: 0.7rem !important;
                margin: 4px 0 !important;
            }
        }


                       /* ===== DESKTOP NAVIGATION - ACTIVE LINK WITH BLACK BOX (NO HOVER) ===== */
        .nav-links a {
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 16px !important;
            border-radius: 8px;
        }
        
        /* Active link gets black box background - ONLY when clicked/active */
        .nav-links a.active {
            background-color: black !important;
            color: white !important;
            border-radius: 8px;
        }
        
        /* Remove gradient underline for active links */
        .nav-links a.active::before {
            display: none !important;
        }
        
        /* Hover effect - NO black box, just subtle background */
        .nav-links a:hover {
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 8px;
        }
        
        /* For MacBook and desktop sizes */
        @media (min-width: 769px) {
            .nav-links {
                gap: clamp(10px, 1vw, 20px);
            }
            
            .nav-links a {
                font-size: clamp(0.85rem, 1.1vw, 0.95rem);
                padding: 6px 14px !important;
            }
        }

        /* ===== HAMBURGER MENU - PERMANENT FADING LINES UNDER LINKS ===== */
        @media (max-width: 768px) {
            .fullscreen-menu-container {
                padding: 20px 24px !important;
                justify-content: flex-start !important;
            }
            
            .fullscreen-menu-content {
                justify-content: flex-start !important;
                margin-top: 40px !important;
                gap: 30px !important;
            }
            
            .menu-links {
                align-items: center !important;
                gap: 20px !important;
                margin-top: 0 !important;
            }
            
            .menu-links a {
                font-size: 1.3rem !important;
                font-weight: 500 !important;
                position: relative;
                display: inline-block;
                padding: 10px 0;
                text-align: center;
                color: white;
                text-decoration: none;
            }
            
            /* PERMANENT fading line - always visible, not just on hover */
            .menu-links a::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 100%;
                height: 2px;
                background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.5), transparent);
                transform: scaleX(1);
                opacity: 0.5;
            }
            
            /* Make active link line more visible */
            .menu-links a.active::after {
                opacity: 1;
                background: linear-gradient(90deg, white, white, transparent);
            }
            
            .menu-badge {
                text-align: center !important;
                margin: 10px 0 5px 0 !important;
            }
            
            .badge-image {
                max-width: 80px !important;
                margin: 0 auto;
            }
            
            .menu-footer {
                text-align: center !important;
                margin-top: 20px !important;
                margin-bottom: 20px !important;
            }
            
            .menu-contact p {
                text-align: center !important;
                font-size: 0.85rem !important;
                margin: 8px 0 !important;
            }
            
            .menu-social {
                justify-content: center !important;
                margin-top: 15px !important;
            }
            
            .close-menu {
                top: 15px !important;
                right: 20px !important;
                font-size: 40px !important;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 480px) {
            .fullscreen-menu-container {
                padding: 15px 20px !important;
            }
            
            .fullscreen-menu-content {
                margin-top: 30px !important;
                gap: 20px !important;
            }
            
            .menu-links {
                gap: 15px !important;
            }
            
            .menu-links a {
                font-size: 1.1rem !important;
                padding: 8px 0;
            }
            
            .badge-image {
                max-width: 70px !important;
            }
            
            .menu-contact p {
                font-size: 0.75rem !important;
                margin: 6px 0 !important;
            }
            
            .close-menu {
                font-size: 36px !important;
            }
        }
        
        /* Small devices */
        @media (max-width: 375px) {
            .menu-links a {
                font-size: 1rem !important;
            }
            
            .badge-image {
                max-width: 60px !important;
            }
        }
        
        /* Landscape mode */
        @media (max-width: 768px) and (orientation: landscape) {
            .fullscreen-menu-content {
                margin-top: 20px !important;
                gap: 15px !important;
            }
            
            .menu-links {
                gap: 12px !important;
            }
            
            .menu-links a {
                font-size: 1rem !important;
                padding: 5px 0;
            }
            
            .badge-image {
                max-width: 55px !important;
            }
        }