/* Main Stylesheet */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-color: #e8f5e9; /* light green background for content between banner and footer */
}

/* Top Bar */
.top-bar {
  background-color: #1a3a52;
  color: white;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-info {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: white;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #b8860b;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: white;
  flex-wrap: wrap;
}

.contact-info i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #7fd34d;
}

.social-icons i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 12px;
}

.social.facebook {
  background-color: #1877f2;
}

.social.whatsapp {
  background-color: #25d366;
}

.social.linkedin {
  background-color: #0a66c2;
}

.social.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social.youtube {
  background-color: #ff0000;
}

.social:hover {
  transform: scale(1.1);
}

.social.facebook:hover {
  background-color: #165fc1;
}

.social.whatsapp:hover {
  background-color: #1ebd5b;
}

.social.linkedin:hover {
  background-color: #084c9a;
}

.social.instagram:hover {
  background: linear-gradient(45deg, #d17a2e 0%, #cc5d2f 25%, #c0273b 50%, #b02160 75%, #9f136f 100%);
}

.social.youtube:hover {
  background-color: #cc0000;
}

/* Navbar */
.navbar {
  background-image:
    linear-gradient(90deg, rgba(255, 153, 0, 0.92) 0%, rgba(255, 255, 255, 0.96) 50%, rgba(19, 136, 8, 0.9) 100%),
    url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 8px 18px 8px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #0b5d0b;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 0;
  margin-left: 18px;
  flex: 0 0 auto;
}

.logo img {
  height: 110px;
  width: auto;
  max-width: 500px;
  object-fit: contain;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 8px 10px;
  color: #0f2d3d;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
  letter-spacing: 0.4px;
  text-transform: capitalize;
  font-size: 1rem;
}

/* Ensure link text remains visible on hover */
nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active {
  color: #0a1f4e;
  background-color: rgba(255, 255, 255, 0.16);
  border-bottom-color: #0a1f4e;
  border-radius: 6px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  min-width: 420px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  z-index: 1000;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
}

.dropdown-content.show {
  display: block;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 10px;
  padding: 14px;
  min-width: 360px;
  align-items: start;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 79, 138, 0.12);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
  text-align: left;
}

.mega-col h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #1f4f8a !important;
  line-height: 1.5;
  text-transform: capitalize;
}

.mega-col {
  min-width: 150px;
}

.mega-col a {
  display: block;
  padding: 8px 0;
  color: #1f4f8a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s;
  text-transform: capitalize;
}

.mega-col a:hover,
.mega-col a:focus,
.mega-col a:active {
  color: #2f9e44;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #003366; /* menu icon color adjusted for white navbar */
  transition: all 0.3s;
}

.menu-toggle.open {
  color: #7fd34d;
}

/* Enquire Button */
.btn.enquire-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0b1946; /* dark blue background */
  color: #ffffff; /* white text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #0b1946;
}

.projects-action {
  text-align: center;
  margin-top: 24px;
}

.projects-action .btn.enquire-btn {
  background-color: #7fd34d;
  color: #ffffff;
  border-color: #7fd34d;
}

.projects-action .btn.enquire-btn:hover {
  background-color: #65b23d;
  border-color: #65b23d;
}

.btn.enquire-btn:hover {
  background-color: #162d72; /* slightly lighter dark blue on hover */
  border-color: #162d72;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  height: 420px;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 29, 63, 0.78), rgba(15, 77, 38, 0.45));
  z-index: 1;
}

