     @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,800;1,400&family=Inter:wght@300;600&display=swap');

        :root {
            --bg: #F5F5F3;
            --dark: #1A1A1A;
            --accent: #334155;
            --glass: rgba(255, 255, 255, 0.4);
            --white: #ffffff;
        /*--gold: #334155;*/
        --gold:#334155;
        --dark: #1A1A1A;
        --light-gray: #F8F8F8;
        --border-color: #E0E0E0;
          --soft-gray: #F4F4F4;
        }

        body {
            background-color: var(--bg);
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            margin: 0;
            overflow-x: hidden;
        }

    .visual-mask {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-img.active {
    position: relative;
    opacity: 1;
}
        .bg-glow {
            position: fixed;
            top: 0;
            right: 0;
            width: 50vw;
            height: 100vh;
            background: radial-gradient(circle at 70% 30%, rgba(198, 161, 91, 0.1), transparent 70%);
            z-index: -1;
        }

.v-main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    border-bottom: 1px solid #f0f0f0;
}

.v-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v-logo {
    width:200px;
}

.v-logo img {
    width:200px;
}

.v-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.v-nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.v-nav-links a:hover {
    color: var(--accent);
}

.v-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v-nav-btn {
    background: var(--dark);
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.v-nav-btn:hover {
    background: var(--accent);
}

.v-menu-trigger {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.v-menu-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: 0.3s;
}

.v-mobile-dropdown {
    display: none;
    background: #ffffff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.v-mobile-links {
    list-style: none;
    padding: 20px 25px;
}

.v-mobile-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
}

.v-mobile-cta {
    color: var(--accent) !important;
    font-weight: 700 !important;
}

@media (max-width: 991px) {
    .v-desktop-nav, .v-hide-mobile {
        display: none;
    }
    
    .v-menu-trigger {
        display: flex;
    }
    
    .v-mobile-dropdown {
        display: block;
    }
    
    .v-main-header.is-open .v-mobile-dropdown {
        max-height: 450px;
        border-top: 1px solid #f0f0f0;
    }

    .v-main-header.is-open .v-menu-trigger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .v-main-header.is-open .v-menu-trigger span:nth-child(2) {
        opacity: 0;
    }

    .v-main-header.is-open .v-menu-trigger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


.elite-footer {
    background: #0f0f0f;
    color: white;
    padding-top: 60px;
    margin-top: 100px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}



.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 14px;
}



@media (max-width: 900px) {

    
   
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
    .hero {
            position: relative;
            
            display: flex;
            align-items: center;
            padding: 100px 8%;
        }

        .hero-container {
            display: flex ;
            max-width: 1200px;
            align-items: center;
            width: 100%;
        }

        .hero-left {
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeIn 1s ease forwards;
        }

        .hero-tag {
            font-size: 0.75rem;
            letter-spacing: 3px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1;
            margin: 0;
        }

        .hero h1 span {
            font-style: italic;
            color: var(--accent);
            position: relative;
            display: inline-block;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
            animation: lineExpand 1.5s forwards 0.5s;
        }

        .hero-subtext {
            color: #666;
            margin: 30px 0;
            font-size: 1.1rem;
            max-width: 480px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 18px 34px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            text-decoration: none;
            text-transform: uppercase;
        }

        .btn-primary {
            background: var(--dark);
            color: white;
            border: 1px solid var(--dark);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--dark);
            transform: translateY(-5px);
        }

        .btn-outline {
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--dark);
        }

        .btn-outline:hover {
            border-color: var(--dark);
            background: var(--dark);
            color: white;
        }

  .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 600px;
        }


        .image-wrapper {
            position: relative;
            width: 460px;
            height: 460px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }


        .visual-mask {
            position: relative;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
        }

        .visual-mask img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9) contrast(1.1);
            animation: slowZoom 12s ease-in-out infinite alternate;
        }


        .rotating-text-ring {
            position: absolute;
            width: 540px;
            height: 540px;
            border-radius: 50%;
            animation: rotateText 30s linear infinite;
            z-index: 1;
        }

        .rotating-text-ring svg {
            width: 100%;
            height: 100%;
            fill: var(--accent);
            font-size: 5px;
            letter-spacing: 1px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .dashed-border-ring {
            position: absolute;
            width: 430px;
            height: 430px;
            border: 2px dashed var(--accent);
            border-radius: 50%;
            opacity: 0.6;
            animation: rotateBorder 40s linear infinite;
        }



        @keyframes rotateBorder {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes rotateText {
            from {
                transform: rotate(360deg);
            }

            to {
                transform: rotate(0deg);
            }
        }

        @keyframes rotateOuter {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }
       
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
 .visual-mask {
    position: relative;
    width: 100% !important;
    height: 350px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
        border-radius: 0; 
}

.hero-img.active {
    opacity: 1;
}

/* Heading on image */
.image-heading {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    padding: 8px 14px;
    border-radius: 8px;
}

.btn {
    position: relative;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    outline: none !important;
    border: none !important;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}




.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(198, 161, 91, 0.3), 
        transparent
    );
    transition: 0.8s;
}


.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(198, 161, 91, 0.2);
    color: white;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.btn-outline {
    background: transparent;
    color: var(--dark);
}


.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}


.btn-outline::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--accent);
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}


.btn-outline-inner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--accent);
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.btn-outline:hover::before {
    border-color: var(--accent);
    opacity: 0.2;
}

.btn-outline:hover::after, 
.btn-outline:hover .btn-outline-inner {
    width: 100%;
    height: 100%;
}


.hero-buttons .btn {
    opacity: 0;
    animation: buttonStagger 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.btn-primary { animation-delay: 0.8s !important; }
.btn-outline { animation-delay: 1s !important; }

@keyframes buttonStagger {
    from { 
        opacity: 0; 
        transform: translateY(30px) rotateX(-15deg); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) rotateX(0); 
    }
}
        @media (max-width: 1200px) {

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .image-wrapper {
        width: 420px;
        height: 420px;
    }

    .visual-mask {
        width: 340px;
        height: 340px;
    }

    .dashed-border-ring {
        width: 390px;
        height: 390px;
    }

    .rotating-text-ring {
        width: 500px;
        height: 500px;
    }
}
     @media (max-width: 992px) {

    .hero {
        padding: 60px 5%;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        height: auto;
        margin-top: 60px;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-wrapper {
        width: 380px;
        height: 380px;
    }

    .visual-mask {
        width: 300px;
        height: 300px;
    }

    .dashed-border-ring {
        width: 340px;
        height: 340px;
    }

    .rotating-text-ring {
        width: 440px;
        height: 440px;
    }

    .bg-glow {
        display: none;
    }
}

@media (max-width: 576px) {

    .hero h1 {
        font-size: 31px;
        line-height: 1.2;
    }
.importance-header h2, .arch-header h2{
    font-family: 'Playfair Display', serif;
    font-size: 27px !important;
}
    .hero-subtext {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        text-align: center;
    }

    .image-wrapper {
        width: 300px;
        height: 300px;
    }

    .visual-mask {
        width: 230px;
        height: 230px;
    }

    .dashed-border-ring {
        width: 250px;
        height: 250px;
    }

    .rotating-text-ring {
        width: 320px;
        height: 320px;
    }

    .rotating-text-ring svg {
        letter-spacing: 1.1px;
    }
}


.visual-roadmap {
    padding: 100px 5%;
    background: #ffffff;

}

.i-container {
    max-width: 900px; 
    margin: 0 auto;
}

.v-header {
    text-align: center;
    margin-bottom: 60px;
}

.v-tag {
    color: #334155; 
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.v-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-top: 10px;
}

.v-stack {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.v-item {
    display: flex;
    background: #ffffff;
    border-radius: 12px; 
    overflow: hidden;
    height: 240px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
}

.v-item.reverse {
    flex-direction: row-reverse;
}


.v-img-side {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.v-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); 
    transition: all 0.8s ease;
}

.v-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    opacity: 0.3;
    z-index: 1;
}


.v-text-side {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.v-step-no {
    color: #334155;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 5px;
}

.v-text-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 15px;
}

.v-text-side p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.v-img-side::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: #fff;
    z-index: 2;
}

.v-item.reverse .v-img-side::after {
    right: auto;
    left: -10px;
}


.v-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(198, 161, 91, 0.1);
    border-color: #334155;
}

.v-item:hover .v-img-side img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.v-item:hover .v-badge {
    opacity: 0.6;
    color: #334155;
}

.v-item:hover h3 {
    color: #334155;
}

.v-item {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v-item.show-card {
    opacity: 1;
    transform: translateX(0) !important;
}

.v-item:not(.reverse) {
    transform: translateX(-100px);
}

.v-item.reverse {
    transform: translateX(100px);
}

@media (max-width: 768px) {
    .v-item:not(.reverse), .v-item.reverse {
        transform: translateY(30px); 
    }
}


@media (max-width: 768px) {
    .v-item, .v-item.reverse {
        flex-direction: column;
        height: auto;
    }
   .v-text-side {
        width: auto;
    }
    html{
        overflow-x: hidden;
    }
    .v-img-side {
        height: 200px;
        width: 100%;
    }
    .v-img-side::after { display: none; }
}
.v-stats-section {
    padding: 60px 5%;
    background: #1a1a1a; 
    color: #ffffff;
}

.v-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.v-stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.v-counter {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #334155; 
    margin-bottom: 5px;
    font-weight: 700;
}

.v-stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cccccc;
}


