/* ===============================
   ABOUT HERO SECTION
================================= */

.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 29vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
}

/* Background Image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Section/about_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Left Dark Gradient Overlay */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 20, 30, 0.95) 0%,
    rgba(6, 20, 30, 0.85) 30%,
    rgba(6, 20, 30, 0.65) 50%,
    rgba(6, 20, 30, 0.35) 70%,
    rgba(6, 20, 30, 0.05) 100%
  );
  z-index: 2;
}

/* CONTENT */
.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  color: #ffffff;
}

/* HEADING */
.about-hero-content h1 {

  color: #ffffff;

  font-size: 66px;
  font-weight: 700;

  margin-top: 280px;
  margin-left: -3px;

  line-height: 1.08;

  letter-spacing: -1px;

  /* ✅ INCREASED GAP BELOW HEADING */
  margin-bottom: 28px;
}

/* HIGHLIGHT */
.about-highlight{
  color:#fff300;
}

/* SUB HEADING */
.about-hero-content p {

  font-size: 17px;

  line-height: 1.8;

  color: rgba(255,255,255,0.85);

  max-width: 520px;

  /* ✅ ADDED EXTRA TOP GAP */
  margin-top: 12px;

  
}


/* ==========================================
   TABLET RESPONSIVE
========================================== */
@media (max-width:992px){

  .about-hero{
    min-height:75vh;
    height:75vh;
    padding:0 40px;
    align-items:center;
  }

  .about-hero-content{
    max-width:100%;
  }

  .about-hero-content h1{
    font-size:52px;
    line-height:1.15;
    margin-top:0;
    margin-left:0;
    margin-bottom:22px;
    letter-spacing:-1px;
  }

  .about-hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-top:0;
    max-width:520px;
  }

}


/* ==========================================
   MOBILE
========================================== */
@media (max-width:768px){

  .about-hero{

    min-height:85vh;      /* Increased Hero Height */
    height:85vh;

    padding:0 24px;

    align-items:center;
    justify-content:flex-start;
  }

  .about-hero::after{

    background:linear-gradient(
      180deg,
      rgba(6,20,30,.88) 0%,
      rgba(6,20,30,.75) 45%,
      rgba(6,20,30,.55) 70%,
      rgba(6,20,30,.30) 100%
    );

  }

  .about-hero-content{

    width:100%;
    max-width:100%;

    text-align:left;
  }

  .about-hero-content h1{

    font-size:40px;
    line-height:1.2;

    margin:0 0 18px 0;

    letter-spacing:-0.5px;
  }

  .about-hero-content p{

    font-size:16px;
    line-height:1.8;

    max-width:100%;

    margin:0;
  }

}


/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width:480px){

  .about-hero{

    min-height:90vh;      /* Taller Hero */

    height:100vh;

    padding:0 20px;
  }

  .about-hero-content h1{

    font-size: 38px;
  margin-top: 250px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -1px;
  }

  .about-hero-content p{

   font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  }

}










/* section 2*/

/* ===============================
   CLIENT LOGO STRIP SECTION
================================= */
/* =====================================
   SAFE BRAND SCROLL SECTION (ISOLATED)
===================================== */

.brand-scroll-section {
  background: #ffffffea;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.brand-scroll-section::before,
.brand-scroll-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 50%;
  z-index: 2;
  position: relative;
  pointer-events: none;
}

