*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#fff;
  color:#0F172A;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* LOGO + TEXT */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand img{
  width:40px;
  height:40px;
  object-fit:contain;
  border-radius:50%;
}

/* NAV */
.nav{
  padding:20px 0;
  border-bottom:1px solid #E5E7EB;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  position:sticky;
  top:0;
  z-index:1000;
  transition:0.3s ease;
}

.nav.scrolled{
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center; /* ✅ THIS FIXES YOUR ISSUE */
}


.brand h2{
  font-size:25px;
  font-weight:700;
  color:#28356F;;
  letter-spacing: 0.5px;
}

nav a{
  margin-left:20px;
  text-decoration:none;
  transition:0.3s;
  position:relative;
  font-weight:500;
  font-size:18px;
   color:#4B5563;
}


nav a.active{
  color:#0F172A;
  font-weight:600;
}

nav a.active::after{
  width:100%;
}

nav a:hover{
  color:#0F172A;
  transform:translateY(-1px); /* 👈 premium micro animation */
}


nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#FF6A3D;
  transition:0.3s ease;
  transform:translateX(-50%);
}

nav a:hover::after{
  width:100%;
   
}

nav a:last-child::after {
  display: none;
}


nav a:last-child {
  background: #2e3a6b;  /* match your theme */
  color: #fff;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 600;
  margin-left: 18px; /* spacing fix */
  letter-spacing: 1px;
 
}

nav a:last-child:hover {
  background: #FF6A3D;
  transform: translateY(-1px);
}





@media (max-width: 1024px){

  .brand h2{
    font-size:22px;
  }

  nav a{
    font-size:16px;
    margin-left:16px;
  }

}

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

  nav{
    display:none;
  }

  .nav-wrap{
    justify-content:center;
  }

  .brand{
    gap:8px;
  }

  .brand img{
    width:34px;
    height:34px;
  }

  .brand h2{
    font-size:22px;
    text-align:center;
  }

}

@media (max-width: 480px){

  .nav{
    padding:12px 0;
  }

  .brand h2{
    font-size:22px;
    line-height:1.2;
  }

  .brand img{
    width:30px;
    height:30px;
  }

}


@media (max-width: 360px){

  .brand h2{
    font-size:22px;
  }

  .brand img{
    width:35px;
    height:35px;
  }

}


/* hero section.................. */

.hero{
  background: linear-gradient(
    to bottom,
    #28356F 0%,
    #28356F 65%,
    #f8fafc 65%,
    #f8fafc 100%
  );
  padding:100px 0 80px;
  text-align:center;

  
}


/* TEXT */
.hero h1{
  color:white;
  font-size:42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin:0 auto;
  line-height: 1.4;
}

