@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #4A78DE;
  /* Match the bright blue from the screenshot used in Connect Us */
  --primary-dark: #3b60b1;
  --secondary: #FF8C00;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --accent: #E2E8F0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
  --container-max: 1200px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-heading);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  border-radius: 0px;
  color: #4A78DE;
  /* Match the blue from the screenshot */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* Softer shadow like original */
  transition: var(--transition);
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1E4BA3, var(--primary), #82A4F8, var(--primary-dark), #1E4BA3, var(--primary));
  background-size: 300% 300%;
  animation: borderGradient 4s ease infinite;
}

.nav-container {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  /* Fixed height for exact alignment */
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 65px;
  /* Larger logo to match original */
  object-fit: contain;
}

.nav-links {
  display: flex !important;
  flex-direction: row !important;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: #333333;
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  transform-origin: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: #4A78DE;
  transform: scale(1.12);
}

.nav-container .btn-primary {
  padding: 0.625rem 1.75rem;
  font-size: 0.875rem;
  letter-spacing: 0;
  background-color: #4A78DE;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-container .btn-primary:hover {
  background-color: #3b60b1;
}

/* Header Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.chevron {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: var(--transition);
}

.director {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('/istambul-bg-building.jpg') no-repeat center center;
  background-size: cover;
}

.directors {
  padding: 80px 20px;
  text-align: center;
}

.profiles {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
}

.hero-mobile-img,
.mobile-nav,
.hamburger {
  display: none;
}

.card img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  background: #eee;
  border: 6px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-top: 15px;
  font-weight: 700;
}

.role {
  color: gray;
  margin: 5px 0;
}

.phone {
  font-weight: bold;
  margin-top: 5px;
}

.description {
  max-width: 800px;
  margin: auto;
  text-align: left;
  color: #555;
  line-height: 1.8;
}

/* Vision & Mission Section */
.vision-mission-section {
  padding: 80px 20px;
  background: #ebe8e6;
  display: flex;
  justify-content: center;
}

.vm-container {
  max-width: 1200px;
  width: 100%;
  background: var(--white);
  padding: 20px;
  /* For the double line effect */
  border: 4px double #000;
  margin: 0 auto;
}

.vm-content {
  border: none;
  padding: 10px 10px;
  text-align: center;
}

