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

html{
  scroll-behavior:smooth;
}

body{
  background:#dcccf0;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 6%;
  background:rgb(29, 194, 223);
  position:sticky;
  top:0;
  z-index:1000;
}

.logo-box{
  display:flex;
  align-items:center;
  gap:8px;
}

.logo-box img{
  height:65px;
}

.logo-box h2{
  font-size:40px;
}

.nav nav{
  display:flex;
  gap:20px;
}

.nav a{
  text-decoration:none;
  color:#111;
}

/* BUTTON */
.btn{
  padding:10px 18px;
  background:#ff6b00;
  color:white;
  border-radius:6px;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  padding:60px 8%;
  gap:80px;
  align-items:center;
}

.hero-left h1{
  font-size:40px;
}

.hero-left span{
  color:#ff6b00;
}

.hero-left p{
  margin-top:10px;
  line-height:1.6;
}

.hero-btns{
  margin-top:20px;
  display:flex;
  gap:15px;
}

.hero-right img{
  width:100%;
  height:450px;
  object-fit:cover;
  border-radius:10px;
}

/* SECTION */
.section{
  padding:80px 8%;
  text-align:center;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:40px;
}

/* CARD */
/* SERVICES BACKGROUND */
.section{
  padding:100px 8%;
  text-align:center;
  background:linear-gradient(to bottom,#f8f9fb,#eef2f7);
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:50px;
}

/* CARD DESIGN */
.card{
  background:white;
  padding:30px;
  border-radius:15px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
}

/* TOP COLOR LINE */
.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:#ff6b00;
  transform:scaleX(0);
  transition:0.4s;
}

/* HOVER EFFECT */
.card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* HOVER COLOR LINE */
.card:hover::before{
  transform:scaleX(1);
}

/* TEXT */
.card h3{
  font-size:20px;
  margin-bottom:10px;
  color:#111;
}

.card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* ICON STYLE (OPTIONAL FUTURE) */
.card:hover h3{
  color:#ff6b00;
}
/* EXPERTISE */
.expertise{
  background:#ff6b00;
  color:white;
  text-align:center;
  padding:70px 8%;
}

.exp-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:30px;
}

/* CONTACT */
/* CONTACT SECTION */
.contact{
  padding:70px 8%;
  display:flex;
  justify-content:center;
}

/* BOX (IMPORTANT) */
.contact-box{
  width:80%;
  max-width:600px;
  background:white;
  padding:40px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  text-align:center;
}

/* FORM */
.contact-form{
  margin-top:30px;
}

/* ROW */
.form-row{
  display:flex;
  gap:20px;
  margin-bottom:20px;
}

/* INPUT + SELECT */
input, select, textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

/* FOCUS */
input:focus, select:focus, textarea:focus{
  border-color:#ff6b00;
}

/* TEXTAREA */
textarea{
  height:120px;
  margin-bottom:20px;
  resize:none;
}

/* BUTTON */
.btn{
  padding:14px;
  background:#ff6b00;
  color:white;
  border:none;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  background:#e65c00;
}

