body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    background-color: #f8f9fa;
    /* Light grey background like sc2.jpg */
    margin: 0;
    overflow-x: hidden;
}

.stat-card{
    width:220px;
    height:220px;
    border-radius:50%;
    background:#f8f9fa;
    border:5px solid rgba(255,90,31,0.3);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin:auto;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .4s ease;
}

.stat-card h3{
    font-size:48px;
    font-weight:800;
    color:#ff5a1f;
    margin:0;
}

.stat-card p{
    font-size:13px;
    letter-spacing:1.2px;
}

.stat-card:hover{
    transform:translateY(-8px) scale(1.05);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
    border-color:#ff5a1f;
}
@media(max-width:768px){
  .stat-card{
    width:160px;
    height:160px;
  }

  .stat-card h3{
    font-size:36px;
  }
}


.map-wrapper {
    animation: zoomFade 1.5s ease-in-out;
}


 
        /* --- Custom Cursor --- */
        .custom-cursor {
          width: 15px;
          height: 15px;
          position: fixed;
          top: 0; left: 0;
         
          border: 1px solid rgba(255,255,255,0.5);
          background: rgba(255,255,255,0.1);
          border-radius: 50%;
          pointer-events: none;
          z-index: 9999;
          transform: translate(-50%, -50%);
          transition: width 0.3s, height 0.3s, background-color 0.3s;
          mix-blend-mode: difference;
      }
      .custom-cursor.active {
          width: 80px;
          height: 80px;
          background: #fff;
          border-color: #fff;
          mix-blend-mode: difference;
      }


@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-section-2 {
      position: relative;
      
      height: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      border-radius: 12px;
      overflow: hidden;
    }

    .hero-overlay-2 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    }

    .hero-content-2 {
      position: relative;
      text-align: center;
      z-index: 2;
    }

    .hero-content-2 h1 {
      font-weight: bold;
      font-size: 2.5rem;
    }

    .breadcrumb {
      justify-content: center;
    }

    .breadcrumb-item a {
      color: #fff;
      text-decoration: none;
    }

    .breadcrumb-item.active {
      color: #ccc;
    }

/* ================================
   DROPDOWN HOVER (DESKTOP ONLY)
================================ */

@media (min-width: 992px) {

  /* Show dropdown on hover */
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  /* Remove Bootstrap click arrow delay */
  .navbar .dropdown-toggle::after {
    transition: transform .2s ease;
  }

  /* Optional arrow rotate */
  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Mobile remains click-based */
@media (max-width: 991px) {
  .dropdown-menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .dropdown-mega:hover .mega-menu {
    display: block;
  }
}

@media (min-width: 992px) {
  .dropdown-mega .mega-menu {
    display: none;
  }

  .dropdown-mega.show .mega-menu {
    display: block;
  }
}




/* ================================
   MEGA DROPDOWN CENTERED
================================ */

@media (min-width: 992px) {

  /* Base mega menu */
  .dropdown-mega .mega-menu {
    display: none;
    position: absolute;
/*    top: 100%;*/
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px;   /* adjust as needed */
    background: #fff;
    z-index: 1050;
    padding: 1.5rem 0;
  }

  /* Show on hover */
  .dropdown-mega:hover > .mega-menu {
    display: block;
  }

  /* Prevent overlap flicker */
  .dropdown-mega {
    position: static;
  }

  /* Arrow rotate */
  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* ================================
   MOBILE (CLICK BASED)
================================ */

@media (max-width: 991px) {
  .dropdown-mega .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    padding: 1rem;
  }
}

/* ===== MEGA MENU BEAUTY ===== */

.mega-menu {
  background: #0b2a4a; /* enterprise dark blue */
  color: black;
}

.mega-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #ff5a2c;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-list {
  list-style: none;
  padding-left: 0;
}

