* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #fff;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: #0a1b27;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  font-size: 14px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.franchise {
  background: #fbb034;
  color: #000;
}

.hiring {
  background: #f7931e;
  color: #000;
}

.btn:hover {
  transform: scale(1.05);
}

/* ========== HEADER BASE ========== */
header {
  background: linear-gradient(to right, #e9c6c2, #cfdcef);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  width: 90%;
  margin: auto;
}

/* ========== DESKTOP NAVBAR ========== */
.nav {
  display: flex;
  align-items: center;
  position: relative;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 225px;
  height: auto;
}

/* ========== DESKTOP NAVIGATION LINKS ========== */
nav {
  margin-right: auto;
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  /* align-items: center; */
  gap: 5px;
  margin: 0;
  padding: 10px 60px;
}

nav ul li a {
  color: #000000;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #073851;
}

/* ========== DESKTOP CALL BUTTON ========== */
.call-btn {
  flex-shrink: 0;
}

.call-btn a {
  background: #0d41db;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.call-btn a:hover {
  background: #0a2f91;
}

/* ========== HAMBURGER ICON ========== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

/* ========== DESKTOP DROPDOWN MENU ========== */
.nav-links li {
  position: relative;
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #f6dbda;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.mega-menu a {
  display: block;
  padding: 10px 15px;
  color: #000;
  border-radius: 8px;
  font-weight: 500;
  text-align: left;
  transition: 0.3s;
}

.mega-menu a:hover {
  background: #eaf5ff;
  color: #007bff;
}

/* ========== MOBILE VIEW ========== */
@media (max-width: 992px) {

  header {
    padding: 12px 15px;
  }

  .nav {
    justify-content: space-between;
  }

  /* Logo */
  .logo img {
    width: 150px;
    margin-left: -15px;
  }

  /* Call button */
  .call-btn {
    order: 2;
    margin-left: auto;
  }

  .call-btn a {
    padding: 8px 14px;
    font-size: 14px;
  }

  /* Hamburger */
  .menu-toggle {
    order: 3;
    display: block;
    margin-left: 15px;
  }

  /* Hide desktop nav */
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 65%;
    max-width: 320px;
    height: 100vh;
    background: #3e64c3;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    transition: left 0.35s ease;
    z-index: 1001;
    padding-top: 80px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow-y: auto;
  }

  nav.open {
    left: 0;
    padding: 10px 0px;
    top: 64px;
  }

  nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    /* align-items: center; */
    gap: 5px;
    margin: 0;
}

  nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  nav ul li a {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    color: #fff;
    /* padding: 14px 10px; */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
  }

  nav ul li a i {
    font-size: 14px;
  }

  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  /* ===== MOBILE DROPDOWNS ===== */
  .mega-menu {
    display: none;
    position: static;
    background: #f6f8fb;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
    width: 240px;
  }

  .dropdown.open > .mega-menu {
    display: flex;
    flex-direction: column;
  }

  .mega-menu a {
    padding: 10px 40px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    background: #f6f8fb;
  }

  .mega-menu a:hover {
    background: #eaeef6;
    color: #0d41db;
  }
}


