html {
  scroll-behavior: smooth;
}

/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f6f8;
  color: #111;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #ffffff;              /* WHITE HEADER */
  border-bottom: 1px solid #eee;
  min-height: 80px;
}

/* Logo */
.logo img {
  height: 70px;
  width: auto;
}

/* Nav links – GOLDEN by default */
.navbar nav a {
  color: #c9a24d;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Nav hover – BLUE GRADIENT TEXT */
.navbar nav a:hover {
  background: linear-gradient(90deg, #0b1f3a, #1f4fa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enquire Now CTA */
.navbar nav .cta {
  background: #c9a24d;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.navbar nav .cta:hover {
  background: linear-gradient(90deg, #0b1f3a, #1f4fa3);
  color: #ffffff !important;
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(11, 31, 58, 0.75), rgba(11, 31, 58, 0.75)),
    url('../images/hero-services.png') center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
  max-width: 700px;
  margin-left: 80px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-services {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* ================= BUTTONS ================= */
.btn-primary,
.submit-btn {
  background: #c9a24d;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover,
.submit-btn:hover {
  background: #b18c3c;
}

/* ================= SECTIONS ================= */
.page-header {
  background: #0b1f3a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
}

.services-section,
.projects-section,
.about-section,
.experience-section {
  padding: 90px 20px;
  background: #ffffff;
}

/* ================= SERVICES ================= */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 22px;
  color: #0b1f3a;
  margin: 18px 20px 10px;
}

.service-card p {
  font-size: 16px;
  color: #333;
  margin: 0 20px 22px;
  line-height: 1.7;
}

/* ================= PROJECTS ================= */
.projects-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-content {
  padding: 22px;
  flex-grow: 1;
}

.project-content h3 {
  font-size: 22px;
  color: #0b1f3a;
  margin-bottom: 12px;
}

.project-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.enquire-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 26px;
  background: #c9a24d;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-radius: 6px;
  font-weight: 600;
}

.enquire-btn:hover {
  background: #b18c3c;
}

/* ================= ABOUT ================= */
.about-container {
  max-width: 900px;
  margin: auto;
}

.about-container p {
  text-align: justify;
  font-size: 18px;
  line-height: 2;
  color: #222;
  margin-bottom: 26px;
}

/* ================= CTA ================= */
.about-cta {
  background: #f4f6f8;
  padding: 100px 20px;
  text-align: center;
}

.about-cta h2 {
  font-size: 36px;
  color: #0b1f3a;
  margin-bottom: 30px;
}

/* ================= FOOTER ================= */
footer {
  background: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .navbar {
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .navbar nav {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .navbar nav a {
    margin: 8px 12px;
    display: inline-block;
  }

  .hero {
    height: auto;
    padding: 60px 0;
  }

  .hero-content {
    margin: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    width: 100%;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 15px;
    right: 15px;
  }
}

/* ===== TESTIMONIALS PAGE ===== */

.testimonials-section {
  background: #f4f6f8;
  padding: 90px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-text {
  font-size: 16.5px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 18px;
}

.testimonial-card h3 {
  font-size: 20px;
  color: #0b1f3a;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 16px;
  }
}

/* ===== TESTIMONIALS WITH STARS & PHOTOS ===== */

.testimonial-card {
  background: #ffffff;
  padding: 38px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

/* Client Image */
.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #c9a24d;
}

/* Stars */
.stars {
  color: #f5b301;       /* GOLD STAR COLOR */
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* Text */
.testimonial-text {
  font-size: 16.5px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-card h3 {
  font-size: 20px;
  color: #0b1f3a;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-img {
    width: 75px;
    height: 75px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

/* ================== ABOUT PAGE FINAL ALIGNMENT FIX ================== */

/* ----- Mission & Vision spacing ----- */
.mv-section {
  padding: 80px 20px 60px;
  background: #f4f6f8;
}

.mv-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================== MISSION & VISION – MATCH WHY CHOOSE US ================== */

.mv-section {
  background: #f4f6f8;
  padding: 80px 20px 60px;
}

/* SAME WIDTH AS WHY CHOOSE US */
.mv-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* SAME CARD STYLE */
.mv-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Headings */
.mv-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 14px;
}

/* Text */
.mv-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .mv-container {
    grid-template-columns: 1fr;
  }
}

/* ----- Why Choose Us Section ----- */
.why-choose-section {
  background: #f4f6f8;
  padding: 60px 20px 90px;
}

/* Section title */
.why-choose-section .section-title {
  margin-bottom: 40px;
  text-align: center;
}

/* Grid container – THIS FIXES THE CENTER ISSUE */
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.why-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Heading */
.why-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 12px;
}

/* Text */
.why-box p {
  font-size: 15.8px;
  line-height: 1.7;
  color: #333;
}

/* ----- Mobile Fix ----- */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mv-container,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-section {
    padding-bottom: 70px;
  }
}

/* ================= PROJECTS + HOW WE WORK ================= */

.projects-work-section {
  background: #f4f6f8;
  padding: 90px 20px;
}

.projects-work-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr; /* left bigger than right */
  gap: 40px;
}

.left-align {
  text-align: left;
}

/* ===== LEFT PROJECTS GRID ===== */

.projects-left .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== RIGHT HOW WE WORK ===== */

.projects-right {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.work-step {
  display: flex;
  gap: 15px;
  margin-bottom: 28px;
}

.work-step span {
  font-size: 28px;
  font-weight: 700;
  color: #c9a24d;
  line-height: 1;
}

.work-step h4 {
  font-size: 18px;
  color: #0b1f3a;
  margin-bottom: 6px;
}

.work-step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .projects-work-container {
    grid-template-columns: 1fr;
  }

  .projects-left .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-right {
    margin-top: 40px;
  }
}

/* ================= HOW WE WORK TIMELINE ================= */

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 30px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #c9a24d;
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
}

/* Dot */
.timeline-dot {
  width: 16px;
  height: 16px;
  background: #c9a24d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

/* Content box */
.timeline-content {
  margin-left: 25px;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline {
    padding-left: 25px;
  }

  .timeline-content h4 {
    font-size: 17px;
  }

  .timeline-content p {
    font-size: 15px;
  }
}

/* ================= TIMELINE WITH PHOTOS ================= */

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #c9a24d;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 0;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: #c9a24d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 18px;
}

.timeline-photo img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    padding-left: 20px;
  }

  .timeline-photo img {
    width: 100%;
    height: 160px;
  }
}

/* ================= SIMPLE TIMELINE ================= */

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 30px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #c9a24d;
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  opacity: 0; /* for GSAP animation */
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: #c9a24d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.timeline-content {
  margin-left: 25px;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline {
    padding-left: 25px;
  }

  .timeline-content h4 {
    font-size: 17px;
  }

  .timeline-content p {
    font-size: 15px;
  }
}

