



/* ================= HERO SECTION ================= */

.hero-section{
  position: relative;
  padding: 10px 0 70px; /* top gap kam */
  background: linear-gradient(135deg,#f8fbff,#eef4ff);
  overflow: hidden;
}

/* BACKGROUND GLOW */
.hero-section::before{
  content:'';
  position:absolute;
  top:-200px;
  right:-120px;
  width:500px;
  height:500px;
  background:rgba(11,61,145,0.08);
  border-radius:50%;
  filter:blur(80px);
}

.hero-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  min-height:85vh;
}

/* LEFT */
.hero-content{
  flex:1;
}

.hero-content h1{
  font-size:58px;
  line-height:1.15;
  font-weight:700;
  color:#111;
  margin-bottom:20px;
}

.hero-content h1 span{
  color:#3D93C5;
}

.hero-content p{
  font-size:18px;
  color:#666;
  line-height:1.8;
  max-width:580px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:16px;
  margin-top:30px;
}

.hero-btn{
  text-decoration:none;
  padding:16px 34px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
}

.primary-btn{
  background:#3D93C5;
  color:#fff;
}

.secondary-btn{
  border:2px solid #3D93C5;
  color:#3D93C5;
  background:#fff;
}

/* TRUST */
.hero-features{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  margin-top:30px;
}

/* RIGHT IMAGE */
.hero-image{
  flex:1;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* IMAGE FIX */
.hero-image img{
  width:100%;
  max-width:950px !important; /* image badi */
  min-width:550px;
  border-radius: 15px ;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 20px 45px rgba(0,0,0,0.18));
  animation:floatHero 4s ease-in-out infinite;
}

/* FLOAT */
@keyframes floatHero{
  0%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
  100%{transform:translateY(0);}
}

/* FLOATING CARD */
.floating-card{
  position:absolute;
  background:#fff;
  padding:18px 22px;
  border-radius:18px;
  box-shadow:0 10px 35px rgba(0,0,0,0.12);
  text-align:center;
}

.floating-card h4{
  color:#3D93C5;
  font-size:24px;
}

.floating-card span{
  font-size:14px;
  color:#666;
}

.card-1{
  top:60px;
  left:0;
}

.card-2{
  bottom:60px;
  left:20px;
}

.card-3{
  top:100px;
  right:10px;
}

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

  .hero-wrapper{
    flex-direction:column;
    text-align:center;
    min-height:auto;
  }

  .hero-content p{
    margin:auto;
  }

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

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

  .hero-image img{
    min-width:unset;
    max-width:100%;
    width:100%;
  }

  .floating-card{
    display:none;
  }
}

@media(max-width:768px){

  .hero-section{
    padding:20px 0 50px;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-btn{
    width:100%;
    text-align:center;
  }

  .hero-image img{
    width:100%;
    max-width:380px;
  }
}


/* ==========================================
   PREMIUM DRIVER SERVICE SECTION
========================================== */

.service-section{
  padding:40px 0;
  overflow:hidden;
}

/* HEADING */

.service-heading{
  text-align:center;
  margin-bottom:50px;
}

.service-tag{
  display:inline-block;
  background:rgba(11,61,145,0.08);
  color:#3D93C5;
  padding:10px 20px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:16px;
}

.service-heading h2{
  font-size:42px;
  font-weight:700;
  color:#111;
}

/* GRID */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* CENTER LAST ROW DESKTOP */
.service-card:nth-child(4){
  grid-column:1 / 2;
}

.service-card:nth-child(5){
  grid-column:2 / 3;
}

/* CARD */

.service-card{
  position:relative;
  width:100%;
  min-height:210px;
  height:100%;

  padding:28px;
  border-radius:28px;

  text-decoration:none;
  background:#fff;
  border:1px solid rgba(11,61,145,0.08);

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  transition:.35s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 20px 45px rgba(11,61,145,.12);
}

/* ACTIVE */

.service-card.active{
  background:
  linear-gradient(
    135deg,
    #3D93C5,
    #1f60d8
  );
}

.service-card.active h3{
  color:#fff;
}

/* TOP */

.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:24px;
}

