@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

:root{
    --primary-color: #004BB5;

   --vs-bg: #f8fafc;
  --vs-title-color: #1e293b;
  --vs-subtitle-color: #64748b;
  
  /* Layout Variables */
  --vs-max-width: 1200px;
  --vs-padding: 1.25rem;
  --vs-gap: 1.25rem;
  --vs-inner-gap: 0.75rem;
  
  /* Visual Variables */
  --vs-radius: 0.5rem;
  --vs-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --vs-transition: 0.3s;
  --vs-zoom: 1.03;

  --s-text: #333;
  --s-light-text: #666;
  --s-card-shadow: 0 3px 10px rgba(0,0,0,0.1);
  --s-card-hover-shadow: 0 5px 15px rgba(0,0,0,0.2);

  --counter-size: 1.5rem;
--label-size: 1.25rem;
--circle-size: 90px;
}

.body-container{
    margin-top: 110px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    background-color: white;
    position: fixed;
    width: 100%;
    top:0;
    left:0;
    z-index: 99;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-items {
    display: flex;
    background-color: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-item {
    position: relative;
    margin: 0 15px;
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-item:hover {
    color: var(--primary-color);
    background-color: #E5EDF7;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: calc(100% - 30px);
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 100;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-btn:hover {
    background-color: #d3d8dd;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    background-size: cover;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 100;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    gap:0;
}

@media (min-width: 993px) {
    .nav-container {
    gap:9vw;
}

}

@media (min-width: 1170px) {
    .nav-container {
    gap:18vw;
}

}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 80px;
        padding-left: 30px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 4;
    }

    .nav-container.active {
        transform: translateX(0);
    }

    .nav-items {
        flex-direction: column;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }

    .nav-item {
        margin: 10px 0;
        padding: 15px;
        width: 100%;
    }

    .nav-item:hover {
        background-color: rgba(52, 152, 219, 0.1);
    }

    .nav-item::after {
        left: 15px;
        bottom: 10px;
    }

    .nav-item:hover::after {
        width: calc(100% - 30px);
    }

    .dropdown {
        margin-top: 20px;
        width: 100%;
    }

    .dropdown-btn {
        justify-content: flex-start;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}

/* Toggle animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


.hidden{
    display: none;
}


/* Video section*/

.video-hero {
    width: 100%;
    height: 55vh; /* Full viewport height */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    
    /* Fallback for browsers that don't support object-fit */
    object-fit: cover;
}

/* Video overlay for better text contrast */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2; /* Ensure content appears above video and overlay */
    width: 90%;
    max-width: 1200px;
    padding: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-video {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    background-color: transparent;
    border: 2px solid #F2AF29;
    color: white;
}

.btn-video:hover {
    background-color: #F2AF29;
    color: black;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-video {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .video-hero {
        height: 80vh; /* Slightly smaller on mobile */
    }
}


/* Introduction section */

/* Introduction Section */
.introduction {
  padding: 80px 0;
  background-color: #fff; /* Adjust as needed */
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.intro-content {
  flex: 0 0 50%;
  padding-right: 40px;
}

.intro-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000000; /* Default color */
}

.intro-span {
  color: var(--primary-color); /* Highlight color */
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.intro-image {
  flex: 0 0 45%;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.05), /* subtle top shadow */
    0 10px 30px -5px rgba(0,0,0,0.2); /* stronger bottom shadow */
}

/* Responsive Layout */
@media (max-width: 768px) {
  .intro-content, 
  .intro-image {
    flex: 0 0 100%;
    padding-right: 0;
  }
  
  .intro-content {
    margin-bottom: 40px;
  }
  
  .intro-heading {
    font-size: 2rem;
  }
}

/* Our services section */

.card-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.section-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    width: calc(33.33% - 30px);
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card-image-container {
    position: relative;
    height: 180px;
    background: #004BB5;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%); 
}

.card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    color: #004BB5;
    width: 20px;
    height: 20px;
}

.card-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.card-button {
    margin-top: auto;
    padding: 10px 20px;
    background: #004BB5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    align-self: center;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #F2AF29;
    transition: left 0.3s ease;
    z-index: -1;
}

.card:hover .card-button::before {
    left: 0;
}

.card-button svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card:hover .card-button svg {
    transform: translateX(4px);
}


@media (max-width: 1000px) {
    .card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 600px) {
    .card {
        width: 100%;
    }
    .card-title {
        font-size: 13px;
    }
}

/* Clients Section */

.clients {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.clients-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.clients-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.client-logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Fixed height for consistency */
  width: calc(20% - 20px); /* 5 logos per row accounting for gap */
  padding: 10px;
  box-sizing: border-box;
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.1);
}

/* Mobile view - 3 logos per row */
@media (max-width: 768px) {
  .logo-wrapper {
    width: calc(33.33% - 20px); /* 3 logos per row accounting for gap */
    height: 80px; /* Slightly smaller for mobile */
  }
}

/* Optional: Adjust for very small screens */
@media (max-width: 480px) {
  .logo-wrapper {
    width: calc(50% - 20px); /* 2 logos per row on tiny screens */
  }
}

.testimonials {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #E6F1FE;
}

.testimonials-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.testimonials-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}


.testimonial-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .quote-icon-top {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background-color: #E5EDF7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quote-icon-top svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-color);
        }
        
        .testimonial-content {
            padding: 40px 30px 0px;
            font-size: 16px;
            line-height: 1.6;
            color: #4b4b4b;
        }
        
        .client-info {
            margin-top: 30px;
            padding-left: 30px;
            padding-bottom: 30px;
        }
        
        .client-name {
            font-weight: bold;
            font-size: 16px;
            color: #2c3e50;
        }
        
        .client-designation {
            font-style: italic;
            color: #7f8c8d;
            margin: 5px 0;
        }
        
        .client-company {
            color: #34495e;
            font-weight: 500;
        }
        
        .client-address {
            color: #7f8c8d;
            font-size: 14px;
            margin-top: 3px;
        }
        
        .quote-icon-bottom {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #f5ebd7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quote-icon-bottom svg {
            width: 24px;
            height: 24px;
            fill: #F2AF29;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #bdc3c7;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--blue);
        }
        
        @media (max-width: 768px) {
            .testimonials {
                padding: 40px 20px;
            }
            
            .testimonials-heading {
                font-size: 2rem;
            }
            
            .testimonials-subheading {
                font-size: 1rem;
            }
            
            .testimonial-card {
                padding: 20px;
            }
            
            .quote-icon-top, .quote-icon-bottom {
                width: 40px;
                height: 40px;
            }
            
            .quote-icon-top svg, .quote-icon-bottom svg {
                width: 20px;
                height: 20px;
            }
            
            .testimonial-content {
                padding: 30px 20px 50px;
                font-size: 16px;
            }
            
            .client-info {
                padding-left: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .testimonials-heading {
                font-size: 1.8rem;
            }
            
            .testimonial-card {
                padding: 15px;
            }
            
            .testimonial-content {
                padding: 50px 15px 0px;
                font-size: 15px;
            }
            .client-info {
            padding-bottom: 40px;
        }
            
            .client-name {
                font-size: 18px;
            }
        }


/* Visual Stories section */

/* Base Styles */
.vs-stories {
  padding: 4rem 0;
  background-color: var(--vs-bg);
}

.vs-container {
  max-width: var(--vs-max-width);
  margin: 0 auto;
  padding: 0 var(--vs-padding);
}

.vs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vs-header__title {
  font-size: 2rem;
  color: var(--vs-title-color);
  margin-bottom: 0.75rem;
}

.vs-header__subtitle {
  font-size: 1.1rem;
  color: var(--vs-subtitle-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Layout */
.vs-gallery {
  display: flex;
  gap: var(--vs-gap);
}

.vs-gallery__main {
  flex: 1;
  position: relative;
  border-radius: var(--vs-radius);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  aspect-ratio: 1/1;
}

.vs-gallery__secondary {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vs-inner-gap);
}

.vs-gallery__secondary-item {
  position: relative;
  border-radius: var(--vs-radius);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  aspect-ratio: 1/1;
}

/* Image Styles */
.vs-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vs-transition) ease;
}

.vs-gallery__main:hover .vs-gallery__img,
.vs-gallery__secondary-item:hover .vs-gallery__img {
  transform: scale(var(--vs-zoom));
}

/* Overlay Effects */
.vs-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1.25rem;
  color: white;
  opacity: 0;
  transition: opacity var(--vs-transition) ease;
}