.v-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(198, 161, 91, 0.3);
}


.v-stat-item:hover .v-counter {
    transform: scale(1.1);
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .v-stats-container {
        flex-direction: column;
        gap: 40px;
    }
    .v-stat-divider {
        display: none;
    }
}
.arch-services {
    padding: 140px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}




.arch-container { position: relative; z-index: 1; max-width: 1200px;     margin: 0 auto;}


.arch-header {
    margin-bottom: 80px;
    border-left: 4px solid #334155;
    padding-left: 25px;
}

.arch-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin: 5px 0;
}


.arch-header .header-tag {
    color: #334155;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 80px 40px;
}

.arch-card {
    position: relative;
    transition: transform 0.4s ease;
}

.arch-img {
    width: 90%;
    height: 450px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #f7f7f7;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.arch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9);
    transition: 1.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.arch-number {
    position: absolute;
    top: -30px;
    right: 10%;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 900;
    -webkit-text-stroke: 1px #e0e0e0;
    color: transparent;
    z-index: 0;
    transition: 0.6s ease;
}

.arch-info {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 75%;
    background: #fff;
    padding: 45px;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
}


.arch-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: #334155;
    transition: 0.6s ease;
}

.arch-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.short-desc {
    color: #334155;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s ease;
}

.expand-content p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.8;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.arch-card:hover .arch-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    width: 95%;
}

.arch-card:hover .arch-img img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.arch-card:hover .arch-info {
    transform: translateY(-20px);
    box-shadow: 25px 25px 60px rgba(198, 161, 91, 0.12);
   
}

.arch-card:hover .arch-info::before {
    height: 100%;
}

.arch-card:hover .arch-number {
    color: rgba(198, 161, 91, 0.05);
    -webkit-text-stroke: 1px rgba(198, 161, 91, 0.2);
    transform: translateX(-20px);
}

.arch-card:hover .expand-content {
    max-height: 200px;
    opacity: 1;
}