/* ICON */

.service-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:#edf4ff;
  color:#3D93C5;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;
}

.white-icon{
  background:#fff;
}

/* BADGE */

.service-badge{
  background:#fff;
  color:#3D93C5;
  padding:8px 14px;
  border-radius:50px;
  font-size:12px;
  font-weight:600;
}

.service-card.active .service-badge{
  background:rgba(255,255,255,.15);
  color:#fff;
}

/* TITLE */

.service-card h3{
  font-size:20px;
  font-weight:600;
  line-height:1.5;
  color:#111;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

  .service-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5){
    grid-column:auto;
  }

  .service-heading h2{
    font-size:34px;
  }

  .service-card{
    min-height:190px;
  }

}

/* ==========================
   SERVICE SECTION MOBILE FIX
========================== */

@media(max-width:768px){

  .service-section{
    padding:40px 0 !important;
  }

  .service-heading{
    margin-bottom:25px !important; /* heading ke niche gap kam */
  }

  .service-grid{
    gap:12px !important;
  }

  .service-card{
    min-height:auto !important;
    padding:16px !important;
  }

  .card-top{
    margin-bottom:12px !important;
  }

  .service-icon{
    width:50px !important;
    height:50px !important;
    font-size:18px !important;
  }

  .service-card h3{
    font-size:14px !important;
    line-height:1.4;
  }
}

@media(max-width:480px){

  .service-section{
    padding:30px 0 !important;
  }

  .service-heading{
    margin-bottom:18px !important;
  }

}
/* ===================================
   WHY PREMIUM SECTION
=================================== */

.why-premium-section{
  padding:30px 0;
  background:linear-gradient(180deg,#f8fbff,#ffffff);
  overflow:hidden;
}

.why-premium-wrapper{
  display:flex;
  align-items:center;
  gap:70px;
}

/* LEFT IMAGE */

.why-premium-image{
  flex:1;
  position:relative;
}

.why-premium-image img{
  width:100%;
  max-width:580px;
  border-radius:35px;
  display:block;
  margin:auto;
  filter:drop-shadow(0 25px 50px rgba(0,0,0,0.12));
}

/* FLOATING CARD */

.why-floating-card{
  position:absolute;
  bottom:40px;
  right:20px;
  background:#fff;
  padding:18px 22px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  display:flex;
  align-items:center;
  gap:14px;
}

.why-floating-card i{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#3D93C5;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.why-floating-card h4{
  font-size:16px;
  margin-bottom:3px;
  color:#111;
}

.why-floating-card span{
  font-size:12px;
  color:#666;
}

/* RIGHT CONTENT */

.why-premium-content{
  flex:1;
}

.section-tag{
  display:inline-block;
  background:#eaf2ff;
  color:#3D93C5;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

.why-premium-content h2{
  font-size:46px;
  line-height:1.2;
  color:#111;
  margin-bottom:18px;
}

.why-premium-content p{
  font-size:17px;
  line-height:1.9;
  color:#666;
  margin-bottom:35px;
}

/* FEATURE GRID */

.why-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.why-feature-box{
  background:#fff;
  border:1px solid rgba(11,61,145,0.08);
  border-radius:20px;
  padding:20px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.35s;
}

.why-feature-box:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(11,61,145,0.12);
}

.why-feature-box i{
  width:50px;
  height:50px;
  border-radius:14px;
  background:#3D93C5;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.why-feature-box span{
  font-size:15px;
  font-weight:600;
  color:#222;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

  .why-premium-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .why-premium-content h2{
    font-size:36px;
  }

  .why-feature-grid{
    grid-template-columns:1fr 1fr;
  }

  .why-floating-card{
    display:none;
  }

}

@media(max-width:768px){

  .why-premium-section{
    padding:40px 0;
  }

  .why-premium-content h2{
    font-size:30px;
  }

  .why-premium-content p{
    font-size:15px;
  }

  .why-feature-grid{
    grid-template-columns:1fr;
  }

  .why-feature-box{
    padding:18px;
    text-align:left;
  }

  .why-premium-image img{
    border-radius:22px;
  }

}

/* ===================================
   HOW IT WORKS PREMIUM
=================================== */

.how-premium-section{
  padding:30px 0;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  position:relative;
}

.section-heading{
  text-align:center;
  margin-bottom:65px;
}

.section-tag{
  display:inline-block;
  background:#eaf2ff;
  color:#3D93C5;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.section-heading h2{
  font-size:46px;
  color:#111;
  margin-bottom:12px;
}

.section-heading p{
  color:#666;
  font-size:17px;
}

/* GRID */

.how-premium-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  position:relative;
}