.brand-scroll-section::before {
  left: 0;
  background: linear-gradient(to right, #f2f4f5 0%, transparent 100%);
}

.brand-scroll-section::after {
  right: 0;
  background: linear-gradient(to left, #f2f4f5 0%, transparent 100%);
}

/* Wrapper */
.brand-scroll-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Moving Track */
.brand-scroll-track {
  display: flex;
  gap: 100px;
  width: max-content;
  animation: brandAutoScroll 9s linear infinite;
}

/* Brand Items */
.brand-item {
  font-size: 26px;
  font-weight: 600;
  color: #000000;

  transition: all 0.4s ease;
  cursor: pointer;
  white-space: nowrap;
}

/* Popup effect */
.brand-item:hover {
  opacity: 1;
  background: radial-gradient(
    120% 120% at 0% 100%,
    #fff300 80%,
    #fff300 40%,
    #fff300 20%,
    #ffffff 40%,
    #ffffff 10%
  );
  border-radius: 30%;

  transform: scale(1.15);
}

/* Animation */
@keyframes brandAutoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.brand-scroll-section:hover .brand-scroll-track {
  animation-play-state: paused;
}


/* section 3*/

/* ===============================
   STATS SECTION (Isolated)
================================= */
/* =========================================
   ABOUT STATS SECTION (Exact Match Style)
========================================= */
/* =========================================
   ABOUT STATS SECTION
========================================= */

.about-stats-section{
  padding:65px 7%;
  background:#f5f6f7;
  overflow:hidden;
}

/* =========================================
   TOP LAYOUT
========================================= */

.about-stats-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:45px;

  max-width:1120px;
  margin:auto;
}

/* =========================================
   LEFT IMAGE
========================================= */

.image-wrapper{
  position:relative;
  width:100%;
}

/* IMAGE */
.about-stats-image img{
  width:100%;
  max-width:560px;
  height:360px;

  object-fit:cover;

  border-radius:5px;

  box-shadow:
  0 18px 45px rgba(0,0,0,0.10);

  transition:
  transform .7s ease,
  box-shadow .7s ease;
}

/* hover */
.image-wrapper:hover img{
  transform:scale(1.02);

  box-shadow:
  0 26px 60px rgba(0,0,0,0.13);
}

/* =========================================
   MODERN SVG PATTERN
========================================= */

.image-svg-pattern{
  position:absolute;

  top:-28px;
  right:-28px;

  width:135px;
  height:135px;

  pointer-events:none;

  opacity:.92;
}

.image-svg-pattern svg{
  width:100%;
  height:100%;
}

/* =========================================
   SMALL MODERN CONTENT CARD
========================================= */

.modern-stats-box{
  position:absolute;

  bottom:14px;
  right:14px;

  width:125px;

  padding:11px;

  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.45);

  border-radius:12px;

  overflow:hidden;

  box-shadow:
  0 12px 30px rgba(0,0,0,0.10);

  transition:
  transform .35s ease,
  box-shadow .35s ease;
}

/* hover */
.modern-stats-box:hover{
  transform:translateY(-4px);

  box-shadow:
  0 18px 38px rgba(0,0,0,0.14);
}

/* line */
.stats-line{
  width:30px;
  height:2px;

  background:#07252d;

  border-radius:10px;

  margin-bottom:8px;
}

/* number */
.modern-stats-box h3{
  font-size:24px;
  line-height:1;

  color:#081d28;

  margin-bottom:4px;
}

/* text */
.modern-stats-box p{
  font-size:10px;
  font-weight:600;

  line-height:1.4;

  color:#5f6f75;
}

/* =========================================
   CORNER ACCENT
========================================= */

.image-accent-line{
  position:absolute;

  left:-10px;
  bottom:-10px;

  width:55px;
  height:55px;

  border-left:2px solid rgba(7,37,45,0.12);
  border-bottom:2px solid rgba(7,37,45,0.12);
}

/* =========================================
   RIGHT CONTENT
========================================= */

.about-stats-content{
  position:relative;
  max-width:460px;
}

/* NUMBER */
.about-stats-number{
  font-size:74px;
  font-weight:700;
  color:#081d28;
  line-height:1;
  margin-bottom:8px;
}

/* TITLE */
.about-stats-title{
  font-size:28px;
  font-weight:600;
  line-height:1.3;
  color:#000;
  margin-bottom:16px;
}

/* HIGHLIGHT */
.highlight-clients{
  background:#fff300;
  color:#000;
  padding:4px 12px;
  border-radius:40px;
  display:inline-block;
}

/* DIVIDER */
.about-stats-divider{
  width:65px;
  height:1px;
  background:#d7dde0;
  margin-bottom:14px;
}

/* TEXT */
.about-stats-text{
  font-size:14px;
  line-height:1.7;
  color:#001722;
  margin-bottom:14px;
}

/* =========================================
   FEATURE CARDS
========================================= */
/* =========================================
   FEATURE GRID
========================================= */