.animate-scroll {
    opacity: 0;
    transform: translateY(100px);
    transition: 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.animate-scroll.show {
    opacity: 1;
    transform: translateY(0);
}



.arch-card {
    position: relative;
    height: 550px;
    display: flex;
    flex-direction: column;
}

.arch-img {
    width: 90%;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.arch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.arch-info {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 75%;
    background: #fff;
    padding: 35px;
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 10px 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.arch-card:hover .arch-img img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.arch-card:hover .arch-info {
    bottom: 50px;
    z-index: 10;
    border-color: #334155;
    box-shadow: 0 30px 60px rgba(198, 161, 91, 0.15);
}

.arch-card:hover .expand-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}


@media (max-width: 768px) {
    .arch-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .arch-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .arch-card {
        height: auto;
        margin-bottom: 40px;
    }

    .arch-img {
        width: 100%;
        height: 280px;
    }

    .arch-info {
        position: relative;
        width:auto;
        top: 0;
        margin: -50px auto 0;
        right: auto;
        padding: 30px 20px;
        transform: none !important;
    }

    .expand-content {
        max-height: none;
        opacity: 1;
        margin-top: 15px;
    }

    .arch-number {
        font-size: 3.5rem;
        top: 10px;
        left: 15px;
    }
}
:root {
    --accent: #334155;
    --hover-gold: #43608a;
    --bg-light: #f8f9fa; 
}

.kinetic-process {
    padding: 100px 0;
    background: #fff
}

.process-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px; 
    padding: 0 20px;
}

.k-item {
    flex: 1;
    padding: 40px 25px;
    text-align: center;
    background: white;
    border: 1px solid #eee; /* Light border around each box */
    border-radius: 15px; /* Slightly rounded corners */
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Icon Background Circle */
.k-icon-bg {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%; /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.k-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.k-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Hover Effects */
.k-item:hover {
    transform: translateY(-10px); 
    border-color: var(--hover-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.k-item:hover .k-icon-bg {
    background-color: var(--accent); 
    color: white; 
    transform: rotateY(180deg); 
}

.k-item:hover h3 {
    color: var(--hover-gold);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .process-container { flex-wrap: wrap; }
    .k-item { flex: 0 0 calc(50% - 10px); } 
}

@media (max-width: 600px) {
    .k-item { flex: 0 0 100%; }
}

:root { --accent: #334155; }

.kinetic-sticky-section {
    background: #ffffff;
    position: relative;
    padding-top: 100px;
}

.s-top-header {
    text-align: center;
    margin-bottom: 20px;
}

.s-top-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 0;
}

.s-top-header h2 strong {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.sticky-wrapper {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
}

.s-left {
    flex: 1;
    height: calc(100vh - 100px);
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.s-visual-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-orb-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border:1.6px dashed rgba(51, 65, 85, 0.5) !important;
    border-radius: 50%;
    animation: rotateOrbital 20s linear infinite;
}

.s-icon-display {
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 2;
}

.s-icon-box {
    position: absolute;
    inset: 0;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-icon-box.active {
    opacity: 1;
    transform: scale(1.2) rotate(0deg);
}

.s-icon-box svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(198, 161, 91, 0.2));
}

.s-progress-container {
    margin-top: 40px;
    text-align: center;
}

.s-status-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 15px;
}

.s-line-bg {
    width: 120px;
    height: 2px;
    background: #f0f0f0;
    overflow: hidden;
}

.s-line-fill {
    height: 100%;
    width: 25%;
    background: var(--accent);
    transition: width 0.6s ease;
}

.s-right {
    flex: 1.2;
    padding-left: 20px;
}

.s-content-block {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.15;
    transition: all 0.6s ease;
}

.s-content-block.active-view {
    opacity: 1;
}

.s-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.s-content-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 15px 0;
}

.s-content-block p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 450px;
}

@keyframes rotateOrbital {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.s-mobile-icon {
    display: none;
}

@media (max-width: 900px) {
    .sticky-wrapper { 
        flex-direction: column; 
    }

    .s-left { 
        display: none !important; 
    }

    .s-right { 
        padding: 0 20px; 
    }

    .s-content-block { 
        height: auto; 
        padding: 40px 0; 
        opacity: 1; 
        text-align: center; 
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .s-content-block:last-child {
        border-bottom: none;
    }

    .s-mobile-icon {
        display: flex;
        width: 80px;
        height: 80px;
        color: var(--accent);
        margin: 15px 0;
        justify-content: center;
        align-items: center;
        animation: pulseMobile 2s infinite ease-in-out;
    }

    .s-mobile-icon svg {
        width: 100%;
        height: 100%;
    }

    .s-top-header h2 { 
        font-size: 2.5rem; 
    }
}

@keyframes pulseMobile {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}
  :root {
            --accent: #334155;
        }

        .iso-info-section {
            padding: 100px 0;

            font-family: 'Inter', sans-serif;
        }

        .iso-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .iso-grid {
            display: flex;
            align-items: center;
            gap: 80px;
            margin-bottom: 80px;
        }

        .iso-visual {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .iso-circle-dec {
            width: 250px;
            height: 250px;
            border: 1px solid #eee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .iso-circle-dec img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .iso-circle-dec::before {
            content: '';
            position: absolute;
            width: 105%;
            height: 105%;
            border: 1px dashed var(--accent);
            border-radius: 50%;
            animation: rotateOrbital 20s linear infinite;
        }

        .iso-circle-dec span {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--accent);
            letter-spacing: 5px;
        }

        .iso-text {
            flex: 1.5;
        }

        .iso-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin: 10px 0 25px;
            color: #1a1a1a;
        }

        .iso-text h2 strong {
            font-weight: 400;
            font-style: italic;
            color: var(--accent);
        }

        .iso-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .iso-divider {
            height: 1px;
            background: linear-gradient(to right, #334155, #775b28, #000000b0);
            margin: 60px 0;
        }

        .importance-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .importance-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
        }

        .importance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1);
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .imp-card {
            padding: 40px;
            background: #fdfdfd;
            border: 1px solid #f0f0f0;
            transition: all 0.4s ease;
        }

        .imp-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
        }

        .imp-icon {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
            font-weight: bold;
        }

        .imp-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .imp-card p {
            color: #777;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @media (max-width: 900px) {
            .iso-grid {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

            .importance-grid {
                grid-template-columns: 1fr;
            }

            .iso-text h2 {
                font-size: 2.5rem;
            }

            .iso-circle-dec {
                width: 180px;
                height: 180px;
            }
        }
        :root {
    --accent: #334155;
    --dark: #121212;
}

.v-elite-benefits {
    padding: 100px 0;
    overflow: hidden;
}

.v-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.v-header {
    text-align: center;
    margin-bottom: 80px;
}

.v-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.v-header h2 strong {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.v-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid #f0f0f0;
}

.v-elite-card {
    position: relative;
    padding: 80px 45px;
    background: #fff;
    border: 0.5px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.border-line {
    position: absolute;
    background: var(--accent);
    z-index: 10;
}

.border-line.top {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    animation: runTop 3s linear infinite;
}

.border-line.right {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    animation: runRight 3s linear infinite;
    animation-delay: 0.75s;
}

.border-line.bottom {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    animation: runBottom 3s linear infinite;
    animation-delay: 1.5s;
}

.border-line.left {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    animation: runLeft 3s linear infinite;
    animation-delay: 2.25s;
}

@keyframes runTop {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes runRight {
    0% { top: -100%; }
    50%, 100% { top: 100%; }
}

@keyframes runBottom {
    0% { right: -100%; }
    50%, 100% { right: 100%; }
}

@keyframes runLeft {
    0% { bottom: -100%; }
    50%, 100% { bottom: 100%; }
}

.v-bg-anim {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(198, 161, 91, 0.05) 0%, transparent 50%);
    transition: all 0.6s ease;
}

.v-card-content {
    position: relative;
    z-index: 5;
}

.v-icon-float {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: floatIcon 4s ease-in-out infinite;
}

.v-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    transition: 0.4s;
}

.v-card-content p {
    color: #777;
    line-height: 1.8;
    font-size: 1rem;
    transition: 0.4s;
    margin-bottom: 25px;
}

.v-card-line {
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.6s ease;
}

.v-elite-card:hover {
    background: var(--dark);
    transform: translateY(-5px);
    z-index: 15;
}

.v-elite-card:hover .v-card-content h3  {
    color: #fff !important;
}

.v-elite-card:hover p {
    color: #999;
}

.v-elite-card:hover .v-card-line {
    width: 100%;
}

.v-elite-card:hover .v-icon-float {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .v-header h2 { font-size: 2.8rem; }
    .v-elite-card { padding: 60px 30px; }
}
:root { --accent: #334155; --dark: #121212; }

.v-faq-section { padding: 120px 0; background-color: var(--white); }
.v-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.v-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.v-faq-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
}

.v-faq-info h2 strong { font-weight: 400; font-style: italic; color: var(--accent); }
.v-faq-info p { color: #666; font-size: 1.1rem; line-height: 1.8; }

.v-faq-stats { margin-top: 40px; border-top: 1px solid #eee; padding-top: 30px; }
.stat-item strong { display: block; font-size: 2.5rem; color: var(--accent); font-family: 'Playfair Display', serif; }


.v-faq-list { display: flex; flex-direction: column; gap: 15px; }

.v-faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.v-faq-trigger {
    padding: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    gap: 20px;
}

.v-faq-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
}

.v-faq-trigger h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    transition: 0.3s;
}

.v-faq-icon {
    width: 20px;
    height: 2px;
    background: #ccc;
    position: relative;
    transition: 0.4s;
}

.v-faq-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: rotate(90deg);
}

.v-faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px 0 60px;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.v-faq-content p { color: #777; line-height: 1.7; padding-bottom: 30px; margin: 0; }


.v-faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.v-faq-item.active .v-faq-trigger h3 { color: var(--accent); }

.v-faq-item.active .v-faq-content {
    max-height: 500px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.v-faq-item.active .v-faq-icon { background: var(--accent); transform: rotate(180deg); }
.v-faq-item.active .v-faq-icon::after { display: none; }

@media (max-width: 991px) {
    .v-faq-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .v-faq-info h2 { font-size: 2.5rem; }
}

:root { --accent: #334155; --dark: #0f0f0f; }

.v-cta-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.v-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(85 105 133 / 25%) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

.v-cta-content { position: relative; z-index: 5; max-width: 800px; margin: 0 auto; }

.v-cta-content .v-tag { color: var(--accent); letter-spacing: 3px; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; }

.v-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fff;
    margin: 25px 0;
    line-height: 1.1;
}

.v-cta-content h2 strong { font-weight: 400; font-style: italic; color: var(--accent); }

.v-cta-content p { color: #aaa; font-size: 1.2rem; margin-bottom: 50px; line-height: 1.8; }

.v-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.v-btn-prime {
    position: relative;
    padding: 22px 45px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    overflow: hidden;
    transition: 0.4s;
}

.v-btn-prime span { position: relative; z-index: 2; }

.v-btn-wave {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,0.2);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
    border-radius: 40%;
}

.v-btn-prime:hover .v-btn-wave { top: -50%; transform: translateX(-50%) rotate(360deg); }
.v-btn-prime:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(198, 161, 91, 0.3); }


.v-btn-outline {
    padding: 20px 45px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    border-radius: 2px;
}

.v-btn-outline:hover { background: #fff; color: var(--dark); }

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@media (max-width: 768px) {
    .v-cta-content h2 { font-size: 2.5rem; }
    .v-cta-actions { flex-direction: column; width: 100%; }
    .v-btn-prime, .v-btn-outline { width: 100%; }
}     @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,800;1,400&family=Inter:wght@300;600&display=swap');

        :root {
            --bg: #F5F5F3;
            --dark: #1A1A1A;
            --accent: #334155;
            --glass: rgba(255, 255, 255, 0.4);
        }

        body {
            background-color: var(--bg);
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            margin: 0;
            overflow-x: hidden;
        }

    
        .bg-glow {
            position: fixed;
            top: 0;
            right: 0;
            width: 50vw;
            height: 100vh;
            background: radial-gradient(circle at 70% 30%, rgba(198, 161, 91, 0.1), transparent 70%);
            z-index: -1;
        }

 :root {
    --accent: #334155;
    --dark: #1a1a1a;
}

.v-main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    border-bottom: 1px solid #f0f0f0;
}

.v-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.v-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.v-nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.v-nav-links a:hover {
    color: var(--accent);
}

.v-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v-nav-btn {
    background: var(--dark);
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.v-nav-btn:hover {
    background: var(--accent);
}

.v-menu-trigger {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.v-menu-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: 0.3s;
}

.v-mobile-dropdown {
    display: none;
    background: #ffffff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.v-mobile-links {
    list-style: none;
    padding: 20px 25px;
}

.v-mobile-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
}

.v-mobile-cta {
    color: var(--accent) !important;
    font-weight: 700 !important;
}

@media (max-width: 991px) {
    .v-desktop-nav, .v-hide-mobile {
        display: none;
    }
    
    .v-menu-trigger {
        display: flex;
    }
    
    .v-mobile-dropdown {
        display: block;
    }
    
    .v-main-header.is-open .v-mobile-dropdown {
        max-height: 450px;
        border-top: 1px solid #f0f0f0;
    }

    .v-main-header.is-open .v-menu-trigger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .v-main-header.is-open .v-menu-trigger span:nth-child(2) {
        opacity: 0;
    }

    .v-main-header.is-open .v-menu-trigger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


.elite-footer {
    background: var(--accent);
    color: white;
    padding-top: 60px;
    margin-top: 100px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-col h3,
.footer-col h4 {
    /*color: black;*/
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    /*color: black;*/
    transition: 0.3s;
}



.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgb(14 13 7 / 20%);
    font-size: 14px;
}



@media (max-width: 900px) {

    
   
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
    .hero {
            position: relative;
            
            display: flex;
            align-items: center;
            padding: 100px 8%;
        }

        .hero-container {
            display: flex ;
            max-width: 1200px;
            align-items: center;
            width: 100%;
        }

        .hero-left {
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeIn 1s ease forwards;
        }

        .hero-tag {
            font-size: 0.75rem;
            letter-spacing: 3px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1;
            margin: 0;
        }

        .hero h1 span {
            font-style: italic;
            color: var(--accent);
            position: relative;
            display: inline-block;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
            animation: lineExpand 1.5s forwards 0.5s;
        }

        .hero-subtext {
            color: #666;
            margin: 30px 0;
            font-size: 1.1rem;
            max-width: 480px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 18px 34px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            text-decoration: none;
            text-transform: uppercase;
        }

        .btn-primary {
            background: var(--dark);
            color: white;
            border: 1px solid var(--dark);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--dark);
            transform: translateY(-5px);
        }

        .btn-outline {
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--dark);
        }

        .btn-outline:hover {
            border-color: var(--dark);
            background: var(--dark);
            color: white;
        }

  .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 600px;
        }


        .image-wrapper {
            position: relative;
            width: 460px;
            height: 460px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }


        .visual-mask {
            position: relative;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
        }

        .visual-mask img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9) contrast(1.1);
            animation: slowZoom 12s ease-in-out infinite alternate;
        }


        .rotating-text-ring {
            position: absolute;
            width: 540px;
            height: 540px;
            border-radius: 50%;
            animation: rotateText 30s linear infinite;
            z-index: 1;
        }

        .rotating-text-ring svg {
            width: 100%;
            height: 100%;
            fill: var(--accent);
            font-size: 5px;
            letter-spacing: 1.5px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .dashed-border-ring {
            position: absolute;
            width: 430px;
            height: 430px;
            border: 2px dashed var(--accent);
            border-radius: 50%;
            opacity: 0.6;
            animation: rotateBorder 40s linear infinite;
        }



        @keyframes rotateBorder {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes rotateText {
            from {
                transform: rotate(360deg);
            }

            to {
                transform: rotate(0deg);
            }
        }

        @keyframes rotateOuter {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }
       
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
 

.btn {
    position: relative;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    outline: none !important;
    border: none !important;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}




.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(198, 161, 91, 0.3), 
        transparent
    );
    transition: 0.8s;
}