.hero-slide-land {
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide-home {
  background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide-planning {
  background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide-renovate {
  background-image: url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide.active {
  z-index: 10;
}

.hero-slide.previous {
  display: flex;
  opacity: 0;
}

.hero-slide-video {
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: none;
}

/* Image background for hero slides (when replacing videos) */
.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 720px;
  padding: 20px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
  color: #b8860b;
}

.hero-slide-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(11,25,70,0.9);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 28px;
  cursor: pointer;
  z-index: 30;
  transition: all 0.2s;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

.hero-slide-prev {
  left: 16px;
}

.hero-slide-next {
  right: 16px;
}

.hero-slide-control:hover {
  transform: translateY(-50%) scale(1.03);
}

/* Hero Section */
.hero-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #eaf6ff;
}

.hero-section .section-title {
  color: #1E90FF;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #654321;
  white-space: nowrap;
  line-height: 1.2;
}

.projects-section.indra-nagar .section-title {
  color: #0b6623;
  font-weight: 800;
}

.projects-section.madipakkam .section-title {
  color: #0b6623;
  font-weight: 800;
}

.hero-section.contact-box .section-title {
  font-size: 32px;
}

.section-title span {
  color: #6B8E23;
}

.section-title .discover-title {
  color: #1E90FF;
}

.section-subtitle {
  font-size: 16px;
  color: #654321;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-section .section-subtitle,
.home-about .section-subtitle,
.home-about-text .section-subtitle,
.mv-card .section-subtitle {
  text-transform: uppercase !important;
}

.hero-section .section-subtitle.normal-case {
  text-transform: none !important;
}

/* About page 'Why Clients Choose Us' section styling */
.section-title-blue {
  color: #1f4f8a;
}

.section-title-green {
  color: #2f9e44;
}

.about-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  align-items: center;
  text-align: center;
}

.info-card {
  background: #e8f4ff;
  border: 1px solid #c7def8;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(18, 50, 74, 0.06);
  width: 100%;
  max-width: 760px;
}

.info-card .badge {
  display: inline-block;
  background: rgba(247, 251, 255, 0.9);
  color: #1f4f8a;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.highlight-box {
  background: linear-gradient(135deg, #f7fbff 0%, #eef7eb 100%);
  border: 1px solid #d7e7d7;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 12px 0 14px;
  box-shadow: 0 6px 16px rgba(18, 50, 74, 0.05);
}

.highlight-box strong {
  display: block;
  color: #145132;
  margin-bottom: 8px;
  font-size: 16px;
}

.highlight-box p {
  margin: 0;
  color: #4b5f67;
  line-height: 1.75;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfe0d2, transparent);
  margin: 16px 0 12px;
}

.service-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #12324a;
  font-weight: 600;
  justify-content: center;
}

.service-box i {
  color: #2f9e44;
  min-width: 20px;
}

.hero-section .section-subtitle {
  color: #000000;
  font-size: 14px;
  text-transform: lowercase;
}

.hero-section.contact-box {
  background: linear-gradient(135deg, #0f2d3d 0%, #163c53 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 24px;
  margin: 20px auto;
  max-width: 1120px;
}

.hero-section.contact-box .section-title {
  color: #ffffff;
}

.hero-section.contact-box .section-subtitle {
  color: #ffffff;
}

.hero-section.contact-box p {
  color: #dee9ff;
  max-width: 860px;
  margin: 0 auto;
}

/* Video Frame */
.video-frame-wrapper {
  margin-top: 40px;
}

.video-frame {
  background: linear-gradient(0deg, #f7f7f7 0%, #ffffff 50%, #f7f7f7 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  max-width: 600px;
  margin: 0 auto;
  border: 4px solid #0b5d0b;
}

.video-frame__topbar {
  background: linear-gradient(135deg, #ff9933 0%, #ffffff 45%, #138808 100%);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.video-frame__status {
  color: #d32f2f;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-frame__status i {
  color: #d32f2f;
}

.video-frame__title {
  font-weight: 600;
  color: #1e90ff;
  flex: 1;
  text-align: center;
}

.video-frame__screen {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #000;
}

.video-frame__screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-frame__footer {
  padding: 16px;
  background: linear-gradient(135deg, #ff9933 0%, #ffffff 45%, #138808 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.video-frame__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #0b1946;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.video-frame__badge i {
  font-size: 13px;
}

.video-frame__footer p {
  font-size: 13px;
  color: #000;
  line-height: 1.5;
}

/* Home About Section */
.home-about {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(31, 79, 138, 0.08), rgba(127, 211, 77, 0.08));
  border: 1px solid rgba(127, 211, 77, 0.25);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(31, 79, 138, 0.12);
}

.home-about-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-about-placeholder {
  width: 100%;
  max-width: 400px;
}

.home-about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(127, 211, 77, 0.25);
}

.home-about-image.logo-intro {
  transform-origin: center center;
}

.home-about-text {
  color: #0b1946;
}

.home-about-text h2 {
  margin-bottom: 20px;
  color: #ffffff;
}

.home-about-text h3 {
  color: #000000;
  font-weight: 700;
}

.home-about-text h4 {
  color: #5D4037;
}

.home-about-text p {
  margin-bottom: 15px;
  color: #0b1946;
  line-height: 1.8;
  text-align: justify;
}

/* Ensure section subtitles inside the About area remain visible */
.home-about .section-subtitle,
.home-about-text .section-subtitle {
  color: #5D4037 !important;
  font-weight: 700;
}

/* Ensure About subtitles are readable even when slide animations are present */
.home-about .section-subtitle,
.home-about-text .section-subtitle {
  font-size: 16px;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Disable hide transform/opacity for slide animations inside About area */
.home-about .slide-right,
.home-about .slide-left {
  opacity: 1 !important;
  transform: none !important;
}

.home-about-text b {
  color: #000000;
  font-weight: 700;
}

.mission-vision-wrap {
  max-width: 1080px;
  margin: 0 auto 32px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mv-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
  border: 1px solid rgba(31, 79, 138, 0.15);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(15, 45, 61, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card {
  animation-delay: 0.4s;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1f4f8a 0%, #2f9e44 100%);
}

.mv-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 120px;
  background: radial-gradient(circle at 20% 30%, rgba(123, 206, 255, 0.35), transparent 30%),
              radial-gradient(circle at 50% 10%, rgba(108, 196, 255, 0.28), transparent 26%),
              radial-gradient(circle at 80% 30%, rgba(90, 191, 143, 0.2), transparent 32%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.mv-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(15, 45, 61, 0.09);
}

.mission-card {
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
}

.vision-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ee 100%);
}

.mission-card::after,
.vision-card::after {
  background: radial-gradient(circle at 20% 30%, rgba(123, 206, 255, 0.38), transparent 30%),
              radial-gradient(circle at 50% 10%, rgba(147, 227, 255, 0.22), transparent 26%),
              radial-gradient(circle at 80% 30%, rgba(90, 191, 143, 0.25), transparent 32%);
}


.mv-card .section-subtitle {
  color: #1f4f8a;
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.mv-card .section-subtitle,
.why-choose-header .section-subtitle {
  color: #1f4f8a !important;
}

.mv-card p {
  margin: 0;
  color: #23364d;
  line-height: 1.7;
  text-align: justify;
  font-size: 14px;
}

.slogan-heading {
  text-align: center;
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.slogan-heading.slogan-right {
  text-align: right;
}

.slogan-blue {
  color: #1f4f8a;
  font-weight: 700;
}

.slogan-green {
  color: #2f9e44;
  font-weight: 700;
}

.mv-card strong {
  color: #0b1946;
}

.why-choose-wrap {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 20px 20px;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 24px;
}

.why-choose-header .section-subtitle {
  margin-bottom: 10px;
  color: #1f4f8a;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.why-choose-header .section-subtitle strong,
.why-choose-header .section-subtitle span {
  color: inherit;
}

.why-choose-header p {
  color: #23364d;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.why-choose-header .section-subtitle {
  color: #1f4f8a;
}

.why-choose-header .section-subtitle .green-text {
  color: #2f9e44;
}

.choice-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.choice-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(31,79,138,0.2), rgba(47,158,68,0.6), rgba(31,79,138,0.2));
}

.flow-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f9ff 100%);
  border: 1px solid rgba(31, 79, 138, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 22px rgba(15, 45, 61, 0.06);
  z-index: 1;
}

.flow-item:nth-child(odd) {
  margin-right: 10px;
  animation-delay: 0s;
}

.flow-item:nth-child(even) {
  margin-left: 10px;
}

.flow-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f4f8a 0%, #2f9e44 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(31, 79, 138, 0.2);
}

.flow-content h5 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #0b1946;
  line-height: 1.4;
}

.flow-content p {
  margin: 0;
  color: #3a4c5f;
  line-height: 1.6;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .mission-vision-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choice-flow {
    grid-template-columns: 1fr;
  }

  .choice-flow::before {
    display: none;
  }

  .flow-item:nth-child(odd),
  .flow-item:nth-child(even) {
    margin: 0;
  }
}

.about-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #7fd34d;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.about-cta-link:hover {
  background-color: #b8860b;
  transform: translateY(-2px);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.fade-in.visible,
.slide-left.visible,
.slide-right.visible {
  animation: slideAndFade 0.8s ease-in-out forwards;
}

.slide-left.visible {
  animation: slideLeftIn 0.8s ease-in-out forwards;
}

.slide-right.visible {
  animation: slideRightIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Why list highlighting + sequential check marks */
.why-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 760px;
  display: block;
}
.why-list li {
  padding: 12px 18px 12px 48px; /* space for left check */
  margin: 8px 0;
  display: block;
  color: #12324a;
  font-weight: 600;
  position: relative;
  text-align: center;
  background: transparent;
  box-shadow: none;
}
.why-list li::before {
  content: '\2713';
  color: #2f9e44;
  font-size: 18px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.why-list li:nth-child(1) { animation-delay: 0s; }
.why-list li:nth-child(2) { animation-delay: 0.15s; }
.why-list li:nth-child(3) { animation-delay: 0.30s; }
.why-list li:nth-child(4) { animation-delay: 0.45s; }

@media (max-width: 720px) {
  .why-list { max-width: 100%; padding: 0 12px; }
  .why-list li { padding-left: 42px; }
  .why-list li::before { left: 12px; }
}

/* Heading color splits */
.why-title .why-blue { color: #1E90FF; }
.why-title .why-green { color: #2f9e44; }

/* Remove background box around the why-block (keeps overall home-about styles) */
.home-about .why-block {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@keyframes slideAndFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeftIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRightIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Categories Section */
.categories-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.categories-section.companies-section {
  background-color: white;
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

.category-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid transparent;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-bottom-color: #7fd34d;
}

.category-card img {
  max-width: 60px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.rotating-icon {
  animation: rotate 3s linear infinite;
}

.category-card:hover .rotating-icon {
  animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.category-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.category-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Category cards: alternate green and blue backgrounds for clear visual grouping */
.categories-container .category-card:nth-child(odd) {
  background: linear-gradient(135deg, #f1fbf2 0%, #d8f5d9 100%);
  color: #063823;
  border: none;
  box-shadow: 0 8px 30px rgba(6,56,34,0.04);
}
.categories-container .category-card:nth-child(even) {
  background: linear-gradient(135deg, #f0f6ff 0%, #d5e8ff 100%);
  color: #052c57;
  border: none;
  box-shadow: 0 8px 30px rgba(5,44,87,0.04);
}
.categories-container .category-card:nth-child(odd) h3,
.categories-container .category-card:nth-child(odd) p {
  color: #063823;
}
.categories-container .category-card:nth-child(even) h3,
.categories-container .category-card:nth-child(even) p {
  color: #052c57;
}

/* Make the first card (Vision) a full solid green box with white text */
.categories-container .category-card:nth-child(1) {
  background: #2f9e44 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 40px rgba(47,158,68,0.08);
}
.categories-container .category-card:nth-child(1) h3,
.categories-container .category-card:nth-child(1) p {
  color: #ffffff !important;
}

/* Make the second card (Mission) a full solid blue box with white text */
.categories-container .category-card:nth-child(2) {
  background: #1E90FF !important;
  color: #ffffff !important;
  box-shadow: 0 12px 40px rgba(30,144,255,0.08);
}
.categories-container .category-card:nth-child(2) h3,
.categories-container .category-card:nth-child(2) p {
  color: #ffffff !important;
}

/* Make the third card (Values) a full solid green box with white text */
.categories-container .category-card:nth-child(3) {
  background: #2f9e44 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 40px rgba(47,158,68,0.08);
}
.categories-container .category-card:nth-child(3) h3,
.categories-container .category-card:nth-child(3) p {
  color: #ffffff !important;
}

.company-logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

/* Stats Section */
.about-stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #7fd34d 0%, #b8860b 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-stat-item {
  color: white;
  opacity: 0;
}

.about-stat-item.animate {
  animation: fadeIn 0.8s ease-in-out forwards;
}

.about-stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-stat-item p {
  font-size: 16px;
  font-weight: 500;
}

.counter {
  font-size: 48px;
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #7fd34d;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #7fd34d;
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: #7fd34d;
}

.hero-btn {
  padding: 12px 30px;
  font-size: 16px;
}

/* Testimonials Section */
.home-feedback {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.home-feedback .section-title {
  margin-bottom: 40px;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #7fd34d #f0f0f0;
}

.testimonial-track::-webkit-scrollbar {
  height: 8px;
}

.testimonial-track::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.testimonial-track::-webkit-scrollbar-thumb {
  background: #7fd34d;
  border-radius: 10px;
}

.feedback-card {
  flex: 0 0 calc(100% - 24px);
  min-width: 300px;
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.feedback-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feedback-stars {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 16px;
}

.feedback-card p {
  font-size: 14px;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #7fd34d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.feedback-author h4 {
  font-size: 14px;
  margin: 0;
  color: #333;
}

.feedback-author span {
  display: block;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.t-prev,
.t-next {
  background-color: #7fd34d;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-prev:hover,
.t-next:hover {
  background-color: #b8860b;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background-color: #7fd34d;
  width: 30px;
  border-radius: 5px;
}

/* Enquiry Form Section */
.enquiry-section {
  padding: 24px 18px;
  background: linear-gradient(180deg, #052f59 0%, #0f4577 100%);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(5, 47, 89, 0.22);
  width: auto;
  max-width: 760px;
  margin: 24px auto;
}

.enquiry-section .section-header {
  max-width: 640px;
  margin: 0 auto 14px;
}

.enquiry-section .section-title,
.enquiry-section .section-subtitle {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
  text-decoration: underline solid #ffffff 2px;
  text-underline-offset: 6px;
}

.enquiry-section .section-subtitle {
  text-transform: lowercase;
}

.enquiry-section .section-subtitle::first-letter {
  text-transform: uppercase;
}

.enquiry-section p {
  max-width: 640px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.6;
  font-size: 14px;
}

.enquiry-form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.95);
  color: #0f2d3d;
  font-size: 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #7fd34d;
  box-shadow: 0 0 0 3px rgba(127, 211, 77, 0.16);
}

.btn.form-submit {
  width: fit-content;
  padding: 12px 28px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  background-color: #7fd34d;
  color: #0f2d3d;
  font-weight: 700;
}

.btn.form-submit:hover {
  background-color: #6bb93f;
  border-color: #6bb93f;
}

@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .enquiry-section {
    padding: 22px 14px;
    margin: 20px auto;
  }
}

/* Contact quick cards */
.contact-quick {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 14px;
}
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.quick-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.quick-card.call-card,
.quick-card.email-card,
.quick-card.visit-card {
  background: #ffffff;
  border-color: #dcdcdc;
}
.quick-card.call-card {
  box-shadow: 0 10px 20px rgba(47, 158, 68, 0.08);
}
.quick-card.call-card .call-number {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1f4f8a;
}

.quick-card.call-card .call-hours {
  font-size: 0.95rem;
  font-weight: 700;
  color: #101010;
  margin-top: 6px;
}
.quick-card.email-card {
  box-shadow: 0 10px 20px rgba(47, 158, 68, 0.08);
}
.quick-card.visit-card {
  box-shadow: 0 10px 20px rgba(47, 158, 68, 0.08);
}
.quick-card.email-card .quick-icon {
  background: linear-gradient(135deg, #d96c1d 0%, #2f9e44 100%);
  box-shadow: 0 6px 18px rgba(217,108,29,0.18);
}
.quick-card.email-card .email-text {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1f4f8a;
}

.quick-card.email-card .reply-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #101010;
  margin: 0;
}
.quick-card.visit-card .quick-icon {
  background: linear-gradient(135deg, #1f6b39 0%, #7fd34d 100%);
  box-shadow: 0 6px 18px rgba(47,158,68,0.18);
}
.quick-card:hover {
  transform: translateY(-2px);
}
.quick-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f9e44 0%, #7fd34d 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(47,158,68,0.18);
}
.quick-card.call-card .quick-icon {
  background: linear-gradient(135deg, #d96c1d 0%, #f5a351 100%);
  box-shadow: 0 6px 18px rgba(217,108,29,0.18);
}
.quick-card.visit-card {
  background: #ffffff;
  border-color: #dcdcdc;
  box-shadow: 0 10px 22px rgba(47,158,68,0.12);
}
.quick-card.visit-card h4,
.quick-card.visit-card p {
  color: #145132;
}
.quick-card.visit-card p.visit-address {
  color: #1f4f8a;
  font-weight: 700;
}
.quick-card.visit-card p strong {
  display: block;
  margin-bottom: 6px;
  color: #0b3a28;
}
.quick-card.visit-card .quick-icon {
  background: linear-gradient(135deg, #1f6b39 0%, #7fd34d 100%);
  box-shadow: 0 6px 18px rgba(47,158,68,0.18);
}
.quick-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #145132;
}
.quick-card h4,
.quick-card p {
  color: #145132;
}
.quick-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.quick-card p strong {
  display: block;
  margin-bottom: 6px;
  color: #0b3a28;
}
@media (max-width: 860px) {
  .contact-quick-grid { grid-template-columns: 1fr; }
}

/* CTA Section */
.st-cta {
  padding: 40px 20px;
  text-align: center;
  background-color: #e8e8e8;
}

.st-cta h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.st-cta p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.st-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #7fd34d;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #7fd34d;
  cursor: pointer;
}

.st-cta-btn:hover {
  background-color: #b8860b;
  border-color: #b8860b;
}

/* Home Page Reworked Sections */
.content-shell {
  position: relative;
  padding: 70px 0 90px;
  background:
    linear-gradient(135deg, #ff7a59 0%, #ffd166 25%, #7bdff2 50%, #8e7dff 75%, #ff5d8f 100%);
  overflow: hidden;
}

.content-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.content-shell > * {
  position: relative;
  z-index: 1;
}

/* Page animated wrapper: decorative blobs and staggered reveals for sections */
/* Page animated wrapper removed (reverted) */

.home-intro,
.projects-section,
.services-section,
.testimonial-section,
.cta-block,
.about-home-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-home-section {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(184,134,11,0.14);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(18,50,74,0.12);
  padding: 60px 24px;
  margin: 0 auto 60px;
  backdrop-filter: blur(10px);
}

.welcome-banner {
  background: linear-gradient(90deg, rgba(11,25,70,0.95), rgba(31,67,120,0.95));
  color: white;
  padding: 28px 20px;
  margin: 0 auto 40px;
  border-radius: 24px;
  max-width: 1200px;
  box-shadow: 0 24px 60px rgba(11,25,70,0.22);
}

.welcome-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.welcome-banner-text {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.welcome-video-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.welcome-video-inner {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,25,70,0.16);
}


/* Reverted custom video showcase and square-frame styles */

.about-home-section .section-heading {
  text-align: left;
  max-width: 720px;
  margin-bottom: 32px;
}

.about-home-content {
  display: grid;
  gap: 1.4rem;
  color: #364556;
  font-size: 1rem;
  line-height: 1.85;
}

.about-home-content p {
  margin: 0;
}

@media (max-width: 768px) {
  .about-home-section,
  .about-home-section .section-heading {
    padding: 40px 18px;
    text-align: center;
  }
  .about-home-content {
    text-align: center;
  }
}

/* New styles for About / Projects additions */
.team-section,
.process-section,
.awards-section,
.stats-section,
.projects-section,
.partners-faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 24px auto;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(11,25,70,0.05);
}

.team-grid,
.projects-grid,
.awards-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
}

.team-card,
.project-card,
.award-card,
.stat-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(6,44,87,0.04);
}

.team-photo img,
.project-card img,
.award-card img,
.partner-logos img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.team-card h4,
.project-card h3,
.award-card h4 {
  margin: 12px 0 8px;
  color: #12324a;
}

.project-card .project-meta {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #5f6b76;
}

.project-card .project-meta li {
  margin-bottom: 10px;
  font-size: 0.97rem;
}

.project-card .project-meta li strong {
  color: #12324a;
}

.sample-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 24px;
}

.sample-project-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photo-frame {
  background: #ffffff;
  border: 1px solid rgba(18, 50, 74, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11, 25, 70, 0.06);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sample-project-details .project-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-project-details .project-meta li {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #44515d;
}

.sample-project-details .project-meta li strong {
  color: #0f3045;
}

.projects-section.sample-project .project-section-title {
  color: #2f9e44;
  font-weight: 800;
}

.projects-section.sample-project .project-subtitle-black {
  color: #101010;
  font-weight: 800;
}

.team-card .role {
  display: block;
  color: #6b8e23;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  background: linear-gradient(180deg, #f7fbff 0%, #f2fff2 100%);
  border: 1px solid #e0efe0;
  padding: 16px;
  border-radius: 10px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 45, 61, 0.06);
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 100px;
  background: radial-gradient(circle at 20% 30%, rgba(110, 200, 255, 0.22), transparent 28%),
              radial-gradient(circle at 60% 15%, rgba(115, 225, 170, 0.18), transparent 24%),
              radial-gradient(circle at 80% 30%, rgba(77, 168, 255, 0.12), transparent 30%);
  filter: blur(16px);
  opacity: 0.9;
  pointer-events: none;
}


.awards-grid {
  align-items: stretch;
}

.award-card p {
  color: #33414a;
  font-size: 14px;
}

.stats-grid {
  text-align: center;
}

.stat-value {
  font-size: 44px;
  color: #145132;
  font-weight: 800;
}

.stat-label {
  margin-top: 8px;
  color: #33414a;
  font-weight: 600;
}

.projects-grid .project-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-card .project-image {
  height: 160px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.project-gallery figure {
  margin: 0;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
}

.project-gallery img { height: 120px; object-fit: cover; border-radius: 6px; }

.partners .partner-logos { display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:12px; }
.partners .partner-logos img { width: 120px; height: 60px; object-fit:contain; background: #fff; padding:6px; border-radius:6px; box-shadow:0 6px 18px rgba(0,0,0,0.04);} 

.faq .faq-list details { background:#fff; border-radius:8px; padding:12px 14px; margin-bottom:10px; }
.faq .faq-list summary { cursor:pointer; font-weight:700; color:#12324a; }
.faq .faq-list p { margin-top:8px; color:#47585a; }

@media (max-width: 720px) {
  .team-section, .process-section, .awards-section, .stats-section, .projects-section { padding: 24px 12px; }
  .team-photo img, .project-card img { height: 140px; }
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #b8860b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2,
.about-content h2 {
  font-size: 32px;
  color: #12324a;
  margin-bottom: 12px;
}

.section-heading p,
.about-content p,
.about-media p,
.project-card p,
.service-card p,
.testimonial-card p,
.process-card li {
  color: #5f6b76;
  line-height: 1.7;
}

.intro-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.intro-card,
.project-card,
.service-card,
.process-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(18, 50, 74, 0.14);
  backdrop-filter: blur(6px);
}

.intro-card i,
.service-card i {
  font-size: 24px;
  color: #7fd34d;
  margin-bottom: 12px;
}

.intro-card h3,
.project-card h3,
.service-card h3,
.process-card h3,
.testimonial-card h3 {
  color: #12324a;
  margin-bottom: 10px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: -20px auto 40px;
  padding: 0 20px;
}

.stat-box {
  background: linear-gradient(135deg, #12324a, #1b4560);
  color: #fff;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
}

.stat-box h3 {
  font-size: 26px;
  color: #7fd34d;
  margin-bottom: 6px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 20px;
  align-items: center;
}

.about-media {
  background: linear-gradient(135deg, #f7e4b2 0%, #fff8e8 100%);
  border-radius: 20px;
  padding: 32px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-badge {
  display: inline-block;
  background: #12324a;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-media h3 {
  color: #12324a;
  font-size: 26px;
  margin-bottom: 10px;
}

.feature-list {
  list-style: none;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding-left: 20px;
  position: relative;
  color: #4f5964;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7fd34d;
  font-size: 18px;
}

.about-cta-link {
  display: inline-block;
  margin-top: 18px;
  color: #12324a;
  font-weight: 700;
  text-decoration: none;
}

.project-card a,
.cta-block .btn {
  display: inline-block;
  margin-top: 12px;
  color: #12324a;
  font-weight: 700;
  text-decoration: none;
}

.project-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.project-gallery figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 14px 30px rgba(18, 50, 74, 0.08);
}

.project-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.project-gallery figcaption {
  padding: 14px 16px;
  font-size: 14px;
  color: #42515d;
  line-height: 1.6;
}

.cta-block {
  text-align: center;
  background: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
  border-radius: 24px;
  color: #12324a;
  box-shadow: 0 22px 44px rgba(17, 50, 74, 0.16);
  margin: 20px auto 40px;
  padding: 34px 24px;
  border: 1px solid rgba(18, 50, 74, 0.08);
}

.cta-block h2 {
  color: #12324a;
  margin-bottom: 10px;
  font-size: 30px;
}

.cta-block p {
  color: #2f4253;
  margin-bottom: 18px;
}

.cta-block .btn {
  background: #138808;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(19, 136, 8, 0.2);
}

.testimonial-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.process-card ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.process-card li {
  padding-left: 18px;
  position: relative;
}

.process-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7fd34d;
}

/* Testimonials Section */

  h2 {
    margin-bottom: 40px;
    font-size: 32px;
  }

  /* Fixed-size single container */
  .slider {
    position: relative;
    width: 320px;
    height: 260px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
  }

  /* Each card stacked on top of each other */
  .card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    color: #1B2430;
    padding: 30px 24px;
    box-sizing: border-box;
    border-radius: 12px;
    opacity: 0;
    animation: slide 12s infinite;
  }

  .card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .card h3,
  .card h4 {
    margin-top: 20px;
    margin-bottom: 4px;
    color: #1f4f8a;
    font-weight: 700;
  }

  .card span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #000000;
  }

  /* Stagger each card's animation delay so they take turns */
  .card:nth-child(1) { animation-delay: 0s; }
  .card:nth-child(2) { animation-delay: 4s; }
  .card:nth-child(3) { animation-delay: 8s; }
 .card:nth-child(4) { animation-delay: 12s; }
 .card:nth-child(5) { animation-delay: 16s; }
  .card:nth-child(6) { animation-delay: 20s; }
  .card:nth-child(7) { animation-delay: 24s; }


  @keyframes slide {
    0%   { opacity: 0; transform: translateX(40px); }
    5%   { opacity: 1; transform: translateX(0); }
    28%  { opacity: 1; transform: translateX(0); }
    33%  { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 0; }
  }


/* Footer */
.footer {
  background: linear-gradient(135deg, #102b40 0%, #164364 45%, #1f5b7f 100%);
  color: #f5f7fa;
  padding: 50px 20px 24px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  height: 110px;
  width: auto;
  max-width: 500px;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 14px;
  color: #d8e3eb;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  margin-top: auto;
}

.footer-social p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #90EE90;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: #7fd34d;
  color: #0f2d3d;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #90EE90;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: #d8e3eb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #7fd34d;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d8e3eb;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-icon {
  color: #7fd34d;
  min-width: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: #d8e3eb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #7fd34d;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left,
.footer-right {
  color: #ffffff;
  font-size: 13px;
}

.footer-left .highlight,
.footer-right .highlight {
  background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.footer-right a {
  color: #FF8C00;
  text-decoration: none;
}

.footer-right a:hover {
  color: #FF8C00;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-actions a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.floating-actions .whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-actions .call-btn {
  background: linear-gradient(135deg, #0a66c2, #004080);
}

.floating-actions .chat-btn {
  background: linear-gradient(135deg, #7fd34d, #4ea30f);
}

/* Services — shaped cards */
.services-we-provide {
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
}
.services-we-provide .section-heading {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.services-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.shape-card {
  width: 320px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
  border-radius: 8px;
}
.shape-card .shape-inner { padding: 18px; text-align: center; z-index: 2; }
.shape-card h3 { margin: 0; font-size: 18px; font-weight: 700; text-transform: capitalize; }

/* Plot-shaped container */
.shape-plot {
  background: linear-gradient(135deg, #2e7d32, #60a83b);
  /* rectangular layout */
  clip-path: none;
  border-radius: 8px;
}

/* House-shaped container */
.shape-house {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
}
/* removed roof pseudo-element to keep rectangular shape */

.shape-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
  .services-grid { flex-direction: column; gap: 18px; }
  .shape-card { width: 86%; max-width: 420px; }
  .shape-house::before { left: 50%; top: -28px; border-left: 36px solid transparent; border-right: 36px solid transparent; border-bottom: 28px solid #0b1946; }
}

/* Icon inside shaped card */
.shape-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.shape-plot .shape-icon { background: rgba(255,255,255,0.12); }
.shape-house .shape-icon { background: rgba(255,255,255,0.12); }

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #7fd34d;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top::before {
  content: '↑';
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: #b8860b;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    width: 100%;
    order: 3;
    display: none;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li a {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .enquire-btn {
    order: 4;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background-color: #f5f5f5;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info,
  .social-icons {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    max-width: 90%;
  }

  .hero-banner {
    height: 360px;
  }

  .hero-slide-control {
    padding: 10px 14px;
    font-size: 18px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .home-about {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .categories-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feedback-card {
    flex: 0 0 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-controls {
    flex-direction: column;
    gap: 15px;
  }

  .video-frame {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-banner {
    height: 260px;
  }

  .section-title {
    font-size: 20px;
  }

  .about-stat-item h3 {
    font-size: 32px;
  }

  .categories-container {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero-slide-control {
    display: none;
  }

  .floating-actions {
    right: 12px;
    bottom: 80px;
  }

  .floating-actions a {
    width: 48px;
    height: 48px;
  }

  nav ul {
    flex-direction: column;
  }

  .st-cta h3 {
    font-size: 20px;
  }

  .st-cta p {
    font-size: 14px;
  }
}