/* CONNECTOR LINE */

.how-premium-grid::before{
  content:'';
  position:absolute;
  top:70px;
  left:10%;
  width:80%;
  height:2px;
  background:linear-gradient(
    to right,
    #3D93C5,
    rgba(11,61,145,0.15)
  );
  z-index:0;
}

/* CARD */

.how-card{
  position:relative;
  z-index:2;
  background:#fff;
  border-radius:30px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  border:1px solid rgba(11,61,145,0.08);
  transition:0.35s;
}

.how-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(11,61,145,0.12);
}

/* ACTIVE CARD */

.how-card.active{
  background:linear-gradient(
    135deg,
    #3D93C5,
    #1450b5
  );
}

.how-card.active h3,
.how-card.active .step-number{
  color:#fff;
}

.how-card.active .step-icon{
  background:#fff;
  color:#3D93C5;
}

/* NUMBER */

.step-number{
  font-size:15px;
  font-weight:700;
  color:#3D93C5;
  margin-bottom:18px;
}

/* ICON */

.step-icon{
  width:85px;
  height:85px;
  border-radius:50%;
  background:#eef4ff;
  color:#3D93C5;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  font-size:30px;
  margin-bottom:22px;
  transition:0.35s;
}

.how-card:hover .step-icon{
  transform:rotate(8deg) scale(1.08);
}

/* TITLE */

.how-card h3{
  font-size:20px;
  color:#111;
  font-weight:600;
  line-height:1.5;
}

/* ========================
   RESPONSIVE
======================== */

@media(max-width:991px){

  .how-premium-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .how-premium-grid::before{
    display:none;
  }

}

@media(max-width:768px){

  .how-premium-section{
    padding:40px 0;
   
  }

  .section-heading h2{
    font-size:32px;
  }

  .section-heading p{
    font-size:15px;
  }

  .how-premium-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .how-card{
    border-radius:22px;
    padding:25px 18px;
  }

  .step-icon{
    width:65px;
    height:65px;
    font-size:24px;
  }

  .how-card h3{
    font-size:15px;
  }

}

@media(max-width:480px){

  .how-premium-grid{
    grid-template-columns:1fr 1fr;
  }

}


/* ===================================
   PREMIUM STATS SECTION
=================================== */

.stats-premium-section{
  padding:100px 0;
  position:relative;
  overflow:hidden;

  /* BACKGROUND IMAGE */
  background:
  linear-gradient(
    rgba(6,22,55,0.82),
    rgba(6,22,55,0.82)
  ),
  url('images/banner.png');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

/* BACKGROUND GLOW */

.stats-premium-section::before{
  content:'';
  position:absolute;
  top:-150px;
  left:-150px;
  width:400px;
  height:400px;
  background:rgba(255,255,255,0.06);
  border-radius:50%;
}

.stats-premium-section .section-heading{
  text-align:center;
  margin-bottom:60px;
}

.stats-premium-section .section-tag{
  background:rgba(255,255,255,0.12);
  color:#fff;
}

.stats-premium-section h2{
  color:#fff;
  font-size:46px;
}

.stats-premium-section p{
  color:rgba(255,255,255,0.8);
  font-size:16px;
}

/* GRID */

.stats-premium-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}

/* CARD */

