/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* Remove all text underlines */
a {
  text-decoration: none;
}

/* Social Grid Styles */
.social-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.social-card { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 22px;
  min-height: 160px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.social-card:hover { 
  box-shadow: 0 10px 24px rgba(11, 44, 107, 0.15);
  transform: translateY(-3px);
}

.social-icon {
  margin-bottom: 12px;
}

.social-icon i { 
  font-size: 40px;
  transition: transform 0.3s ease;
}

.social-card:hover .social-icon i {
  transform: scale(1.1);
}

.social-label {
  color: #0b2c6b;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
}

/* Brand Specific Colors */
.brand-facebook { color: #1877F2; }
.brand-instagram { color: #E1306C; }
.brand-linkedin { color: #0077B5; }
.brand-twitter { color: #1DA1F2; }

/* Responsive Styles */
@media (max-width: 992px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .social-card {
    min-height: 140px;
    padding: 18px;
  }
  
  .social-icon i {
    font-size: 36px;
  }
  
  .social-label {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }
  
  .social-card {
    min-height: 120px;
    padding: 15px 10px;
  }
  
  .social-icon i {
    font-size: 32px;
  }
  
  .social-label {
    font-size: 14px;
  }
}

/* ------------------------------
   TOP BAR
------------------------------ */
.topbar {
  background-color: #0b2c6b;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.topbar-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
  margin-right: 15px;
  transition: 0.3s;
}

.topbar a:hover {
  color: var(--accent);
}

/* YouTube Brand Styling */
.social-card.brand-youtube .social-icon i {
  color: #FF0000; /* Official YouTube Red */
}

/* Optional: subtle hover polish */
.social-card.brand-youtube:hover .social-icon i {
  color: #cc0000;
}

/* ------------------------------
   MAIN HEADER
------------------------------ */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand__logo {
  height: 55px;
}

/* ------------------------------
   NAVIGATION
------------------------------ */
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav__link {
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__cta {
  background: #0b2c6b;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
}

.nav__cta:hover {
  background: var(--accent);
  color: #fff !important;
}

/* ------------------------------
   DROPDOWN MENU
------------------------------ */
.dropdown {
  position: relative;
}

/* ✅ Full-Width Dropdown Fixed */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  width: 80vw; /* Full viewport width */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 30px 80px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 999;
}

.dropdown:hover .mega-menu {
  display: grid;
}

.mega-column h4 {
  color: #0b2c6b;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.mega-column ul {
  list-style: none;
}

.mega-column ul li a {
  display: block;
  padding: 5px 0;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.mega-column ul li a:hover {
  color: #0b2c6b;
}

/* ------------------------------
   NAV TOGGLE (MOBILE)
------------------------------ */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.hamburger, 
.hamburger::before, 
.hamburger::after {
  display: block;
  width: 25px;
  height: 3px;
  background: #0b2c6b;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Active state for hamburger */
.nav-toggle[aria-expanded="true"] .hamburger {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(-90deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-90deg);
  bottom: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

.social-links a {
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: #f9d423;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-links .material-symbols-outlined {
  font-size: 20px;
}

/* Mobile styles for social links */
@media (max-width: 768px) {
  .social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
}

/* ------------------------------
   BANNER
------------------------------ */
.banner {
    background: linear-gradient(rgba(11, 44, 107, 0.6), rgba(11, 44, 107, 0.45)), url('../assets/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 560px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    padding: 80px 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 6px 20px rgba(2,18,50,0.35);
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-cta {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-cta:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    color: #fff;
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        width: 30px;
        height: 22px;
        justify-content: space-between;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1000;
        padding: 0;
    }

    .hamburger, 
    .hamburger::before, 
    .hamburger::after {
        width: 100%;
        height: 3px;
        background-color: #0b2c6b;
        transition: all 0.3s ease;
    }

    .nav-toggle[aria-expanded="true"] .hamburger {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle[aria-expanded="true"] .hamburger::before {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-90deg) translate(9px, 0);
    }

    .site-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .site-nav.open {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        padding: 0;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        padding: 15px;
        display: none;
    }

    .dropdown.active .mega-menu {
        display: grid !important;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
}

/* ------------------------------
   STATS SECTION
------------------------------ */
.stats-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    flex-direction: column;
}

.stats-content {
    padding-right: 0;
    width: 100%;
    margin-bottom: 40px;
}

.stats-content h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.stats-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.key-points {
    display: grid;
    gap: 20px;
    width: 100%;
}

.point {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.point i {
    font-size: 24px;
    color: #0b2c6b;
    background: #f0f4ff;
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 8px;
}

.point p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.stat-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(6,35,77,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(11,44,107,0.04);
    width: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6,35,77,0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(145deg, #0b2c6b, #1a4ba8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(6,35,77,0.15);
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

.stat-content h3 {
    font-size: 2rem;
    color: #0b2c6b;
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 800;
}

.stat-content p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats-content {
        padding-right: 0;
        text-align: center;
    }
    
    .point {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
   ABOUT SECTION
------------------------------ */
.about-section {
    padding: 100px 43px;
    background: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.5;
}

.about-features i {
    color: #0b2c6b;
    font-size: 20px;
    margin-top: 4px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--accent);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2rem;
    }
}

/* ------------------------------
   FEATURED SECTION
------------------------------ */
.featured-section {
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.featured-section h3 {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.featured-logos img {
    max-width: 120px;
    height: auto;
    filter: none;
    opacity: 0.95;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.featured-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .featured-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .featured-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-logos img {
        max-width: 100px;
    }
}

/* ------------------------------
   INDUSTRIES SECTION
------------------------------ */
.industries-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(11, 44, 107, 0.2), rgba(249, 212, 35, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-image::after {
    opacity: 1;
}

.industry-content {
    padding: 25px;
    text-align: center;
}

.industry-content i {
    font-size: 2rem;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(249, 212, 35, 0.3);
    margin-bottom: 15px;
}

.industry-content h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 10px;
}

.industry-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
   SERVICES SECTION
------------------------------ */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-5px);
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(11, 44, 107, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover *, .service-card:hover .explore-link span {
    color: #fff;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #fff;
}

.service-icon i {
    font-size: 30px;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    color: #0b2c6b;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: none; /* Prevent double hover effects */
}

.service-card-link:hover .explore-link {
    color: #ff6b6b;
    transform: translateX(5px);
}

.explore-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card:hover .explore-link i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
   TESTIMONIALS SECTION
------------------------------ */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scroll 50s linear infinite;
    /* Add these properties */
    will-change: transform;
    animation-fill-mode: forwards;
}

/* Update the scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Add this to prevent animation jump */
.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 350px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.2;
}

.testimonial-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }
    
    .testimonials-track {
        animation-duration: 35s; /* Faster on mobile */
    }
}

/* Color variables */
:root {
	/* updated brighter palette */
	--primary: #06234d;
	--primary-light: #1e59d7;
	--accent: #ff3e3e;
	--accent-light: #ff6b6b;
	--bg: #ffffff;
	--muted: #f7f9fb;
}

/* make typography stronger and crisper */
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 500;             /* heavier base */
	color: #111;                  /* darker, higher contrast text */
	background: var(--bg);
}

/* headings heavier */
h1, h2, h3, h4, h5, h6 {
	font-weight: 800;
	color: var(--primary);
	letter-spacing: -0.02em;
}

/* brighten banners and reduce heavy overlay */
.banner {
    background: linear-gradient(rgba(11, 44, 107, 0.6), rgba(11, 44, 107, 0.45)), url('../assets/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 560px;
}

/* stronger banner text */
.banner-content h1 {
	color: #fff;
	text-shadow: 0 6px 20px rgba(2,18,50,0.35);
	font-weight: 800;
}

/* make CTA brighter */
.banner-cta, .nav__cta {
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	color: #fff;
	box-shadow: 0 12px 30px rgba(255,62,62,0.12);
}

/* cards: whiter and more vivid shadows */
.stat-card, .industry-card, .service-card, .testimonial-card {
	background: #ffffff; /* remove dull gradients */
	box-shadow: 0 18px 50px rgba(6,35,77,0.08);
	border: 1px solid rgba(11,44,107,0.04);
}

/* stat icons brighter */
.stat-icon {
	background: linear-gradient(145deg, var(--primary), var(--primary-light));
	box-shadow: 0 12px 30px rgba(6,35,77,0.12);
}

/* featured logos: remove grayscale and raise opacity */
.featured-logos img {
	filter: none;
	opacity: 0.95;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* increase contrast for text inside cards */
.stat-content h3 {
	color: var(--primary);
	font-weight: 800;
}

.stat-content p, .testimonial-text, .industry-content p, .service-card p {
	color: #333;
}

/* make section backgrounds a touch lighter where used */
.stats-section {
	background: var(--muted);
}

/* Trusted Companies Section */
.trusted-companies {
    padding: 60px 0;
    background-color: #f9fafc;
    text-align: center;
}

.trusted-companies .section-title {
    font-size: 2.2rem;
    color: #0b2c6b;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.trusted-companies .section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #ff6b6b;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.trusted-logos .client-logo-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 4px 16px rgba(11, 44, 107, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    width: 100%;
    margin: 0;
}

.trusted-logos .client-logo-card img {
    max-width: 80%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.trusted-logos .client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 35, 77, 0.15);
}

.trusted-logos .client-logo-card:hover img {
    transform: scale(1.08);
}

/* Responsive styles for trusted logos */
@media (max-width: 1200px) {
    .trusted-logos {
        gap: 25px;
    }
    
    .trusted-logos .client-logo-card {
        height: 130px;
        padding: 20px 15px;
    }
}

@media (max-width: 992px) {
    .trusted-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .trusted-logos .client-logo-card {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .trusted-logos .client-logo-card {
        height: 110px;
        padding: 15px 10px;
    }
}

@media (min-width: 768px) {
    .stats-wrapper {
        flex-direction: row;
    }
    
    .stats-content {
        padding-right: 30px;
        width: 45%;
        margin-bottom: 0;
    }
    
    .stats-grid {
        width: 55%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .key-points {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .point {
        text-align: left;
        align-items: flex-start;
    }
    
    .stats-content h2,
    .stats-desc {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .stats-content h2 {
        font-size: 2.5rem;
    }
    
    .stats-desc {
        font-size: 1.1rem;
    }
    
    .point {
        padding: 25px;
    }
    
    .stat-card {
        padding: 30px 25px;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
    
    .stat-content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .trusted-logos {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 15px;
    }
    
    .trusted-logos .client-logo-card {
        height: 90px;
        padding: 12px 8px;
    }
    
    .trusted-companies .section-title {
        font-size: 1.8rem;
    }
}

/* sharper hover lifts */
.stat-card:hover, .service-card:hover, .industry-card:hover, .testimonial-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 28px 70px rgba(6,35,77,0.12);
	transform: translateY(-14px);
	box-shadow: 0 28px 70px rgba(6,35,77,0.12);
}

/* fine tune logos and icons highlight */
.industry-content i, .service-icon i {
	color: var(--accent);
	text-shadow: 0 4px 14px rgba(255,62,62,0.08);
}

/* make topbar links stand out more */
.topbar a {
	color: #fff;
	font-weight: 600;
}

/* make explore link and arrows more vivid */
.explore-link span {
	color: var(--primary);
	font-weight: 700;
}

/* subtle increase in spacing for breathing room */
.container { padding-left: 24px; padding-right: 24px; }

/* ------------------------------
   CLIENTS / LOGO GRID
------------------------------ */
.clients-section {
  padding: 60px 0;
  background: #fff;
}

.clients-inner {
  display: grid;
  grid-template-columns: 1fr 340px; /* grid + sidebar */
  gap: 30px;
  align-items: start;
  position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    align-items: center;
}

.client-logo-card {
    background: #ffffff;
    border: 1px solid rgba(11,44,107,0.06);
    height: 150px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(11, 44, 107, 0.08);
    position: relative;
    overflow: hidden;
}

/* center and scale logos */
.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(6, 35, 77, 0.12);
  border-color: rgba(11, 44, 107, 0.1);
}

.client-logo-card:hover img {
  transform: scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Add a subtle shine effect on hover */
.client-logo-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.client-logo-card:hover::after {
  left: 100%;
}

/* Right side panel (blue) */
.clients-panel {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(6,35,77,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clients-panel h3 {
  margin: 0 0 6px 0;
  font-size: 1.35rem;
  color: #fff;
}

.clients-panel p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

.clients-cta {
  display: inline-block;
  margin-top: 12px;
  background: #fff;
  color: var(--primary);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6,35,77,0.08);
}

.clients-cta:hover {
  transform: translateY(-3px);
}

/* small note */
.small-note {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: auto;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 992px) {
    .clients-inner {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .client-logo-card {
        height: 120px;
        padding: 15px;
        box-shadow: 0 3px 10px rgba(6, 35, 77, 0.06);
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo-card {
        height: 100px;
        padding: 12px;
        box-shadow: 0 2px 8px rgba(6, 35, 77, 0.05);
    }
    
    .client-logo-card img {
        min-width: 70px;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
    }
}

/* ------------------------------
   BLOG SECTION
------------------------------ */
.blog-section {
    padding: 100px 0;
    background: var(--muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.blog-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-content {
    padding: 30px;
}

.blog-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #222;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author span {
    color: #666;
    font-size: 0.9rem;
}

.read-more {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Section subtitles */
.section-subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* ------------------------------
   FAQ SECTION
------------------------------ */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.faq-grid {
    margin-top: 50px;
    display: grid;
    gap: 20px;
}

.faq-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.faq-image:hover img {
    transform: scale(1.05);
}

/* FAQ Item styles remain the same */
.faq-item {
    background: var(--muted);
    border-radius: 12px;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-button span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-button i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

/* Active states */
.faq-item.active {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item.active .faq-button {
    background: var(--muted);
}

.faq-item.active .faq-button i {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* Hover states */
.faq-button:hover span {
    color: var(--accent);
}

@media (max-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    
    .faq-image {
        order: -1;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .faq-button span {
        font-size: 1rem;
    }
    
    .faq-button {
        padding: 20px;
    }
    
    .faq-content p {
        padding: 0 20px 20px;
    }
}

/* ------------------------------
   WHATSAPP FLOATING BUTTON
------------------------------ */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 32px;
    color: #fff;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}
/* ------------------------------