/* CONTACT INFO */
/* SECTION BG */
.contact-section{
  padding:100px 8%;
  background:linear-gradient(135deg,#f8f9fb,#eef2f7);
  display:flex;
  justify-content:center;
}

/* CARD */
.contact-box{
  background:white;
  padding:50px;
  border-radius:16px;
  width:100%;
  max-width:700px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
  transition:0.3s;
}

/* HOVER LIFT */
.contact-box:hover{
  transform:translateY(-5px);
}

/* TITLE */
.contact-box h2{
  font-size:28px;
  margin-bottom:10px;
}

.contact-box p{
  color:#666;
  margin-bottom:30px;
}

/* FORM */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* ROW */
.form-row{
  display:flex;
  gap:15px;
}

/* INPUT */
input, select, textarea{
  width:100%;
  padding:14px;
  border-radius:8px;
  border:1px solid #ddd;
  outline:none;
  transition:0.3s;
}

/* FOCUS EFFECT */
input:focus, select:focus, textarea:focus{
  border-color:#ff6b00;
  box-shadow:0 0 0 2px rgba(255,107,0,0.1);
}

/* TEXTAREA */
textarea{
  height:120px;
}

/* BUTTON */
.btn{
  margin-top:10px;
  padding:14px;
  background:#ff6b00;
  color:white;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  background:#e65c00;
}

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

  .form-row{
    flex-direction:column;
  }

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

}
/* FLOAT */
.float{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.float a{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:22px;
}

.whatsapp{background:#25D366;}
.call{background:#ff6b00;}

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

  .nav nav{
    display:none;
  }

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

  .hero-left h1{
    font-size:26px;
  }

  .hero-right img{
    height:250px;
  }

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

  .exp-grid{
    grid-template-columns:1fr 1fr;
  }
}
/* SECTION */
.why-section{
  padding:100px 8%;
  background:linear-gradient(to bottom,#f8f9fb,#eef2f7);
}

/* CONTAINER */
.why-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.why-left h2{
  font-size:36px;
  margin-bottom:15px;
}

.why-left p{
  color:#555;
  line-height:1.6;
  margin-bottom:20px;
}

/* BUTTON */
.btn{
  padding:12px 22px;
  background:#ff6b00;
  color:white;
  border-radius:8px;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  background:#e65c00;
  transform:translateY(-2px);
}

/* RIGHT SIDE */
.why-right{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* BOX */
.why-box{
  display:flex;
  gap:15px;
  background:white;
  padding:20px;
  border-radius:12px;
  align-items:flex-start;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* COLOR STRIP */
.why-box::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:#ff6b00;
  transform:scaleY(0);
  transition:0.4s;
}

/* ICON */
.icon{
  font-size:22px;
  color:#ff6b00;
  margin-top:3px;
}

/* HOVER */
.why-box:hover{
  transform:translateX(8px);
  box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.why-box:hover::before{
  transform:scaleY(1);
}

/* TEXT */
.why-box h3{
  font-size:18px;
  margin-bottom:5px;
}

.why-box p{
  font-size:14px;
  color:#555;
}

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

  .why-container{
    grid-template-columns:1fr;
    gap:40px;
  }

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

  .why-box{
    flex-direction:row;
  }

}
/* SECTION */
.expertise{
  background:#6f9dcd;
  padding:100px 8%;
  text-align:center;
  color:white;
  position:relative;
}

/* TITLE */
.expertise h2{
  font-size:32px;
  margin-bottom:50px;
}

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

/* CARD */
.exp-card{
  background:white;
  color:#111;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:0.3s;
}

/* NUMBER */
.exp-card h3{
  font-size:30px;
  color:#703912;
}

/* TEXT */
.exp-card p{
  margin-top:8px;
  font-size:14px;
  color:#555;
}

/* HOVER */
.exp-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

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

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

}

@media(max-width:480px){

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

}

.testimonial-section{
  padding:100px 8%;
  text-align:center;
  background:#f8f9fb;
}

.testimonial-section h2{
  font-size:25px;
  margin-bottom:50px;
}

/* GRID */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.testimonial-card{
  background:white;
  padding:30px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s;
  text-align:left;
  position:relative;
}

/* QUOTE */
.quote{
  font-size:15px;
  color:#555;
  line-height:1.6;
  margin-bottom:20px;
}

/* STARS */
.stars{
  color:#ffb400;
  margin-bottom:20px;
  font-size:16px;
}

/* CLIENT */
.client{
  display:flex;
  align-items:center;
  gap:12px;
}

.client img{
  width:45px;
  height:45px;
  border-radius:50%;
}

/* NAME */
.client h4{
  font-size:15px;
}

.client span{
  font-size:12px;
  color:#777;
}

/* HOVER */
.testimonial-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

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

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

}
section{
  scroll-margin-top:80px;
}

.section,
.why-section,
.expertise,
.testimonial-section,
.contact-section{
  padding:100px 8%;
}

/* Container width control */
.container{
  max-width:1200px;
  margin:auto;
}

@media(max-width:768px){

  section{
    padding:60px 5% !important;
  }

  .hero{
    gap:20px;
    padding:40px 5%;
  }

  .hero-left h1{
    font-size:24px;
  }

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

}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px; /* 🔥 proper spacing */
}

.form-row{
  display:flex;
  gap:20px;
}

textarea{
  margin-top:5px;
}

.btn{
  margin-top:20px;
}
/* FOOTER MAIN */
.footer{
  background:#e6eaf0;   /* light grey like your image */
  text-align:center;
  padding:30px 8%;
  color:#222;
}

/* CENTER TEXT */
.footer-center p{
  margin:8px 0;
  font-size:14px;
}

/* ADDRESS STYLE */
.address span{
  color:red;
  font-weight:500;
}

/* BOTTOM LINE */
.footer-bottom{
  margin-top:20px;
  padding-top:15px;
  border-top:1px solid #ccc;
  font-size:13px;
  color:#333;
}

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

  .footer{
    padding:20px 5%;
  }

  .footer-center p{
    font-size:13px;
  }

  .footer-bottom{
    font-size:12px;
  }

}
section{
  scroll-margin-top:90px;
}