.stat-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  border-radius:28px;
  padding:35px 20px;
  text-align:center;
  transition:0.35s;
}

.stat-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.12);
}

/* ACTIVE CARD */

.stat-card.active{
  background:#fff;
}

.stat-card.active h3,
.stat-card.active span{
  color:#111;
}

.stat-card.active .stat-icon{
  background:#3D93C5;
  color:#fff;
}

/* ICON */

.stat-icon{
  width:78px;
  height:78px;
  border-radius:22px;
  background:rgba(255,255,255,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:20px;
  color:#fff;
  font-size:28px;
}

/* NUMBER */

.stat-card h3{
  font-size:42px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}

/* TEXT */

.stat-card span{
  font-size:15px;
  color:rgba(255,255,255,0.85);
  font-weight:500;
}

/* ===================
   RESPONSIVE
=================== */

@media(max-width:1100px){

  .stats-premium-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:768px){

  .stats-premium-section{
    padding:40px 0;
    background-attachment:scroll;

  }

  .stats-premium-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .stats-premium-section h2{
    font-size:32px;
  }

  .stat-card{
    border-radius:22px;
    padding:28px 16px;
  }

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

  .stat-icon{
    width:62px;
    height:62px;
    font-size:22px;
  }

}

@media(max-width:480px){

  .stats-premium-grid{
    grid-template-columns:1fr 1fr;
  }

}

/* =========================================
   FEATURED BENEFITS SECTION
========================================= */

.benefits-section{
  padding:30px 0;
  background:
  linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef5ff 100%
  );
  position:relative;
  overflow:hidden;
}

/* LIGHT GLOW */
.benefits-section::before{
  content:'';
  position:absolute;
  top:-150px;
  right:-100px;
  width:350px;
  height:350px;
  background:rgba(11,61,145,0.06);
  border-radius:50%;
  filter:blur(70px);
}

/* HEADING */

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.section-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:#eaf2ff;
  color:#3D93C5;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.section-heading h2{
  font-size:42px;
  color:#111;
  font-weight:700;
  margin-bottom:14px;
}

.section-heading p{
  font-size:16px;
  color:#666;
  max-width:650px;
  margin:auto;
  line-height:1.8;
}

/* GRID */

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */

.benefit-card{
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.7);
  border-radius:28px;
  padding:40px 25px;
  text-align:center;
  transition:0.35s ease;
  position:relative;
  overflow:hidden;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.06);
}

/* TOP BORDER EFFECT */

.benefit-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(
    90deg,
    #3D93C5,
    #1b5fd6
  );
  transform:scaleX(0);
  transition:0.35s;
}

.benefit-card:hover::before{
  transform:scaleX(1);
}

/* HOVER */

.benefit-card:hover{
  transform:translateY(-10px);
  box-shadow:
  0 25px 50px rgba(11,61,145,0.15);
}

/* ICON */

.benefit-icon{
  width:80px;
  height:80px;
  border-radius:22px;
  margin:auto;
  margin-bottom:24px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    #3D93C5,
    #1e5fd0
  );

  box-shadow:
  0 10px 25px rgba(11,61,145,0.25);
}

.benefit-icon i{
  color:#fff;
  font-size:32px;
}

/* TITLE */

.benefit-card h3{
  font-size:20px;
  color:#111;
  font-weight:600;
  line-height:1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .section-heading h2{
    font-size:34px;
  }

}

@media(max-width:768px){

  .benefits-section{
    padding:40px 0;
  }

  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .benefit-card{
    padding:28px 18px;
    border-radius:22px;
  }

  .benefit-icon{
    width:62px;
    height:62px;
    border-radius:18px;
  }

  .benefit-icon i{
    font-size:24px;
  }

  .benefit-card h3{
    font-size:15px;
  }

  .section-heading h2{
    font-size:28px;
  }

}

@media(max-width:480px){

  .benefits-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .benefit-card{
    padding:24px 14px;
  }

  .benefit-card h3{
    font-size:14px;
  }

}

/* =========================================
   CORPORATE VIDEO SECTION
========================================= */