.about-stats-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    max-width:1120px;
    margin:55px auto 0;
    align-items:stretch;
}

/* =========================================
   CARD
========================================= */

/* =========================================
   PREMIUM GLASS CARD
========================================= */

.about-feature{

    position:relative;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;

    min-height:290px;

    padding:22px;

    border-radius:22px;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #971f1f59,
        #d6d6d68c
    );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255, 255, 255, 0.1);

    transition:.4s ease;

    
}

/* =========================================
   TOP GLOW
========================================= */

.about-feature::before{

    content:"";

    position:absolute;

    width:170px;
    height:170px;

    top:-90px;
    right:-90px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(255, 255, 255, 0.18),
            transparent 70%
        );

    filter:blur(18px);

    pointer-events:none;
}

/* =========================================
   MOVING GLASS SHINE
========================================= */

.about-feature::after{

    content:"";

    position:absolute;

    top:-150%;
    left:-80%;

    width:55%;
    height:300%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(0, 0, 0, 0.12),
            transparent
        );

    transform:rotate(24deg);

    transition:.9s ease;

    pointer-events:none;
}

/* =========================================
   RIGHT GLASS PANEL
========================================= */

.about-feature{

    background-image:
        linear-gradient(
            118deg,
            transparent 72%,
            #ffffff0f 72%,
            #ffffff05 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35),
            rgba(255, 255, 255, 0.55)
        );
}

/* =========================================
   HOVER
========================================= */

.about-feature:hover{

    transform:translateY(-6px);

    border-color:#ffffff;

    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.12),
        0 15px 35px rgba(37, 36, 36, 0.3);
}

.about-feature:hover::after{
    left:135%;
}

/* =========================================
   ICON
========================================= */
.about-feature-icon{

    width:78px;
    height:78px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    border:3px solid #02394e;

      color: #062024;

    background:rgba(255,255,255,.04);

    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.22);

    transition:.4s ease;
}

.about-feature-icon svg{

    width:36px;
    height:36px;

    stroke-width:2.2;
}

.about-feature:hover .about-feature-icon{
     border:3px solid #ffffff;

    color: #062024;

    transform:scale(1.08);
  

    box-shadow:
        0 0 28px rgba(255, 255, 255, 0.35);
}

/* =========================================
   TAG
========================================= */
.feature-tag{

    color:#062024;

    opacity:.9;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:12px;
}

.about-feature h4{

    color:#062024;

    font-size:19px;

    font-weight:700;

    line-height:1.35;

    margin:0 0 14px;
}

.about-feature h4::after{

    content:"";

    display:block;

    width:52px;
    height:4px;

    margin-top:14px;

    background:#ffffff;

    border-radius:20px;

    transition:.35s ease;
}

.about-feature:hover h4::after{

    width:72px;

    background:#fff300;
}

.about-feature p{

    color:#000000;

    font-size:14px;

    line-height:1.7;

    margin-top:auto;
}
/* =========================================
   REVEAL
========================================= */

.reveal-up{
  opacity:1;
  transform:none;
}

.reveal-up.animate{
  opacity:0;
  transform:translateY(40px);

  transition:
  all .9s cubic-bezier(.2,.65,.3,1);
}

.reveal-up.animate.active{
  opacity:1;
  transform:translateY(0);
}