.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(198, 161, 91, 0.2);
    color: white;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.btn-outline {
    background: transparent;
    color: var(--dark);
}


.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}


.btn-outline::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--accent);
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}


.btn-outline-inner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--accent);
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline:hover {
    color: white;
    transform: translateY(-5px);
}

.btn-outline:hover::before {
    border-color: var(--accent);
    opacity: 0.2;
}

.btn-outline:hover::after, 
.btn-outline:hover .btn-outline-inner {
    width: 100%;
    height: 100%;
}


.hero-buttons .btn {
    opacity: 0;
    animation: buttonStagger 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.btn-primary { animation-delay: 0.8s !important; }
.btn-outline { animation-delay: 1s !important; }

@keyframes buttonStagger {
    from { 
        opacity: 0; 
        transform: translateY(30px) rotateX(-15deg); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) rotateX(0); 
    }
}
        @media (max-width: 1200px) {

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .image-wrapper {
        width: 420px;
        height: 420px;
    }

    .visual-mask {
        width: 340px;
        height: 340px;
    }

    .dashed-border-ring {
        width: 390px;
        height: 390px;
    }

    .rotating-text-ring {
        width: 500px;
        height: 500px;
    }
}
     @media (max-width: 992px) {

    .hero {
        padding: 100px 5%;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        height: auto;
        margin-top: 60px;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-wrapper {
        width: 380px;
        height: 380px;
    }

    .visual-mask {
        width: 300px;
        height: 300px;
    }

    .dashed-border-ring {
        width: 340px;
        height: 340px;
    }

    .rotating-text-ring {
        width: 440px;
        height: 440px;
    }

    .bg-glow {
        display: none;
    }
}

@media (max-width: 576px) {

    .hero h1 {
        font-size: 29px;
        line-height: 1.2;
    }
    .v-cta-section {
        text-align: left !important;
    }
    .s-content-block{
                text-align: left !important;
                        align-items: flex-start !important;
    }
    .imp-card h3 {
    font-size: 1.3rem !important;
    }
.importance-header h2 {
    font-size: 27px !important;
}
.arch-info h3 {
  
    font-size: 1.3rem !important;
}
.arch-header h2 {
    
    font-size: 1.7rem !important;
}
.v-card-content h3 {
    font-size: 1.5rem !important;
}
.short-desc {
    letter-spacing: 0px !important;
}
    .hero-subtext {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        text-align: center;
    }

    .image-wrapper {
        width: 300px;
        height: 300px;
    }

    .visual-mask {
        width: 230px;
        height: 230px;
    }

    .dashed-border-ring {
        width: 250px;
        height: 250px;
    }

    .rotating-text-ring {
        width: 320px;
        height: 320px;
    }

  
}


@media (max-width: 768px) {
    .v-item:not(.reverse), .v-item.reverse {
        transform: translateY(30px); 
    }
}


@media (max-width: 768px) {
    .v-item, .v-item.reverse {
        flex-direction: column;
        height: auto;
    }
   .v-text-side {
        width: auto;
    }
    html{
        overflow-x: hidden;
    }
    .v-img-side {
        height: 200px;
        width: 100%;
    }
    .v-img-side::after { display: none; }
}
.v-stats-section {
    padding: 60px 5%;
    background: #1a1a1a; 
    color: #ffffff;
}

.v-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.v-stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.v-counter {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #334155; 
    margin-bottom: 5px;
    font-weight: 700;
}

.v-stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cccccc;
}

  .v-counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155; 
    font-size: 50px;
    font-weight: 800;
  }
  .v-stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
  }
.v-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(198, 161, 91, 0.3);
}


.v-stat-item:hover .v-counter {
    transform: scale(1.1);
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .v-stats-container {
        flex-direction: column;
        gap: 40px;
    }
    .v-stat-divider {
        display: none;
    }
}
.arch-services {
    padding: 140px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}




.arch-container { position: relative; z-index: 1; max-width: 1200px;     margin: 0 auto;}


.arch-header {
    margin-bottom: 80px;
    border-left: 4px solid #334155;
    padding-left: 25px;
}

.arch-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin: 5px 0;
}


.arch-header .header-tag {
    color: #334155;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 80px 40px;
}

.arch-card {
    position: relative;
    transition: transform 0.4s ease;
}

.arch-img {
    width: 90%;
    height: 450px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #f7f7f7;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.arch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9);
    transition: 1.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.arch-number {
    position: absolute;
    top: -30px;
    right: 10%;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 900;
    -webkit-text-stroke: 1px #e0e0e0;
    color: transparent;
    z-index: 0;
    transition: 0.6s ease;
}

.arch-info {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 75%;
    background: #fff;
    padding: 45px;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
}


.arch-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: #334155;
    transition: 0.6s ease;
}

.arch-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.short-desc {
    color: #334155;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    display: block;
    margin-bottom: 15px;
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s ease;
}

.expand-content p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.8;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.arch-card:hover .arch-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    width: 95%;
}

.arch-card:hover .arch-img img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.arch-card:hover .arch-info {
    transform: translateY(-20px);
    box-shadow: 25px 25px 60px rgba(198, 161, 91, 0.12);
   
}

.arch-card:hover .arch-info::before {
    height: 100%;
}

.arch-card:hover .arch-number {
    color: rgba(198, 161, 91, 0.05);
    -webkit-text-stroke: 1px rgba(198, 161, 91, 0.2);
    transform: translateX(-20px);
}

.arch-card:hover .expand-content {
    max-height: 200px;
    opacity: 1;
}


.animate-scroll {
    opacity: 0;
    transform: translateY(100px);
    transition: 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.animate-scroll.show {
    opacity: 1;
    transform: translateY(0);
}



.arch-card {
    position: relative;
    height: 550px;
    display: flex;
    flex-direction: column;
}

.arch-img {
    width: 90%;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.arch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.arch-info {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 75%;
    background: #fff;
    padding: 35px;
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 10px 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.arch-card:hover .arch-img img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.arch-card:hover .arch-info {
    bottom: 50px;
    z-index: 10;
    border-color: #334155;
    box-shadow: 0 30px 60px rgba(198, 161, 91, 0.15);
}

.arch-card:hover .expand-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}


@media (max-width: 768px) {
    .arch-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .arch-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .arch-card {
        height: auto;
        margin-bottom: 40px;
    }

    .arch-img {
        width: 100%;
        height: 280px;
    }

    .arch-info {
        position: relative;
        width:auto;
        top: 0;
        margin: -50px auto 0;
        right: auto;
        padding: 30px 20px;
        transform: none !important;
    }

    .expand-content {
        max-height: none;
        opacity: 1;
        margin-top: 15px;
    }

    .arch-number {
        font-size: 3.5rem;
        top: 10px;
        left: 15px;
    }
}
:root {
    --accent: #334155;
}

.kinetic-process {
   
    padding: 100px 0;
}
.k-header {
    margin-bottom: 60px;
    text-align: center;
}
.v-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.k-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
}

.k-header h2 strong {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}
.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /*border-top: 1px solid var(--accent);*/
    /*border-left: 1px solid var(--accent);*/
}

