
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    body{
      background:#000;
      /* overflow-x:hidden; */
    }

    /* HERO SECTION */

    .hero{
      width:100%;
      height:100vh;
      position:relative;
      overflow:hidden;
    }

    /* VIDEO */

    .hero video{
      position:absolute; 
      width:100%;
      height:100%;
      object-fit:cover;
      top:0;
      left:0;
      right: 0;
      z-index:-2;
    }

    /* DARK OVERLAY */

    .overlay{
      position:absolute;
      width:100%;
      height:100%;
      top:0;
      left:0;
      background:rgba(0,0,0,0.60);
      z-index:-1;
    }

    /* NAVBAR */

    .navbar{
      width:100%;
      padding:25px 70px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      position:relative;
      z-index:10;
    }

    /* LOGO */

    .logo{
      color:#fff;
      font-size:50px;
      font-weight:800;
      letter-spacing:-2px;
    }

    .logo span{
      color:#00aaff;
      font-size: 40px;
    }

    /* MENU */

    .menu{
      display:flex;
      align-items:center;
      gap:40px;
    }

    .menu a{
      color:#00aaff;
      text-decoration:none;
      font-size:15px;
      font-weight:500;
      transition:0.3s;
    }

    .menu a:hover{
      color:white;
    }

    /* DROPDOWN MENU */

    .dropdown{
      position:relative;
    }

    .dropdown-toggle{
      cursor:pointer;
      display:flex;
      align-items:center;
      gap:5px;
    }

    .dropdown-toggle::after{
      content:"▼";
      font-size:10px;
      transition:0.3s;
    }

    .dropdown:hover .dropdown-toggle::after{
      transform:rotate(180deg);
    }

    .dropdown-menu{
      position:absolute;
      top:100%;
      left:0;
      background:rgba(0,20,40,0.95);
      border:1px solid rgba(0,170,255,0.3);
      border-radius:8px;
      padding:10px 0;
      min-width:150px;
      display:none;
      flex-direction:column;
      gap:5px;
      margin-top:10px;
      z-index:100;
      backdrop-filter:blur(10px);
    }

    .dropdown:hover .dropdown-menu{
      display:flex;
    }

    .dropdown-menu a{
      padding:12px 20px;
      color:#00aaff;
      text-decoration:none;
      font-size:14px;
      transition:0.3s;
      white-space:nowrap;
    }

    .dropdown-menu a:hover{
      background:rgba(0,170,255,0.2);
      color:white;
    }

    /* CONTACT BUTTON */

    .contact-btn{
      background:#00aaff;
      color:white !important;
      padding:18px 38px;
      border-radius:50px;
      font-size:20px;
      font-weight:600;
      box-shadow:0 0 20px rgba(0,170,255,0.4);
    }

    .contact-btn:hover{
      transform:translateY(-2px);
    }

    /* HERO CONTENT */

    .content{
      width:100%;
      height:80%;
      font-size: 10px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      text-align:center;
      padding:20px;
    }

    .tag{
      background:rgba(0,170,255,0.15);
      border:1px solid rgba(0,170,255,0.5);
      color:#00aaff;
      padding:12px 28px;
      border-radius:40px;
      margin-bottom:25px;
      font-size:18px;
      backdrop-filter:blur(10px);
    }

    .content h1{
      color:white;
      font-size:70px;
      line-height:1.05;
      font-weight:700;
      max-width:1300px;
      letter-spacing:-4px;
    }

    .content h1 span{
      color:#00aaff;
    }

    /* BUTTONS */

    .hero-buttons{
      margin-top:40px;
      display:flex;
      gap:25px;
      flex-wrap:wrap;
    }

    .btn{
      padding:20px 45px;
      border-radius:60px;
      text-decoration:none;
      font-size:15px;
      font-weight:600;
      transition:0.3s;
    }

    .primary{
      background:#00aaff;
      color:white;
      box-shadow:0 0 25px rgba(0,170,255,0.4);
    }

    .secondary{
      background:rgba(255,255,255,0.08);
      border:1px solid rgba(255,255,255,0.1);
      color:white;
      backdrop-filter:blur(10px);
    }

    .btn:hover{
      transform:translateY(-4px);
    }

    /* PAGE SECTION STYLES */

    .page-section {
      min-height: 100vh;
      background: #000;
      padding: 80px 70px;
    }

    .page-container {
      max-width: 1200px;
      margin: 0 auto;
      color: white;
    }

    .page-container h1 {
      font-size: 60px;
      color: #00aaff;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .page-container h2 {
      font-size: 30px;
      color: #00aaff;
      margin: 40px 0 20px 0;
      font-weight: 600;
    }

    .page-container p {
      font-size: 16px;
      line-height: 1.8;
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-container ul {
      list-style: none;
      padding-left: 0;
    }

    .page-container ul li {
      padding: 10px 0;
      color: #ccc;
      font-size: 15px;
      line-height: 1.8;
    }

    @media screen and (max-width: 768px) {
      .page-section {
        padding: 60px 30px;
      }

      .page-container h1 {
        font-size: 40px;
      }

      .page-container h2 {
        font-size: 24px;
      }

      .page-container p {
        font-size: 14px;
      }
    }

    /* MOBILE */

    /* Tablet View */
@media screen and (max-width: 992px) {

    nav{
        padding: 20px 40px;
    }

    .hero{
        padding: 120px 40px;
        text-align: center;
    }

    .hero h1{
        font-size: 60px;
        line-height: 75px;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-buttons a{
        width: 250px;
        text-align: center;
    }

    .top-badge{
        width: 90%;
        margin: auto;
        font-size: 18px;
    }

    .navbar-links{
        gap: 20px;
    }
}


/* =========================
   MOBILE VIEW FIX
========================= */

@media screen and (max-width: 600px){

    /* HERO SECTION */
    .hero{
        width: 100%;
        min-height: 100vh;
        padding: 20px;
        overflow: hidden;
    }

    /* NAVBAR */
    .navbar{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 10px;
    }

    /* LOGO */
    .logo img{
        width: 180px;
    }

    /* MENU */
    .menu{
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .menu a{
        font-size: 14px;
        padding: 10px 18px;
        margin-top: 2%;
    }

    /* CONTACT BUTTON */
    .contact-btn{
        padding: 12px 20px;
        border-radius: 30px;
    }

    /* TOP TEXT BADGE */
    .top-badge{
        width: 100%;
        font-size: 16px;
        padding: 15px;
        text-align: center;
        margin-top: 20px;
    }

    /* MAIN HEADING */
    .hero h1{
        font-size: 42px;
        line-height: 52px;
        text-align: center;
        margin-top: 30px;
    }

    /* BLUE TEXT */
    .hero h1 span{
        display: block;
    }

    /* BUTTONS */
    .hero-buttons{
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
    }

    .hero-buttons a{
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    /* VIDEO */
    video{
        object-fit: cover;
    }
}
    *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f7f7f7;
}

/* SECTION */

.impact-section{
  width:100%;
  min-height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:80px;
  gap:60px;
  position:relative;
  overflow:hidden;
}

/* BLUE GLOW BACKGROUND */

.impact-section::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  background:radial-gradient(circle,#8fd0ff 0%, transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  opacity:0.6;
  z-index:0;
}

/* LEFT SIDE */

.impact-left{
  flex:1;
  position:relative;
  z-index:2;
}

.small-title{
  color:#0ea5ff;
  font-size:18px;
  font-weight:600;
  margin-bottom:35px;
  letter-spacing:1px;
}

.impact-left h1{
  font-size:70px;
  line-height:1;
  font-weight:600;
  color:#071133;
  margin-bottom:40px;
}

.impact-left h1 span{
  color:#0ea5ff;
}

.description{
  max-width:650px;
  color:#5d6b84;
  font-size:28px;
  line-height:1.6;
}

/* RIGHT SIDE */

.impact-right{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  position:relative;
  z-index:2;
}

/* CARDS */

.card{
  height:220px;
  background:rgba(255,255,255,0.7);
  border:1px solid rgba(0,0,0,0.05);
  border-radius:35px;
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:0.4s;
  backdrop-filter:blur(10px);
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* ACTIVE CARD */

.active{
  border-left:8px solid #0ea5ff;
}

.card h2{
  font-size:48px;
  color:#071133;
  margin-bottom:15px;
}

.card p{
  color:#5d6b84;
  font-size:18px;
}

/* MOBILE */

@media(max-width:700px){

  .impact-section{
    flex-direction:column;
    padding:40px 20px;
  }

  .impact-left h1{
    font-size:58px;
  }

  .description{
    font-size:20px;
  }

  .impact-right{
    width: 100%;
    grid-template-columns:1fr;
  }

  .card{
    height:180px;
  }

  .card h2{
    font-size:36px;
  }

   }
   .header h1{
    margin-top: 2%;
    font-size: 20px;
    text-align: center;
    color: #0076d6;
   }
   .header h2{
    font-size: 40px;
    text-align: center;
    color: #2e77b3;
    }
    .header h2 br{
      font-size: 40px;
      text-align: center;
      font-weight: 500;
      color: #166aa1;
    }
    .header p{
      margin-top: 2%;
      text-align: center;
    }
   *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Inter', sans-serif;
  background:#f7f8fb;
}

.media-section{
  width:100%;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:40px;
  padding:40px;
  align-items:start;
}

.content-side{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.media-card{
  background:white;
  border:1px solid #e3e7ef;
  border-radius:28px;
  padding:24px;
  cursor:pointer;
  transition:all .3s ease;
}

.media-card:hover{
  transform:translateY(-2px);
}

.media-card.active{
  border:2px solid #69b7ff;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.media-card h2{
  font-size:25px;
  font-weight:700;
  color:#0e1b3d;
  margin-bottom:18px;
}

.media-card p{
  font-size:15px;
  line-height:1.8;
  color:#33415c;
}

.image-side{
  position:relative;
  width:100%;
  height:auto;
  z-index:2;
  border-radius:40px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.18);
}

.image-side video,
.image-side img{
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:40px;
  transition:all .4s ease;
  display:block;
}

/* =========================
   DEFAULT DESKTOP/LAPTOP
========================= */

.audience-section{
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-content{
    width: 55%;
    padding: 40px;
}

.right-image{
    width: 45%;
}

.right-image img,
.right-image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards */
.audience-card{
    background: #f5f5f5;
    border-radius: 30px;
    padding: 35px;
    margin-bottom: 30px;
}


/* =========================
   TABLET VIEW
========================= */

@media screen and (max-width: 992px){

    .audience-section{
        flex-direction: column;
    }

    .left-content{
        width: 100%;
        padding: 30px;
    }

    .right-image{
        width: 100%;
        height: 500px;
    }

    .audience-card h2{
        font-size: 36px;
    }

    .audience-card p{
        font-size: 18px;
        line-height: 30px;
    }
}


/* MOBILE VIEW */
@media screen and (max-width: 600px){

    .media-section{
        display: flex;
        flex-direction: column;
    }

    .content-side{
        width: 100%;
    }

    .image-side{
        width: 100%;
        margin-top: 20px;
    }

    .image-side video,
    .image-side img{
        width: 100%;
        height: auto;
        border-radius: 28px;
        display: block;
    }

}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f4f5f7;
  font-family:Inter,sans-serif;
}
.combat-content{
  position:relative;
  z-index:2;
  max-width:1400px;
  margin:auto;
}
.combat-section{
  width:100%;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:30px;
  padding:30px;
}

/* LEFT PANEL */

.combat-left{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  padding:50px;
  height: 100%;
  background: linear-gradient(135deg,#0ea5e9,#1158ff);
  color:white;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.15);
  padding:12px 22px;
  border-radius:999px;
  font-size:18px;
  font-weight:600;
  margin-bottom:40px;
}

.dot{
  width:10px;
  height:10px;
  background:#7fffd4;
  border-radius:50%;
}

.combat-left h1{
  font-size:40px;
  line-height:1;
  font-weight:800;
  margin-bottom:35px;
  max-width:600px;
}

.combat-left p{
  font-size:15px;
  line-height:1.6;
  max-width:650px;
  color:rgba(255,255,255,0.9);
}

/* bottom */

.bottom-info{
  /* position:relative; */
  bottom:50px;
  left:50px;
  margin-top: 100px;
  display:flex;
  align-items:center;
  gap:25px;
}

.bottom-info h4{
  font-size:26px;
  font-weight:700;
}

.circles{
  display:flex;
}

.circles span{
  width:38px;
  height:38px;
  border-radius:50%;
  margin-left:-10px;
}

.circles span:nth-child(1){
  background:#9cecff;
}

.circles span:nth-child(2){
  background:#66e0ff;
}

.circles span:nth-child(3){
  background:#8db5ff;
}

/* SHIELD */

.shield{
  position:absolute;
  width:200px;
  height:200px;
  border:20px solid rgba(59, 4, 179, 0.12);
  border-radius:80px;
  right:-60px;
  bottom:-60px;
  transform:rotate(45deg);
}
/* RIGHT */

.combat-right{
  display:grid;
  height:100%;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.feature-card{
  background:white;
  border-radius:35px;
  padding:20px;
  min-height:200px;
  transition:0.3s;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.icon{
  width:72px;
  height:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  font-weight:bold;
  margin-bottom:35px;
}

.purple{
  background:#efe8ff;
  color:#7c3aed;
}

.yellow{
  background:#fff1cf;
  color:#f59e0b;
}

.pink{
  background:#ffe1e7;
  color:#e11d48;
}

.green{
  background:#dff8e9;
  color:#16a34a;
}

.feature-card h2{
  font-size:20px;
  line-height:1.2;
  margin-bottom:20px;
  color:#081028;
}

.feature-card p{
  font-size:15px;
  line-height:1.7;
  color:#465066;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .combat-section{
    grid-template-columns:1fr;
  }

  .combat-left{
    min-height:auto;
    height: auto;
    width: auto;
  }

  .combat-right{
    grid-template-columns:1fr;
  }

  .combat-left h1{
    font-size:52px;
  }

  .combat-left p{
    font-size:22px;
  }

  .feature-card h2{
    font-size:32px;
  }

  .feature-card p{
    font-size:20px;
  }
}


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#020817;
  font-family:Inter,sans-serif;
}

/* SECTION */

.booking-section{
  width:100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  padding:90px 70px;
  gap:60px;
  background:
    radial-gradient(circle at center,
    rgba(0,140,255,0.18),
    transparent 40%),
    linear-gradient(to right,#020817,#04112c);
}

/* LEFT */

.booking-content{
  max-width:700px;
  padding-right:30px;
}

.booking-content h1{
  font-size:55px;
  line-height:0.95;
  font-weight:600;
  color:white;
  margin-bottom:40px;
}

.booking-content h1 span{
  color:#57b7ff;
}

.description{
  color:#d7e2ff;
  font-size:20px;
  line-height:1.7;
  margin-bottom:55px;
}

/* FEATURES */

.feature-list{
  display:flex;
  flex-direction:column;
  gap: 35px;
 
}

.feature-item{
  display:flex;
  gap:22px;
}

.icon-box{
  min-width:64px;
  height:64px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(0,180,255,0.15), rgba(0,120,255,0.08));
  border:1px solid rgba(255,255,255,0.08);
  color:#59c7ff;
  font-size:20px;
}

.feature-item h3{
  color:white;
  font-size:36px;
  text-align: left;
  font-size: 20px;
  margin-bottom:10px;
}

.feature-item p{
  color:#9cb4d8;
  font-size:14px;
  line-height:1.6;
}

/* BUTTON */

.launch-btn{
  margin-top:60px;
  border:none;
  background:linear-gradient(90deg,#13b8ff,#1f8fff);
  color:white;
  padding:28px 48px;
  border-radius:999px;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.launch-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,140,255,0.35);
}

/* RIGHT */

.booking-image{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* LAPTOP */

.laptop{
  width:100%;
  max-width:900px;

  border-radius:35px;

  background:#111827;

  padding:22px;

  position:relative;

  box-shadow:
  0 0 80px rgba(0,140,255,0.18);
}

.laptop::after{
  content:"";

  position:absolute;

  width:110%;
  height:24px;

  background:#111827;

  left:-5%;
  bottom:-12px;

  border-radius:0 0 30px 30px;
}

.laptop img{
  width:100%;
  border-radius:20px;
  display:block;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .booking-section{
    grid-template-columns:1fr;
    gap:60px;
    padding:70px 40px;
    align-items:flex-start;
  }

  .booking-content{
    padding-right:0;
  }

  .booking-content h1{
    font-size:48px;
  }

  .description{
    font-size:20px;
  }

  .feature-item h3{
    font-size:24px;
  }

  .feature-item p{
    font-size:18px;
  }

  .launch-btn{
    font-size:20px;
    padding:22px 36px;
    width:100%;
    max-width:420px;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f8f8f8;
}

.coverage-section{
  padding:80px 5%;
  background:#f7f7f7;
}

.coverage-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}

/* MAP */

.map-area{
  position:relative;
  width: 550px;
  max-width:100%;
}

.india-map{
  width:100%;
  opacity:0.9;
}



/* ANIMATION */

@keyframes pulse{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.15);
  }
  100%{
    transform:scale(1);
  }
}

@keyframes ripple{
  0%{
    transform:scale(0.7);
    opacity:1;
  }
  100%{
    transform:scale(1.5);
    opacity:0;
  }
}

/* STATS */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(2, 240px);
  gap:30px;
}

.stat-card{
  background:white;
  border-radius:22px;
  padding:40px;
  box-shadow:0 4px 18px rgba(0,0,0,0.04);
}

.stat-card h2{
  font-size:62px;
  color:#00a2ff;
  margin-bottom:15px;
  font-weight:700;
}

.stat-card p{
  color:#4f6480;
  letter-spacing:2px;
  font: size 10px;
  font-weight:600;

}

/* RESPONSIVE */

@media(max-width:991px){

  .coverage-container{
    flex-direction:column;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr;
    width:100%;
  }
}

@media(max-width:600px){

  .stats-grid{
    grid-template-columns:1fr;
  }

  .stat-card h2{
    font-size:30px;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Inter', sans-serif;
  background:#07152d;
}

/* SECTION */

.brands-section{
  position:relative;
  overflow:hidden;
  padding:120px 5%;
  background: radial-gradient(circle at center, rgba(0,123,255,0.15) 0%, transparent 70%), #03112b;
}

/* CENTER GLOW */

.brands-section::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(0,140,255,0.18), transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

/* CONTENT */

.brands-container{
  position:relative;
  z-index:2;
  max-width:1400px;
  margin:auto;
  text-align:center;
}

.brands-container h2{
  color:#fff;
  font-size:30px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:28px;
}

.brands-container h2 span{
  color:#008cff;
}

.brands-container p{
  color:#9fb1d1;
  font-size:15px;
  line-height:1.7;
  max-width:1100px;
  margin:auto;
  margin-bottom:90px;
}

/* GRID */

.brands-grid{
  display:flex;
  flex-direction:column;
  gap:20px;
  overflow:hidden;
  width:100%;
  position:relative;
  margin:auto;
}

.brands-row{
  overflow:hidden;
  width:100%;
  border-radius:28px;
  background:rgba(255,255,255,0.03);
  padding:18px 0;
}

.brands-track{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  gap:32px;
  min-width:max-content;
}

.brands-track.row-1{
  animation:scroll-right 30s linear infinite;
}

.brands-track.row-2{
  animation:scroll-left 30s linear infinite;
}

.brands-track:hover{
  animation-play-state:paused;
}

.brands-track img{
  width:70px;
  height:70px;
  flex:0 0 auto;
  object-fit:contain;
  opacity:0.38;
  filter:grayscale(100%) brightness(1.8);
  transition:0.35s ease, transform 0.35s ease;
}

.brands-track img:hover{
  opacity:1;
  transform:translateY(-6px) scale(1.08);
  filter:grayscale(0%) brightness(1);
}

@keyframes scroll-left{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

@keyframes scroll-right{
  0%{
    transform: translateX(-50%);
  }
  100%{
    transform: translateX(0);
  }
}

/* RESPONSIVE */

@media(max-width:1200px){

  .brands-grid{
    padding:0 10px;
  }

  .brands-container h2{
    font-size:50px;
  }

  .brands-container p{
    font-size:18px;
  }
}

@media(max-width:768px){

  .brands-grid{
    padding:0 8px;
  }

  .brands-container h2{
    font-size:28px;
  }

  .brands-container p{
    font-size:16px;
    margin-bottom:40px;
  }

  .brands-grid img{
    width: 55px;
    height:55px;
  }
}

@media(max-width:480px){

  .brands-grid{
    padding:0 6px;
  }

  .brands-grid img{
    width: 48px;
    height:48px;
  }

  .brands-container p{
    font-size:14px;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f7f8fa;
  font-family:'Inter',sans-serif;
}

/* SECTION */

.testimonial-section{
  padding:60px 2%;
}

/* GRID */

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

/* CARD */

.testimonial-card{
  position:relative;
  background:#fff;
  border:1px solid #edf0f5;
  border-radius:34px;
  padding:20px;
  min-height:150px;
  overflow:hidden;
  transition:0.4s ease;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* TOP */

.testimonial-top{
  display:flex;
  align-items:center;
  gap:28px;
  margin-bottom:48px;
}

/* LOGO */

.testimonial-top img{
  width:88px;
  height:88px;
  border-radius:50%;
  object-fit:contain;
  background:#fff;
  padding:10px;
  border:4px solid #f3f5f9;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* NAME */

.testimonial-top h3{
  font-size:24px;
  line-height:1.1;
  color:#06163a;
  font-weight:600;
  margin-bottom:10px;
}

.testimonial-top span{
  display:block;
  color:#5d7394;
  font-size:22px;
  margin-bottom:14px;
}

/* STARS */

.stars{
  color:#f4b400;
  font-size:28px;
  letter-spacing:4px;
}

/* QUOTE */

.quote-mark{
  position:absolute;
  left:36px;
  top:170px;
  font-size:120px;
  color:#eef2f7;
  line-height:1;
  font-family:Georgia, serif;
}

/* TEXT */

.testimonial-card p{
  position:relative;
  z-index:2;
  color:#17345d;
  font-size:15px;
  line-height:1.9;
  font-style:italic;
  max-width:90%;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .testimonial-card{
    min-height:auto;
  }
}

@media(max-width:768px){

  .testimonial-card{
    padding:20px;
    border-radius:24px;
  }

  .testimonial-top{
    gap:18px;
    margin-bottom:30px;
  }

  .testimonial-top img{
    width:68px;
    height:68px;
  }

  .testimonial-top h3{
    font-size:26px;
  }

  .testimonial-top span{
    font-size:18px;
  }

  .stars{
    font-size:22px;
  }

  .testimonial-card p{
    font-size:18px;
    line-height:1.7;
    max-width:100%;
  }

  .quote-mark{
    font-size:90px;
    left:20px;
    top:140px;
  }
}

@media(max-width:520px){

  .testimonial-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .testimonial-top h3{
    font-size:22px;
  }

  .testimonial-card p{
    font-size:16px;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Inter', sans-serif;
  background:#f4f5f7;
}

.recognition-section{
  padding:80px 60px;
  background:#f5f6f8;
}

.recognition-container{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT SIDE */

.recognition-left{
  flex:1;
}

.tag{
  color:#0076d6;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
  display:inline-block;
  margin-bottom:25px;
}

.recognition-left h1{
  font-size:40px;
  line-height:1.05;
  font-weight:600;
  color:#08122f;
  margin-bottom:35px;
}

.recognition-left p{
  font-size:14px;
  line-height:1.7;
  color:#44516b;
  max-width:800px;
  margin-bottom:50px;
}

.logos{
  display:flex;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.logos img{
  height:80px;
  object-fit:contain;
}

/* RIGHT SIDE */

.recognition-right{
  flex:1;
  position:relative;
}

.recognition-right img{
  width:100%;
  border-radius:32px;
  display:block;
}

.floating-card{
  position:absolute;
  bottom:-30px;
  padding: 8px 8px;
  left:40px;
  background:white;
  border-radius:22px;
  display:flex;
  align-items:center;
  gap:20px;
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

.icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#eef6ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
}

.floating-card h3{
  font-size:20px;
  color:#08122f;
  margin-bottom:6px;
}

.floating-card p{
  font-size:15px;
  color:#5d6880;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .recognition-container{
    flex-direction:column;
  }

  .recognition-left h1{
    font-size:54px;
  }

  .recognition-left p{
    font-size:22px;
  }

}

@media(max-width:768px){

  .recognition-section{
    padding:50px 20px;
  }

  .recognition-left h1{
    font-size:42px;
  }

  .recognition-left p{
    font-size:18px;
  }

  .floating-card{
    left:20px;
    right:20px;
    bottom:-40px;
  }

  .floating-card h3{
    font-size:22px;
  }

  .floating-card p{
    font-size:16px;
  }

}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
}

/* MAIN SECTION */

.cta-footer{
  background:#020d2c;
  color:white;
  padding:80px 60px 0px;
}

/* CTA */

.cta-content{
  text-align:center;
  max-width:1200px;
  margin:auto;
}

.cta-content h1{
  font-size:50px;
  line-height:1.05;
  font-weight:600;
  margin-bottom:35px;
  letter-spacing:-2px;
}

.cta-content p{
  font-size:18px;
  line-height:1.6;
  color:#9fb0c8;
  max-width:900px;
  margin:0 auto 50px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:26px 55px;
  background:#12a8ff;
  color:white;
  text-decoration:none;
  border-radius:60px;
  font-size:22px;
  font-weight:500;
  transition:0.3s ease;
  box-shadow: 0 10px 30px rgba(18,168,255,0.35);
}

.cta-btn:hover{
  transform:translateY(-4px);
  background:#0097ef;
}

/* FOOTER */

.footer{
  margin-top:130px;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap:80px;
}


.logo{
  font-size:30px;
  font-weight:500;
  margin-bottom:25px;
  
}

.footer-text{
  color:#9fb0c8;
  font-size:18px;
  line-height:1.6;
  margin-bottom:35px;
}

/* SOCIALS */

.socials{
  display:flex;
  gap:20px;
}

.socials a{
  width:50px;
  height:50px;
  border-radius:70%;
  background:#e67104;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  text-decoration:none;
  font-size:35px;
  transition:0.3s;
}

.socials a:hover{
  background:#2149b7;
}

/* FOOTER HEADINGS */

.footer-col h3{
  font-size:20px;
  margin-bottom:35px;
}

.footer-col a{
    font-size: 15px;
    text-align: center;
    color: #d8d5d5;
}
.footer-col p{
  display:block;
  color:#ede7ec;
  text-decoration:none;
  font-size:15px;
  line-height:2;
}

.footer-col a:hover{
  color:white;
}

/* SUBSCRIBE */

.footer-col h4{
  margin-top:30px;
  margin-bottom:25px;
  font-size:25px;
}

.subscribe-btn{
  /* display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:20px 0;
  transition:0.3s ease; */
  background: #00aaff;
      color: white !important;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-top: 10px;
      box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
      text-decoration: none;
      transition: 0.3s;
} 

.subscribe-btn:hover{
  background:#12a8ff;
}



/* RESPONSIVE */

@media(max-width:1200px){

  .cta-content h1{
    font-size:65px;
  }

  .footer{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .cta-footer{
    padding:60px 20px 0px;
  }

  .cta-content h1{
    font-size:42px;
  }

  .cta-content p{
    font-size:20px;
  }

  .cta-btn{
    font-size:22px;
    padding:18px 35px;
  }

  .footer{
    grid-template-columns:1fr;
    gap:50px;
    margin-top:90px;
  }

  .footer-col h3,
  .footer-col h4{
    font-size:28px;
  }

  .footer-col a,
  .footer-col p,
  .footer-text{
    font-size:20px;
  }

  .logo{
    font-size:40px;
  }

}
