﻿/********** Template CSS **********/
:root {
    --primary: #AB7442;
    --light: #F5F5F5;
    --dark: #353535;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
}
.form-control,
.btn-outline-primary {
    border-radius: 6px; /* or any small value */
}
/* meet the team*/
/* ========== Team Section Styles ========== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f0f2f5, #e4e7ed);
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.flip-card-front {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.flip-card-back {
    background-color: #9c95d8;
    color: #000;
    transform: rotateY(180deg);
    padding: 20px;
}

/* Image that takes 80% height of card, rectangular and crops from bottom */
.custom-image {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: top; /* ensures it compresses from bottom */
    border-bottom: 2px solid #ddd;
}

/* Info container in bottom 20% of the card */
.team-info {
    height: 20%;
    padding: 10px;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
}

    .team-info h5 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: bold;
    }

    .team-info p {
        margin: 0;
        font-size: 0.9rem;
    }


/* ========== Enquiry Section Styles ========== */
.enquiry-image {
    min-height: 400px;
}

    .enquiry-image img {
        object-fit: cover;
        object-position: center top; /* ensures the top part stays visible */
        height: 100%;
        width: 100%;
    }

.enquiry-form {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .enquiry-form form input,
    .enquiry-form form textarea {
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .enquiry-form h2 {
        font-weight: bold;
        color: #333;
    }

@media (max-width: 768px) {
    .enquiry-image,
    .enquiry-form {
        min-height: 300px;
    }
}

/*for slider */



.custom-nav-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.custom-nav-container .owl-prev,
.custom-nav-container .owl-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 8px; /* slight rounding, or set to 0 for sharp corners */
    transition: background-color 0.3s ease;
}

    .custom-nav-container .owl-prev:hover,
    .custom-nav-container .owl-next:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .custom-nav-container .owl-prev i,
    .custom-nav-container .owl-next i {
        font-size: 20px;
        color: white;
        transition: color 0.3s ease;
    }

    .custom-nav-container .owl-prev:hover i,
    .custom-nav-container .owl-next:hover i {
        color: black;
    }

.custom-dot-container .owl-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0; /* ← Makes it square */
    transition: all 0.3s ease;
}

    .custom-dot-container .owl-dot.active {
        background-color: #ffffff;
        width: 14px;
        height: 14px;
        border-radius: 0; /* Also square when active */
    }
.custom-dot-container .owl-dot {
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

/*footer*/
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }

        .social-icons a {
            margin: 0 5px;
        }
}

/*css for expertise */