/* Portfolio Section */
.container1 {
      width: 90%;
      margin: auto;
      text-align: center;
      padding: 40px 0;
    }

    h2 {
      color: #003366;
      font-size: 28px;
      margin-bottom: 20px;
    }

    /* Tabs */
    .tabs1 {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      /* margin-bottom: 25px; */
    }

    .tab1 {
      background: #e6eef6;
      border: 1px solid #6294c9;
      color: #003366;
      padding: 10px 20px;
      margin: 5px;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tab1.active {
      background: #003366;
      color: #fff;
    }

    

    /* Filters */
    .filters {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      background: #fff;
      padding: 15px;
      top: 0;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      border: 1px solid #ccc;
    }

    select {
      padding: 10px 15px;
      border: 1px solid #ffffff;
      border-radius: 5px;
      font-size: 14px;
      outline: none;
    }

    /* Portfolio grid */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .portfolio-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-5px);
    }

    .portfolio-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .portfolio-info {
      padding: 15px;
    }

    .portfolio-info h4 {
      color: #003366;
      margin-bottom: 5px;
      font-size: 18px;
    }

    .portfolio-info p {
      color: #666;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
    }

    .tag {
      background: #e0ecff;
      color: #003366;
      font-size: 12px;
      padding: 5px 8px;
      border-radius: 4px;
    }

    @media(max-width:600px){
      .filters {
        flex-direction: column;
      }

      .container1 {
        display: none;
      }
    }

    /* Growth Section */
      .growth-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 60px 5%;
      background: #fff;
    }

    .growth-content {
      flex: 1;
      min-width: 350px;
      padding-right: 40px;
    }

    .growth-content h2 {
      font-size: 28px;
      color: #003366;
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.3;
    }

    .growth-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 25px;
    }

    .growth-card {
      background: #f9fbff;
      border: 1px solid #e0e6ed;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .growth-card:hover {
      transform: translateY(-5px);
    }

    .growth-card i {
      font-size: 28px;
      color: #ffb400;
      flex-shrink: 0;
    }

    .growth-card h3 {
      font-size: 18px;
      color: #003366;
      margin-bottom: 8px;
    }

    .growth-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
    }

    .growth-image {
      flex: 1;
      text-align: center;
      min-width: 300px;
    }

    .growth-image img {
      max-width: 90%;
      border-radius: 10px;
    }

    @media (max-width: 900px) {
      .growth-section {
        flex-direction: column;
        text-align: center;
      }
      .growth-content {
        padding-right: 0;
      }
      .growth-card {
        justify-content: center;
      }
    }

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 100px;
  min-height: 55vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient( to right, #e9c6c2, #cfdcef); 
}

/* Background layer for zoom */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  background-image: url('images/2.png'); /* your background */
  background-size: cover;
  background-position: space-around;
  z-index: 0;
  animation: zoomEffect 3s ease-in-out infinite alternate;
}

/* Keep text and image above the zoom background */
.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}

/* Background zoom animation */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}



.hero-content {
  flex: 1;
  animation: slideInLeft 1.2s ease forwards;
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #003366;
 text-shadow: 2px 2px 4px #fff;
}

.hero-content h2 {
  color: #f7931e;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

#changing-text {
  color: #000000;
  font-size: 1.6rem;
  margin-bottom: 15px;
  white-space: nowrap;
  border-right: 3px solid #f7931e;
  width: fit-content;
  overflow: hidden;
  animation: blink 0.7s infinite;
}

/* Blinking cursor animation */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}


.hero-content p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 25px;
}

.hero-image {
  flex: 1;
  animation: slideInRight 1.2s ease forwards;
}