.mega-list li {
  font-size: 14px;
  padding: 6px 0;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-list li:hover {
  color: #ff5a2c;
}

.mega-list i {
  font-size: 12px;
  color: #ff5a2c;
}
/* =====================================
   GLOBAL NAV FIXES
===================================== */
.navbar {
  background: #fff;
  z-index: 1055;
}

.navbar-brand img {
  max-height: 48px;
  width: auto;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* =====================================
   DESKTOP (UNCHANGED BEHAVIOR)
===================================== */
@media (min-width: 992px) {

  .dropdown-mega {
    position: static;
  }

  .dropdown-mega .mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1200px;
    display: none;
  }

  .dropdown-mega:hover > .mega-menu {
    display: block;
  }
}

/* =====================================
   MOBILE NAV IMPROVEMENTS
===================================== */
@media (max-width: 991px) {

  /* Navbar spacing */
  .navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    background: #fff;
    padding: 10px 0;
  }

  /* Bigger tap targets */
  .nav-link {
    padding: 12px 16px;
    font-size: 16px;
  }

  /* Disable hover logic */
  .dropdown-mega:hover .mega-menu {
    display: none;
  }

  /* Mega menu becomes stacked */
  .dropdown-mega .mega-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    box-shadow: none;
    padding: 1rem 0;
  }

  /* Stack columns */
  .mega-menu .row > div {
    margin-bottom: 20px;
  }

  /* Titles larger on mobile */
  .mega-title {
    font-size: 16px;
  }

  .mega-list li {
    font-size: 15px;
    padding: 10px 0;
  }

  /* Hide search icon on mobile (optional UX improvement) */
  .search-icon {
    display: none;
  }
}

/* =====================================
   MEGA MENU VISUAL CONSISTENCY
===================================== */
.mega-menu {
  background: #0b2a4a;
}

.mega-list a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-list a:hover {
  color: #ff5a2c;
}










.help-section {
    background-color: #ffffff;
    padding: 60px 0;
    /* Creates the large white space seen in the image */
    text-align: center;
}