.k-item {
    display: flex;
    width: 50%;
    /*border-bottom: 1px solid var(--accent);*/
    border: 1px solid var(--accent);
    min-height: 300px;
    position: relative;
    overflow: hidden;
    background: white;
    box-sizing: border-box;
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.k-left {
    width: 35%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
}

.k-bg-num {
    position: absolute;
    color: #0000001c;
    -webkit-text-stroke: 1px #eeeeee; 
    transition: all 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.k-label {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 0.7rem;
    color: var(--accent);
    transform: rotate(180deg);
    z-index: 2;
}

.k-right {
    width: 65%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.k-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: 0.5s;
}

.k-right p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.k-item:hover {
    background: #fbfbfb;
}

.k-item:hover .k-bg-num {
       color: rgb(198 161 91 / 37%);
    transform: scale(1.2) rotate(-5deg);
    -webkit-text-stroke: 1px var(--accent);
}

.k-item:hover .k-right h3 {
    color: var(--accent);
    transform: translateX(10px);
}

.k-item:hover .k-label {
    letter-spacing: 12px;
}

@media (max-width: 900px) {
    .k-item { width: 100%; }
    .k-left { min-height: 150px; border-right: none; border-bottom: 1px solid #f0f0f0; }
    .k-right { padding: 40px 20px; }
}
@media (max-width: 900px) {
    .k-header h2 {
        font-size: 2.1rem;
    }

    .process-container {
        border-right: 1px solid var(--accent);
    }

    .k-item {
        width: 100%;
        flex-direction: column;
        min-height: auto;
    }

    .k-left {
        width: 100%;
        height: 120px;
        min-height: 120px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 0;
    }

    .k-label {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 5px;
    }

    .k-right {
        width: 100%;
        padding: 40px 10px;
        /* text-align: center; */
    }

    .k-right h3 {
        font-size: 1.8rem;
    }

    .k-item:hover .k-right h3 {
        transform: translateY(-5px);
    }
}

:root { --accent: #334155; }

.kinetic-sticky-section {
    background: #ffffff;
    position: relative;
    padding-top: 100px;
}

.s-top-header {
    text-align: center;
    margin-bottom: 20px;
}

.s-top-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 0;
}

.s-top-header h2 strong {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.sticky-wrapper {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
}

.s-left {
    flex: 1;
    height: calc(100vh - 100px);
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.s-visual-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-orb-ring {
    position: absolute;
    width: 100%;
    height: 100%;
       border: 1.6px dashed rgb(198 161 91 / 96%);
    border-radius: 50%;
    animation: rotateOrbital 20s linear infinite;
}

.s-icon-display {
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 2;
}

.s-icon-box {
    position: absolute;
    inset: 0;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-icon-box.active {
    opacity: 1;
    transform: scale(1.2) rotate(0deg);
}

.s-icon-box svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(198, 161, 91, 0.2));
}

.s-progress-container {
    margin-top: 40px;
    text-align: center;
}

.s-status-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 15px;
}

.s-line-bg {
    width: 120px;
    height: 2px;
    background: #f0f0f0;
    overflow: hidden;
}

.s-line-fill {
    height: 100%;
    width: 25%;
    background: var(--accent);
    transition: width 0.6s ease;
}

.s-right {
    flex: 1.2;
    padding-left: 20px;
}

.s-content-block {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.15;
    transition: all 0.6s ease;
}

.s-content-block.active-view {
    opacity: 1;
}

.s-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.s-content-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 15px 0;
}

.s-content-block p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 450px;
}

@keyframes rotateOrbital {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.s-mobile-icon {
    display: none;
}

@media (max-width: 900px) {
    .sticky-wrapper { 
        flex-direction: column; 
    }

    .s-left { 
        display: none !important; 
    }

    .s-right { 
        padding: 0 20px; 
    }

    .s-content-block { 
        height: auto; 
        padding: 40px 0; 
        opacity: 1; 
        text-align: center; 
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .s-content-block:last-child {
        border-bottom: none;
    }

    .s-mobile-icon {
        display: flex;
        width: 80px;
        height: 80px;
        color: var(--accent);
        margin: 15px 0;
        justify-content: center;
        align-items: center;
        animation: pulseMobile 2s infinite ease-in-out;
    }

    .s-mobile-icon svg {
        width: 100%;
        height: 100%;
    }

    .s-top-header h2 { 
        font-size: 2.5rem; 
    }
}

@keyframes pulseMobile {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}
  :root {
            --accent: #334155;
        }

        .iso-info-section {
            padding: 100px 0;

            font-family: 'Inter', sans-serif;
        }

        .iso-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .iso-grid {
            display: flex;
            align-items: center;
            gap: 80px;
            margin-bottom: 80px;
        }

        .iso-visual {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .iso-circle-dec {
            width: 250px;
            height: 250px;
            border: 1px solid #eee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .iso-circle-dec img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .iso-circle-dec::before {
            content: '';
            position: absolute;
            width: 105%;
            height: 105%;
            border: 1px dashed var(--accent);
            border-radius: 50%;
            animation: rotateOrbital 20s linear infinite;
        }

        .iso-circle-dec span {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--accent);
            letter-spacing: 5px;
        }

        .iso-text {
            flex: 1.5;
        }

        .iso-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin: 10px 0 25px;
            color: #1a1a1a;
        }

        .iso-text h2 strong {
            font-weight: 400;
            font-style: italic;
            color: var(--accent);
        }

        .iso-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .iso-divider {
            height: 1px;
            background: linear-gradient(to right, #334155, #775b28, #000000b0);
            margin: 60px 0;
        }

        .importance-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .importance-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
        }

        .importance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1);
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .imp-card {
            padding: 40px;
            background: #fdfdfd;
            border: 1px solid #f0f0f0;
            transition: all 0.4s ease;
        }

        .imp-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
        }

        .imp-icon {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
            font-weight: bold;
        }

        .imp-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .imp-card p {
            color: #777;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @media (max-width: 900px) {
            .iso-grid {
                flex-direction: column;
                gap: 40px;
                /* text-align: center; */
            }

            .importance-grid {
                grid-template-columns: 1fr;
            }

            .iso-text h2 {
                font-size: 2.5rem;
            }

            .iso-circle-dec {
                width: 180px;
                height: 180px;
            }
        }
        :root {
    --accent: #334155;
    --dark: #121212;
}

.v-elite-benefits {
    padding: 100px 0;

    overflow: hidden;
}

.v-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.v-header {
    text-align: center;
    margin-bottom: 80px;
}

.v-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.v-header h2 strong {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.v-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid #f0f0f0;
}

.v-elite-card {
    position: relative;
    padding: 80px 45px;
    background: #fff;
    border: 0.5px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.border-line {
    position: absolute;
    background: var(--accent);
    z-index: 10;
}

.border-line.top {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    animation: runTop 3s linear infinite;
}

.border-line.right {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    animation: runRight 3s linear infinite;
    animation-delay: 0.75s;
}

.border-line.bottom {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    animation: runBottom 3s linear infinite;
    animation-delay: 1.5s;
}

.border-line.left {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    animation: runLeft 3s linear infinite;
    animation-delay: 2.25s;
}

@keyframes runTop {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes runRight {
    0% { top: -100%; }
    50%, 100% { top: 100%; }
}

@keyframes runBottom {
    0% { right: -100%; }
    50%, 100% { right: 100%; }
}

@keyframes runLeft {
    0% { bottom: -100%; }
    50%, 100% { bottom: 100%; }
}

.v-bg-anim {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(198, 161, 91, 0.05) 0%, transparent 50%);
    transition: all 0.6s ease;
}

.v-card-content {
    position: relative;
    z-index: 5;
}

.v-icon-float {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: floatIcon 4s ease-in-out infinite;
}

.v-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    transition: 0.4s;
}

.v-card-content p {
    color: #777;
    line-height: 1.8;
    font-size: 1rem;
    transition: 0.4s;
    margin-bottom: 25px;
}

.v-card-line {
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.6s ease;
}

.v-elite-card:hover {
  background: linear-gradient(145deg, #000000 0%, #1a150e 50%, #2c2415 100%);
    transform: translateY(-5px);
    z-index: 15;
}

.v-elite-card:hover .v-card-content h3  {
    color: #fff !important;
}

.v-elite-card:hover p {
    color: #999;
}

.v-elite-card:hover .v-card-line {
    width: 100%;
}

.v-elite-card:hover .v-icon-float {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .v-header h2 { font-size: 2.3rem; }
    .v-elite-card { padding: 60px 30px; }
}
:root { --accent: #334155; --dark: #121212; }

.v-faq-section { padding: 120px 0;  }
.v-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.v-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.v-faq-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
}

.v-faq-info h2 strong { font-weight: 400; font-style: italic; color: var(--accent); }
.v-faq-info p { color: #666; font-size: 1.1rem; line-height: 1.8; }

.v-faq-stats { margin-top: 40px; border-top: 1px solid #eee; padding-top: 30px; }
.stat-item strong { display: block; font-size: 2.5rem; color: var(--accent); font-family: 'Playfair Display', serif; }


.v-faq-list { display: flex; flex-direction: column; gap: 15px; }

.v-faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.v-faq-trigger {
    padding: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    gap: 20px;
}

.v-faq-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
}

.v-faq-trigger h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    transition: 0.3s;
}

.v-faq-icon {
    width: 20px;
    height: 2px;
    background: #ccc;
    position: relative;
    transition: 0.4s;
}

.v-faq-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: rotate(90deg);
}