.vs-gallery__main:hover .vs-gallery__overlay,
.vs-gallery__secondary-item:hover .vs-gallery__overlay {
  opacity: 1;
}

.vs-gallery__caption {
  margin: 0;
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .vs-gallery {
    flex-direction: column;
  }
  
  .vs-gallery__secondary {
    grid-template-columns: 1fr;
    margin-top: var(--vs-gap);
  }
  
  .vs-header__title {
    font-size: 1.75rem;
  }
  
  .vs-header__subtitle {
    font-size: 1rem;
  }
}

/* Ready to Transform Section */

.readyTrans {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.readyTrans-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.readyTrans-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.primary-button {
    margin-top: auto;
    padding: 15px 30px;
    background: #004BB5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    align-self: center;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #F2AF29;
    transition: left 0.3s ease;
    z-index: -1;
}


.primary-button:hover::before {
    left: 0;
}

.primary-button svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.primary-button:hover svg {
    transform: translateX(4px);
}

/* About Page */

/* Banner Styles */
.banner {
  width: 100%;
  background-color: #004BB5;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.banner__title {
  font-size: clamp(2rem, 5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.colored-banner {
  color: #F2AF29; /* Company name in accent color */
}

.banner__subtitle {
  font-size: clamp(1rem, 2vw, 1rem);
  max-width: 700px;
  margin: 0 auto 0rem;
  line-height: 1.6;
  opacity: 0.9;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .banner {
    padding: 2rem 1rem;
  }
  
  .banner__title {
    margin-bottom: 0.75rem;
  }
  
  .banner__subtitle {
    margin-bottom: 0rem;
  }
}


/* About Section Styles */
.about-section {
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #e6edff 25%, #ffffff 50%, #dde7ff 75%, #ffffff 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-text {
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.about-img {
  width: 100%;
  height: 120%;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-content {
    order: 1;
  }
  
  .about-image {
    order: 2;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-container {
    padding: 0 1rem;
  }
}

/* vision mission values */

.principles {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8fafc;
}

.principles-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.principles-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Core Values Section */

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 75, 181, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 75, 181, 0.12);
}

.value-icon-container {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.value-icon-bg {
  width: 50px;
  height: 50px;
  background-color: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.value-icon {
  width: 24px;
  height: 24px;
  color: #004BB5;
}

.value-title {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-text {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
  color: #4a4a4a;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .values-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .core-values {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 1.5rem;
  }
  
  .value-icon-bg {
    width: 44px;
    height: 44px;
  }
  
  .value-icon {
    width: 20px;
    height: 20px;
  }
}


/* Approach section */

/* Approach Section */
.approach-section {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e6edff 25%, #ffffff 50%, #dde7ff 75%, #ffffff 100%);
}

.approach-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.approach-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding:0px 10px;
    margin-bottom: 40px;
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.approach-card {
  background-color: transparent;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 0.5px solid rgb(220, 220, 220);
  position: relative;
  overflow: hidden;
}

.approach-card:hover {
  transform: scale(1.05);
  border-color: #004BB5;
  box-shadow: 0 10px 25px rgba(0, 75, 181, 0.1);
}

.approach-number {
  width: 40px;
  height: 40px;
  background-color: #e6f0ff;
  color: #004BB5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.approach-card:hover .approach-number {
  background-color: #004BB5;
  color: white;
}

.approach-title {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.approach-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .approach-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .approach-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .approach-card {
    padding: 1.5rem;
  }
  
  .approach-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .approach-title {
    font-size: 1.3rem;
  }
}

/* Team Section */

.team-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.team-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.team-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-carousel {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 -10px;
    padding-bottom: 1rem;
}

.team-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 10px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .team-slide {
        flex: 0 0 100%;
    }
}

.team-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-designation {
    color: var(--primary-color);
    font-size: 14px;
}

.team-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
}

.team-bio {
    margin: 15px 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #555;
    flex-grow: 1;
}

.team-connect {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 60%; /* Remove full width */
    gap: 1rem;
    background: none;
    cursor: pointer;
}

.team-connect:hover {
    background-color: #F2AF29;
    color: black !important;
    border: none;
}

@media (max-width: 768px) {
    .team-connect{
      width: 80%;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.carousel-nav {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    color: var(--primary-color);
    margin: 0 10px;
}

.carousel-nav:hover {
    background-color: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
}

.team-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

/* features section */

.features-section {
  width: 100%;
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #e6edff 25%, #ffffff 50%, #dde7ff 75%, #ffffff 100%);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.features-image {
  flex: 1;
}

.features-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 75, 181, 0.1);
}

.features-content {
  flex: 1;
}

.features-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.features-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.feature-icon {
  color: #004BB5;
  font-size: 1.8rem;
  margin-top: 0.2rem;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-container {
    flex-direction: column;
  }
  
  .features-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  .features-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .features-title {
    font-size: 1.8rem;
  }
  
  .features-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
}

/* Services section */

.services-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            text-align: center;
            min-width: 250px;
            padding: 1.5rem;
            color: black;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            gap:0.5rem;
        }
        
        .service-item:hover {
            color: var(--primary-color);
        }
        
        .service-icon {
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .service-item:hover .service-icon {
            color: var(--primary-color);
            transform: scale(1.1);
        }
        
        .service-name {
            font-size: 0.8rem;
            font-weight: 300;
        }
        
        @media (max-width: 900px) {
            .service-item {
                width: 100%;
                flex-direction: row;
                justify-content: flex-start;
                text-align: left;
                min-width: auto;
                padding: 1rem;
            }
            
            .service-icon {
                margin-bottom: 0;
                margin-right: 1rem;
                font-size: 2rem;
            }
        }

/**/

.dynamic-services{
background:linear-gradient(135deg, #ffffff 0%, #e6edff 25%, #ffffff 50%, #dde7ff 75%, #ffffff 100%);
}

.s-service-section {
            display: flex;
            max-width: 1200px;
            margin: 1rem auto 8rem auto;
            padding: 3rem 1rem 3rem 1rem;
            gap: 2rem;
        }

        .s-content-side {
            flex: 1;
        }

        .s-image-side {
            flex: 1;
            display: flex;
            align-items: center;
        }

        .s-image-side img {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--s-card-shadow);
        }

        .s-section-heading {
            font-size: 2rem;
            color: var(--s-text);
            margin-bottom: 1rem;
        }

        .s-section-subheading {
            color: var(--s-light-text);
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .s-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        /* When there's an odd number of cards */
        .s-card-grid .s-service-card:last-child:nth-child(odd) {
            grid-column: 1 / -1;
            justify-self: center;
            width: 50%; /*Optional: to prevent the card from being too wide */
        }

        .s-service-card {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: var(--s-card-shadow);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            margin-bottom: 0;
            z-index: 1;
        }

        .s-service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--s-card-hover-shadow);
            z-index: 10;
        }

        .s-card-content {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
        }

        .s-card-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .s-card-text {
            font-size: 0.8rem;
            color: #000000;
        }

        .s-card-tooltip {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(100% + 10px);
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 5;
            pointer-events: none;
            /* Message bubble styling */
            border: 1px solid #eee;
        }

        /* Message bubble arrow */
        .s-card-tooltip::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 20px;
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent white transparent;
            filter: drop-shadow(0 -2px 1px rgba(0,0,0,0.1));
        }

        .s-service-card:hover .s-card-text{
          color: var(--primary-color);
        }

        .s-service-card:hover .s-card-tooltip {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .s-tooltip-heading {
            color: var(--primary-color);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .s-tooltip-text {
            font-size: 0.8rem;
            color: black;
            line-height: 1.5;
            margin: 0;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .s-service-section {
                flex-direction: column;
            }

            .s-image-side {
                order: -1;
                margin-bottom: 2rem;
            }

            .s-card-grid {
                grid-template-columns: 1fr;
            }

            /* Reset the odd card styling on mobile */
            .s-card-grid .s-service-card:last-child:nth-child(odd) {
                grid-column: auto;
                justify-self: stretch;
                width: 100%;
            }
            
            /* More space for tooltips on mobile */
            .s-service-card {
                margin-bottom: 1rem;
            }
        }

        /* news */
.news-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #e6edff 25%, #ffffff 50%, #dde7ff 75%, #ffffff 100%);
            color: white;
        }
        
        .news-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.news-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}
        
        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            color: #333;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-card-image {
            height: 200px;
            overflow: hidden;
        }
        
        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .news-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-date {
            display: flex;
            align-items: center;
            font-weight: 300;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .news-date i {
            margin-right: 8px;
        }
        
        .news-title {
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .news-text {
            color: #666;
            line-height: 1.5;
            font-size: 0.95rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 900px) {
            .news-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .news-container {
                grid-template-columns: 1fr;
            }
            
            .news-heading {
                font-size: 2rem;
            }
        }


/*    */

.contact-section {
            padding: 0px 20px;
            background:linear-gradient(135deg, #ffffff 0%, #e6edff 25%, #ffffff 50%, #dde7ff 75%, #ffffff 100%);
            color: white;
        }
        
        .contact-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.contact-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .offices-section {
            flex: 1;
            /* min-width: 300px; */
        }

        .contact-form-section {
            flex: 1;
            /* min-width: 300px; */
        }

        .offices-section h2 {
            font-size: 24px;
            margin-bottom: 30px;
            color: #333;
        }

        .office {
            margin-bottom: 30px;
        }

        .office-header {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .office-icon {
            width: 17px;
            height: 17px;
            margin-right: 10px;
            color:var(--primary-color)
        }

        .office-name {
            font-size: 14px;
            font-weight: bold;
            color: #222;
        }

        .office-location, .office-phone, .office-email {
            margin-left: 30px;
            margin-bottom: 8px;
            color: #555;
            font-size: 14px;
            font-weight: 400;
        }

        .office-email {
            color: #0066cc;
            text-decoration: none;
        }

        .office-email:hover {
            text-decoration: underline;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            width: 100%;
        }

        .button-row {
            display: flex;
            width: 100%;
            justify-content: center;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;
        }

        .form-group-full {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 100%;
        }

        .form-group, .form-group-full label {
            font-size: 14px;
            color: #555;
            font-weight: bold;
        }

        input, textarea {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 12px;
            width: 100%;
        }

        input:focus, textarea:focus {
          border: 2px solid var(--primary-color);
          outline: none;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .contact-form button {
            background-color: #0066cc;
            color: white;
            border: none;
            padding: 14px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 30%;
        }

        .contact-form button:hover {
            background-color: #0055aa;
        }

        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .offices-section, .contact-form-section {
                width: 100%;
            }

            .form-row {
                flex-direction: column;
                gap: 20px;
            }

            .contact-form button {
            width: 60%;
        }
        }


/* */
footer {
    background-color: #004BB5;
    color: white;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 0 0 auto; /* Changed from flex: 1 to auto */
    min-width: 0; /* Allows columns to shrink below min-width */
    margin-bottom: 30px;
    padding: 0 15px;
    width: auto; /* Let content determine width */
}

/* First column (logo) - give it a fixed width */
.footer-column:first-child {
    flex: 0 0 200px; /* Fixed width for logo column */
}

/* For smaller screens */
@media (max-width: 768px) {
    .footer-column {
        flex: 0 0 100%; /* Full width on small screens */
        width: 100%;
        padding: 0 10px;
    }
    
    .footer-column:first-child {
        flex: 0 0 100%; /* Full width on small screens */
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.footer-logo-tagline {
    margin-bottom: 20px;
    font-size: 20px;
    font-family: "Alex Brush", cursive;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    white-space: nowrap; /* Prevent title from wrapping */
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap; /* Prevent text from wrapping */
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap; /* Prevent text from wrapping */
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
    color: #FFD700;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    font-size: 14px;
    font-weight: 300;
}

        @media (max-width: 768px) {
            .footer-column {
                flex: 50%;
            }
        }

        @media (max-width: 480px) {
            .footer-column {
                flex: 100%;
            }
        }


/* counter section */
        
        .stats-section {
            background: linear-gradient(135deg, #ffffff 0%, #e6edff 25%, #ffffff 50%, #dde7ff 75%, #ffffff 100%);
            padding: 20px 20px;
            text-align: center;
            box-sizing: border-box;
            margin-bottom: 2.5rem;
        }
        
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 20px;
        }
        
        .stat-item {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            padding: 20px 10px;
            margin: 10px;
            box-sizing: border-box;
        }
        
        .stat-number {
            font-size: clamp(32px, 5vw, 32px);
            font-weight: bold;
            color: #004BB5;
            margin: 15px 0;
            transition: all 0.5s ease;
            line-height: 1.2;
        }
        
        .stat-label {
            font-size: clamp(16px, 2.5vw, 20px);
            color: #004BB5;
            opacity: 0.8;
        }
        
        .plus-sign {
            font-size: 0.7em;
            vertical-align: top;
            color: #004BB5;
        }
        
        .cr-sign {
            font-size: 0.6em;
            vertical-align: top;
            color: #004BB5;
        }

        /* Mobile-specific adjustments */
        @media (max-width: 768px) {
            .stats-section {
                padding: 40px 10px;
            }
            
            .stat-item {
                min-width: 150px;
                padding: 15px 5px;
                margin: 5px;
            }
            
            .stat-number {
                margin: 10px 0;
            }
        }

        @media (max-width: 480px) {
            .stats-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .stat-item {
                width: 100%;
                max-width: 100%;
                padding: 15px 0;
            }
        }



/*  loader */
        
        .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full screen height */
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #004BB5; /* Your specified color */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.member-nz{
    text-align: center;
    font-size: 0.9rem;
    padding: 0rem 1rem 1rem 1rem;
    margin: 0rem 1rem 1rem 1rem;
}

.member-nz a {
    
    font-size: 0.8rem;
    font-style: italic;
}