.help-title {
    font-size: 3.5rem;
    /* Matches the large display heading */
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.help-subtitle {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Specific Navy Button from the image */
.btn-work {
    background-color: #282d3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 14px 35px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.btn-work:hover {
    color: #ffffff;
    opacity: 0.9;
}

.stats-section {
    padding: 50px 5%;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.description-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 2rem;
}

/* The vertical divider line seen in sc4.jpg */
.vertical-divider {
    border-left: 1px solid #e0e0e0;
    padding-left: 3rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    max-width: 150px;
}

.learn-more-link {
    color: #ff4d4d;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    border-bottom: 2px solid #ff4d4d;
}

/* Partner Section */
.partner-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-top: 100px;
    margin-bottom: 50px;
}


.services-detail-section {
    padding: 60px 5%;
}

/* Gradient Typography */
.text-gradient {
    background: linear-gradient(
        90deg,
        #000 20%,
        #e91e63 45%,
        #00bcd4 65%,
        #000 85%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: inline-block;
}

.main-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 20px;
    font-weight: 600;
}

.sub-heading-small {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.navbar {
    background-color: #ffffff;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}
.logo-orange { color: #E87052; }
.logo-navy { color: #10263C; }

.nav-link {
    color: #000000 !important;
    font-size: 15px;
    font-weight: 500;
    margin-right: 15px;
    padding: 0 !important;
}
.nav-link:hover {
    color: #E87052 !important;
}
.search-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.logo{
    width: 10px;
}

/* Links */
.cta-link {
    display: inline-block;
    margin-top: 50px;
    color: #ff4d4d;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 2px solid #ff4d4d;
    padding-bottom: 2px;
}

/* Right Column Styling */
.service-item {
    padding: 40px 0;
    border-bottom: 1px solid #dee2e6;
}

.service-item:first-child {
    padding-top: 0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 20px;
}

.learn-more {
    color: #ff4d4d;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.learn-more i {
    font-size: 1rem;
    vertical-align: middle;
}

/* Back to top button snippet */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #ff4d4d;
    text-decoration: none;
}





.partner-logo-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.partner-logo-row img{
    width: 230px;   /* 180 + 50 */
    height: 170px;  /* 120 + 50 */
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.4s ease;
}

/* Second logo */
.partner-logo-row img:nth-child(2){
    width: 210px;   /* 160 + 50 */
    height: 160px;  /* 110 + 50 */
}

/* Third logo */
.partner-logo-row img:nth-child(3){
    width: 170px;   /* 120 + 50 */
    height: 110px;  /* 60 + 50 */
}

/* Fourth (last) logo */
.partner-logo-row img:nth-child(4){
    width: 270px;   /* 220 + 50 */
    height: 210px;  /* 160 + 50 */
}

/* Hover effect */
.partner-logo-row img:hover{
    opacity: 1;
    transform: scale(1.05);
}


/* Tablet */
@media(max-width:992px){
  .partner-logo-row{
    gap:40px;
  }
  .partner-logo-row img{
    max-width:130px;
  }
}

/* Mobile */
@media(max-width:576px){
  .partner-logo-row{
    gap:25px;
  }
  .partner-logo-row img{
    max-width:100px;
  }
}








/* =========================
   HERO BASE
========================= */
.hero-section {
  height: 100vh;
  position: relative;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(15,15,15,0.9) 20%,
      rgba(15,15,15,0.6) 55%,
      rgba(255,90,31,0.15) 100%
    );
  z-index: -1;
}

/* =========================
   HERO TEXT
========================= */
.hero-text {
  max-width: 640px;
}

.hero-badge {
  background: rgba(255,90,31,0.15);
  color: #ff5a1f;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-top: 10px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.hero-title span {
  color: #ff5a1f;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 520px;
}

/* =========================
   HERO BUTTONS
========================= */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #ff5a1f;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-hero-primary:hover {
  background: #ff7849;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,90,31,0.4);
  color: #fff;
}

.btn-hero-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-hero-outline:hover {
  background: #fff;
  color: #111;
}

/* =========================
   HERO SOCIAL ICONS
========================= */
.hero-social {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}

.hero-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.1s ease-in-out;
  backdrop-filter: blur(6px);
}

.hero-social a:hover {
  background: #ff5a1f;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,90,31,0.45);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .hero-section {
    min-height: 100vh;
    height: auto;
    padding: 80px 0;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-social {
    flex-direction: row;
    bottom: 30px;
    top: auto;
    right: 50%;
    transform: translateX(50%);
  }

  .hero-social a {
    width: 40px;
    height: 40px;
  }
}





.services-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Gradient Text Effect for "Our Services" */
.gradient-title {
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    background: linear-gradient(
        90deg,
        #000000 35%,
        #e91e63 55%,
        #00bcd4 75%,
        #000000 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
    max-width: 600px;
}

/* Floating Tilted Images */
.floating-img {
    position: absolute;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Positions and Tilts based on sc2.jpg */
.img-1 {
    top: 15%;
    left: 8%;
    transform: rotate(-5deg);
    width: 120px;
    height: 120px;
}

.img-2 {
    bottom: 10%;
    left: 5%;
    transform: rotate(10deg);
    width: 180px;
    height: 180px;
}

.img-3 {
    top: 20%;
    right: 5%;
    transform: rotate(12deg);
    width: 160px;
    height: 160px;
}

.img-4 {
    bottom: 15%;
    right: 10%;
    transform: rotate(-8deg);
    width: 130px;
    height: 130px;
}

@media (max-width: 768px) {
    .gradient-title {
        font-size: 4rem;
    }

    .floating-img {
        display: none;
    }

    /* Hide decorative images on small screens */
}



/* --- THE SERVICE TRANSITION (Big to Small) --- */
.reveal-container {
  position: relative;
  background: #000;
}

.giant-title-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.giant-services-title {
  font-size: 8vw;
  font-weight: 900;
  white-space: nowrap;
  background: linear-gradient(
      90deg,
      #b8b6b6 0%,
      #ff5a1f 40%,
      #03b9d2 70%
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: transform, filter;
}