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

body {
  background: #f5f6fa;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 50px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar .logo img {
  height: 100px;
  width: auto;    /* proportion maintain karega */
  object-fit: contain;
}

.navbar .nav-links {
  display: flex;
  list-style: none;
}

.navbar .nav-links li {
  margin: 0 25px;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 650;
  font-size: 25px;   /* 👈 font size bada kiya */
  line-height: 1.2;  /* 👈 white bar ki height same rakhi */
}

.btn {
  background: #e63946;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 50px;
  background: linear-gradient(to right, #0077b6, #00b4d8);
  color: white;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 35px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
letter-spacing: 2px;
  margin-left: 50px;   /* thoda right side shift hoga */
}

.hero-text p {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 350;
  color: #fff;
}
.hero-text .bio {
  font-size: 18px;       /* chhota font */
  line-height: 1.6;
  color: #ffffff;        /* pure white text */
  font-weight: normal;   /* bold hata diya */
  max-width: 650px;
  margin: 0 auto 20px auto;
  text-align: center;    /* center aligned */
}

.hero-text .bio b {
  font-weight: 600;
  color: #ffffff !important; /* bold bhi white hi rahe */
}


.hero-text .highlight {
  color: #ffd700; /* Golden Highlight */
  font-weight: bold;
}


.hero-image img {
  max-width: 450px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
 
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 14px;  /* smaller text */
  color: white;
  max-width: 500px;
  line-height: 1.6;
}

.hero-image img {
  max-width: 450px;
  border-radius: 10px;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #110b11; /* dark text */
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.card img {
  width: 60px;   /* 👈 fix kiya size */
  height: 60px;
  margin-bottom: 15px;
}

html {
  scroll-behavior: smooth;
}

/* --- Palette --- */
:root{
  --green-soft:#a5d0a8;
  --blue-grey:#8cada7;
  --ink:#110b11;
  --gold:#b7990d;
  --cream:#f2f4cb;

  --card-bg:#ffffff;
  --card-text:#243034;
  --ring:#dbe7df;
}

/* Smooth scroll if not added */
html{ scroll-behavior:smooth; }

/* --- Services Section --- */
.services-section{
  background: linear-gradient(135deg, var(--green-soft), var(--blue-grey));
  padding: 80px 20px;
  color: var(--ink);
}
.services-section .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Added padding */
}
.services-section h2{
  text-align:center;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: .5px;
}
.services-section .sub{
  text-align:center;
  color: #17363c;
  margin: 8px auto 30px;
  opacity:.9;
}

/* grid */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  /* Initial state before animation class adds */
  transform: translateZ(0);
}

/* cards */
.service-card{
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border: 1px solid var(--ring);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

/* subtle top accent */
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(183,153,13,.14), rgba(255,255,255,0), rgba(183,153,13,.12));
  opacity:.8;
  pointer-events:none;
}

.service-card h3{
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card p{
  font-size: 14.5px;
  line-height: 1.55;
  opacity:.95;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

/* highlight (AMC) */
.service-card.highlight{
  border-color: rgba(183,153,13,.5);
  box-shadow: 0 12px 30px rgba(183,153,13,.18);
}
.service-card.trust{
  border-color: rgba(17,11,17,.2);
}

/* CTA */
.cta-wrap{
  display:flex;
  justify-content:center;
  margin-top: 26px;
}
.btn-primary{
  background: var(--ink);
  color:#fff;
  padding: 12px 22px;
  border-radius: 28px;
  text-decoration:none;
  font-weight:600;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-primary:hover{
  background: #1b171d;
}

/* --- Burst Animation on Enter --- */
/* Start stacked/centered feel: each card pops in with stagger */
.services-grid .service-card{
  opacity: 0;
  transform: scale(.7);
}

.services-grid.in-view .service-card{
  animation: cardPop .6s cubic-bezier(.2,.8,.2,1) forwards;
}

/* Staggering */
.services-grid.in-view .service-card:nth-child(1){ animation-delay: .05s; }
.services-grid.in-view .service-card:nth-child(2){ animation-delay: .10s; }
.services-grid.in-view .service-card:nth-child(3){ animation-delay: .15s; }
.services-grid.in-view .service-card:nth-child(4){ animation-delay: .20s; }
.services-grid.in-view .service-card:nth-child(5){ animation-delay: .25s; }
.services-grid.in-view .service-card:nth-child(6){ animation-delay: .30s; }
.services-grid.in-view .service-card:nth-child(7){ animation-delay: .35s; }
.services-grid.in-view .service-card:nth-child(8){ animation-delay: .40s; }
.services-grid.in-view .service-card:nth-child(9){ animation-delay: .45s; }
.services-grid.in-view .service-card:nth-child(10){ animation-delay: .50s; }
.services-grid.in-view .service-card:nth-child(11){ animation-delay: .55s; }
.services-grid.in-view .service-card:nth-child(12){ animation-delay: .60s; }

/* Pop + slight directional drift (gives “divide out” feel) */
@keyframes cardPop{
  0%{
    opacity:0;
    transform: scale(.7) translateY(10px);
  }
  60%{
    opacity:1;
    transform: scale(1.03);
  }
  100%{
    opacity:1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 992px){
  .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px){
  .services-grid{ grid-template-columns: 1fr; }
}





/* Why Us Section */
.why-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.why-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #110b11;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 4px;
  height: 100%;
  background: #8cada7; /* pale blue-grey */
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item .icon {
  width: 60px;
  height: 60px;
  background: #a5d0a8; /* soft green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #110b11;
  margin-right: 20px;
  z-index: 2;
}

.timeline-item .content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #110b11;
}

.timeline-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Review Box */
.review-box {
  margin-top: 50px;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.review-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #b7990d; /* gold */
}

.review-box p {
  color: #444;
  margin-bottom: 20px;
}

.review-box .btn-primary {
  background: #110b11;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}



/* Hidden by default */
.timeline-item {
  opacity: 0;
  transform: translateX(80px); /* right side se start hoga */
}

/* When visible */
.timeline-item.show {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease-out;
}








/* Contact Section with contrast theme */
.contact-section {
  background: linear-gradient(135deg, #003566, #0077b6);
  padding: 80px 20px;
  color: #fff;
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-section .sub {
  text-align: center;
  margin-bottom: 50px;
  color: #f1f1f1;
  font-weight: 400;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Info Boxes - light theme */
.contact-info .info-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  color: #111;
}
.contact-info .info-box:hover {
  transform: translateX(6px);
}
.contact-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0077b6;
}
.contact-info a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* Map Container */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.cta-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}
.btn-primary {
  background: #ffc300;
  color: #111;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #ffd60a;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
.btn-whatsapp:hover {
  background: #1da851;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  animation: slideInRight 1s ease forwards;
  opacity: 0;
  color: #111;
}
.contact-form h3 {
  margin-bottom: 15px;
  color: #0077b6;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}
.contact-form button {
  width: 100%;
}




.send-btn {
  background: #ffc300;
  color: #111;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.send-btn:hover {
  background: #ffd60a;
}


/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  padding: 02px 06px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.float-whatsapp:hover {
  transform: scale(1.1);
}

/* Success Message */
.form-message {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: green;
}

/* Animation */
@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}