.hero h1 span {
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.hero-sub{
  color:#D1D5DB;
  margin-bottom:25px;
  margin-top: 20px;
  letter-spacing: 0.5px;
  font-size: 19px;
}

/* BADGES */
.hero-badges{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-bottom:40px;
  /* color:#E2E8F0;  */
  font-size:17px;
  letter-spacing:0.3px;
  color: #F97316;
}

/* CARD */
.hero-card{
  background:white;
  padding:28px 32px;
  border-radius:12px;
  box-shadow:0 25px 60px rgba(0,0,0,0.25);
  max-width:500px;
  margin:0 auto;
  
}

.hero-card h3{
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero-card p{
    font-size: 17px;
    letter-spacing: 0.4px;
    margin-bottom: 15px;
}

/* FORM */
.hero-form{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.hero-form input{
  flex:1;
  padding:12px;
  border:1px solid #D1D5DB;
  border-radius:6px;
}

.hero-input input{
  flex:1;
  height:44px;
  padding:0 14px;

}


.hero-form button{
  background: #F97316;
  color:white;
  border:none;
  padding:12px 18px;
  border-radius:6px;
  font-size: 17px;
  letter-spacing: 0.3px;
  font-weight: bold;
}

.hero-assurance{
  font-size:14px;
  color:#6B7280;
  margin-top:20px;
  letter-spacing: 0.3px;
}

/* STATS */
.hero-stats{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
  
}

.hero-stats h3{
  color:#28356F;
  letter-spacing: 0.5px;
  font-size: 28px;
  margin-top: 30px;
}

.hero-stats p{
  color:#6B7280;
  font-size:18px;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

/* =========================
   GLOBAL FIX (IMPORTANT)
========================= */
.hero-content{
  position: relative;
  z-index: 2;
}

.hero-card{
  position: relative;
  z-index: 3;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.call-btn {
  flex: 1;
  background: #fff;
  color: #1e2a4a;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.call-btn:hover {
  background: #f5f5f5;
}

.request-btn {
  flex: 1;
  background: #ff6b00;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.request-btn:hover {
  background: #e65c00;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }
}


/* =========================
   TABLET (1024px ↓)
========================= */
@media (max-width:1024px){

  .hero{
    padding:80px 0 70px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.3;
  }

  .hero-sub{
    font-size:16px;
    max-width:650px;
    margin:15px auto 25px;
  }

  .hero-card{
    max-width:440px;
  }
}


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

  .hero{
    

   position: relative;
   height: auto;
   padding:60px 0 120px;
  }

  

  .hero-content{
    padding-bottom:0;
    margin-top: 0;
  }

  /* TEXT ALIGN FIX */
  .hero h1{
    font-size:32px;
    line-height:1.3;
    max-width:90%;
    margin:auto;
    letter-spacing: 1px;
  }

  .hero-sub p{
   font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.4;
    padding:0 12px;
    margin:15px auto 20px;
   
  }

  /* BADGES */
  .hero-badges{
    flex-direction:column;
    gap:8px;
    font-size:14px;
    margin-bottom:25px;
   
  }

 

 .hero-card{
  position: relative;
  width: 90%;
  max-width: 360px;

  margin: -80px auto 0; /* 👈 MAIN FIX */

  padding: 18px;
  border-radius: 12px;

  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

  .hero-card h3{
    font-size:16px;
  }

  .hero-card p{
    font-size:14px;
  }

  /* FORM */
  .hero-form{
    flex-direction:column;
    gap:10px;
  }

  .hero-form input{
    width:100%;
  }

  .hero-form button{
    width:100%;
    padding:12px;
  }

  .hero-assurance{
    font-size:13px;
    margin-top:12px;
  }

 
 
  .hero-stats{
  padding-top:20px;
  padding-bottom:10px;

  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

  .hero-stats h3{
    font-size:20px;
    /* margin-top: 55px; */
    margin-bottom:4px;
   
    
  }

  .hero-stats p{
   font-size:14px; /* 👈 reduce size */
   margin-top:0;   /* 👈 remove extra gap */
   line-height:1.3
  }
}


/* =========================
   SMALL MOBILE (480px ↓)
========================= */
@media (max-width:480px){

  .hero{
    padding:50px 0 40px;

    background: linear-gradient(
      to bottom,
      #28356F 0%,
      #28356F 52%,
      #f8fafc 52%,
      #f8fafc 100%
    );
  }

  .hero h1{
    font-size:32px;
    letter-spacing: 1px;
    line-height: 1.4;
    
  }

  .hero-sub{
   font-size: 17px;
    letter-spacing: 1px;
    line-height: 1.4;
  }

  .hero-card{
    transform: translateY(40%);
    padding:18px;
  }

  .hero-form button{
    font-size:14px;
  }

  .hero-stats{
    margin-top:100px;
    gap:20px;
  }
}


/* =========================
   EXTRA SMALL (360px ↓)
========================= */
@media (max-width:360px){

  .hero h1{
    font-size:20px;
  }

  .hero-sub{
    font-size:12px;
  }

  .hero-card{
    transform: translateY(45%);
  }

  .hero-stats{
    margin-top:110px;
  }
}



/* services section.................. */
/* ================= SECTION ================= */

.services{
  background: linear-gradient(180deg, #2f3e75 0%, #2a3668 100%);
  padding:80px 0;
  position:relative;
}

/* subtle depth glow */
.services::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(249,115,22,0.06), transparent 70%);
  top:-150px;
  left:-150px;
}

/* ================= HEADER ================= */

.services-header{
  text-align:center;
  margin-bottom:70px;
}

.services-header h2{
  font-size:42px;
  color:#fff;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:17px;
}

.services-header p{
  color:#cbd5f5;
  font-size:19px;
  letter-spacing: 1px;
  padding-bottom: 0;
}

/* ================= GRID ================= */

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

/* ================= CARD ================= */

.service-card{
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius:16px;
  padding:36px 32px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  /* layered premium shadow */
  box-shadow:
    0 25px 60px rgba(15,23,42,0.18),
    0 8px 20px rgba(15,23,42,0.08);

  position:relative;
  transition:all 0.3s ease;
}

/* top premium accent */
.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(to right, #f97316, transparent);
}

/* subtle hover */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 35px 80px rgba(15,23,42,0.25),
    0 12px 30px rgba(15,23,42,0.12);
}

/* ================= TEXT ================= */

.service-card h3{
  font-size:20px;
  color:#0f172a;
  font-weight:600;
  margin-bottom:14px;
  letter-spacing: 0.5px;
}

.service-card p{
  font-size:17px;
  color:#64748b;
  line-height:1.7;
  letter-spacing: 1px;
}





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

@media (max-width:1024px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){

  .services{
     padding: 60px 20px;
  }

  .services-header h2{
    font-size:32px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
   .services-header p{
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 0;
   }

  .services-grid{
    grid-template-columns:1fr;
    gap:22px;
   
  }

  .service-card{
    padding:26px;
  }

  
  
 

}

@media (max-width:480px){

  .services-header h2{
    font-size:24px;
  }

  .service-card h3{
    font-size:16px;
  }

  .service-card p{
    font-size:13px;
  }
}



/* why choose us........................ */
/* =========================
   TRUST SECTION - PREMIUM V2
========================= */

.trust{
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(0,0,0,0.05);
  background: #fafbfc;

}

/* subtle premium glow */
.trust::before{
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,122,24,0.08), transparent 70%);
  z-index: 0;
}

.trust .container{
  max-width: 1150px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* layout */
.trust-box{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */
.trust-tag{
  font-size: 20px;
  color: #ff7a18;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.trust-left h2{
  font-size: 38px;
  color: #1c2b4a;
  /* letter-spacing: 1px; */
  font-weight: 700;
 line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.trust-left p{
  font-size: 19px;
  color: #5f6b85;
  line-height: 1.7;
  max-width: 440px;
  letter-spacing: 1px;
  max-width: 480px;

}

/* RIGHT SIDE */
.trust-right{
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
   align-items: flex-start;
}

.trust-right::before{
  content: "";
  position: absolute;
  left: -20px;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.08), transparent);
}

/* CARD */
.trust-card{
 background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  backdrop-filter: blur(6px);
  padding: 24px 28px;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);

 
  transition: all 0.25s ease;
}

/* premium gradient accent line */
.trust-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 3px;
  background: linear-gradient(to bottom, #ff7a18, #ffb347);
  border-radius: 2px;
}

/* hover = very subtle */
.trust-card:hover{
  box-shadow:
    0 18px 45px rgba(0,0,0,0.08),
    0 4px 10px rgba(0,0,0,0.03);

 transform: translateY(-4px) scale(1.01);
  border:1px solid #ff6b00;
}

.trust-card.featured{
  border: 1px solid #ff6b00;
  box-shadow: 0 10px 30px rgba(255,107,0,0.08);
}

/* TEXT */
.trust-card h3{
  font-size: 21px;
  font-weight: 600;
  color: #1c2b4a;
  margin-bottom: 9px;
  letter-spacing: 1px;
}

.trust-card p{
  font-size: 16px;
  color: #6c7895;
  line-height: 1.6;
  letter-spacing: 1px;
}

.trust-card:nth-child(2){
  margin-left: 10px;
}

.trust-card:nth-child(3){
  margin-left: 20px;
}


/* TABLET */
@media (max-width: 992px){
  .trust-box{
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .trust-left{
    text-align: center;
  }

  .trust-left p{
    margin: auto;
  }
}

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

  .trust{
    padding: 80px 20px;
  }

  .trust-tag{
    font-size: 19px;
  }

  .trust-left h2{
    font-size: 30px;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .trust-left p{
    font-size: 16px;
    text-align: start
  }

  .trust-card{
    padding: 18px;
    border-radius: 14px;
  }

  .trust-card h3{
    font-size: 16px;
  }

  .trust-card p{
    font-size: 14px;
  }
  
  .trust-card:nth-child(2),
  .trust-card:nth-child(4){
    margin-left: 0;
  }

  .trust-right::before{
    display: none;
  }
}



/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #24325b 0%, #2f3f74 100%);
  color: #fff;
}



/* HEADER */
.process-header {
  text-align: center;
  margin: 0 auto 60px;
}

.process-header span {
  color: #ff6b00;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
}

.process-header h2 {
  font-size: 38px;
  margin: 10px 0;
  letter-spacing: 0.5px;
  margin-top: 20px;

}

.process-header p {
  color: rgba(255,255,255,0.7);
  font-size: 19px;
  letter-spacing: 1px;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.process-card {
  background: #ffffff;
  color: #1e2a3a;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  position: relative;

  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transition: all 0.35s ease;

  
}

.process-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* STEP BADGE */
.process-card .step {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b00;
  color: #fff;
  font-size: 17px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* TITLE */
.process-card h3 {

  margin: 12px 0;
  white-space: nowrap;
  font-size: 20px; 
  letter-spacing: 0.5px;
}

/* TEXT */
.process-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
 
 
}



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

/* TABLET */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .process-section {
    padding: 80px 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-header h2 {
    font-size: 30px;
    letter-spacing: 0.3px;
    line-height: 1.4;
  }

  .process-header span{
    font-size: 19px;
  }

  .process-header p{
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.3;
  }


}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonials {
  padding: 100px 20px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin: 0 auto 60px;
}

.section-header span {
  color: #ff7a00;
  font-size: 22px;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.section-header h2 {
  font-size: 38px;
  margin: 12px 0;
  color: #1e2a44;
  letter-spacing: 1px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header p {
  color: #6b7280;
  font-size: 19px;
  letter-spacing: 1px;
}

/* GRID */

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

/* CARD */

.testimonial-card {
  background: #f9fafc;
  padding: 26px 28px;
  border-radius: 14px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);

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

  min-height: 190px; /* forces even height */
  transition: 0.3s ease;
}

/* ORANGE ACCENT */

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: 45%;
  width: 3px;
  background: #ff7a00;
  border-radius: 2px;
}

/* HOVER */

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* STARS */

.stars {
  color: #ff7a00;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* TEXT (CONTROL HEIGHT) */

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  letter-spacing: 0.2px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* LIMIT TO 2 LINES */
  -webkit-box-orient: vertical;
  overflow: hidden;

  margin-bottom: 18px;
}

/* AUTHOR */

.testimonial-card h4 {
  font-size: 16px;
  color: #111827;
  margin-bottom: 6px;
}

.testimonial-card span {
  font-size: 13.5px;
  color: #6b7280;
}

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

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 70px 15px;
  }

  .section-header h2 {
    font-size: 30px;
    letter-spacing: 0.5px;
    line-height: 1.3;
  }

   .section-header p{
    font-size: 16px;
    line-height: 1.3;
   }

   .section-header span{
        font-size: 19px;
   }
   .testimonial-card p {
    -webkit-line-clamp: unset;
    overflow: visible;
    text-align: start;
  }
}



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

.contact-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e2a4a, #2f3e6b);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.contact-content {
  flex: 1;
  color: #ffffff;
}

.contact-content span {
  color: #ff6b00;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  
}

.contact-content h2 {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 20px;
}

.contact-content p {
  font-size: 19px;
  color: #cbd5f5;
  margin-bottom: 25px;
  max-width: 500px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.cta-text{
  font-size: 19px;
  color: hsl(230, 13%, 91%);
  margin-top: 25px;
  max-width: 500px;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Trust Points */
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  letter-spacing: 1px;
}

.trust-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
}

/* FORM BOX */
.contact-form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* FORM */
.contact-form-box form {
  display: flex;
  flex-direction: column;
}

.contact-form-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #0f172a;
}