.corporate-section{
  position:relative;
  padding:30px 0;
  overflow:hidden;
}

/* VIDEO */

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

/* DARK OVERLAY */

.corporate-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    rgba(6,22,55,0.82),
    rgba(6,22,55,0.82)
  );
  z-index:-1;
}

/* CONTENT ABOVE VIDEO */

.corporate-wrapper{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT */

.corporate-tag{
  display:inline-block;
  background:rgba(255,255,255,0.12);
  color:#fff;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:22px;
}

.corporate-content h2{
  font-size:48px;
  line-height:1.2;
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
}

.corporate-content h2 span{
  color:#F7CC34;
}

.corporate-content p{
  font-size:17px;
  line-height:1.9;
  color:rgba(255,255,255,0.85);
  max-width:620px;
}

/* FEATURES */

.corporate-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:35px;
}

.corporate-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  padding:16px 18px;
  color:#fff;
  font-size:15px;
  font-weight:500;
  backdrop-filter:blur(10px);
}

.corporate-item i{
  color:#F7CC34;
  font-size:20px;
}

/* BUTTON */

.corporate-btn{
  display:inline-block;
  margin-top:35px;
  padding:16px 32px;
  background:#fff;
  color:#3D93C5;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  transition:0.35s;
}

.corporate-btn:hover{
  transform:translateY(-4px);
}

/* RIGHT */

.corporate-right{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.corporate-card{
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(16px);
  border-radius:28px;
  padding:35px;
  color:#fff;
  transition:0.35s;
}

.corporate-card:hover{
  transform:translateY(-8px);
}

.big-card{
  text-align:center;
}

.corporate-icon{
  width:85px;
  height:85px;
  border-radius:24px;
  background:#fff;
  color:#3D93C5;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:22px;
  font-size:34px;
}

.big-card h3{
  font-size:28px;
  margin-bottom:12px;
}

.big-card p{
  color:rgba(255,255,255,0.8);
  line-height:1.7;
}

/* SMALL CARDS */

.small-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.small-card{
  text-align:center;
  padding:28px;
}

.small-card h4{
  font-size:34px;
  color:#F7CC34;
  margin-bottom:8px;
}

.small-card span{
  font-size:15px;
  color:rgba(255,255,255,0.85);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .corporate-wrapper{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .corporate-content p{
    margin:auto;
  }

  .corporate-features{
    max-width:650px;
    margin:35px auto 0;
  }

}

@media(max-width:768px){

  .corporate-section{
    padding:40px 0;
  }

  .corporate-content h2{
    font-size:34px;
  }

  .corporate-features{
    grid-template-columns:1fr;
  }

  .corporate-item{
    justify-content:center;
  }

  .small-cards{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:480px){

  .corporate-content h2{
    font-size:28px;
  }

  .corporate-content p{
    font-size:15px;
  }

  .corporate-card{
    padding:24px;
    border-radius:22px;
  }

  .big-card h3{
    font-size:22px;
  }

  .small-card h4{
    font-size:28px;
  }

}

/* =========================================
   SAFETY PROMISE SECTION
========================================= */

.safety-promise-section{
  padding:30px 0;
  background:
  linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef4ff 100%
  );
  position:relative;
  overflow:hidden;
}

/* LIGHT GLOW */

.safety-promise-section::before{
  content:'';
  position:absolute;
  left:-100px;
  bottom:-100px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(11,61,145,0.08);
  filter:blur(80px);
}

/* WRAPPER */

.safety-promise-wrapper{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  align-items:center;
  gap:70px;
}

/* IMAGE */

.safety-image-box{
  position:relative;
}

.safety-image-box img{
  width:100%;
  max-width:560px;
  border-radius:32px;
  object-fit:cover;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.15);

  transition:0.4s;
}

.safety-image-box img:hover{
  transform:scale(1.03);
}

/* TAG */

.safety-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:#eaf2ff;
  color:#3D93C5;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

/* CONTENT */

.safety-right h2{
  font-size:46px;
  line-height:1.2;
  color:#111;
  font-weight:700;
  margin-bottom:18px;
}

.safety-right h2 span{
  color:#3D93C5;
}

.safety-right p{
  font-size:16px;
  line-height:1.9;
  color:#666;
  max-width:620px;
}

/* FEATURES GRID */

.safety-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:35px;
}