/* stagger */
.about-stats-number{transition-delay:.1s;}
.about-stats-title{transition-delay:.2s;}
.about-stats-divider{transition-delay:.3s;}
.about-stats-text{transition-delay:.4s;}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

  .about-stats-section{
    padding:55px 7%;
  }

  .about-stats-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .about-stats-features{
    grid-template-columns:1fr;
    gap:18px;
  }

  .image-svg-pattern,
  .image-accent-line{
    display:none;
  }

  .modern-stats-box{
    width:115px;
    padding:10px;
  }

  .modern-stats-box h3{
    font-size:22px;
  }
}
/* section 4*/
/* ======================================
   EMPOWER SECTION
====================================== */
.empower-section{
  padding:55px 6%;
  background:linear-gradient(135deg,#f3efb0,#ffffff);
  overflow:hidden;
}

.empower-container{
  max-width:1080px;
  margin:auto;
}

/* =========================
   HEADER
========================= */

.empower-header{
  text-align:center;
  margin-bottom:42px;
}

.empower-header h2{
  font-size:30px;
  line-height:1.25;
  font-weight:600;
  color:#07252d;

  max-width:680px;
  margin:auto;
}

.highlight-empowering{
  background:#fff300;
  padding:4px 14px;
  border-radius:40px;
}

/* =========================
   CONTENT
========================= */

.empower-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

/* =========================
   LEFT SIDE
========================= */

.empower-left{
  position:relative;
}

/* SVG */
.empower-svg-top{
  width:230px;
  margin-left:-17px;
  margin-bottom:16px;
}

.empower-svg-top svg{
  width:100%;
   width:240px;
    height:auto;

}

/* curve */
.empower-svg-top path{
  stroke:#07252d;
  stroke-width:2;
  stroke-linecap:round;
}

/* TAG */
.empower-tag{
  display:inline-block;

  font-size:10px;
  letter-spacing:2px;
  font-weight:600;

  color:#07252d;

  margin-bottom:10px;
}

/* HEADING */
.empower-left h3{
  font-size:28px;
  line-height:1.25;

  color:#07252d;

  margin-bottom:12px;
}

/* TEXT */
.empower-left p{
  font-size:13px;
  line-height:1.6;
  color:#5f6f75;

  margin-bottom:18px;

  max-width:430px;
}

/* =========================
   POINTS
========================= */

.empower-points{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.point-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

/* ICON */
.point-icon{
  width:38px;
  height:38px;

  min-width:38px;

  border-radius:12px;

  background:#ffffff;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#07252d;

  box-shadow:
  0 8px 18px rgba(0,0,0,0.05);

  transition:0.35s ease;
}

.point-icon svg{
  width:16px;
  height:16px;
}

/* hover */
.point-item:hover .point-icon{
  transform:translateY(-3px);
  background:#07252d;
  color:#fff300;
}

/* TEXT */
.point-item strong{
  display:block;

  font-size:13px;
  margin-bottom:3px;

  color:#07252d;
}

.point-item span{
  font-size:12px;
  color:#6b7b83;
}

/* =========================
   RIGHT SIDE
========================= */

.empower-right{
  display:flex;
  justify-content:center;
}

/* IMAGE WRAPPER */
.empower-image-wrap{
  position:relative;

  width:100%;
  max-width:350px;
}

/* IMAGE */
.empower-image-wrap img{
  width:100%;
  height:360px;

  object-fit:cover;

  border-radius:18px;

  box-shadow:
  0 18px 45px rgba(0,0,0,0.10);

  transition:0.7s ease;
}

/* hover */
.empower-image-wrap:hover img{
  transform:scale(1.02);
}

/* =========================
   MAIN CARD
========================= */

.empower-card{
  position:absolute;

  left:-18px;
  bottom:18px;

  width:190px;

  padding:16px;

  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);

  border-radius:16px;

  box-shadow:
  0 16px 38px rgba(0,0,0,0.10);

  transition:0.35s ease;
}

/* hover */
.empower-card:hover{
  transform:translateY(-4px);
}

/* LINE */
.card-line{
  width:36px;
  height:2px;

  background:#07252d;

  margin-bottom:10px;
}

/* TITLE */
.empower-card h4{
  font-size:18px;
  line-height:1.25;

  margin-bottom:6px;

  color:#07252d;
}

/* TEXT */
.empower-card p{
  font-size:11px;
  line-height:1.6;

  color:#5f6f75;
}

/* =========================
   SMALL FLOATING CARD
========================= */

.small-floating-card{
  position:absolute;

  top:20px;
  right:-6px;

  width:155px;

  padding:14px;

  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.45);

  border-radius:16px;

  box-shadow:
  0 14px 30px rgba(0,0,0,0.08);

  overflow:hidden;

  transition:
  transform .45s ease,
  box-shadow .45s ease;
}

/* hover */
.small-floating-card:hover{
  transform:translateY(-5px);
}

/* ICON */
.small-icon{
  width:34px;
  height:34px;

  border-radius:12px;

  background:#f4f6f7;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:10px;

  position:relative;
}