/* Card Hover Effect */
.card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Smooth animation on image */
.card-img-top {
    height: 35vh;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

/* Optional: add a slight zoom on card-body text */
.card-body {
    padding: 10px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.card:hover .card-body {
    transform: translateY(5px);
}

/* Bonus: Add a small fade-up animation on initial load */
.card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

    .card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .card:nth-child(6) {
        animation-delay: 0.6s;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*for our elite team */







/* navbar----> */
 :root {
            --obsidian: #0a0612;
            --royal-purple: #1e0d3d;
            --imperial-gold: #D4AF37;
            --royal-lavender: #9674FF;
            --platinum: #E5E4E2;
            --titanium: #C0C0C0;
        }

        /* Ultra-Premium Navbar */
       .navbar {
    background: #ffffff;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.navbar-nav .dropdown-menu {
    background: #f8f9fa;
    border-radius: 5px;
}

.navbar-nav .dropdown-item {
    font-size: 0.9rem;
    transition: background 0.3s ease-in-out;
}

.navbar-nav .dropdown-item:hover {
    background: #007bff;
    color: #fff;
}


        /* Logo Orb Effect */
        .logo-orb {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        
        .nav-item.active span {
        display: block;
        text-align: center;
        width: 100%;
}

        .logo-img {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.3);
            position: relative;
            z-index: 2;
            margin-left: -100px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        @media (max-width:768px) {
            .logo-img {
            width: 54px;
            height: 54px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.3);
            position: relative;
            z-index: 2;
            margin-left: 0px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        }



        .logo-orb:hover .logo-img {
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
        }

        /* Brand Text */
        .brand-name {
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--imperial-gold), var(--royal-lavender), var(--imperial-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            text-shadow: 0 0 15px rgba(150, 116, 255, 0.3);
            transition: all 0.5s ease;
            font-size: 1.5rem;
        }

        .brand-text:hover .brand-name {
            background-position: 100% center;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        /* Navigation Links */
      

  

        /* Perfect Underline Animation */
   
        .nav-item:hover .nav-underline {
            width: 80%;
            opacity: 1;
        }

        .nav-item.active .nav-underline {
            width: 100%;
            opacity: 1;
        }
        .item{
  padding: 20px;
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 0;
}

.item::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(to right, #f1c40f, #e67e22, #ecf0f1);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.item:hover::after {
  width: 90%;
  box-shadow: 1px 1px 10px;
}

.active{
  color: white;
  padding: 20px;
  margin: 10px;
  font-weight: 600;
  font-size: 22px;
  text-decoration: none;
}
*{
  margin: 0px;
  padding: 0px;
}
.bg-navbar{
  background: linear-gradient(145deg, #0a0612,#1e0d3d);
}
.glass-hamburger {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 12px;
    transition: background1 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.glass-hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    filter: invert(1); /* white icon on dark bg */
}


        .carousel-slide {
            position: relative;
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align to the left */
            padding-left: 10%; /* Add left spacing */
        }

        .text-container {
            text-align: center;
            transform: translateY(-10%);
        }

        .slide-text {
            color: #fff;
            font-weight: 700;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 0.5rem;
        }

        .slide-subtext {
            color: #fff;
            font-weight: 400;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            margin: 0 auto;
            text-align: center;
        }

        /* Mobile Optimization */
        @media (max-width: 991.98px) {
            .luxury-navbar {
                height: 80px;
                padding: 0 1rem;
            }

            .navbar-collapse {
                background: linear-gradient(145deg, var(--obsidian), var(--royal-purple));
                padding: 1rem;
                /* margin-top: 0.5rem; */
                border-radius: 0 0 15px 15px;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
            }

            .nav-item {
                margin: 0.5rem 0;
                padding: 0.5rem 1rem !important;
            }

            .nav-item span {
                padding: 0.5rem 0;
            }

            .nav-underline {
                bottom: 0;
                left: 1rem;
                width: calc(100% - 2rem) !important;
            }
        }



        /* navbar */
         :root {
            --obsidian: #0a0612;
            --royal-purple: #1e0d3d;
            --imperial-gold: #D4AF37;
            --royal-lavender: #9674FF;
            --platinum: #E5E4E2;
            --titanium: #C0C0C0;
        }

        /* Ultra-Premium Navbar */
       .navbar {
    background: #ffffff;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}
.active:hover{
    color: rgb(250, 250, 250);
    
}
.navbar-nav .dropdown-menu {
    background: #f8f9fa;
    border-radius: 5px;
}

.navbar-nav .dropdown-item {
    font-size: 0.9rem;
    transition: background 0.3s ease-in-out;
}

.navbar-nav .dropdown-item:hover {
    background: #007bff;
    color: #fff;
}


        /* Logo Orb Effect */
        .logo-orb {
            position: relative;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        
        .nav-item.active span {
        display: block;
        text-align: center;
        width: 100%;
}

        .logo-img {
            width: 64px;
            height: 64px;
            margin-right: 0px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.3);
            position: relative;
            z-index: 2;
            left: -10px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }



        .logo-orb:hover .logo-img {
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
        }

        /* Brand Text */
        .brand-name {
            margin-left: 0px;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--imperial-gold), var(--royal-lavender), var(--imperial-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% auto;
            text-shadow: 0 0 15px rgba(150, 116, 255, 0.3);
            transition: all 0.5s ease;
            font-size: 23px;
        }

        .brand-text:hover .brand-name {
             margin-left: -10px;
            background-position: 100% center;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        /* Navigation Links */
      

  

        /* Perfect Underline Animation */
   
        .nav-item:hover .nav-underline {
            width: 80%;
            opacity: 1;
        }

        .nav-item.active .nav-underline {
            width: 100%;
            opacity: 1;
        }
        .item{
  padding: 20px;
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 0;
}

.item::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  height: 3px;
  width: 0;
  color: white;
  background: linear-gradient(to right, #f1c40f, #e67e22, #ecf0f1);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.item:hover::after {
  width: 90%;
  box-shadow: 1px 1px 10px;
  color: white;
}

.active{
  color: white;
  padding: 20px;
  margin: 10px;
  font-weight: 600;
  font-size: 22px;
  text-decoration: none;
}
*{
  margin: 0px;
  padding: 0px;
}
.bg-navbar{
  background: linear-gradient(145deg, #0a0612,#1e0d3d);
}
.glass-hamburger {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 12px;
    transition: background1 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.glass-hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    filter: invert(1); /* white icon on dark bg */
}


        .carousel-slide {
            position: relative;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align to the left */
            padding-left: 10%; /* Add left spacing */
        }

        .text-container {
            text-align: center;
            transform: translateY(-10%);
        }

        .slide-text {
            color: #fff;
            font-weight: 700;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 0.5rem;
        }

        .slide-subtext {
            color: #fff;
            font-weight: 400;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            margin: 0 auto;
            text-align: center;
        }

        /* Mobile Optimization */
        @media (max-width: 991.98px) {
            .logo-img {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.3);
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
            .luxury-navbar {
                height: 80px;
                padding: 0 1rem;
            }

            .navbar-collapse {
                background: linear-gradient(145deg, var(--obsidian), var(--royal-purple));
                padding: 1rem;
                /* margin-top: 0.5rem; */
                border-radius: 0 0 15px 15px;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
            }

            .nav-item {
                margin: 0.5rem 0;
                padding: 0.5rem 1rem !important;
            }

            .nav-item span {
                padding: 0.5rem 0;
            }

            .nav-underline {
                bottom: 0;
                left: 1rem;
                width: calc(100% - 2rem) !important;
            }
        }
        /* Navigation Links */
      

  

        /* Perfect Underline Animation */
   
        .nav-item:hover .nav-underline {
            width: 80%;
            opacity: 1;
        }

        .nav-item.active .nav-underline {
            width: 100%;
            opacity: 1;
        }
        .item{
  padding: 20px;
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 0;
}

.item::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(to right, #f1c40f, #e67e22, #ecf0f1);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.item:hover::after {
  width: 90%;
  box-shadow: 1px 1px 10px;
}

.active{
  color: white;
  padding: 20px;
  margin: 10px;
  font-weight: 600;
  font-size: 22px;
  text-decoration: none;
}
*{
  margin: 0px;
  padding: 0px;
}
.bg-navbar{
  background: linear-gradient(145deg, #0a0612,#1e0d3d);
}
.glass-hamburger {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 12px;
    transition: background1 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.glass-hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    filter: invert(1); /* white icon on dark bg */
}


        .carousel-slide {
            position: relative;
            background-size: cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align to the left */
            padding-left: 10%; /* Add left spacing */
        }

        .text-container {
            text-align: center;
            transform: translateY(-10%);
        }

        .slide-text {
            color: #fff;
            font-weight: 700;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 0.5rem;
        }

        .slide-subtext {
            color: #fff;
            font-weight: 400;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            margin: 0 auto;
            text-align: center;
        }

        /* Mobile Optimization */
        @media (max-width: 991.98px) {
            .luxury-navbar {
                height: 80px;
                padding: 0 1rem;
            }

            .navbar-collapse {
                background: linear-gradient(145deg, var(--obsidian), var(--royal-purple));
                padding: 1rem;
                margin-top: 0.5rem;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
            }

            .nav-item {
                margin: 0.5rem 0;
                padding: 0.5rem 1rem !important;
            }

            .nav-item span {
                padding: 0.5rem 0;
            }

            .nav-underline {
                bottom: 0;
                left: 1rem;
                width: calc(100% - 2rem) !important;
            }
        }


     /* Luxury Counter Section Styling */
    .counter-section {
        background: linear-gradient(135deg, #0a0a0a 0%, #00162b 100%);
        position: relative;
        overflow: hidden;
    }

        .counter-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(168, 123, 255, 0.03) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 25%);
            background-size: 200% 200%;
            z-index: 0;
            animation: silkShimmer 15s infinite alternate;
        }

    .counter-card {
        background: rgba(15, 25, 40, 0.7);
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 12px;
        padding: 30px 20px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

        .counter-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(168, 123, 255, 0.2);
            border-color: rgba(212, 175, 55, 0.3);
        }

    .counter-value {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
        background: linear-gradient(to right, #d4af37, #a87bff, #d4af37);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% auto;
        transition: background-position 0.5s ease;
    }

    .counter-card:hover .counter-value {
        background-position: 100% center;
    }

    .counter-label {
        color: #b0b8c5;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        margin-bottom: 0;
        transition: all 0.3s ease;
    }

    .counter-card:hover .counter-label {
        color: #ffffff;
    }

    .counter-hover-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 135deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0) 40%, rgba(168, 123, 255, 0.1) 50%, rgba(212, 175, 55, 0) 60%, rgba(212, 175, 55, 0) 100% );
        background-size: 300% 300%;
        z-index: -1;
        opacity: 0;
        transition: all 0.7s ease;
    }

    .counter-card:hover .counter-hover-effect {
        opacity: 1;
        background-position: 100% 100%;
    }

    @keyframes silkShimmer {
        0% {
            background-position: 0% 0%;
        }

        100% {
            background-position: 100% 100%;
        }
    }


     /* Full-width Luxury Background */
    .expertise-section {
        background: linear-gradient(135deg, #0a0a0a 0%, #00162b 100%);
        min-height: 100vh;
        padding: 80px 0;
    }

    /* Animated Stars (same as previous implementation) */
    .starfield {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
    }

    .stars {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
    }

        .stars:before {
            content: "";
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 5vw 10vh 2px 1px white, 15vw 25vh 2px 1px white, 25vw 5vh 2px 1px white, 35vw 30vh 2px 1px white, 45vw 15vh 2px 1px white, 55vw 25vh 2px 1px white, 65vw 5vh 2px 1px white, 75vw 35vh 2px 1px white, 85vw 20vh 2px 1px white, 95vw 10vh 2px 1px white, 10vw 40vh 2px 1px white, 20vw 45vh 2px 1px white, 30vw 50vh 2px 1px white, 40vw 55vh 2px 1px white, 50vw 60vh 2px 1px white, 60vw 65vh 2px 1px white, 70vw 70vh 2px 1px white, 80vw 75vh 2px 1px white, 90vw 80vh 2px 1px white, 5vw 85vh 2px 1px white, 15vw 90vh 2px 1px white, 25vw 95vh 2px 1px white, 35vw 100vh 2px 1px white, 45vw 105vh 2px 1px white, 55vw 110vh 2px 1px white, 65vw 115vh 2px 1px white, 75vw 120vh 2px 1px white, 85vw 125vh 2px 1px white, 95vw 130vh 2px 1px white, 10vw 135vh 2px 1px white, 20vw 140vh 2px 1px white, 30vw 145vh 2px 1px white, 40vw 150vh 2px 1px white, 50vw 155vh 2px 1px white, 60vw 160vh 2px 1px white, 70vw 165vh 2px 1px white, 80vw 170vh 2px 1px white, 90vw 175vh 2px 1px white, 5vw 180vh 2px 1px white, 15vw 185vh 2px 1px white, 25vw 190vh 2px 1px white, 35vw 195vh 2px 1px white, 45vw 200vh 2px 1px white, 55vw 205vh 2px 1px white, 65vw 210vh 2px 1px white, 75vw 215vh 2px 1px white, 85vw 220vh 2px 1px white, 95vw 225vh 2px 1px white, 10vw 230vh 2px 1px white, 20vw 235vh 2px 1px white, 30vw 240vh 2px 1px white, 40vw 245vh 2px 1px white, 50vw 250vh 2px 1px white, 60vw 255vh 2px 1px white, 70vw 260vh 2px 1px white, 80vw 265vh 2px 1px white, 90vw 270vh 2px 1px white;
            animation: twinkle 3s infinite, moveStars 20s linear infinite;
        }

    /* Luxury Golden-Lavender Text */
    .luxury-gradient-text {
        background: linear-gradient(135deg, #D4AF37 0%, #A87BFF 50%, #D4AF37 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 15px rgba(168, 123, 255, 0.3);
        font-weight: 700;
        letter-spacing: 1px;
        background-size: 200% auto;
        animation: gradientShift 5s ease infinite;
    }

    .luxury-divider {
        width: 150px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #D4AF37, #A87BFF, transparent);
        margin: 1.5rem auto;
        border-radius: 3px;
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Expertise Cards (same luxurious styling as before) */
    .expertise-card {
        background: rgba(15, 25, 40, 0.7);
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.5s ease;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        height: 100%;
    }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(168, 123, 255, 0.2);
            border-color: rgba(212, 175, 55, 0.3);
        }

    .expertise-img-container {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

        .expertise-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

    .expertise-card:hover .expertise-img-container img {
        transform: scale(1.05);
    }

    .expertise-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: all 0.5s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .expertise-card:hover .expertise-overlay {
        opacity: 1;
    }

    .expertise-content h3 {
        color: white;
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .expertise-buttons .btn {
        background: rgba(212, 175, 55, 0.7);
        color: white;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

        .expertise-buttons .btn:hover {
            background: #a87bff;
            transform: translateY(-3px);
        }

    .color-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #d4af37, #a87bff, #d4af37);
        background-size: 200% auto;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.5s ease;
    }

    .expertise-card:hover .color-wave {
        transform: scaleX(1);
        background-position: 100% center;
    }

    .expertise-info {
        padding: 20px;
        background: rgba(10, 20, 35, 0.8);
    }

    .expertise-category {
        color: #a87bff;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .expertise-title {
        color: white;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0;
    }

    /* Ensure content stays above stars */
    .container-xxl {
        position: relative;
        z-index: 1;
    }

    @media (max-width: 768px) {
        /* Fix for "Our Expertise" heading */
        .section-title h1.display-5 {
            font-size: 2.5rem !important;
            line-height: 1.2 !important;
            margin-bottom: 1.5rem !important;
        }

        .luxury-gradient-text {
            background-size: 150% auto !important;
            -webkit-text-stroke: 0.5px rgba(212, 175, 55, 0.5) !important;
        }

        .luxury-divider {
            width: 100px !important;
            margin: 1rem auto !important;
        }

        /* Protection for other elements */
        .expertise-section {
            padding: 40px 0 !important;
        }

        .expertise-img-container {
            height: 200px !important;
        }
    }

 /* Optional CSS for image sizing  */

    .card-img-top {
        height: 35vh;
        object-fit: cover;
    }

    .card-body {
        padding: 10px;
        font-weight: bold;
    }


    .luxury-clients-section {
        position: relative;
        padding: 8rem 0;
        overflow: hidden;
    }

    .luxury-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0a0a2a 0%, #1a093a 50%, #2a0428 100%);
        z-index: -1;
    }

    .shimmer-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, rgba(255,255,255,0) 0%, rgba(147, 112, 219, 0.05) 50%, rgba(255,255,255,0) 100% );
        animation: shimmer 8s infinite linear;
        transform: skewX(-20deg);
    }

    @keyframes shimmer {
        0% {
            transform: translateX(-100%) skewX(-20deg);
        }

        100% {
            transform: translateX(100%) skewX(-20deg);
        }
    }

    .section-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .header-ornament {
        width: 120px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
        margin: 0 2rem;
        position: relative;
    }

        .header-ornament.left::before,
        .header-ornament.right::before {
            content: '✦';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #D4AF37;
            font-size: 1.2rem;
        }

        .header-ornament.left::before {
            left: 0;
        }

        .header-ornament.right::before {
            right: 0;
        }

    .section-title {
        font-family: 'Playfair Display', serif;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .luxury-subtitle {
        color: rgba(212, 175, 55, 0.9);
        font-size: 1.5rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .luxury-maintitle {
        font-size: 3rem;
        font-weight: 500;
        letter-spacing: 2px;
        background: linear-gradient(to right, #D4AF37, #FFFFFF, #D4AF37);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% auto;
        animation: textShine 3s linear infinite;
        text-transform: uppercase;
    }

    @keyframes textShine {
        to {
            background-position: 200% center;
        }
    }

    .section-subtitle {
        text-align: center;
        margin-bottom: 4rem;
    }

        .section-subtitle p {
            color: rgba(255,255,255,0.8);
            font-size: 1.2rem;
            letter-spacing: 1px;
            font-weight: 300;
        }

    .luxury-logo-container {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 15px;
    }

    .luxury-logo-frame {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        padding: 3px;
        background: linear-gradient(145deg, #D4AF37, #A87BFF, #D4AF37);
        margin: 0 auto 1.5rem;
        position: relative;
        box-shadow: 0 0 20px rgba(168, 123, 255, 0.3);
    }

    .luxury-logo {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #1a1a1a;
    }

    .logo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), transparent);
    }

    .company-name {
        font-size: 1.4rem;
        color: #D4AF37;
        margin-top: 1rem;
        font-weight: 500;
    }

    .company-sector {
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
        margin-top: 0.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 5%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: rgba(212, 175, 55, 0.7);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        background-size: 1.5rem;
    }

    .luxury-testimonial {
        max-width: 700px;
        margin: 5rem auto 0;
        text-align: center;
        position: relative;
    }

    .quote-icon {
        font-size: 5rem;
        color: rgba(212, 175, 55, 0.2);
        line-height: 1;
        margin-bottom: -2.5rem;
    }

    .quote-text {
        color: rgba(255,255,255,0.9);
        font-size: 1.3rem;
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 1.5rem;
    }

    .quote-author {
        color: #D4AF37;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    @media (max-width: 992px) {
        .luxury-maintitle {
            font-size: 2.5rem;
        }

        .luxury-subtitle {
            font-size: 1.2rem;
        }

        .luxury-logo-frame {
            width: 160px;
            height: 160px;
        }
    }

    @media (max-width: 768px) {
        .luxury-clients-section {
            padding: 6rem 0;
        }

        .luxury-maintitle {
            font-size: 2rem;
        }

        .header-ornament {
            width: 80px;
            margin: 0 1.5rem;
        }

        .luxury-logo-frame {
            width: 140px;
            height: 140px;
        }
    }

    @media (max-width: 576px) {
        .luxury-maintitle {
            font-size: 1.8rem;
        }

        .luxury-subtitle {
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .header-ornament {
            width: 40px;
        }
    }



     /* Luxury Background */
    .projects-section {
        background: linear-gradient(135deg, #1a0a2a 0%, #2d0a3d 100%);
        position: relative;
        overflow: hidden;
    }

    /* Wine Texture Overlay */
    .wine-texture-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(86, 11, 173, 0.1) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(134, 21, 204, 0.1) 0%, transparent 25%);
        background-size: 200% 200%;
        opacity: 0.5;
        z-index: 0;
        animation: silkShimmer 15s infinite alternate;
    }

    @keyframes silkShimmer {
        0% {
            background-position: 0% 0%;
        }

        100% {
            background-position: 100% 100%;
        }
    }

    /* Animated Stars */
    .starfield {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
    }

    .stars {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
    }

        .stars:before {
            content: "";
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 5vw 10vh 2px 1px white, 15vw 25vh 2px 1px white, 25vw 5vh 2px 1px white, 35vw 30vh 2px 1px white, 45vw 15vh 2px 1px white, 55vw 25vh 2px 1px white, 65vw 5vh 2px 1px white, 75vw 35vh 2px 1px white, 85vw 20vh 2px 1px white, 95vw 10vh 2px 1px white, 10vw 40vh 2px 1px white, 20vw 45vh 2px 1px white, 30vw 50vh 2px 1px white, 40vw 55vh 2px 1px white, 50vw 60vh 2px 1px white, 60vw 65vh 2px 1px white, 70vw 70vh 2px 1px white, 80vw 75vh 2px 1px white, 90vw 80vh 2px 1px white, 5vw 85vh 2px 1px white, 15vw 90vh 2px 1px white, 25vw 95vh 2px 1px white, 35vw 100vh 2px 1px white, 45vw 105vh 2px 1px white, 55vw 110vh 2px 1px white, 65vw 115vh 2px 1px white, 75vw 120vh 2px 1px white, 85vw 125vh 2px 1px white, 95vw 130vh 2px 1px white, 10vw 135vh 2px 1px white, 20vw 140vh 2px 1px white, 30vw 145vh 2px 1px white, 40vw 150vh 2px 1px white, 50vw 155vh 2px 1px white, 60vw 160vh 2px 1px white, 70vw 165vh 2px 1px white, 80vw 170vh 2px 1px white, 90vw 175vh 2px 1px white, 5vw 180vh 2px 1px white, 15vw 185vh 2px 1px white, 25vw 190vh 2px 1px white, 35vw 195vh 2px 1px white, 45vw 200vh 2px 1px white, 55vw 205vh 2px 1px white, 65vw 210vh 2px 1px white, 75vw 215vh 2px 1px white, 85vw 220vh 2px 1px white, 95vw 225vh 2px 1px white, 10vw 230vh 2px 1px white, 20vw 235vh 2px 1px white, 30vw 240vh 2px 1px white, 40vw 245vh 2px 1px white, 50vw 250vh 2px 1px white, 60vw 255vh 2px 1px white, 70vw 260vh 2px 1px white, 80vw 265vh 2px 1px white, 90vw 270vh 2px 1px white;
            animation: twinkle 3s infinite, moveStars 20s linear infinite;
        }

    @keyframes twinkle {
        0% {
            opacity: 0.2;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0.2;
        }
    }

    @keyframes moveStars {
        0% {
            transform: translate(0, 0);
        }

        25% {
            transform: translate(50px, 30px);
        }

        50% {
            transform: translate(0, 60px);
        }

        75% {
            transform: translate(-50px, 30px);
        }

        100% {
            transform: translate(0, 0);
        }
    }

    /* Luxury Title with Golden-Lavender Animation */
    .luxury-title {
        background: linear-gradient(135deg, #D4AF37 0%, #A87BFF 50%, #D4AF37 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 15px rgba(168, 123, 255, 0.3);
        font-weight: 700;
        letter-spacing: 1px;
        background-size: 200% auto;
        display: inline-block;
        transition: all 0.5s ease;
    }

        .luxury-title:hover {
            background-position: 100% center;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            transform: scale(1.03);
        }

    .luxury-divider {
        width: 150px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #D4AF37, #A87BFF, transparent);
        margin: 1.5rem auto;
        border-radius: 3px;
        transition: all 0.5s ease;
    }

    .section-title:hover .luxury-divider {
        width: 200px;
        background: linear-gradient(90deg, transparent, #A87BFF, #D4AF37, transparent);
    }

    /* Filter Buttons */
    .filter-buttons {
        position: relative;
        z-index: 1;
    }

        .filter-buttons li {
            display: inline-block;
            padding: 8px 20px;
            margin: 0 5px;
            color: #b0b8c5;
            font-weight: 600;
            cursor: pointer;
            border-radius: 30px;
            background: rgba(15, 25, 40, 0.7);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

            .filter-buttons li.active,
            .filter-buttons li:hover {
                color: white;
                background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(168, 123, 255, 0.3) 100%);
                border-color: rgba(212, 175, 55, 0.3);
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(168, 123, 255, 0.2);
            }

    /* Project Cards */
    .luxury-project-card {
        background: rgba(15, 25, 40, 0.7);
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.5s ease;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        height: 100%;
    }

        .luxury-project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(168, 123, 255, 0.2);
            border-color: rgba(212, 175, 55, 0.3);
        }

    .project-img-container {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

        .project-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

    .luxury-project-card:hover .project-img-container img {
        transform: scale(1.05);
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: all 0.5s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .luxury-project-card:hover .project-overlay {
        opacity: 1;
    }

    .project-content .btn {
        background: rgba(212, 175, 55, 0.7);
        color: white;
        margin: 0 10px;
        transition: all 0.3s ease;
    }

        .project-content .btn:hover {
            background: #a87bff;
            transform: translateY(-3px);
        }

    .color-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #d4af37, #a87bff, #d4af37);
        background-size: 200% auto;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.5s ease;
    }

    .luxury-project-card:hover .color-wave {
        transform: scaleX(1);
        background-position: 100% center;
    }

    .project-info {
        padding: 20px;
        background: rgba(10, 20, 35, 0.8);
    }

    .project-category {
        color: #a87bff;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .project-title {
        color: white;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0;
    }

    /* Ensure content stays above background elements */
    .container-xxl {
        position: relative;
        z-index: 1;
    }





      /* Base Styles */
            .enquiry-form-container {
                background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
                padding: 5rem 1rem;
                position: relative;
                overflow: hidden;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Enhanced Starfield Animation */
            .starfield {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
                overflow: hidden;
            }

            .stars-layer {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: transparent;
            }

            .layer-1::before {
                content: "";
                position: absolute;
                width: 1px;
                height: 1px;
                background: rgba(255, 255, 255, 0.8);
                border-radius: 50%;
                box-shadow: 5vw 10vh 0 0 rgba(255, 255, 255, 0.9), 15vw 25vh 0 0 rgba(255, 255, 255, 0.7), 25vw 40vh 0 0 rgba(255, 255, 255, 0.6), 35vw 15vh 0 0 rgba(255, 255, 255, 0.5), 45vw 30vh 0 0 rgba(255, 255, 255, 0.4), 55vw 45vh 0 0 rgba(255, 255, 255, 0.3), 65vw 20vh 0 0 rgba(255, 255, 255, 0.2), 75vw 35vh 0 0 rgba(255, 255, 255, 0.1), 85vw 50vh 0 0 rgba(255, 255, 255, 0.05), 95vw 25vh 0 0 rgba(255, 255, 255, 0.03);
                animation: float 150s linear infinite;
            }

            .layer-2::before {
                content: "";
                position: absolute;
                width: 2px;
                height: 2px;
                background: rgba(255, 255, 255, 0.6);
                border-radius: 50%;
                box-shadow: 10vw 15vh 0 0 rgba(255, 255, 255, 0.7), 20vw 30vh 0 0 rgba(255, 255, 255, 0.6), 30vw 45vh 0 0 rgba(255, 255, 255, 0.5), 40vw 10vh 0 0 rgba(255, 255, 255, 0.4), 50vw 25vh 0 0 rgba(255, 255, 255, 0.3), 60vw 40vh 0 0 rgba(255, 255, 255, 0.2), 70vw 15vh 0 0 rgba(255, 255, 255, 0.1), 80vw 30vh 0 0 rgba(255, 255, 255, 0.05), 90vw 45vh 0 0 rgba(255, 255, 255, 0.03);
                animation: float 120s linear infinite reverse;
            }

            .layer-3::before {
                content: "";
                position: absolute;
                width: 3px;
                height: 3px;
                background: rgba(212, 175, 55, 0.4);
                border-radius: 50%;
                box-shadow: 7vw 12vh 0 0 rgba(212, 175, 55, 0.5), 17vw 27vh 0 0 rgba(212, 175, 55, 0.4), 27vw 42h 0 0 rgba(212, 175, 55, 0.3), 37vw 17vh 0 0 rgba(212, 175, 55, 0.2), 47vw 32vh 0 0 rgba(212, 175, 55, 0.1), 57vw 47vh 0 0 rgba(212, 175, 55, 0.05);
                animation: float 180s linear infinite;
                opacity: 0.7;
            }

            .layer-4::before {
                content: "";
                position: absolute;
                width: 1px;
                height: 1px;
                background: rgba(212, 175, 55, 0.3);
                border-radius: 50%;
                box-shadow: 3vw 8vh 0 0 rgba(212, 175, 55, 0.4), 13vw 23vh 0 0 rgba(212, 175, 55, 0.3), 23vw 38vh 0 0 rgba(212, 175, 55, 0.2), 33vw 13vh 0 0 rgba(212, 175, 55, 0.1), 43vw 28vh 0 0 rgba(212, 175, 55, 0.05);
                animation: float 200s linear infinite reverse;
                opacity: 0.5;
            }

            @keyframes float {
                0% {
                    transform: translate(0, 0);
                }

                100% {
                    transform: translate(-100vw, -100vh);
                }
            }

            /* Wider Form Container */
            .enquiry-form-wrapper {
                width: 100%;
                max-width: 800px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
            }

            /* Metallic Slate Form Design */
            .enquiry-form {
                background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 100%);
                border: 1px solid rgba(212, 175, 55, 0.2);
                border-radius: 16px;
                padding: 3rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.5);
                position: relative;
                overflow: hidden;
            }

                .enquiry-form::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient( 135deg, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0) 20%, rgba(212, 175, 55, 0) 80%, rgba(212, 175, 55, 0.03) 100% );
                    pointer-events: none;
                }

                .enquiry-form::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(212, 175, 55, 0.05)" stroke-width="0.5"/></svg>');
                    opacity: 0.3;
                    pointer-events: none;
                }

            /* Form Header */
            .form-header {
                text-align: center;
                margin-bottom: 3rem;
                position: relative;
            }

            .form-icon {
                width: 70px;
                height: 70px;
                margin: 0 auto 1.8rem;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
                border-radius: 50%;
                border: 1px solid rgba(212, 175, 55, 0.3);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
                transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            }

                .form-icon svg {
                    width: 32px;
                    height: 32px;
                    color: #d4af37;
                    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
                    transition: all 0.3s ease;
                }

            .form-title {
                color: #ffffff;
                font-size: 2.2rem;
                font-weight: 600;
                margin: 0.5rem 0;
                letter-spacing: 0.5px;
                font-family: 'Montserrat', sans-serif;
                line-height: 1.3;
                text-shadow: 0 0 2px #FFD700, /* soft glow */
                0 0 5px #FFD700, /* extended glow */
                1px 1px 0 #FFD700, /* golden edge bottom-right */
                -1px -1px 0 #FFD700, /* golden edge top-left */
                1px -1px 0 #FFD700, -1px 1px 0 #FFD700;
            }

            .form-subtitle {
                color: whitesmoke;
                font-size: 1.05rem;
                letter-spacing: 0.5px;
                font-weight: 300;
                margin: 0;
                line-height: 1.6;
            }

            /* Form Layout */
            .form-row {
                display: flex;
                gap: 2rem;
                margin-bottom: 1.8rem;
            }

            .form-group {
                flex: 1;
                position: relative;
            }

            /* Input Styles */
            .input-container {
                position: relative;
            }
            /* Input field */
            .form-input {
                width: 100%;
                padding: 1.2rem 0.75rem 0.5rem; /* top space for floating label */
                border: 1px solid #ccc;
                border-radius: 0.375rem;
                background-color: transparent;
                color: white;
                font-size: 1rem;
                outline: none;
                transition: border-color 0.3s;
            }

                .form-input::placeholder {
                    color: transparent; /* hides the placeholder text */
                }

            /* Label styling */
            .form-label {
                position: absolute;
                left: 0.75rem;
                top: 1rem;
                color: #eab308; /* amber-500 */
                font-size: 1rem;
                pointer-events: none;
                transition: all 0.2s ease-out;
            }

            /* When input is focused OR has content */
            .form-input:focus + .form-label,
            .form-input:not(:placeholder-shown) + .form-label {
                top: 0.25rem;
                left: 0.5rem;
                font-size: 0.75rem;
                color: #facc15; /* amber-400 */
            }

            /* Highlight border on focus */
            .form-input:focus {
                border-color: #facc15;
            }

            .textarea-container .form-input {
                resize: none;
                min-height: 140px;
            }

            .form-label {
                position: absolute;
                top: 1.2rem;
                left: 0;
                color: #b0b0b0;
                font-size: 1rem;
                font-weight: 300;
                pointer-events: none;
                transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
                transform-origin: left center;
            }

            .input-border {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #d4af37, #f0e6b4);
                transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            }

            .form-input:focus ~ .input-border {
                width: 100%;
            }

            /* Submit Button (unchanged as requested) */
            .submit-btn {
                width: 100%;
                padding: 1.1rem;
                background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
                color: #d4af37;
                border: 1px solid rgba(212, 175, 55, 0.3);
                border-radius: 8px;
                font-size: 0.95rem;
                font-weight: 500;
                letter-spacing: 1px;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.75rem;
                cursor: pointer;
                transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
                position: relative;
                overflow: hidden;
                margin-top: 1rem;
            }

                .submit-btn::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
                    transition: all 0.8s ease;
                }

                .submit-btn:hover {
                    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
                    border-color: rgba(212, 175, 55, 0.6);
                    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
                    transform: translateY(-2px);
                }

                    .submit-btn:hover::before {
                        left: 100%;
                    }

            .btn-text {
                position: relative;
                z-index: 1;
            }

            .btn-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            }

            .submit-btn:hover .btn-icon {
                transform: translateX(5px);
            }

            .submit-btn svg {
                width: 16px;
                height: 16px;
            }

            /* Responsive Adjustments */
            @media (max-width: 992px) {
                .enquiry-form-wrapper {
                    max-width: 700px;
                }

                .enquiry-form {
                    padding: 2.5rem;
                }

                .form-row {
                    gap: 1.5rem;
                }
            }

            @media (max-width: 768px) {
                .enquiry-form-wrapper {
                    max-width: 600px;
                }

                .enquiry-form {
                    padding: 2rem;
                }

                .form-row {
                    flex-direction: column;
                    gap: 1.8rem;
                }

                .form-title {
                    font-size: 1.8rem;
                }

                .form-icon {
                    width: 60px;
                    height: 60px;
                }
            }

            @media (max-width: 576px) {
                .enquiry-form {
                    padding: 1.75rem;
                }

                .form-title {
                    font-size: 1.5rem;
                }

                .form-subtitle {
                    font-size: 0.95rem;
                }

                .form-input {
                    padding: 1rem 1rem 1rem 0;
                }
            }




             /* Base Styles */
    .elite-team-section {
        position: relative;
        padding: 120px 0;
        background: linear-gradient(135deg, #1a1d2e 0%, #0e1120 100%);
        overflow: hidden;
        font-family: 'Montserrat', sans-serif;
    }

    .background-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.03) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.03) 0%, transparent 25%);
        animation: particleMove 20s infinite alternate;
        z-index: 0;
    }

    @keyframes particleMove {
        0% {
            background-position: 0% 0%;
        }

        100% {
            background-position: 100% 100%;
        }
    }

    .elite-team-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    .elite-team-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .elite-team-title {
        font-size: 3.5rem;
        font-weight: 800;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: transparent;
        background: linear-gradient(to right, #d4af37, #f9f295, #d4af37);
        -webkit-background-clip: text;
        background-clip: text;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .title-divider {
        width: 150px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
        margin: 0 auto;
        position: relative;
    }

        .title-divider::after {
            content: '';
            position: absolute;
            top: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            background: #d4af37;
            border-radius: 50%;
            box-shadow: 0 0 15px #d4af37;
        }

    /* Team Grid Layout */
    .elite-team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    /* Team Card Styles */
    .elite-team-card {
        position: relative;
        perspective: 1000px;
        height: 420px;
        width: 100%;
        display: flex;
    }
    .team-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s ease;
        transform-style: preserve-3d;
    }

    .elite-team-card:hover .team-card-inner {
        transform: rotateY(180deg);
    }

    .team-card-front, .team-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        background: rgba(30, 35, 50, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(212, 175, 55, 0.2);
        overflow: hidden;
    }

    .team-card-front {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .team-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        transform: rotateY(180deg);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(135deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 15, 30, 0.9) 100%);
    }

    /* Card Glow Effect */
    .card-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: linear-gradient(45deg, rgba(30, 144, 255, 0.1), transparent, rgba(212, 175, 55, 0.1));
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
    }

    .elite-team-card:hover .card-glow {
        opacity: 1;
        animation: glowPulse 3s infinite alternate;
    }

    @keyframes glowPulse {
        0% {
            box-shadow: 0 0 15px rgba(30, 144, 255, 0.3);
        }

        100% {
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        }
    }

    /* Member Image Styles */
    .member-image-container {
        position: relative;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        margin-bottom: 30px;
        overflow: hidden;
        border: 3px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    }

    .member-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

    .image-glow {
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 50%;
        border: 3px solid transparent;
        transition: all 0.5s ease;
    }

    .elite-team-card:hover .member-image {
        transform: scale(1.05);
    }

    .elite-team-card:hover .image-glow {
        border-color: rgba(30, 144, 255, 0.7);
        box-shadow: 0 0 30px rgba(30, 144, 255, 0.5);
    }

    /* Member Info Styles */
    .member-info {
        text-align: center;
    }

    .member-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .member-title {
        font-size: 1rem;
        color: #d4af37;
        font-weight: 500;
        letter-spacing: 1px;
    }

    /* Back Card Styles */
    .social-links {
        pointer-events: auto !important;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .social-link {
        pointer-events: auto !important;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(30, 144, 255, 0.1);
        border: 1px solid rgba(30, 144, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #d4af37;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .social-link:hover {
            background: rgba(30, 144, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
        }

    .member-bio {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        font-weight: 300;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .elite-team-title {
            font-size: 2.5rem;
        }

        .elite-team-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .elite-team-section {
            padding: 80px 0;
        }

        .elite-team-title {
            font-size: 2rem;
            letter-spacing: 2px;
        }

        .member-image-container {
            width: 180px;
            height: 180px;
        }
    }

    @media (max-width: 576px) {
        .elite-team-title {
            font-size: 1.8rem;
        }

        .elite-team-grid {
            grid-template-columns: 1fr;
        }
    }


    /* White, Black, Grey & Navy Blue Theme */
    .team-section {
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }

        .team-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(0, 34, 68, 0.03) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(0, 34, 68, 0.03) 0%, transparent 25%);
            background-size: 200% 200%;
            z-index: 0;
            animation: silkShimmer 15s infinite alternate;
        }

    @keyframes silkShimmer {
        0% {
            background-position: 0% 0%;
        }

        100% {
            background-position: 100% 100%;
        }
    }

    /* Maintain the golden "Our Elite Team" text */
    .gold-text {
        background: linear-gradient(to right, #b2973a, #d4c075, #b2973a);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 10px rgba(178, 151, 58, 0.2);
        font-weight: 600;
        letter-spacing: 1px;
    }

    .gold-divider {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #b2973a, transparent);
        margin: 1rem auto 2rem;
    }

    /* New color scheme elements */
    .team-item {
        background: #fff;
        border: 1px solid rgba(0, 34, 68, 0.1);
        border-radius: 5px;
        overflow: hidden;
        transition: all 0.5s ease;
        position: relative;
        z-index: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

        .team-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 34, 68, 0.1);
            border-color: rgba(0, 34, 68, 0.2);
        }

    .team-img-container {
        position: relative;
    }

    .blue-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 60%, rgba(0, 34, 68, 0.05));
        transition: all 0.5s ease;
    }

    .team-item:hover .blue-overlay {
        background: linear-gradient(to bottom, transparent 30%, rgba(0, 34, 68, 0.1));
    }

    .team-info {
        background: #f8f9fa;
        position: relative;
    }

    .white-text {
        color: #002244;
        font-weight: 600;
    }

    .grey-subtext {
        color: #6c757d;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .blue-line {
        width: 0;
        height: 2px;
        background: #002244;
        margin: 0.5rem auto 0;
        transition: all 0.5s ease;
    }

    .team-item:hover .blue-line {
        width: 50px;
    }

    .team-social {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        text-align: center;
        transition: all 0.5s ease;
        z-index: 3;
    }

    .team-item:hover .team-social {
        bottom: 20px;
    }

    .blue-social {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 34, 68, 0.2);
        color: #002244 !important;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

        .blue-social:hover {
            background: #002244 !important;
            color: #fff !important;
            transform: translateY(-3px);
        }

    /* Navy Blue Flow Effect on Hover */
    .team-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(0, 34, 68, 0) 0%, rgba(0, 34, 68, 0) 40%, rgba(0, 34, 68, 0.05) 50%, rgba(0, 34, 68, 0) 60%, rgba(0, 34, 68, 0) 100% );
        background-size: 300% 300%;
        z-index: 2;
        opacity: 0;
        transition: all 0.7s ease;
    }

    .team-item:hover::after {
        opacity: 1;
        background-position: 100% 100%;
    }


      /* Background and layout */
    .testimonial-section {
        background: linear-gradient(135deg, #0a0f3d, #1f2a70);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .section-title h1 {
        color: #ffffff;
        font-size: 3rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    /* Testimonial card */
    .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 20px;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(9, 20, 50, 0.5);
    }

        /* Hover effect with slow glow */
        .testimonial-card:hover {
            border: 1px solid rgba(0, 132, 255, 0.5);
            box-shadow: 0 0 30px rgba(0, 132, 255, 0.6);
            transform: translateY(-8px);
        }

        /* Glowing border animation */
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(120deg, #0051ff, #00c8ff, #0051ff);
            background-size: 400% 400%;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
            border-radius: 20px;
            animation: gradientGlow 8s ease infinite;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

    @keyframes gradientGlow {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Inner content */
    .testimonial-card .img-fluid {
        border-radius: 50%;
        border: 2px solid #1f3b93;
        padding: 5px;
        width: 90px;
        height: 90px;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .testimonial-text {
        position: relative;
        z-index: 1;
        color: #dfe9ff;
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-name {
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 600;
        margin-top: 20px;
    }

    .testimonial-profession {
        font-style: italic;
        color: #a3b4ff;
        font-size: 0.9rem;
    }

     /* Background and layout */
    .testimonial-section {
        background: linear-gradient(135deg, #0a0f3d, #1f2a70);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

        /* Floating stars background */
        .testimonial-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/stardust.png');
            opacity: 0.1;
            z-index: 0;
        }

    .section-title h1 {
        color: #ffffff;
        font-size: 3rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 50px;
    }

    /* Testimonial card */
    .testimonial-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 20px;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(9, 20, 50, 0.5);
        z-index: 1;
    }

        .testimonial-card:hover {
            border: 1px solid rgba(0, 132, 255, 0.5);
            box-shadow: 0 0 30px rgba(0, 132, 255, 0.6);
            transform: translateY(-8px);
        }

        /* Glowing border animation */
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(120deg, #0051ff, #00c8ff, #0051ff);
            background-size: 400% 400%;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
            border-radius: 20px;
            animation: gradientGlow 8s ease infinite;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

    @keyframes gradientGlow {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Inner content */
    .testimonial-card .img-fluid {
        border-radius: 50%;
        border: 2px solid #1f3b93;
        padding: 5px;
        width: 90px;
        height: 90px;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .testimonial-text {
        position: relative;
        z-index: 2;
        color: #dfe9ff;
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-name {
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 600;
        margin-top: 20px;
    }

    .testimonial-profession {
        font-style: italic;
        color: #a3b4ff;
    font-size: 0.9rem;
    }