/* BOX */

.safety-box{
  background:#fff;
  border-radius:22px;
  padding:22px 20px;

  display:flex;
  align-items:center;
  gap:14px;

  transition:0.35s;
  border:1px solid rgba(11,61,145,0.08);

  box-shadow:
  0 12px 30px rgba(0,0,0,0.05);
}

.safety-box:hover{
  transform:translateY(-8px);
  box-shadow:
  0 20px 40px rgba(11,61,145,0.12);
}

/* ICON */

.safety-box i{
  width:58px;
  height:58px;
  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    #3D93C5,
    #1e5fd0
  );

  color:#fff;
  font-size:22px;

  flex-shrink:0;
}

.safety-box span{
  font-size:16px;
  font-weight:600;
  color:#111;
  line-height:1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .safety-promise-wrapper{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
  }

  .safety-image-box{
    text-align:center;
  }

  .safety-right p{
    margin:auto;
  }

  .safety-points{
    max-width:650px;
    margin:35px auto 0;
  }

}

@media(max-width:768px){

  .safety-promise-section{
    padding:40px 0;
  }

  .safety-right h2{
    font-size:34px;
  }

  .safety-points{
    grid-template-columns:1fr;
    gap:16px;
  }

  .safety-box{
    padding:18px;
    border-radius:18px;
  }

  .safety-box i{
    width:50px;
    height:50px;
    font-size:18px;
    border-radius:14px;
  }

  .safety-box span{
    font-size:15px;
  }

}

@media(max-width:480px){

  .safety-right h2{
    font-size:28px;
  }

  .safety-right p{
    font-size:15px;
  }

}

/* =========================================
   PREMIUM TESTIMONIALS
========================================= */

.testimonial-premium-section{
  padding:30px 0;
  background:#f8fbff;
  overflow:hidden;
}

/* HEADING */

.testimonial-heading{
  text-align:center;
  margin-bottom:60px;
}

.testimonial-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:#eaf2ff;
  color:#3D93C5;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.testimonial-heading h2{
  font-size:42px;
  color:#111;
  margin-bottom:12px;
}

.testimonial-heading p{
  color:#666;
  font-size:16px;
}

/* SLIDER */

.testimonial-slider{
  overflow:hidden;
  position:relative;
}

.testimonial-track{
  display:flex;
  gap:25px;
  width:max-content;
  animation:scrollTestimonials 30s linear infinite;
}

/* CARD */

.testimonial-box{
  width:340px;
  background:#fff;
  border-radius:28px;
  padding:35px 28px;
  flex-shrink:0;

  box-shadow:
  0 15px 35px rgba(0,0,0,0.06);

  transition:0.35s;
}

.testimonial-box:hover{
  transform:translateY(-10px);
}

/* STARS */

.stars{
  display:flex;
  gap:5px;
  margin-bottom:20px;
}

.stars i{
  color:#f4b400;
  font-size:18px;
}

/* REVIEW */

.testimonial-box p{
  color:#555;
  line-height:1.9;
  font-size:15px;
  margin-bottom:30px;
}

/* CUSTOMER */

.customer-info{
  display:flex;
  align-items:center;
  gap:14px;
}

.customer-info img{
  width:65px;
  height:65px;
  border-radius:50%;
  object-fit:cover;
}

.customer-info h4{
  font-size:18px;
  color:#111;
}

.customer-info span{
  color:#666;
  font-size:14px;
}

/* ANIMATION */

@keyframes scrollTestimonials{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .testimonial-premium-section{
    padding:40px 0;
  }

  .testimonial-heading h2{
    font-size:30px;
  }

  .testimonial-box{
    width:280px;
    padding:28px 20px;
  }

  .customer-info img{
    width:55px;
    height:55px;
  }

  .customer-info h4{
    font-size:16px;
  }

}