.v-faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px 0 60px;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.v-faq-content p { color: #777; line-height: 1.7; padding-bottom: 30px; margin: 0; }


.v-faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.v-faq-item.active .v-faq-trigger h3 { color: var(--accent); }

.v-faq-item.active .v-faq-content {
    max-height: 500px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.v-faq-item.active .v-faq-icon { background: var(--accent); transform: rotate(180deg); }
.v-faq-item.active .v-faq-icon::after { display: none; }

@media (max-width: 991px) {
    .v-faq-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .v-faq-info h2 { font-size: 2.5rem; }
}

:root { --accent: #43608a; --dark: #0f0f0f; }

.v-cta-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.v-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    /*background: radial-gradient(circle, rgba(198, 161, 91, 0.15) 0%, transparent 70%);*/
    background: radial-gradient(circle, rgb(85 105 133 / 25%) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

.v-cta-content { position: relative; z-index: 5; max-width: 800px; margin: 0 auto; }

.v-cta-content .v-tag { color: var(--accent); letter-spacing: 3px; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; }

.v-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fff;
    margin: 25px 0;
    line-height: 1.1;
}

.v-cta-content h2 strong { font-weight: 400; font-style: italic; color: var(--accent); }

.v-cta-content p { color: #aaa; font-size: 1.2rem; margin-bottom: 50px; line-height: 1.8; }

.v-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.v-btn-prime {
    position: relative;
    padding: 19px 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    overflow: hidden;
    transition: 0.4s;
}

.v-btn-prime span { position: relative; z-index: 2; }

.v-btn-wave {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,0.2);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
    border-radius: 40%;
}

.v-btn-prime:hover .v-btn-wave { top: -50%; transform: translateX(-50%) rotate(360deg); }
.v-btn-prime:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(198, 161, 91, 0.3); }


.v-btn-outline {
    padding: 19px 53px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    border-radius: 2px;
}

.v-btn-outline:hover { background: #fff; color: var(--dark); }

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@media (max-width: 768px) {
    .v-cta-content h2 { font-size: 2.5rem; }
    .v-cta-actions { flex-direction: column; width: 100%; }

}

.v-iata-unified {
    padding: 100px 0;
   background-color: var(--white);
    position: relative;
}

.v-iata-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.v-iata-main-img {
    position: relative;
    border-radius: 4px;
}

.v-iata-main-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.v-iata-overlay-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark);
    color: white;
    padding: 40px;
    max-width: 250px;
}

.v-iata-count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.v-iata-intro {
  line-height: 1.6;
    color: #666;
    margin: 20px 0 40px;
}

.v-iata-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.v-f-item {
    display: flex;
    gap: 20px;
}

.v-f-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 5px;
}

.v-f-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
    margin-top: 0;
}

.v-f-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

.v-iata-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

@media (max-width: 991px) {
    .v-iata-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .v-iata-overlay-box {
        position: static;
        margin: 20px auto 0;
        max-width: 100%;
        text-align: center;
    }
    .v-iata-main-img img {
        height: 350px;
    }
}

.v-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --brand: #334155;
   
    --gray: #64748b;
    --bg: #fcfcfc;
}

.v-iata-services {
    padding: 100px 0;
    background: var(--bg);
    font-family: 'Inter', sans-serif;
}

.v-header {
    text-align: center;
    margin-bottom: 60px;
}