/* Footer - PREMIUM */
.footer {
    background: linear-gradient(135deg, #5b7a78, #425c63);
    color: #cfd8dc;
    padding: 3rem 5% 2rem;
    border-top: 1px solid rgba(244, 162, 30, 0.15);
}

.footer-info p {
    margin: 0.8rem 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.footer-brand{
    text-align: center;
    font-size: 14px;
}


.footer-info a {
    color: #0cd9ad;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-info strong,
.footer-brand strong {
    color: #f4a21e;
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(18, 58, 92, 0.5);
    text-align: center;
    font-size: 13px;
    color: #9fb3c8;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
    font-size: 15px;
}

.footer-contact a {
    color: #f4a21e;
    text-decoration: none;
    font-weight: 500;
}

/* Footer Privacy Link */
.footer-links {
    margin-top: 12px;
}

.footer-links .privacy-link {
    color: #f4a21e;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links .privacy-link:hover {
    color: #ffc44d;
    text-decoration: underline;
}

/* Floating Buttons - PREMIUM */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 26px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.floating-call {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: linear-gradient(135deg, #f4a21e, #d88e0c);
    color: #0b2c4d;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(244, 162, 30, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
}

.whatsapp-float:hover,
.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

  .nav{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .logo-box{
    flex-direction:row;
  }

  .logo-box h2{
    font-size:25px;
  }

  .nav nav{
    display:none;
  }

  .btn{
    font-size:13px;
    padding:6px 12px;
  }

}


/* BACKGROUND */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #885d8d, #492a49);
}

/* SECTION */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* GLASS CARD */
.contact-card {
  width: 100%;
  max-width: 420px;
  padding: 30px 20px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(11, 42, 68, 0.7);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* TITLE */
.contact-card h2 {
  color: #000000;
}

.contact-card p {
  color: #a7c1d9;
  font-size: 14px;
  margin-bottom: 15px;
}

/* BANNER */
.urgency-banner {
  background: linear-gradient(90deg, #36ccb8, #37d5ca);
  padding: 10px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* INPUT BOX */
.input-box {
  position: relative;
}

/* INPUT */
.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  outline: none;
  font-size: 14px;
}

/* TEXTAREA */
.input-box textarea {
  height: 90px;
  resize: none;
}

/* LABEL */
.input-box label {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}

/* FLOAT EFFECT */
.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label,
.input-box select:focus ~ label,
.input-box select:valid ~ label {
  top: -8px;
  left: 10px;
  font-size: 11px;
  color: #ffb300;
  background: #0b2a44;
  padding: 2px 6px;
  border-radius: 5px;
}

/* BUTTON */
button {
  background: linear-gradient(90deg, #0eb4b4, #2bc7b2);
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255,179,0,0.4);
}

/* MOBILE */
@media (max-width: 480px) {
  .contact-card {
    padding: 25px 15px;
  }
}
/* ================= MOBILE FULL FIX ================= */
@media (max-width: 768px) {

  /* GLOBAL RESET */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* BODY */
  body {
    overflow-x: hidden;
  }

  /* ================= SECTION SPACING FIX ================= */
  section,
  .section {
    padding: 30px 15px !important;
  }

  h1, h2 {
    margin-bottom: 10px !important;
    line-height: 1.3;
  }

  p {
    margin-bottom: 10px !important;
    font-size: 14px;
    line-height: 1.5;
  }

  /* ================= NAVBAR FIX ================= */
  .nav {
    padding: 12px 15px;
  }

  .logo-box h2 {
    font-size: 30px;
  }

  .btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  /* ================= HERO FIX ================= */
  .hero {
    padding: 30px 15px;
  }

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

  /* ================= CARD / GRID FIX ================= */
  .card,
  .exp-card,
  .testimonial-card {
    padding: 18px !important;
  }

  /* ================= CONTACT FORM FIX ================= */
  .contact-section {
    padding: 30px 10px !important;
  }

  .contact-card {
    padding: 20px 15px !important;
    border-radius: 15px;
  }

  .contact-card h2 {
    font-size: 22px;
  }

  .contact-card p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .urgency-banner {
    font-size: 13px;
    padding: 10px;
  }

  .input-box input,
  .input-box textarea,
  select {
    padding: 10px;
    font-size: 14px;
  }

  .input-box textarea {
    height: 70px;
  }

  /* ================= BUTTON FIX ================= */
  .contact-card button {
    padding: 12px;
    font-size: 14px;
  }

  /* ================= FLOATING BUTTON FIX ================= */
  .whatsapp-float {
    bottom: 120px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-call {
    bottom: 50px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* ================= TESTIMONIAL FIX ================= */
  .testimonial-section h2 {
    margin-bottom: 20px;
  }

  /* ================= FOOTER FIX ================= */
  .footer {
    padding: 30px 15px !important;
    text-align: center;
  }

  .footer-info p {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-contact span {
    display: block;
    margin-bottom: 8px;
  }

  .footer-bottom {
    margin-top: 15px;
    font-size: 12px;
  }

}

/* ================= EXTRA SMALL DEVICES ================= */
@media (max-width: 480px) {

  .logo-box h2 {
    font-size: 30px;
  }

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

  .contact-card h2 {
    font-size: 20px;
  }

  .btn {
    font-size: 12px;
    padding: 5px 10px;
   
  }

}


/* ===== REMOVE ALL EXTRA SPACE BELOW FOOTER ===== */
html, body {
  margin: 0;
  padding: 0;
}

/* LAST SECTION SPACE REMOVE */
section:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* FOOTER MAIN FIX */
.footer {
  padding: 20px 12px !important;
  margin: 0 !important;
}

/* REMOVE ALL INNER GAPS */
.footer * {
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  padding: 0 !important;
}

/* CONTACT TEXT COMPACT */
.footer-info p {
  line-height: 1.4;
}

/* FOOTER BOTTOM LINE FIX */
.footer-bottom {
  margin: 5px 0 0 0 !important;
}

/* EXTRA SPACE FROM BODY END */
body::after {
  content: "";
  display: block;
  height: 0;
}

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

  .footer {
    padding: 15px 10px !important;
  }

  .footer-info p {
    font-size: 13px;
  }

}

/* NAVBAR TITLE FIX */
.logo-box h2 {
  font-size: 26px;   /* आधी small होता */
  font-weight: 700;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-box h2 {
    font-size: 25px;
  }
}
/* ENQUIRY BUTTON FIX */
.btn {
  background: linear-gradient(135deg, #981a76, #b81c1c); /* lighter premium */
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 16px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.btn:hover {
  background: linear-gradient(135deg, #ffa733, #ffc766);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  width: 45px;
}
/* LOGO FIX */
.logo-box img {
  width: 60px;
  height: 45px;
  object-fit: contain;   /* IMPORTANT */
  border-radius: 50%;    /* optional round */
}

@media (max-width: 600px) {

  .header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .left {
    display: flex !important;
    align-items: center !important;
    gap: 6px;
  }
}