/* ===================================
   FAQ SECTION
=================================== */

.faq-section{
  padding:30px 0;
  background:#f8fbff;
}

.faq-heading{
  text-align:center;
  margin-bottom:60px;
}

.faq-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(11,61,145,0.08);
  color:#3D93C5;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

.faq-heading h2{
  font-size:42px;
  font-weight:700;
  color:#111;
  margin-bottom:14px;
}

.faq-heading p{
  color:#666;
  font-size:16px;
}

.faq-wrapper{
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* FAQ CARD */

.faq-item{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  transition:0.3s;
  border:1px solid rgba(11,61,145,0.08);
}

.faq-item:hover{
  transform:translateY(-4px);
}

/* QUESTION */

.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-size:18px;
  font-weight:600;
  color:#111;
  text-align:left;
}

.faq-question i{
  color:#3D93C5;
  font-size:16px;
  transition:0.3s;
}

/* ANSWER */

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:all 0.4s ease;
}

.faq-answer p{
  padding:0 30px 28px;
  color:#666;
  font-size:16px;
  line-height:1.8;
}

/* ACTIVE */

.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

/* ======================
   MOBILE RESPONSIVE
====================== */

@media(max-width:768px){

  .faq-section{
    padding:40px 0;
  }

  .faq-heading h2{
    font-size:30px;
  }

  .faq-question{
    padding:22px 20px;
    font-size:16px;
  }

  .faq-answer p{
    padding:0 20px 20px;
    font-size:14px;
  }

}

/* ===================================
   PREMIUM APP DOWNLOAD SECTION
=================================== */

.download-app-section{
  position:relative;
  padding:30px 0;
  overflow:hidden;

  background:
  linear-gradient(
  135deg,
  #081a3a 0%,
  #0b2f6b 45%,
  #103f8c 100%
  );
}

/* PREMIUM GLOW EFFECTS */

.download-app-section::before{
  content:'';
  position:absolute;
  width:450px;
  height:450px;
  top:-120px;
  left:-120px;
  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(244,180,0,0.18),
    transparent 70%
  );

  filter:blur(70px);
}

.download-app-section::after{
  content:'';
  position:absolute;
  width:420px;
  height:420px;
  bottom:-150px;
  right:-100px;
  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(255,255,255,0.08),
    transparent 70%
  );

  filter:blur(70px);
}

/* WRAPPER */

.download-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
  position:relative;
  z-index:2;
}

/* ================= LEFT ================= */

.download-content{
  flex:1;
  color:#fff;
}

.download-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.1);
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:500;
  margin-bottom:22px;
}

.download-tag i{
  color:#f4b400;
}

.download-content h2{
  font-size:50px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:20px;
  color:#fff;
}

.download-content h2 span{
  color:#f4b400;
}

.download-content p{
  font-size:17px;
  color:rgba(255,255,255,0.85);
  line-height:1.9;
  max-width:560px;
}

/* FEATURES */

.download-features{
  margin-top:30px;
  display:flex;
  flex-wrap:wrap;
  gap:22px;
}

.download-feature{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:500;
  color:#fff;
}

.download-feature i{
  color:#f4b400;
  font-size:16px;
}

/* ================= STORE BUTTONS ================= */

.store-buttons{
  display:flex;
  gap:18px;
  margin-top:40px;
  flex-wrap:wrap;
}

.store-btn{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(18px);

  color:#fff;
  text-decoration:none;

  border-radius:22px;
  padding:18px 26px;

  display:flex;
  align-items:center;
  gap:15px;

  min-width:230px;

  transition:all 0.35s ease;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.25);
}

.store-btn:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.18);
}

.store-btn i{
  font-size:36px;
  color:#f4b400;
}

.store-btn small{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,0.75);
}

.store-btn strong{
  font-size:18px;
  color:#fff;
  font-weight:600;
}

/* ================= RIGHT IMAGE ================= */