.hero-image img {
  max-width: 450px;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
  background: none;
  position: relative;
  top: 8px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.see-how {
  background: #003366;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  border: 2px solid #fff;
}

.see-work {
  background:  #b92818;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.see-how:hover {
  background: #709fcd;
  color: #ffffff;
}

.see-work:hover {
  background: #003366;
  color: #ffffff;
}

/* Floating Icons */
.floating-iconss {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.left {
  bottom: 20px;
  left: 20px;
}

/* .right {
  top: 40%;
  right: 10px;
} */

.floating-iconss a {
  background: #ffffff;
  color: #0c1f2c;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}

.floating-iconss a:hover {
  transform: scale(1.1);
  background: #504e4b;
  color: #fff;
}

/* Hide text labels by default (desktop) */
.floating-iconss a span {
  display: none;
}

/* Show labels only on mobile view */
@media (max-width: 768px) {
   .floating-iconss {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center; /* vertically center all icons */
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1000;
  }

  .floating-iconss a {
    display: flex;
    flex-direction: column; /* stack icon + label */
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #0c1f2c;
    font-size: 22px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
  }

  .floating-iconss a i {
    font-size: 22px;
    margin: 0;
  }

  .floating-iconss a span {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1;
  }

  /* Optional: highlight hover/tap effect */
  .floating-iconss a:active,
  .floating-iconss a:hover {
    transform: scale(1.1);
    color: #0077b6;
  }

  /* Show mobile-only icons */
  .mobile-only {
    display: flex;
  }
}

/* Hide mobile-only icons on desktop */
.mobile-only {
  display: none;
}

/* Desktop-only colored icons */
.floating-iconss a.whatsapp {
  background: #25d366; /* WhatsApp green */
  color: #ffffff;
}

.floating-iconss a.email {
  background: #0072c6; /* Email blue */
  color: #ffffff;
}

.floating-iconss a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Hide text labels on desktop */
.floating-iconss a span {
  display: none;
}






/* Mobile: move icons to bottom */
@media (max-width: 768px) {
  .floating-iconss {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.95); /* Optional: semi-transparent background */
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    transform: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .floating-iconss a {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

.floating-iconss a.whatsapp {
  background: #ffffff; /* WhatsApp green */
  color: #000000;
}

.floating-iconss a.email {
  background: #ffffff; /* Email blue */
  color: #000000;
}
}

/* Show labels only on mobile view */
@media (max-width: 768px) {
   .floating-iconss {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center; /* vertically center all icons */
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1000;
  }

  .floating-iconss a {
    display: flex;
    flex-direction: column; /* stack icon + label */
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #0c1f2c;
    font-size: 22px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
  }

  .floating-iconss a i {
    font-size: 22px;
    margin: 0;
  }

  .floating-iconss a span {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1;
  }

  /* Optional: highlight hover/tap effect */
  .floating-iconss a:active,
  .floating-iconss a:hover {
    transform: scale(1.1);
    color: #0077b6;
  }

  /* Show mobile-only icons */
  .mobile-only {
    display: flex;
  }
}



/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.floating-icons {
  position: fixed;
  top: 30%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

/* Each icon box */
.floating-icons a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50px; /* Only icon visible by default */
  height: 50px;
  margin: 3px 0;
  color: #fff;
  border-radius: 25px 0 0 25px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s ease;
  transform: translateX(0);
  padding-left: 15px;
   margin-left: auto; /* Makes each item expand from the right edge independently */
}

/* Icon */
.floating-icons a i {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
 
}

/* Text (hidden initially) */
.floating-icons a span {
  margin-left: 12px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.35s ease;
}

/* Hover effects */
.floating-icons a:hover {
  width: 130px; /* Expand bar */
  transform: translateX(-15px); /* Slide inward smoothly */
  color: #fff;
}

/* Make text slide in */
.floating-icons a:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* Make icon pop slightly */
.floating-icons a:hover i {
  transform: scale(1.1);
}

.floating-icons:hover {
    right: -15px; 
}

/* Brand colors */
.floating-icons a.facebook { background: #3b5998; }
.floating-icons a.instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
 }
.floating-icons a.youtube { background: #FF0000; }
.floating-icons a.twitter { background: #1DA1F2; }
.floating-icons a.linkedin { background: #0077B5; }

/* Optional subtle shadow */
.floating-icons a:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    min-height: auto;
  }

  .hero-content, .hero-image {
    animation: none;
  }

  .hero-image {
    margin-top: 20px;
  }

  .hero-image img {
    max-width: 100%;
  }


  /* .menu-toggle {
    display: block;
  } */
}

/* 🌐 Mobile Slider Styles */
.mobile-slider {
  display: none; /* hidden by default, visible only in mobile */
  position: relative;
  overflow: hidden;
  /* top: 20px; */
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease-in-out;
  padding: 10px;
  gap: 20px;
}

.slide {
  flex: 1 0 100%;
  position: relative;
  width: 100%;
  height: 36vh;
  background: linear-gradient( to right, #e9c6c2, #cfdcef);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: self-start;
  gap: 12PX;
  text-align: center;
  padding: 20px;
}

.slide .content{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
  margin: auto;
}

.slide .content .mob{
  font-size: 10px;
  font-weight: 350;
  color: white;
  background-color: #003366;
  padding: 8px 20px;
  border-radius: 5rem;
}

.slide .logo {
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
  border-radius: 20px;
}

.slide .img1 {
  max-height: 160px;
  object-fit: contain;
  margin: 0 auto;
}

.slide .img2 {
  max-height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

.caption{
  margin-top: 10px;
  text-align: start;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.caption button, .caption span {
  background: #003366;
  color: #fff;
  border: none;
  margin-top: 5%;
  cursor: pointer;
  font-size: 12px;
  font-weight: 350;
  padding: 8px 20px;
  border-radius: 5rem;
  transition: background 0.3s;
}

.caption h2 {
  font-size: 16px;
  margin-bottom: 5px;
}

.caption span {
  background: #a42d22;
  margin: 6px 0px;
}

.caption p {
  font-size: 12px;
  color: #5d5d5d;
  margin: 10px 0;
}

/* Navigation buttons */
.mobile-slider .prev, .mobile-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
}

.mobile-slider .prev:hover, .mobile-slider .next:hover {
  background: rgba(0,0,0,0.8);
}

.mobile-slider .prev { left: 15px; }
.mobile-slider .next { right: 15px; }

/* Responsive visibility */
@media (max-width: 768px) {
  .hero {
    display: none; /* hide desktop hero */
  }

  .mobile-slider {
    display: block; /* show mobile slider */
  }
}

/* Flex container to hold cards side by side */
.mobile-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 390px;
  margin: 0 auto 10px;
  padding: 15px;
}

/* Responsive visibility */
@media (max-width: 768px) {
  .mobile-container {
    display: none; /* hide desktop hero */
  }

  .service-card {
    display: block; /* show mobile slider */
  }
}

 .section-title {
  text-align: center;
  color: #141f5f;
  font-family: "Poppins", cursive;
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex: -1;
  text-align: center;
}

.service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

.mobile-button {
  width: 60%;
  background-color: #f6a623;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.mobile-button:hover {
  background-color: #e2910c;
}

.arrow {
  margin-left: 10px;
  font-size: 18px;
}
/* By default, hide everything (for desktop) */
.mobile-container,
.button-wrapper {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 390px;
    margin: 0 auto 10px;
    padding: 15px;
  }

  .service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    flex: 1;
    text-align: center;
  }

  .service-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
  }

  .button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }

  .mobile-button {
    width: 60%;
    background-color: #f6a623;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
  }

  .mobile-button:hover {
    background-color: #e2910c;
  }

  .arrow {
    margin-left: 10px;
    font-size: 18px;
  }
}


/* ===========================
   About Us Section
=========================== */
.about {
  background:  #081220;
  color: #fff;
  padding: 0px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

/* .about-image img:hover {
  transform: scale(1.05);
} */

.about-content {
  flex: 1 1 50%;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ff1900 ;
  text-transform: uppercase;
  letter-spacing: 1px;
    text-shadow: 0px 1px 0px #fff;
}

.about-content h2 span {
  color: #fff;
}

.about-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #f71900;
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 1rem;
}

/* Stats inside About */
.about-stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.about-stats .stat {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 15px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stats .stat:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.about-stats h3 {
  color: #f7931e;
  font-size: 1.8rem;
  font-weight: 700;
}

.about-stats p {
  color: #fff;
  font-size: 0.95rem;
}

.about-btn {
  background: #f7931e;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.about-btn:hover {
  background: #fff;
  color: #0a1b27;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* Responsive Design */
@media (max-width: 480px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about {
    background: #081220;
    color: #fff;
    padding: 25px 7%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image, .about-content {
    flex: 1 1 100%;
    justify-content: center;
  }

  .about-image img {
    top: -10px;
    max-width: 700px;
    overflow: hidden;
  }

  .about-stats {
    justify-content: center;
  }
}

/* === Services Section === */
/* === Base Styles === */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  max-width: 1300px;
  margin: 0 auto 80px;
  padding: 20px;
}

.service-card {
  background: linear-gradient(145deg, #699fc7, #d795958c);
  color: #fff;
  text-align: center;
  border-radius: 16px;
  padding: 25px 20px;
  width: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.service-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  /* background: radial-gradient(circle, rgba(255, 179, 71, 0.25) 0%, transparent 70%); */
  transition: transform 0.6s ease;
  transform: scale(0);
}

.service-card:hover::before {
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 30px rgba(226, 96, 96, 0.6); */
}

/* Image */
.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

/* Text */
.service-card h2 {
  font-size: 18px;
  color: #0f2763;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #302c2c;
  line-height: 1.6;
}

/* === Responsive Styling === */

/* Tablets - 2 cards per row */
@media (max-width: 992px) {
  .services-container {
    gap: 25px;
    justify-content: space-evenly;
  }

  .service-card {
    width: 45%;
    padding: 22px 18px;
  }

  .service-card img {
    width: 70px;
    height: 70px;
  }

  .service-card h2 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* Mobiles - 1 card per row */
@media (max-width: 576px) {
  h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 10px;
  }

  .service-card {
    width: 90%;
    padding: 20px 15px;
  }

  .service-card img {
    width: 85px;
    height: 56px;
  }

  .service-card h2 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .service-card {
    width: 95%;
    padding: 18px 10px;
  }

  .service-card h2 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 12px;
  }
}




/* Testimonials Section */
.testimonials {
  background: #f4f8fc;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.testimonials h2 {
  color: #0d3062;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.testimonials .intro {
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  justify-content: center;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.video-thumb iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.video-card h4 {
  margin: 12px 0 6px;
  color: #0a1b27;
  font-size: 18px;
  font-weight: 600;
}

.video-card p {
  padding: 0 15px 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* ===========================
   Counter Section
=========================== */
.counter-section {
  background: linear-gradient(115deg, #0a1b27, #0d3062);
  color: #fff;
  padding: 80px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.counter-box {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.counter-box .counter {
  font-size: 3rem;
  font-weight: 700;
  color: #f7931e;
  display: inline-block;
  transition: color 0.3s ease;
}

.counter-box:hover .counter {
  color: #fff;
}

.counter-box .plus {
  font-size: 2rem;
  font-weight: 600;
  color: #f7931e;
  margin-left: 5px;
}

.counter-box .label {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.counter-box:hover .label {
  color: #fff;
}

/* Subtle glow animation */
@keyframes glow {
  0% { box-shadow: 0 0 10px rgba(247,147,30,0.2); }
  50% { box-shadow: 0 0 20px rgba(247,147,30,0.5); }
  100% { box-shadow: 0 0 10px rgba(247,147,30,0.2); }
}

/* Apply to active counter boxes */
.counter-box:hover {
  animation: glow 1.8s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 991px) {
  .counter-container {
    gap: 30px;
  }

  .counter-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .counter-box {
    flex: 1 1 100%;
  }

  .counter-box .counter {
    font-size: 2.5rem;
  }
}

 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  /* Container */
  .footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 30px 30px;
    /* background: #0e283b; */
      background: linear-gradient( to right, #e9c6c2, #cfdcef); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  }
  /* Top section: Let's Grow Your Brand */
  .brand-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 70px;
  }
  .brand-section h2 {
    width: 100%;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    color: #003366;
    text-shadow: 0 0 8px #fdfdfd;
  }
  .brand-column {
    flex: 1 1 220px;
    margin-right: 25px;
    min-width: 180px;
  }
  .brand-column h3 {
    color: #000;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    /* text-shadow: 0 0 5px #f7941daa; */
  }
  .brand-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }
  .brand-column ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #000;
  }
  .brand-column ul li:hover {
    color: #003366;
  }
  /* Contact addresses section */
  .contact-section {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #3a4a5a;
  }
  .contact-addresses {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  .contact-address {
    flex: 1 1 220px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
    min-width: 180px;
    color: #cfd8dc;
    text-shadow: 0 0 3px #000000aa;
  }
  .contact-address strong {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffb347;
    text-shadow: 0 0 6px #ffb347cc;
  }
  /* Large background text behind addresses */
  .bg-locations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: rgba(255, 179, 71, 0.07);
    font-weight: 900;
    font-size: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    pointer-events: none;
    user-select: none;
    letter-spacing: 12px;
    text-transform: uppercase;
    z-index: 1;
    font-family: 'Segoe UI Black', Tahoma, Geneva, Verdana, sans-serif;
  }
  /* Social media and payment section */
  .social-payment-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  .social-icons {
    display: flex;
    gap: 14px;
  }
  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }
  .social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.8);
  }
  .facebook { background: #3b5998; }
  .instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  }
  .youtube { background: #ff0000; }
  .x { background: #000; }
  .linkedin { background: #0077b5; }
  /* Payment methods */
  .payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .payment-methods img {
    height: 32px;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .payment-methods img:hover {
    transform: scale(1.1);
  }
  .payment-label {
    color: #000000;
    font-weight: 900;
    font-size: 13px;
    margin-right: 15px;
    white-space: nowrap;
    text-shadow: 0 0 5px #ffffff;
  }
  /* Disclaimer box */
  .disclaimer-box {
    background: #fff;
    color: #a00;
    font-size: 13px;
    padding: 18px 25px;
    border: 2px solid #a00;
    margin-bottom: 35px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px #a00a;
  }
  .disclaimer-box strong {
    display: block;
    margin-bottom: 10px;
  }
  /* Copyright */
  .copyright {
    text-align: center;
    font-size: 13px;
    color: #000000;
    padding-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .copyright a {
    color: #c53222;
    font-weight: 900;
    text-shadow: 0 0 6px #ffffff;
  }
  /* ===== Responsive Styles ===== */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .footer-container {
    padding: 40px 20px;
  }

  .brand-section {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .brand-column {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .brand-section h2 {
    font-size: 24px;
    text-align: left;
  }

  .contact-addresses {
    flex-direction: column;
    align-items: flex-start;
  }

  .bg-locations {
    font-size: 60px;
    letter-spacing: 8px;
    justify-content: center;
    opacity: 0.05;
  }

  .social-payment-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobiles (max-width: 576px) */
@media (max-width: 576px) {
  .footer-container {
    padding: 30px 15px;
  }

  .brand-section h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .brand-column h3 {
    font-size: 14px;
    /* text-align: center; */
  }

  .contact-address {
    text-align: center;
    font-size: 12px;
  }

  .contact-address strong {
    font-size: 13px;
  }

  .bg-locations {
    font-size: 40px;
    letter-spacing: 5px;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .payment-label {
    font-size: 12px;
    margin-right: 10px;
  }

  .payment-methods img {
    height: 26px;
  }

  .disclaimer-box {
    font-size: 12px;
    padding: 15px;
  }

  .copyright {
    font-size: 12px;
    padding-bottom: 15px;
  }
}

/* ===========================
   Services Section with Tabs
=========================== */
.services-section {
  padding: 60px 10%;
  background: #f9f9f9;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.services-section h2 {
  font-size: 28px;
  color: #002147;
  font-weight: 600;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
  gap: 40px;
}

.tab {
  background: #f1f1f1;
  border: none;
  padding: 25px 40px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  color: #002147;
  transition: all 0.3s ease;
}

.tab.active {
  background: #005baa;
  color: #fff;
  position: relative;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #005baa;
}

.tab:hover {
  background: #005baa;
  color: white;
}

.tab-content {
  display: none;
  text-align: left;
}

.tab-content.active {
  display: block;
}

.content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.text {
  flex: 1 1 50%;
}

.text h3 {
  color: #002147;
  font-size: 22px;
  margin-bottom: 15px;
}

.text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.text h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.image {
  flex: 1 1 40%;
  text-align: center;
}

.image img {
  width: 100%;
  max-width: 350px;
}

.btn {
  display: inline-block;
  background: #003366;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #5791cb;
}
/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .services-section {
    padding: 40px 6%;
  }

  .services-section h2 {
    font-size: 22px;
  }

  .tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border: none;
  }

  .tab {
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
  }

  .tab.active::after {
    display: none;
  }

  .content-box {
    flex-direction: column;
    text-align: center;
  }

  .text h3 {
    font-size: 18px;
  }

  .text p {
    font-size: 14px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .image img {
    max-width: 240px;
  }
}