/* arrow icon */
.small-icon::before{
  content:"";

  width:11px;
  height:11px;

  border-top:2px solid #07252d;
  border-right:2px solid #07252d;

  transform:rotate(45deg);
}

/* hover */
.small-floating-card:hover .small-icon{
  background:#07252d;
}

.small-floating-card:hover .small-icon::before{
  border-color:#fff300;
}

/* TEXT */
.small-floating-card h5{
  font-size:14px;
  line-height:1.3;

  margin-bottom:5px;

  color:#07252d;
}

.small-floating-card p{
  font-size:10px;
  line-height:1.5;

  color:#5f6f75;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media screen and (max-width:768px){

    .empower-section{
        padding:50px 20px;
        overflow:hidden;
    }

    .empower-container{
        width:100%;
    }

    /* HEADER */

    .empower-header{
        margin-bottom:35px;
    }

    .empower-header h2{
        font-size:32px;
        line-height:1.3;
        max-width:100%;
        text-align:center;
    }

    .highlight-empowering{
        padding:4px 12px;
        border-radius:40px;
    }

    /* CONTENT */

    .empower-content{
        display:flex;
        flex-direction:column;
        gap:40px;
    }

    /* LEFT */

    .empower-left{
        width:100%;
        text-align:center;
    }

    .empower-svg-top{
        width:190px;
        margin:0 auto 18px;
    }

    .empower-svg-top svg{
        width:100%;
        height:auto;
    }

    .empower-tag{
        display:block;
        font-size:11px;
        letter-spacing:1.5px;
        margin-bottom:12px;
    }

    .empower-left h3{
        font-size:28px;
        line-height:1.25;
        margin-bottom:14px;
    }

    .empower-left>p{
        max-width:100%;
        font-size:16px;
        line-height:1.8;
        text-align:justify;
        text-align-last:center;
        margin-bottom:26px;
    }

    /* POINTS */

    .empower-points{
        gap:18px;
    }

    .point-item{
        align-items:flex-start;
        gap:14px;
        text-align:left;
    }

    .point-icon{
        width:46px;
        height:46px;
        min-width:46px;
        border-radius:14px;
    }

    .point-icon svg{
        width:18px;
        height:18px;
    }

    .point-item strong{
        display:block;
        font-size:16px;
        line-height:1.4;
        margin-bottom:5px;
    }

    .point-item span{
        display:block;
        font-size:14px;
        line-height:1.7;
        text-align:justify;
        color:#6b7b83;
    }

    /* RIGHT */

    .empower-right{
        width:100%;
    }

    .empower-image-wrap{
        width:100%;
        max-width:100%;
    }

    .empower-image-wrap img{
        width:100%;
        height:340px;
        object-fit:cover;
        border-radius:18px;
    }

    /* CARDS */

    .empower-card,
    .small-floating-card{
        position:relative;
        width:100%;
        left:0;
        right:0;
        top:0;
        bottom:0;
        margin-top:18px;
        border-radius:16px;
    }

    .empower-card{
        padding:18px;
    }

    .empower-card h4{
        font-size:20px;
    }

    .empower-card p{
        font-size:15px;
        line-height:1.7;
        text-align:justify;
        margin:0;
    }

    .small-floating-card{
        padding:18px;
    }

    .small-icon{
        width:42px;
        height:42px;
        margin-bottom:12px;
    }

    .small-floating-card h5{
        font-size:17px;
        margin-bottom:8px;
    }

    .small-floating-card p{
        font-size:14px;
        line-height:1.7;
        text-align:justify;
        margin:0;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media screen and (max-width:480px){

    .empower-section{
        padding:40px 16px;
    }

    .empower-header h2{
        font-size:28px;
    }

    .empower-svg-top{
        width:170px;
    }

    .empower-left h3{
        font-size:24px;
    }

    .empower-left>p{
        font-size:15px;
        line-height:1.75;
    }

    .point-item{
        gap:12px;
    }

    .point-icon{
        width:42px;
        height:42px;
        min-width:42px;
    }

    .point-item strong{
        font-size:15px;
    }

    .point-item span{
        font-size:13px;
    }

    .empower-image-wrap img{
        height:300px;
    }

    .empower-card{
        padding:16px;
    }

    .empower-card h4{
        font-size:18px;
    }

    .empower-card p{
        font-size:14px;
    }

    .small-floating-card{
        padding:16px;
    }

    .small-floating-card h5{
        font-size:16px;
    }

    .small-floating-card p{
        font-size:13px;
    }

}


/* =====================================================
   EXTRA SMALL DEVICES
===================================================== */

@media screen and (max-width:360px){

    .empower-section{
        padding:35px 14px;
    }

    .empower-header h2{
        font-size:25px;
    }

    .empower-left h3{
        font-size:22px;
    }

    .empower-left>p{
        font-size:14px;
    }

    .empower-svg-top{
        width:150px;
    }

    .point-icon{
        width:40px;
        height:40px;
        min-width:40px;
    }

    .point-item strong{
        font-size:14px;
    }

    .point-item span{
        font-size:12px;
        line-height:1.6;
    }

    .empower-image-wrap img{
        height:270px;
    }

    .empower-card h4{
        font-size:17px;
    }

    .empower-card p,
    .small-floating-card p{
        font-size:13px;
        line-height:1.65;
        text-align:justify;
    }

    .small-floating-card h5{
        font-size:15px;
    }

}


.strategy-section{
  position:relative;
  height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* =========================
   BACKGROUND IMAGE
========================= */

.strategy-bg{
  position:absolute;
  inset:0;
}

.strategy-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
  transition:transform 1s ease;
}

/* subtle zoom */
.strategy-section:hover .strategy-bg img{
  transform:scale(1.1);
}

/* =========================
   DARK OVERLAY
========================= */

.strategy-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.5)
  );
}