/* Inputs */
.contact-form-box input,
.contact-form-box select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.contact-form-box input:focus,
.contact-form-box select:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 2px rgba(255,107,0,0.1);
}

/* Button */
.contact-form-box button {
  background: #ff6b00;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-box button:hover {
  background: #e55a00;
}

/* Confidential Text */
.confidential-text {
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

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

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-content p {
    margin: 0 auto 25px;
  }

  .trust-points {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 70px 15px;
  }

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

  .contact-content span{
    font-size: 19px;
  }

  .contact-content p {
    font-size: 16px;
    line-height: 1.3;
  }

   .contact-content .cta-text {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 15px;
  }


  .trust-points{
    font-size: 14px;
  }

  .contact-form-box {
    padding: 25px;
  }

  .contact-form-box h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-content h2 {
    font-size: 30px;
  }

  .contact-form-box {
    padding: 20px;
  }

  .contact-content .cta-text {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 15px;
  }
}


/* footer */


.footer {
    background: linear-gradient(135deg, #1e2a4a, #2e3b6b); /* 👈 match hero */
    color: #E5E7EB;
    padding: 20px;
    text-align: center;
     border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-info p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
     color: #CBD5E1;
}

.footer-info a {
    color: #FF6A3D;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
     color: #ff8a65;
}

.footer-info strong {
      color: #FF6A3D;
}

.footer-bottom {
    margin-top: 15px;
    font-size: 12px;
      color: #94A3B8;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 14px;
    
}

.footer-contact a {
     color: #FF6A3D;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}



/* WhatsApp (TOP) */
.whatsapp-float {
    position: fixed;
    bottom: 100px; /* 👈 move UP */
    right: 20px;   /* 👈 same alignment */
    background: #25D366;
    color: white;
    font-size: 22px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Call (BOTTOM) */
.floating-call {
    position: fixed;
    bottom: 30px; /* 👈 stays bottom */
    right: 20px;  /* 👈 SAME right (important) */
    background: #ff6b00;
     color: #0a0c0f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(198, 163, 78, 0.4);
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

/* Hover */
.whatsapp-float:hover,
.floating-call:hover {
    transform: scale(1.1);
}