.v-tag {
    color: var(--brand) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.v-header h2 {
    font-size: 2.5rem;
    color: #111;
}

.v-header h2 strong {
    color: var(--brand);
}

.v-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.v-service-box {
    padding: 45px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.v-service-box.passenger { border-left: 5px solid #000; }
.v-service-box.cargo { border-left: 5px solid var(--brand); }

.v-service-box h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: #111;
    font-weight: 700;
}

.v-service-box h3 svg {
    color: var(--brand);
}

.v-service-box p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.v-list {
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.v-list li {
    margin-bottom: 12px;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v-list li span {
    color: var(--brand);
    font-weight: 800;
}

.v-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--brand);
}

.bento-premium {
    padding: 100px 5%;
    background: white;
}

.bento-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.b-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.b-card-img {
    height: 220px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.b-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.b-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    backdrop-filter: blur(5px);
}

.b-card-body {
    padding: 25px 10px 10px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.b-meta {
    font-size: 0.75rem;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.b-card-body h3 {
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 12px;
}

.b-card-body p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.b-features {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.b-features span {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.b-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--brand);
}

.b-card:hover img { transform: scale(1.1); }

.active-card {
    border-color: rgba(198, 161, 91, 0.3);
    box-shadow: 0 10px 30px rgba(198, 161, 91, 0.05);
}

@media (max-width: 991px) {
    .v-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .v-header h2 {
        font-size: 2rem;
    }
    .v-service-box {
        padding: 30px;
    }
    .bento-grid-modern { 
        grid-template-columns: 1fr; 
    }
}

.arch-link {
        text-decoration: none;
        color: inherit;
        display: block;
        transition: transform 0.3s ease;
    }

    .arch-link:hover {
        transform: translateY(-5px); 
    }

    .arch-card {
        cursor: pointer;
    }
    .benefit-card i {
        font-size: 35px;
        color: var(--gold); 
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .benefit-card:hover i {
        transform: scale(1.1);
        transition: 0.3s ease;
    }
    .iata-clean {
     
        color: var(--dark);
        padding: 100px 5%;
        display: flex;
        justify-content: center;
        border-bottom: 1px solid var(--border-color);
    }

    .iata-clean-container {
        max-width: 1250px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        align-items: center;
    }


    .iata-mini-tag {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 700;
        font-size: 13px;
       
        display: inline-block;
    }

    .iata-clean-left h2 {
        font-family: 'Playfair Display', serif;
        font-size: 44px;
        line-height: 1.2;
        color: var(--dark);
        margin-bottom: 25px;
    }

    .iata-clean-left h2 span {
        color: var(--gold);
    }

    .iata-short {
        font-size: 18px;
        color: var(--dark);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .iata-clean-left p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .iata-clean-btn {
        display: inline-block;
        padding: 16px 40px;
        background-color: var(--dark);
        color: var(--white);
        text-decoration: none;
        font-weight: 700;
        border-radius: 4px;
        transition: 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .iata-clean-btn:hover {
        background-color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(198, 161, 91, 0.2);
    }

    
    .iata-clean-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .benefit-card {
        background: var(--light-gray);
        border: 1px solid var(--border-color);
        padding: 35px 20px;
        border-radius: 12px;
        text-align: center;
        transition: 0.4s;
    }

    .benefit-card:hover {
        background: var(--white);
        border-color: var(--gold);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        transform: translateY(-5px);
    }

    .benefit-card .icon {
        font-size: 32px;
        margin-bottom: 15px;
        display: block;
    }

    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
        color: var(--dark);
        font-weight: 700;
    }

    .benefit-card p {
        font-size: 12px;
        color: #777;
        line-height: 1.4;
    }

    .full-width-card {
        grid-column: span 2;
        background: linear-gradient(135deg, #FDFBF7, #F8F8F8);
        border: 1px dashed var(--gold);
    }

    @media (max-width: 992px) {
        .iata-clean-container { grid-template-columns: 1fr; }
        .iata-clean-left { text-align: left; }
        .iata-clean-right { margin-top: 40px; }
    }
    @media (max-width: 1024px) {
    .iata-clean-container {
        gap: 40px;
    }
    
    .iata-clean-left h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .iata-clean {
        padding: 80px 20px;
    }

    .iata-clean-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .iata-mini-tag {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .iata-clean-left h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .iata-short {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .iata-clean-left p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .iata-clean-btn {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .iata-clean-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-card i {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .benefit-card h4 {
        font-size: 15px;
    }

    .full-width-card {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .iata-clean-left h2 {
        font-size: 24px;
    }
}
    .bbps-lux {
        background: #ffffff;
        padding: 120px 10%;
        color: #111;
    }

    .bbps-lux-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .bbps-lux-content span {
        color: var(--gold);
        font-weight: 800;
        letter-spacing: 5px;
        font-size: 12px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 20px;
    }

    .bbps-lux-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 55px;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .bbps-lux-content p {
        font-size: 18px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .bbps-lux-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .bbps-lux-item {
        display: flex;
        gap: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
        transition: 0.3s;
    }

    .bbps-lux-item:hover {
        border-bottom-color: var(--gold);
    }

    .bbps-lux-item i {
        font-size: 30px;
        color: var(--gold);
        margin-top: 5px;
    }

    .bbps-lux-item h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        margin-top:0;
    }

    .bbps-lux-item p {
        font-size: 15px;
        color: #777;
        margin: 0;
    }

    .lux-cta {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        font-weight: 900;
        text-decoration: none;
        color: #111;
        font-size: 14px;
        letter-spacing: 1px;
        border-bottom: 2px solid var(--gold);
        padding-bottom: 5px;
        transition: 0.3s;
    }

    .lux-cta:hover {
        gap: 25px;
        color: var(--gold);
    }

    @media (max-width: 992px) {
        .bbps-lux-grid { grid-template-columns: 1fr; gap: 60px; }
        .bbps-lux-content h2 { font-size: 40px; }
    }

      .fintech-clean-sec {
    
        padding: 100px 5%;
        font-family: 'Inter', sans-serif;
    }

    .fintech-header-center {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 70px;
    }

    .fintech-header-center span {
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 700;
        font-size: 12px;
        display: block;
        margin-bottom: 15px;
    }

    .fintech-header-center h2 {
        font-family: 'Playfair Display', serif;
        font-size: 45px;
        color: var(--dark);
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .fintech-header-center p {
        color: #666;
        line-height: 1.8;
        font-size: 16px;
    }


    .fintech-row-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .fintech-step-card {
        background: var(--light-gray);
        border: 1px solid var(--border-color);
        padding: 60px 40px;
        border-radius: 4px; 
        transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        position: relative;
    }

    .fintech-step-card:hover {
        background: #ffffff;
        border-color: var(--gold);
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    }

    .fintech-step-card i {
        font-size: 40px;
        color: var(--dark);
        margin-bottom: 30px;
        display: block;
        transition: 0.4s;
    }

    .fintech-step-card:hover i {
        color: var(--gold);
        transform: scale(1.1);
    }

    .fintech-step-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 20px;
    }

    .fintech-step-card p {
        font-size: 15px;
        color: #777;
        line-height: 1.7;
        margin: 0;
    }

    .fintech-step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--gold);
        transition: 0.5s;
    }

    .fintech-step-card:hover::before {
        width: 100%;
    }

    @media (max-width: 992px) {
        .fintech-row-grid { grid-template-columns: 1fr; gap: 30px; }
        .fintech-header-center h2 { font-size: 32px; }
    }
      

.intl-premium-sec {
     background-color: #ffffff;
    padding: 100px 5%;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid var(--border-color);
}

.intl-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.intl-content-box {
    max-width: 550px;
}

.intl-content-box .tagline {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 20px;
    display: block;
}

.intl-content-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.intl-content-box h2 span {
    color: var(--gold);
}

.intl-content-box .main-para {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intl-content-box .sub-para {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

.intl-services-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-pill {
    background: var(--soft-gray);
    padding: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-left: 0px solid var(--gold);
    text-decoration: none;
}

.service-pill:hover {
    background: var(--dark);
    transform: translateX(15px);
    border-left: 8px solid var(--gold);
}

.service-pill .pill-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--dark);
    flex-shrink: 0;
    transition: 0.3s;
}

.service-pill:hover .pill-icon {
    background: var(--gold);
    color: var(--dark);
}

.service-pill h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
    margin: 0;
}

.service-pill:hover h4 {
    color: #fff;
}

.sec-edge-wrap {
   
    padding: 100px 5%;
    font-family: 'Inter', sans-serif;
}

.sec-edge-headerr {
    margin-bottom: 70px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}



.top-badge span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.sec-edge-headerr h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 55px);
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.sec-edge-headerr h2 span {
    color: var(--gold);
}

.sec-edge-headerr p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.edge-item {
    padding: 50px 40px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    background: #fff;
    transition: all 0.4s ease;
}

.edge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: var(--gold);
    transition: 0.4s ease;
}

.edge-item:hover::before {
    height: 100%;
}

.edge-item:hover {
    background: var(--soft-bg);
}

.item-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.edge-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    transition: 0.3s;
}

.edge-item p {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin: 0;
    transition: 0.3s;
}

.edge-item:hover h3 {
    color: var(--gold);
    transform: translateX(10px);
}

.edge-item:hover p {
    color: #333;
    transform: translateX(10px);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .intl-wrapper { gap: 40px; }
    .edge-item { padding: 40px 30px; }
}

@media (max-width: 912px) {
    .intl-wrapper { grid-template-columns: 1fr; text-align: center; }
    .intl-content-box { max-width: 100%; margin: 0 auto; }
    .service-pill:hover { transform: none; }
    .edge-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .intl-premium-sec, .sec-edge-wrap { padding: 60px 5%; }
    .service-pill { flex-direction: column; text-align: center; padding: 25px; }
    .edge-item h3 { font-size: 22px; }
}

    .about-section {
    padding: 80px 5%;
    
    font-family: 'Inter', sans-serif;
}

.a-container {
    max-width: 1200px;
    margin: 0 auto;
}

.a-row {
    display: flex;
    flex-wrap: wrap; 
    gap: 50px;
    align-items: center;
}

.a-content {
    flex: 1;
   
}

.v-tag {
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.a-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.a-title span { color: #334155; }

.a-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.a-sub {
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.gold-txt { color: #334155; font-weight: 600; }

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.a-logo {
    height: 40px;

}
 .a-logo:hover{
             filter: grayscale(1);
             opacity: 0.6;
    }
.logo-sep { width: 1px; height: 30px; background: #eee; }
.reg-label { font-size: 11px; font-weight: 700; color: #aaa; }

.a-cards {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
   
}

.mv-card {
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.mv-card:hover {
    border-color: #334155;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.c-icon {
    width: 45px;
    height: 45px;
    background: rgba(198, 161, 91, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.c-icon svg { width: 22px; }

.card-head h3 { font-size: 1.3rem; margin: 0; font-weight: 700; }
.mv-card p { color: #777; font-size: 0.95rem; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
    .a-row { gap: 40px; }
    .a-title { text-align: left; font-size: 37px;
 }
    .a-cards { flex: 1; }
    .mv-card { padding: 25px; }
    .p-title{
        font-size: 28px !important;
    }
   
}

@media (max-width: 520px) {
.logo-group {
justify-content: center;
}
}
.premium-comp-section {
    padding: 80px 5%;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.p-container {
    max-width: 1200px;
    margin: 0 auto;
}

.p-header {
    text-align: center;
    margin-bottom: 60px;
}

.p-badge {
    background: #fdf6e9;
    color: #334155;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-title {
    font-size:50px;
    font-weight: 900;
    margin: 15px 0;
    color: #111;
}

.p-title span {
    color: #334155;
}

.p-line {
    width: 50px;
    height: 3px;
    background: #334155;
    margin: 0 auto;
    border-radius: 2px;
}

.p-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.p-card {
    padding: 40px;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.risk-card-style {
    background: #fff;
    border: 1px solid #eee;
}

.benefit-card-style {
    background:var(--accent);
    color: #fff;
}

.p-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.red-bg { background: #ff4d4d; }
.gold-bg { background:white; }
.icon-circle svg { width: 24px; height: 24px; }

.p-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    /*color:black;*/
}

.p-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 10px;
}

.p-item span {
    font-weight: 800;
    color: #ccc;
}

.p-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.benefit-desc {
    /*color: black;*/
    line-height: 1.6;
    margin-bottom: 25px;
}

.p-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.p-tags span {
    padding: 4px 12px;
    border: 1px solid #333;
    border-radius: 40px;
    font-size: 15px;
    /*color: black;*/
}

.p-quote {
    font-size: 1.1rem;
    /*color: #000;*/
    border-left: 2px solid #fff;
    padding-left: 15px;
    font-style: italic;
}

.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

@media (max-width: 991px) {
    .p-grid { grid-template-columns: 1fr; }
    .premium-comp-section { padding: 60px 10px; }
    .p-card { padding: 20px; }
}
.modern-step-section {
    padding: 100px 8%;
    font-family: 'Inter', sans-serif;
}

.ms-container { max-width: 1100px; margin: 0 auto; }

.ms-header { text-align: center; margin-bottom: 80px; }
.ms-badge { color: #334155; font-weight: 700; letter-spacing: 2px; font-size: 12px; text-transform: uppercase; }
.ms-title { font-size: 3rem; font-weight: 900; margin-top: 10px; color: #000; }
.ms-title span { color: #334155; }

.ms-content-wrapper {
    position: relative;
    padding: 20px 0;
}

.ms-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #eee 10%, #eee 90%, transparent);
    transform: translateX(-50%);
}

.ms-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
}

.ms-row:nth-child(even) { flex-direction: row-reverse; }

.ms-icon-box {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px #fff;
    transition: 0.4s;
}

.ms-row:hover .ms-icon-box {
    background: #334155;
    color: #fff;
    transform: translateX(-50%) scale(1.2);
}

.ms-text-box {
    width: 42%;
    padding: 20px;
    transition: 0.3s;
}

.ms-text-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
    position: relative;
}

.ms-text-box p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.reveal-left, .reveal-right, .reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal { transform: translateY(30px); }

.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

@media (max-width: 768px) {
    .ms-line { left: 20px; }
    .ms-icon-box { left: -10px; transform: none; }
    .ms-row, .ms-row:nth-child(even) { flex-direction: row; padding-left: 30px; margin-bottom: 50px; }
    .ms-text-box { width: 100%; text-align: left !important; }
    .ms-row:hover .ms-icon-box { transform: scale(1.1); }
}

.premium-step-section {
    padding: 100px 5%;
    
    font-family: 'Inter', sans-serif;
}

.ps-container { max-width: 1440px; margin: 0 auto; }
.ps-header { text-align: center; margin-bottom: 80px; }
.ps-title { font-size: 2.5rem; font-weight: 900; color: #111; }
.ps-title span { color: #334155; }

.ps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ps-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ps-visual {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ps-gradient-border {
    position: absolute;
    inset: 0;
    border: 1.6px dashed #ffffff;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #000000, #334155, #000000) border-box;
    border-radius: 50%;
    animation: rotateGradient 10s linear infinite;
}

.ps-inner-plane {
    width: 85px;
    height: 85px;
    border: 1px solid #c0afaf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.ps-number {
    position: absolute;
    top: -8px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ps-icon {
    font-size: 1.8rem;
    color: #334155; 
    transition: 0.3s;
}

.ps-arrow {
    padding-top: 50px;
    color: #334155;
    font-size: 1.1rem;
    animation: arrowSide 2s ease-in-out infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes arrowSide {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(6px); opacity: 1; }
}

.ps-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.ps-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    padding: 0 5px;
}

@media (max-width: 1024px) {
    .ps-wrapper { flex-wrap: wrap; gap: 40px; }
    .ps-arrow { display: none; }
    .ps-step { flex: 1 1 30%; }
}

   .final-cta-section {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a; 
    overflow: hidden;
    text-align: center;
   
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
background: radial-gradient(circle, rgb(85 105 133 / 25%) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    margin: 20px 0;
    line-height: 1.2;
}

.cta-title span {
    color: #334155;
}

.cta-desc {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.primary-cta {
    background: #334155;
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-cta:hover {
    background: #fff;
    transform: translateY(-5px);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-trust-badges i {
    color: #334155;
    margin-right: 5px;
}



.v-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: 0.3s;
}


.v-modal-card {
    background: #0E0E0E;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(198, 161, 91, 0.3);
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.v-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
     font-size: 30px; cursor: pointer;
}

.v-modal-header h3 {
    font-family: 'Playfair Display', serif;
    color: #334155;
    font-size: 28px;
    margin-bottom: 10px;
}

.v-modal-header p {
    color: #888; font-size: 14px; margin-bottom: 30px;
}

.v-modal-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v-modal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.v-modal-item:hover {
    background: rgba(198, 161, 91, 0.15);
    border-color: #334155;
    transform: translateX(10px);
}

.v-modal-icon {
    width: 40px; height: 40px;
    background: #334155;
    color: #000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.v-modal-overlay.active {
    display: flex;
}
.v-modal-card {
       max-width: 650px;
    padding: 15px;
    border-radius: 20px;
    background: #fff;
    margin-top: 100px;
    
}

.v-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.v-form-row {
    display: flex;
    gap: 20px;
}

.v-form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.v-form-group.full-width {
    flex: none;
    width: 100%;
}

.v-form-group label {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
    text-align: left;
}

.v-modal-form input, 
.v-modal-form select {
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.v-modal-form input:focus, 
.v-modal-form select:focus {
    border-color: #334155;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(51, 65, 85, 0.1);
}

.v-submit-btn {
    background: #334155;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v-submit-btn:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .v-modal-overlay {
        display: flex;
        align-items: center;
        justify-content: center;
        /*padding: 10px;*/
    }

    .v-modal-card {
        width: 92% !important;
        padding: 15px !important;
        max-height: 95vh !important;
        border-radius: 12px !important;
        position: relative;
        margin: auto;
    }

    .v-modal-header h3 {
        font-size: 1.1rem !important;
        margin-bottom: 2px !important;
    }
    
    .v-modal-header p {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }

    .v-form-row {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .v-form-group label {
           font-size: 12px !important;
    margin-bottom: 2px !important;

    }

    .v-modal-form {
        gap: 6px !important;
        margin-top: 5px !important;
    }

    .v-modal-form input, 
    .v-modal-form select {
        padding: 0px 12px !important; 
        font-size: 0.85rem !important;
        height: 30px !important;
        margin-bottom: 0 !important;
    }

    .v-submit-btn {
        padding: 12px !important;
        font-size: 0.9rem !important;
        margin-top: 10px !important;
        width: 100% !important;
    }

   
}
@media (max-width: 600px) {
    .v-modal-card {
        width: 95%; 
        padding: 30px 20px; 
        border-radius: 20px;
        margin: 10px;
        /*margin-top: 40px;*/
    }

    .v-modal-header h3 {
        font-size: 22px; 
    }

    .v-modal-header p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .v-modal-item {
        padding: 15px 18px;
        gap: 15px;
    }

    .v-modal-item:hover {
        transform: scale(1.02); 
    }

    .v-modal-icon {
        width: 35px; 
        height: 35px;
        font-size: 16px;
    }

    .v-modal-close {
        top: 15px;
        right: 15px;
        font-size: 24px; 
    }
    
    .v-modal-item span {
        font-size: 15px; 
    }
}

.custom-dropdown {
    position: relative;
}

.dropdown-selected {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    font-size: 0.85rem;
    text-align: left;
}

.dropdown-options {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 999;
}

.dropdown-options div {
    padding: 10px;
    cursor: pointer;
        text-align: left;
    font-size: 15px;
}

.dropdown-options div:hover {
    background: #334155;
    color: #fff;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

..v-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: 0.3s;
}


.v-modal-card {
    /*background: #0E0E0E;*/
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(198, 161, 91, 0.3);
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.v-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    font-size: 30px; cursor: pointer;
}

.v-modal-header h3 {
    font-family: 'Playfair Display', serif;
    /*color: #C6A15B;*/
    font-size: 28px;
    margin-bottom: 10px;
}

.v-modal-header p {
    color: #888; font-size: 14px; margin-bottom: 30px;
}

.v-modal-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v-modal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.v-modal-item:hover {
    background: rgba(198, 161, 91, 0.15);
    border-color: #C6A15B;
    transform: translateX(10px);
}

.v-modal-icon {
    width: 40px; height: 40px;
    background: #C6A15B;
    color: #000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.v-modal-overlay.active {
    display: flex;
}

@media (max-width: 600px) {
    .v-modal-card {
        width: 95%; 
        padding: 30px 20px; 
        border-radius: 20px;
                margin: 10px;
    }

    .v-modal-header h3 {
        font-size: 22px; 
    }

    .v-modal-header p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .v-modal-item {
        padding: 15px 18px;
        gap: 15px;
    }

    .v-modal-item:hover {
        transform: scale(1.02); 
    }

    .v-modal-icon {
        width: 35px; 
        height: 35px;
        font-size: 16px;
    }

    .v-modal-close {
        top: 15px;
        right: 15px;
        font-size: 24px; 
    }
    
    .v-modal-item span {
        font-size: 15px; 
    }
}


@media (max-height: 500px) {
    .v-modal-card {
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px;
    }
}dropdown-selected {
    position: relative;
    padding-right: 40px; 
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-selected::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #334155; 
    pointer-events: none;
    transition: transform 0.3s ease;
}


.custom-dropdown.active .dropdown-selected::after {
    transform: translateY(-50%) rotate(180deg);
}
.expertise-grid-section {
    padding: 80px 20px;
    /*background: #ffffff;*/
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.expertise-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.expertise-card:hover {
    background: #ffffff;
    border-color: #334155;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(51, 65, 85, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    color: #334155;
    margin-bottom: 20px;
}

.card-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(51, 65, 85, 0.05); /* Soft background number */
    transition: all 0.3s ease;
}

.expertise-card:hover .card-num {
    color: rgba(51, 65, 85, 0.1);
}

.expertise-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .expertise-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .expertise-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-grid-section {
        padding: 50px 15px;
    }

    .expertise-card {
        padding: 30px 20px;
    }
}
.v-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: 0.3s;
}


.v-modal-card {
    /*background: #0E0E0E;*/
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(198, 161, 91, 0.3);
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.v-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
     font-size: 30px; cursor: pointer;
}

.v-modal-header h3 {
    font-family: 'Playfair Display', serif;
    /*color: #C6A15B;*/
    font-size: 28px;
    margin-bottom: 10px;
}

.v-modal-header p {
    color: #888; font-size: 14px; margin-bottom: 30px;
}

.v-modal-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v-modal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.v-modal-item:hover {
    background: rgba(198, 161, 91, 0.15);
    border-color: #C6A15B;
    transform: translateX(10px);
}

.v-modal-icon {
    width: 40px; height: 40px;
    background: #C6A15B;
    color: #000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.v-modal-overlay.active {
    display: flex;
}

@media (max-width: 600px) {
    .v-modal-card {
        width: 95%; 
        padding: 30px 20px; 
        border-radius: 20px;
                margin: 10px;
    }

    .v-modal-header h3 {
        font-size: 22px; 
    }

    .v-modal-header p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .v-modal-item {
        padding: 15px 18px;
        gap: 15px;
    }

    .v-modal-item:hover {
        transform: scale(1.02); 
    }

    .v-modal-icon {
        width: 35px; 
        height: 35px;
        font-size: 16px;
    }

    .v-modal-close {
        top: 15px;
        right: 15px;
        font-size: 24px; 
    }
    
    .v-modal-item span {
        font-size: 15px; 
    }
}


@media (max-height: 500px) {
    .v-modal-card {
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px;
    }
}
 .reviews-section {
    padding: 100px 20px;
    background: #FFFFFF;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.review-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #334155;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.review-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 80px; 
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.rev-avatar {
    width: 45px;
    height: 45px;
    background: #334155;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.rev-details h4 {
    font-size: 1rem;
    color: #1e293b;
    margin: 0;
}

.rev-details span {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 1024px) {
    .reviews-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .reviews-container { grid-template-columns: 1fr; }
    .reviews-section { padding: 60px 15px; }
}

.v-floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.v-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}


.v-whatsapp {
    background-color: #25D366;
}


.v-call {
    background-color: #43608a; 
}
.v-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}


@media (max-width: 600px) {
    .v-floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .v-float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
.clients-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.section-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-box {
    font-size: 1.4rem;
    font-weight: 800;
    color: #cbd5e1; /* Gray look */
    transition: 0.3s;
    cursor: default;
}

.logo-box:hover {
    color: #334155; /* Dark on hover */
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .client-logos { gap: 30px; }
    .logo-box { font-size: 1.1rem; }
}