.vm-heading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.vm-subheading {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.vm-text {
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.vm-list {
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.vm-list li {
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

/* responsive */
@media (max-width: 768px) {
  .vm-content {
    padding: 30px 15px;
  }

  .vm-heading {
    font-size: 1.75rem;
  }
}

/* Centered Feature Section */
.centered-feature-section {
  padding: 60px 20px;
  background: var(--white);
  text-align: center;
}

.feature-img-wrapper {
  margin-bottom: 30px;
}

.feature-img {
  max-width: 100%;
  width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.feature-heading {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: #1b2f5b;
  margin-bottom: 20px;
  font-weight: 700;
}

.feature-description {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.8;
}

/* Amenities Highlight */
.amenities-highlight {
  padding: 50px 0;
  background: var(--white);
}

.amenities-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.amenities-image-col {
  width: 100%;
}

.amenities-side-img {
  width: 100%;
  max-height: 800px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: filter 0.3s ease-in-out;
}

.amenities-side-img:hover {
  filter: brightness(0.8) contrast(1.4) saturate(1.8);
}

.amenities-content-col {
  padding: 10px 0;
}

.amenities-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #1b2f5b;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 800;
}

.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amenity-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.amenity-item:hover {
  transform: translateX(10px);
  background: var(--bg-light);
}

.amenity-icon {
  flex-shrink: 0;
  width: 75px;
  height: auto;
  min-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amenity-icon img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.amenity-item:hover .amenity-icon img {
  transform: scale(1.15) rotate(5deg);
}

.amenity-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #0b2447;
  margin-bottom: 5px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.amenity-item:hover .amenity-text h3 {
  color: #4A78DE;
}

.amenity-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #58677a;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .amenities-grid-container {
    grid-template-columns: 1fr;
  }

  .amenities-content-col {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .feature-img {
    width: 220px;
  }

  .feature-heading {
    font-size: 1.8rem;
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.dropdown-menu li a {
  padding: 0.75rem 1.5rem;
  display: block;
  font-size: 0.8125rem;
  text-transform: none;
  font-weight: 500;
}

/* Hero Section Refined */
.hero {
  height: 520px;
  max-width: 1919px;
  margin: 40px 0 0 0;
  background: url('../public/bg-hero-2.jpg') no-repeat center top;
  background-size: cover;
  /* Anchors exactly at top center without distortion */
  display: flex;
  align-items: center;
  /* Center vertically like screenshot */
  color: var(--white);
  padding: 0;
  /* Remove padding to perfectly center */
  text-align: left;
}

.hero .container {
  display: block;
  width: 100%;
  max-width: 1400px;
  /* Extended to let content sit extremely flush left */
  margin: 0 auto;
  padding-left: 80px;
  /* Minimized padding */
  text-align: left;
}

.hero .content {
  max-width: 780px;
}

.hero .content h1 {

  font-size: 34px;
  /* Perfect size for SUNTEK INFRA DEVELOPERS PVT LTD */
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero .content h2 {
  font-size: 24px;
  /* Matches the slightly smaller text in screenshot */
  margin-bottom: 0.5rem;
  font-weight: 500;
  min-height: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.typed-cursor {
  font-weight: 300;
  color: var(--white);
}

.hero .content p {
  font-size: 18px;
  margin-bottom: 1rem;
  max-width: 800px;
  opacity: 1;
  /* White opacity is strong in screenshot */
  line-height: 1.9;
  font-weight: 400;
}

.hero .content button {
  padding: 15px 35px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}



/* Stats Section */
.stats {
  padding: 0;
  margin-top: -4.5rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  /* Softer shadow */
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 4.5rem;
  /* Much larger */
  font-weight: 600;
  /* Regular bold */
  color: var(--primary);
  /* Uses #4A78DE */
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  color: #6a92ec;
  /* Lighter blue, not dark grey */
  font-weight: 400;
  /* Regular weight */
  font-size: 1.1rem;
  /* Much larger than 0.75rem */
  text-transform: none;
  /* Not uppercase */
  letter-spacing: 0;
}

/* Leadership Section */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.leadership-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.leadership-text p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.points {
  margin: 2rem 0;
}

.points li {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

.icon-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 1.25rem;
}

.leadership-img img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

/* Amenities Section */
.amenities-section {
  background: var(--primary);
  padding: 8rem 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 4rem 3rem;
  border-radius: 30px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.amenity-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.amenity-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.amenity-card p {
  opacity: 0.8;
}

/* Projects Section */
.projects-grid-section {
  padding: 8rem 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.underline {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 2rem auto 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* 3-column variant for Ongoing Projects page */
.projects-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.project-img {
  position: relative;
  height: 250px;
}

.project-img img {
  width: 100%;
  height: 100%;
}

.status-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-tag.upcoming {
  background: var(--primary);
}

.project-info {
  padding: 3rem;
}

.project-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.project-info p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* Page Hero (used on sub-pages like Ongoing/Upcoming Projects) */
.page-hero {
  background: linear-gradient(135deg, #1b2f5b 0%, #2a4a8a 100%);
  padding: 160px 0 80px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero h1 span {
  color: var(--secondary);
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 130px 1.5rem 60px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #1b2f5b;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.cta-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.cta-wave-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.cta-wave-top .shape-fill {
  fill: #FFFFFF;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Footer Section */
footer {
  background: #fff;
  color: #333;
  padding: 80px 0 0;
  border-top: 8px solid #111;
  font-family: 'Open Sans', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  max-width: 280px;
}

.footer-about p {
  line-height: 1.8;
  color: #64748b;
  font-size: 0.95rem;
  margin-top: 20px;
}

.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1b2f5b;
  margin-bottom: 35px;
}

.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFF;
  background: var(--primary);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 40px;
  border-radius: 80px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #1b2f5b;
  padding-left: 5px;
}

.footer-contact-body {
  padding: 15px;
  font-weight: 700;
  line-height: 1.6;
  font-size: 1rem;
  width: 310px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  background: transparent;
}

.footer-contact-body a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  background: #000;
  color: #fff;
  padding: 25px 0;
  margin-top: 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.copyright-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.footer-social-links {
  display: flex;
  gap: 30px;
  margin-right: 80px;
  /* Space for scroll button */
}

.footer-social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-social-links a i {
  font-size: 1.1rem;
}

.footer-social-links a:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
}

.faq-container {
  max-width: 1100px;
}

.faq-accordion {
  margin-top: 4rem;
}

.faq-item {
  background: var(--white);
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-header h4 {
  font-size: 1.1rem;
  transition: var(--transition);
}

.toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.faq-content {
  padding: 0 2.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-content p {
  padding-bottom: 2rem;
  color: var(--text-light);
}

.faq-item.active .faq-header {
  background: var(--primary);
  color: var(--white);
}

.faq-item.active .toggle {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-top: 20px;
}

/* Scroll to top button */
.footer-scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.footer-scroll-top:hover {
  transform: translateY(-5px);
  background: #1b2f5b;
}

/* Testimonials Page */
.testi-hero {
  background: linear-gradient(135deg, #1b2f5b 0%, #0b1f4a 100%);
  padding: 150px 0 80px;
  text-align: center;
  color: #fff;
}

.testi-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.testi-hero h1 span {
  color: #f59e0b;
}

.testimonials-section {
  padding: 100px 0;
  background: #f8fafc;
}

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

.testi-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(27, 47, 91, 0.1);
}

.testi-quote-icon {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: inherit;
}

.testi-rating {
  color: #f59e0b;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testi-content {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.testi-user-info h4 {
  font-size: 1.1rem;
  color: #1b2f5b;
  margin-bottom: 2px;
}

.testi-user-info span {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Responsive Design Redesign */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .amenity-card {
    padding: 2.5rem 2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .projects-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0px 0;
  }

  .logo img {
    height: 48px;
  }

  .btn-primary {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .director {
    padding: 20px 0 !important;
  }

  /* Hero Section - Matching left side of reference image */
  .hero {
    margin-top: 80px;
    padding-top: 0px;
    background: url('../public/bg-hero-2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 280px;
    display: flex;
    align-items: center;

  }

  .hero .container {
    flex-direction: column !important;
    align-items: flex-start;
    justify-content: center;
    gap: 0px;
    max-width: 500px;
    padding: 0 40px;
    text-align: left;
  }

  .hero .content {
    flex: 0 0 100% !important;
    max-width: 500px !important;
    margin: -15px -15px 0px -15px;
    text-align: left;
  }

  .hero-mobile-img {
    display: none !important;
  }

  .hero .content h1 {
    font-size: 0.78rem !important;
    /* Extremely compact like ref */

    font-weight: 800;
  }

  .hero .content h2 {
    font-size: 0.58rem !important;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .hero .content p {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 4px;
    text-align: justify;
    max-width: 250px !important;
  }

  .hero .content button {
    padding: 5px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
  }

  .hero .btn {
    padding: 2px 6px;
    font-size: 0.5rem;
  }

  btn-white {
    padding: 1px 3px;
    background: var(--white);
    border-radius: 0px;
    color: #de4a4a;
    /* Match the blue from the screenshot */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  /* Hero Image for mobile */
  .hero-mobile-img {
    display: block !important;
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* Amenities Section Mobile */
  .amenities-section {
    padding: 4rem 0;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .amenity-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .amenity-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }

  .amenity-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .amenity-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Projects Grid Section Mobile */
  .projects-grid-section {
    padding: 4rem 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects-grid--3col {
    grid-template-columns: 1fr;
  }

  .project-img {
    height: 250px;
  }

  .project-info {
    padding: 2rem 1.5rem;
  }

  .project-info h3 {
    font-size: 1.5rem;
  }

  .status-tag {
    padding: 0.4rem 1.2rem;
    font-size: 0.7rem;
    top: 1rem;
    right: 1rem;
  }

  /* Stats Section - 2x2 grid */
  .stats {
    padding: 10px 0 0 0;
    margin-top: -58px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 10px;
  }

  .stat-card {
    padding: 12px 8px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
  }

  .stat-number {
    font-size: 26px;
    margin-bottom: 2px;
  }

  .stat-label {
    font-size: 13px;
  }

  .director {
    margin: 13px;
  }

  .director .description {
    line-height: 22px;
    margin: 10px
  }

  /* Footer Section Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-body {
    margin: 0 auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-social-links {
    margin-right: 0;
    justify-content: center;
  }

  /* Testimonials Grid */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Mobile Nav Drawer Styles */
  .mobile-nav {
    display: block !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    padding: 25px;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;

  }

  .mobile-logo {
    height: 35px;
  }

  .close-menu {
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary);
  }

  .mobile-nav-links {
    list-style: none;
  }

  .mobile-nav-links li {
    margin-bottom: 15px;
  }

  .mobile-nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1b2f5b;
    text-decoration: none;
  }

  .mobile-cta {
    display: block;
    margin-top: 20px;
    padding: 12px;
    background: var(--primary);
    color: #fff !important;
    text-align: center;
    border-radius: 6px;
  }
}/* ====== PROJECT PAGES V3 HERO & ABOUT BLOCK ====== */
.hero-v2 {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding-top: 140px;
  padding-bottom: 150px; /* Space for negative margin overlap */
  text-align: center;
  margin-top: 90px;
  overflow: hidden;
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-v2-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  animation: heroFadeUp 0.8s ease-out forwards;
}
.hero-v2-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero-v2-h1 .h-green { 
  color: #eab308; /* Premium Gold */ 
  text-shadow: 0 2px 10px rgba(234, 179, 8, 0.2);
}
.hero-v2-h1 .h-black { 
  color: #ffffff; 
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-v2-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero-v2-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.hero-v2-sub1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.hero-v2-sub2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.hero-v2-legal {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 10px;
  letter-spacing: 1px;
}

.about-band {
  background: transparent;
  padding: 0 20px 60px;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: -60px; /* Premium overlap */
}
.about-band-title {
  display: none;
}
.about-band-divider {
  display: none;
}
.about-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #cbd5e1;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-band-item {
  background: #ffffff;
  padding: 30px 20px;
  transition: background 0.3s ease;
}
.about-band-item:hover {
  background: #f8fafc;
}
.about-band-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.about-band-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

@media (max-width: 900px) {
  .about-band-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-v2 { padding-top: 100px; padding-bottom: 100px; }
  .about-band { margin-top: -40px; }
  .about-band-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .about-band-item { padding: 20px; }
  .hero-v2-h1 { font-size: 2.2rem; }
  .hero-v2-h2 { font-size: 1rem; }
}