.download-image{
  flex:1;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.download-image img{
  width:100%;
  max-width:430px;

  filter:
  drop-shadow(
    0 25px 50px rgba(0,0,0,0.35)
  );

  animation:floatPhone 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes floatPhone{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-14px);
  }

  100%{
    transform:translateY(0);
  }
}

/* ================= FLOATING GLASS CARDS ================= */

.app-card{
  position:absolute;

  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,0.15);

  color:#fff;

  padding:15px 22px;
  border-radius:18px;

  display:flex;
  align-items:center;
  gap:10px;

  font-weight:600;

  box-shadow:
  0 12px 30px rgba(0,0,0,0.2);
}

.app-card i{
  color:#f4b400;
}

.card-one{
  top:60px;
  left:0;
}

.card-two{
  bottom:70px;
  right:0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

  .download-wrapper{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .download-content p{
    margin:auto;
  }

  .download-features{
    justify-content:center;
  }

  .store-buttons{
    justify-content:center;
  }

  .app-card{
    display:none;
  }
}

@media(max-width:768px){

  .download-app-section{
    padding:70px 0;
  }

  .download-content h2{
    font-size:34px;
  }

  .download-content p{
    font-size:15px;
  }

  .store-buttons{
    flex-direction:column;
    align-items:center;
  }

  .store-btn{
    width:100%;
    max-width:320px;
    justify-content:center;
  }

  .download-image img{
    max-width:290px;
  }

}

@media(max-width:480px){

  .download-content h2{
    font-size:28px;
  }

  .download-tag{
    font-size:12px;
  }

  .download-feature{
    font-size:14px;
  }

}

/* ===================================
   CTA SECTION
=================================== */

.cta-section{
  padding:40px 0;
  background:#fff;
}

.cta-wrapper{
  background:#fff;
  border-radius:35px;
  padding:55px 60px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;

  border:1px solid rgba(11,61,145,0.08);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.06);

  position:relative;
  overflow:hidden;
}

/* SOFT PREMIUM GLOW */

.cta-wrapper::before{
  content:'';
  position:absolute;
  top:-100px;
  right:-80px;

  width:260px;
  height:260px;
  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(11,61,145,0.08),
    transparent 70%
  );
}

/* LEFT */

.cta-content{
  position:relative;
  z-index:2;
}

.cta-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background:#eef4ff;
  color:#3D93C5;

  padding:10px 18px;
  border-radius:50px;

  font-size:14px;
  font-weight:600;

  margin-bottom:20px;
}

.cta-content h2{
  font-size:42px;
  font-weight:700;
  color:#111;
  margin-bottom:12px;
  line-height:1.2;
}

.cta-content p{
  font-size:17px;
  color:#666;
}

/* BUTTON */

.cta-button{
  position:relative;
  z-index:2;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  text-decoration:none;

  background:#3D93C5;
  color:#fff;

  padding:18px 34px;
  border-radius:16px;

  font-size:16px;
  font-weight:600;

  transition:0.3s ease;

  box-shadow:
  0 12px 30px rgba(11,61,145,0.25);
}

.cta-btn:hover{
  transform:translateY(-5px);
}

.cta-btn i{
  transition:0.3s;
}

.cta-btn:hover i{
  transform:translateX(4px);
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:991px){

  .cta-wrapper{
    flex-direction:column;
    text-align:center;
    padding:45px 30px;
  }

  .cta-content h2{
    font-size:34px;
  }

}

@media(max-width:768px){

  .cta-section{
    padding:70px 0 40px;
  }

  .cta-wrapper{
    border-radius:28px;
    padding:40px 22px;
  }

  .cta-content h2{
    font-size:28px;
  }

  .cta-content p{
    font-size:15px;
  }

  .cta-btn{
    width:100%;
    justify-content:center;
    padding:16px 28px;
  }

}

@media(max-width:480px){

  .cta-content h2{
    font-size:24px;
  }

  .cta-tag{
    font-size:12px;
    padding:8px 14px;
  }

}