/* =========================
   CENTER CONTENT
========================= */

.strategy-center{
  position:relative;
  text-align:center;
  max-width:700px;
  color:#fff;
  z-index:2;
}

/* BADGE */
.strategy-badge{
  display:inline-block;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(8px);
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  margin-bottom:15px;
}

/* HEADING */
.strategy-center h2{
  font-size:68px;
  line-height:1.2;
  margin-bottom:20px;
  color: #ffffff;
}

/* TEXT */
.strategy-center p{
  font-size:16px;
  line-height:1.7;
  opacity:0.9;
  margin-bottom:30px;
}

/* BUTTON */
.strategy-btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:40px;
  background:#fff300;
  color:#000;
  text-decoration:none;
  font-weight:600;
  transition:all 0.3s ease;
}

/* hover */
.strategy-btn:hover{
  background: radial-gradient(
    120% 120% at 0% 100%,
    #fff300 80%,
    #fff300 40%,
    #fff300 20%,
    #ffffff 40%,
    #ffffff 10%
  );
  background-size: 200% 100%;
  background-position: right;
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

/* =========================
   RESPONSIVE
========================= */

/* ======================================================
   STRATEGY SECTION - MOBILE RESPONSIVE
   (Only Mobile)
====================================================== */

@media screen and (max-width:768px){

    .strategy-section{

        height:72vh;
        min-height:520px;

        padding:60px 22px;

        display:flex;
        align-items:center;
        justify-content:center;

        text-align:center;
    }

    /* Background */

    .strategy-bg img{

        object-fit:cover;
        object-position:center;
        transform:scale(1.08);
    }

    /* Overlay */

    .strategy-overlay{

        background:linear-gradient(
            rgba(3,18,28,.72),
            rgba(3,18,28,.60)
        );
    }

    /* Content */

    .strategy-center{

        width:100%;
        max-width:340px;

        margin:0 auto;

        text-align:center;
    }

    /* Badge */

    .strategy-badge{

        font-size:12px;

        padding:8px 16px;

        margin-bottom:18px;

        border-radius:25px;
    }

    /* Heading */

    .strategy-center h2{

        font-size:34px;

        line-height:1.22;

        margin-bottom:18px;

        letter-spacing:-0.5px;
    }

    /* Paragraph */

    .strategy-center p{

        font-size:15px;

        line-height:1.75;

        margin-bottom:28px;

        max-width:310px;

        margin-left:auto;
        margin-right:auto;
    }

    /* Button */

    .strategy-btn{

        display:inline-flex;

        align-items:center;
        justify-content:center;

        min-width:200px;
        height:52px;

        padding:0 28px;

        border-radius:50px;

        font-size:15px;

        font-weight:600;

        transition:
            background .35s ease,
            transform .35s ease,
            box-shadow .35s ease;
    }

    /* Same hover effect as desktop */

    .strategy-btn:hover{

        background:radial-gradient(
            120% 120% at 0% 100%,
            #fff300 80%,
            #fff300 40%,
            #fff300 20%,
            #ffffff 40%,
            #ffffff 10%
        );

        background-size:200% 100%;

        background-position:right;

        transform:translateY(-3px);

        box-shadow:0 15px 35px rgba(0,0,0,.30);
    }

}


/* ======================================================
   SMALL MOBILE
====================================================== */

@media screen and (max-width:480px){

    .strategy-section{

        height:68vh;
        min-height:470px;

        padding:50px 18px;
    }

    .strategy-center{

        max-width:300px;
    }

    .strategy-center h2{

        font-size:29px;

        line-height:1.25;
    }

    .strategy-center p{

        font-size:14px;

        line-height:1.7;

        max-width:100%;
    }

    .strategy-btn{

        min-width:185px;

        height:48px;

        font-size:14px;
    }

    /* Keep desktop hover effect */

    .strategy-btn:hover{

        background:radial-gradient(
            120% 120% at 0% 100%,
            #fff300 80%,
            #fff300 40%,
            #fff300 20%,
            #ffffff 40%,
            #ffffff 10%
        );

        background-size:200% 100%;

        background-position:right;

        transform:translateY(-3px);

        box-shadow:0 15px 35px rgba(0,0,0,.30);
    }

}

/*section 5*/
/* ==========================
   STATS SECTION
========================== */
.stats-section 
{
background: linear-gradient(
  180deg,
  #03161e 0%,
  #05232e 50%,
  #020c11 100%
);
    border-top: 30px; 
    padding: 90px 8%;
   }
    .stats-container
     {
       max-width: 1200px;
        margin: auto;
         display: flex; 
         justify-content: space-between;
          align-items: center;
           gap: 40px;
            flex-wrap: wrap; 
          } 
          /* Individual Stat */
           .stat-item 
           {
             position: relative;
              flex: 1; 
              min-width: 220px;
             }
              /* Big Faded Number */ 
              .stat-bg 
              {
                 position: absolute;
                  top: -100px;
                   left: 0;
                    font-size: 110px;
                     font-weight: 700; 
                     color: transparent;
                      -webkit-text-stroke: 1px #ffffff;
                       opacity: 0.5; 
                       z-index: 1;
                       }
                        /* Foreground Content */
                         .stat-content 
                         { 
                          position: relative;
                           z-index: 2;
                            display: flex;
                             align-items: center;
                              gap: 12px;
                             }
                              .stat-content h3 
                              {
                                 font-size: 38px;
                                  font-weight: 600;
                                   color: #ffffff; 
                                  }
                                   .stat-content p
                                    {
                                       font-size: 15px;
                                        color: #ffffff;
                                       }
                                        /* Responsive */ @media (max-width: 992px)
                                         {
                                           .stats-container 
                                           {
                                             flex-direction: column; 
                                             align-items: flex-start;
                                              gap: 60px;
                                             } 
                                             .stat-bg
                                              { 
                                                font-size: 80px;
                                                 top: -20px;
                                                
                                                
                                  } }





/*section 8*/
/* ===============================
   FOOTER SECTION
================================= */

.main-footer {
  background: #16282d;
  color: #53a7cb;
  padding: 80px 8% 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Logo */
.footer-logo {
  font-size: 34px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Left Text */
.footer-left p {
  max-width: 300px;
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.8;
}

/* Button */
.footer-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #4b5b60;
  border-radius: 40px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #28c79f;
  border-color: #28c79f;
  border-radius: 30px;
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cfd8dc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #28c79f;
}

/* Contact */
.footer-contact p,
.footer-contact a {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cfd8dc;
  text-decoration: none;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}