.work-step{
  display:flex;
  gap:16px;
  margin-bottom:22px;
}

.work-step span{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#c9a24d;
  color:#fff;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.work-step h4{
  margin:0 0 6px;
  color:#0b1f3a;
  font-size:18px;
}

.work-step p{
  margin:0;
  font-size:15px;
  color:#333;
  line-height:1.6;
}

/* ================= PROJECTS + HOW WE WORK LAYOUT FIX ================= */

.projects-work-section {
  padding: 80px 20px;
  background: #f4f6f8;
}

.projects-work-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr; /* LEFT big, RIGHT visible */
  gap: 40px;
}

/* LEFT SIDE */
.projects-left {
  width: 100%;
}

/* RIGHT SIDE */
.projects-right {
  width: 100%;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* ================= TIMELINE ================= */

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #c9a24d;
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: #c9a24d;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: -39px;
  margin-top: 5px;
}

.timeline-content h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0b1f3a;
}

.timeline-content p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 1024px) {
  .projects-work-container {
    grid-template-columns: 1fr;
  }

  .projects-right {
    margin-top: 50px;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-dot {
    margin-left: -33px;
  }
}

/* ================= FINAL WORKING TIMELINE ================= */

.projects-right {
  width: 100%;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.timeline {
  position: relative;
  margin-top: 30px;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #c9a24d;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  opacity: 1; /* FORCE VISIBILITY */
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: #c9a24d;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  left: -39px;
  top: 4px;
}

.timeline-content h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #0b1f3a;
}

.timeline-content p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
}

/* MOBILE */
@media (max-width: 1024px) {
  .projects-work-container {
    grid-template-columns: 1fr;
  }

  .projects-right {
    margin-top: 50px;
  }
}

/* ================= ENQUIRY PAGE ================= */

.enquiry-section {
  background: #f4f6f8;
  padding: 80px 20px;
}

.enquiry-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT INFO */
.enquiry-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.enquiry-info h2 {
  margin-bottom: 20px;
  color: #0b1f3a;
}

.enquiry-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

/* FORM CARD */
.enquiry-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.enquiry-form-card h2 {
  margin-bottom: 25px;
  color: #0b1f3a;
}

/* FORM */
.form-group {
  margin-bottom: 16px;
}

.enquiry-form-card input,
.enquiry-form-card select,
.enquiry-form-card textarea {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.enquiry-form-card textarea {
  resize: vertical;
}

/* SUBMIT */
.enquiry-form-card .submit-btn {
  width: 100%;
  background: #c9a24d;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.enquiry-form-card .submit-btn:hover {
  background: #b18c3c;
}

/* MOBILE */
@media (max-width: 900px) {
  .enquiry-container {
    grid-template-columns: 1fr;
  }
}

/* ===== SUCCESS POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.popup-box h2 {
  color: #0b1f3a;
  font-size: 26px;
  margin-bottom: 12px;
}

.popup-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-box button {
  background: #c9a24d;
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.popup-box button:hover {
  background: #b18c3c;
}
