@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/NeueHaasDisplayLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
}

.building-animation {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.building {
  width: 20px;
  background: var(--primary-teal);
  border-radius: 2px 2px 0 0;
  animation: buildingGrow 1.5s ease-in-out infinite;
}

.building:nth-child(1) {
  height: 40px;
  animation-delay: 0s;
}

.building:nth-child(2) {
  height: 60px;
  animation-delay: 0.3s;
}

.building:nth-child(3) {
  height: 50px;
  animation-delay: 0.6s;
}

@keyframes buildingGrow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.3); }
}

.loader-text h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.loader-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.progress-bar {
  width: 200px;
  height: 3px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.progress {
  height: 100%;
  background: var(--primary-teal);
  width: 0;
  animation: progressLoad 3s ease-out forwards;
}

@keyframes progressLoad {
  to { width: 100%; }
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

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

:root {
  --primary-teal: #63caa2;
  --secondary-teal: #597660;
  --brand-dark: #282828;
  --text-primary: #2a2a2a;
  --text-secondary: #666666;
  --background: #ffffff;
}

body {
  font-family:
    "NeueHaasDisplay",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text-primary);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-teal);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-teal);
}

/* Text Selection */
::selection {
  background: var(--primary-teal);
  color: white;
}

::-moz-selection {
  background: var(--primary-teal);
  color: white;
}

/* Navigation */
nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

nav.scrolled {
  position: fixed;
  background: rgba(40, 40, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 10rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color:var(--primary-teal);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #000;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Hamburger Menu - Left */
.hamburger {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-teal);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--brand-dark);
  z-index: 999;
  transition: right 0.4s ease;
  padding: 6rem 2rem;
}

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

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hover-green:hover{
    color: var(--primary-teal) !important;
}
.mobile-menu ul li {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.mobile-menu.active ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active ul li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active ul li:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu.active ul li:nth-child(7) { transition-delay: 0.7s; }


.mobile-menu ul li a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: var(--primary-teal);
  /* padding-left: 1rem; */
}

/* Logo - Right */
.logo {
  z-index: 1001;
}

.logo svg {
  height: 50px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: filter 400ms ease;
}



/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(90, 106, 93, 0.3),
    rgba(95, 186, 167, 0.15)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 2rem;
  opacity: 0;
  animation: fadeInHero 1.4s ease forwards 0.4s;
}

@keyframes fadeInHero {
  to {
    opacity: 1;
  }
}

/* Hero Typography */
.hero-tagline {
  font-size: clamp(0.75rem, 1.2vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn {
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: all 500ms ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.btn-primary {
  background: rgba(95, 186, 167, 0.9);
  color: white;
  border-color: var(--primary-teal);
}

.btn-primary:hover {
  background: white;
  color: var(--brand-dark);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(95, 186, 167, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 0.5rem;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.scroll-indicator p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
/* Filter Bar */
.filter-container {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.filter-card {
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  /* border-radius: 0.75rem; */
  border: 1px solid #f3f4f6;
}

.filter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.filter-field {
  flex: 1;
}

.filter-label {
  display: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.filter-select-wrapper {
  position: relative;
  transition: all 0.3s ease;
}

.filter-select {
  width: 100%;
  background-color: white;
  border: 1px solid #e5e7eb;
  /* border-radius: 0.375rem; */
  padding: 1rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 2px rgba(99, 202, 162, 0.2);
}

.selected-text {
  display: block;
  pointer-events: none;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-select.active .dropdown-list {
  display: block;
}

.dropdown-list li {
  padding: 1rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.dropdown-list li:hover {
  background-color: var(--primary-teal);
  color: white;
}

.filter-select-icon {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-right: 1rem;
  color: #9ca3af;
}

.filter-submit {
  width: 100%;
  background-color: var(--primary-teal);
  color: white;
  font-weight: 700;
  padding: 1.125rem 1.5rem;
  /* border-radius: 0.375rem; */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px var(--secondary-teal);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.filter-submit:hover {
  background-color:var(--secondary-teal);
}

@media (min-width: 640px) {
  .filter-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  nav {
    padding: 1rem 10rem;
    /* padding-top: 0; */
  }

  .logo img {
    height: 50px;
  }

  .hamburger {
    width: 28px;
    height: 20px;
  }

  .hero-cta {
    /* flex-direction: column; */
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .filter-form {
    flex-direction: row;
    align-items: end;
  }

  .filter-label {
    display: block;
  }

  .filter-submit {
    width: 160px;
  }
}


.animate-left,
.animate-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

.animate-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 800px;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

#modalVideo {
  width: 100%;
  height: 90vh

}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    margin: 10% auto;
  }
}




/* propert container */


.property-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 10rem 3rem;
    align-items: flex-start;
}

/* LEFT SIDE */
.content-side {
    flex: 1;
    min-width: 350px;
}

.badge {
    background: #ffefef;
    color: var(--primary-teal);
    padding: 6px 15px;
    font-family: inherit;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

h2 {
    font-size: 2.8rem;
    margin: 20px 0;
    color: #0b2c3d;
    line-height: normal;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #7a8a9e;
}

.feature-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 30px;
}

.stat-item {
    border-right: 1px solid #eee;
    padding: 0 10px;
}

.stat-item:last-child { border: none; }

.stat-val {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
}

.bottom-thumbnails {
    display: flex;
    gap: 10px;
}

.bottom-thumbnails img {
    width: auto;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-thumbnails img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* RIGHT SIDE GALLERY */
.image-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    min-width: 400px;
    height: 100%;
    max-height: 550px;
}

.image-gallery > div {
    overflow: hidden;
    cursor: pointer;
}

.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-gallery > div:hover img {
    transform: scale(1.1);
}

.tall-img {
    grid-row: span 2;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 900px) {
    .image-gallery {
        min-width: 100%;
        height: 500px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-item { border: none; }
}





/* footer starts here */


.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}
.footer-col ul li{
   list-style: none;
}

/* Logo Styles */
.logo-col {
    flex: 1.5;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
}
.logo a {
    line-height: 0;
  
}

.logo-icon {
    color: #d14d33; /* Rust/Red color from design */
    font-size: 2.2rem;
    /* You would replace this text 'V' with an <img> tag for your actual SVG logo */
}

/* Header & List Styles */
h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

ul {
    /* list-style: none; */
}

ul li {
    /* margin-bottom: 12px; */
}

ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

ul li a:hover {
    opacity: 1;
    color: var(--primary-teal);
    /* text-decoration: underline; */
}

/* Newsletter Styles */
.newsletter-col {
    flex: 2;
    max-width: 350px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    align-items: center;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 0;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.arrow-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding-left: 10px;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content:center;
    align-items: center;
    border-top: 1px solid transparent; /* Keeps spacing consistent */
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-footer {
        padding: 60px 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-col {
        max-width: 100%;
    }
}



/* Homepage CTA styling goes below */


.cta-section {
    background-color: var(--secondary-teal); /* Beige background from design */
    /* background-image: url('../images/your-v-graphic.svg'); */
     background-image: url('../images/hompage_cta.svg'); /* Replace with your actual background SVG */
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    padding: 120px 80px;
    color: var(--background);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Fallback/Mock for the stylized 'V' if you don't have the image yet */
/* .cta-section::after {
    content: "";
    position: absolute;
    right: -10%;
    top: 0;
    width: 60%;
    height: 100%;
    background-image: url('../images/hompage_cta.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1; 
    pointer-events: none;
} */

.cta-content {
    max-width: 600px;
    color: var(--background);
    z-index: 2;
}

.cta-title {
    font-size: 4rem;
    font-weight: 400;
        color: var(--background);
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

.decorative-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: var(--background);
    vertical-align: middle;
    margin-right: 15px;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--background);

    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 35px;
    /* border-radius: 50px; */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

.btn-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
}

.btn-dark:hover {
    background-color: #333;
}

.btn-outline {
    background-color: transparent;
    color: var(--background);

    border: 1px solid var(--background);
}

.btn-outline:hover {
    background-color: #000;
    border: 1px solid #000;

}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-title { font-size: 3.2rem; }
    .cta-section { background-position: 120% center; }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 40px;
        text-align: center;
        background-image: none; /* Remove background on mobile for clarity */
    }

    .cta-content { margin: 0 auto; }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn { width: 100%; justify-content: center; }

    .decorative-line { display: none; } /* Simplify for mobile */
}




/* counterUp section */


.stats-section {
    background-color: #f2f6f7;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.icon {
    margin-bottom: 20px;
}

.icon img {
    width: 50px;
    height: 50px;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: #0b1c2c; /* Dark Navy */
    font-weight: 800;
    margin-bottom: 10px;
}

/* Adds the '+' or 'K+' suffix via CSS for cleaner JS */
.stat-item h2::after {
    content: '+';
}
.stat-item .counter-percentage::after {
    content: '%';
}


/* .stat-item:nth-child(2) h2::after {
    content: 'K+';
} */

.stat-item p {
    font-size: 0.9rem;
    color: #7a8a9e;
    text-transform: capitalize;
}

/* Responsive Tablet/Mobile */
@media (max-width: 768px) {
    .stats-container {
        gap: 60px;
    }
    .stat-item {
        min-width: 45%;
    }
}

@media (max-width: 480px) {
    .stat-item {
        /* min-width: 100%; */
        min-width: auto;
    }
}




/* About us */



.about-section {
    padding: 80px 5%;
    background: #fff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Side */
.image-wrapper {
    flex: 1;
    position: relative;
}

.main-img-box img {
    width: 100%;
    min-height: 600px;
    object-fit: cover;
    /* border-radius: 8px; */
    border: 15px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: absolute;
    bottom: 50px;
    left: -20px;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover { transform: scale(1.05); }

.video-thumbnail img {
    object-fit: cover;
    width: -webkit-fill-available !important;
    width: auto;
    min-height: 200px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--primary-teal);;
    margin-left: 4px;
}

/* Content Side */
.content-wrapper { flex: 1.2; }

.badge {
    background: #ebfff0;
    color: var(--primary-teal);;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.main-title {
    font-size: 42px;
    margin: 20px 0;
    line-height: normal;
    color: #0b1c39;
}

.main-title span { color: var(--primary-teal);; }

.description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0b1c39;
    font-weight: 500;
}

.icon-circle {
    background: #ebfff0;
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-box {
    border-left: 4px solid var(--primary-teal);;
    background: #ebfff0;
    padding: 20px;
    font-style: italic;
    color: #555;
    margin-bottom: 35px;
}

.cta-btn {
    background: var(--primary-teal);;
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover { background: var(--secondary-teal); }

/* Entry Animations - Viewport Triggered */
.animate-left,
.animate-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

.animate-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .container { flex-direction: column; text-align: center; }
    .features-grid { text-align: left; }
    .video-thumbnail { left: 50%; transform: translateX(-50%); bottom: -40px; }
}




/* Blogs sectiion */

/* Scoped styles to prevent conflicts */
        .news-section-wrapper {
            margin: 0;
            padding: 80px 0;
            background-color: #ffffff;
            /* font-family: 'Poppins', sans-serif; */
            overflow-x: hidden;
        }

        .news-section-container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        /* --- Header Section --- */
        .news-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .news-section-badge {
            background-color: #ebfff0;
            color: var(--primary-teal);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 12px;
            text-transform: none;
        }

        .news-section-title {
            font-size: 42px;
            color: #0a1d2e;
            font-weight: 700;
            letter-spacing: -1px;
            margin-top: 0;
        }

        /* --- Slider Logic --- */
        .news-section-slider-window {
            overflow: hidden;
            position: relative;
            padding: 15px 5px;
        }

        .news-section-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            gap: 30px;
        }

        /* --- Card Styling --- */
        .news-section-card {
            flex: 0 0 calc(33.333% - 20px);
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0; 
            transform: translateY(30px);
        }

        .news-section-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .news-section-card-img {
            width: 100%;
            height: 240px;
            overflow: hidden;
            display: block;
            text-decoration: none;
        }

        .news-section-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .news-section-card:hover .news-section-card-img img {
            transform: scale(1.1);
        }

        .news-section-card-body {
            padding: 30px;
        }

        .news-section-meta {
            display: flex;
            gap: 15px;
            font-size: 14px;
            color: #777777;
            margin-bottom: 15px;
        }

        .news-section-meta span i {
            color: var(--primary-teal);
            margin-right: 6px;
        }

        .news-section-card-title {
            font-size: 20px;
            color: #0a1d2e;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 30px;
            min-height: 56px;
            cursor: pointer;
            transition: color 0.3s;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-section-card-title:hover {
            color: var(--primary-teal);
        }

        .news-section-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eeeeee;
        }

        .news-section-date {
            font-size: 14px;
            color: #777777;
        }

        .news-section-date i {
            color: var(--primary-teal);
            margin-right: 6px;
        }

        .news-section-read-more {
            color: var(--primary-teal);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* --- Navigation --- */
        .news-section-nav-btn {
            position: absolute;
            top: 55%;
            transform: translateY(-50%);
            background: #ffffff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            cursor: pointer;
            z-index: 10;
            color: #0a1d2e;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .news-section-nav-btn:hover {
            background-color: var(--primary-teal);
            color: #ffffff;
        }

        .news-section-prev { left: -25px; }
        .news-section-next { right: -25px; }

        /* --- Responsiveness --- */
        @media (max-width: 1024px) {
            .news-section-card { flex: 0 0 calc(50% - 15px); }
            .news-section-prev { left: 0; }
            .news-section-next { right: 0; }
        }

        @media (max-width: 650px) {
            .news-section-card { flex: 0 0 100%; }
            .news-section-title { font-size: 30px; }
            .news-section-nav-btn { bottom: -60px; top: auto; }
            .news-section-prev { left: 30%; }
            .news-section-next { right: 30%; }
            .news-section-slider-window { margin-bottom: 60px; }
        }


/* Blog Detail */
.blog-detail-container {
    padding: 140px  80px;
    min-height: 100vh;
}

.blog-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-detail {
    flex: 1;
}

.blog-sidebar {
    flex: 0 0 320px;
}

.blog-sidebar h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.related-post {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    text-decoration: none;
    transition: transform 0.3s;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.related-post-content {
    flex: 1;
}

.related-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.related-post h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.related-post:hover h4 {
    color: #63caa2;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
        flex-wrap: wrap;
}

.blog-detail-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.blog-detail-content {
    line-height: 1.8;
    color: #333;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #63caa2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: #597660;
}

.blog-not-found {
    text-align: center;
    padding: 100px 20px;
}

.blog-not-found h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

@media (max-width: 820px) {
    .blog-layout {
        flex-direction: column;
    }
    
    .blog-sidebar {
        flex: 1;
    }
}


/* Contact Page */
.contact-section {
    padding: 140px 20px 80px;
    background: #f9fafb;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    /* margin-bottom: 40px; */
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s;
}

.contact-item:nth-child(1),
.contact-item:nth-child(2) {
    align-items: start;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ebfff0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.contact-item a,
.contact-item p {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-teal);
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-teal);
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    background: var(--primary-teal);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn i {
    transition: transform 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 202, 162, 0.3);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h1 {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}


/* 404 Error Page */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.error-container {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-size: 180px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin: 0;
    opacity: 0.1;
}

.error-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: -60px 0 20px;
}

.error-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-teal);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.error-btn:hover {
    background: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 202, 162, 0.3);
}

@media (max-width: 768px) {
    .error-code {
        font-size: 120px;
    }
    
    .error-title {
        font-size: 32px;
        margin-top: -40px;
    }
    
    .error-text {
        font-size: 16px;
    }
}


/* Legal Pages */
.legal-hero {
    padding: 180px 20px 80px;
    background: var(--secondary-teal);
    text-align: center;
    color: white;
}

.legal-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.legal-hero-content p {
    font-size: 16px;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 20px;
    background: #fff;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-sidebar h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-nav {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: 12px;
}

.legal-nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
}

.legal-nav a:hover {
    color: var(--primary-teal);
    padding-left: 10px;
}

.legal-main {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section ul li strong {
    color: #1a1a1a;
}

.contact-box {
    background: #f9fafb;
    padding: 30px;
    border-left: 4px solid var(--primary-teal);
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box a {
    color: var(--primary-teal);
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 20px 60px;
    }
    
    .legal-hero-content h1 {
        font-size: 32px;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
}


/* About Page Styles */
.about-hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    animation: zoomIn 1.5s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 106, 93, 0.4), rgba(95, 186, 167, 0.2));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 20px 0;
    opacity: 0;
    line-height: normal;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: white;
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(40px);
    }
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Story Section */
.story-section {
    padding: 100px 20px;
    background: #fff;
    overflow: hidden;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    color: #1a1a1a;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--primary-teal);
    transition: height 1.5s ease;
}

.timeline-line.active {
    height: 100%;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(50px);
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--primary-teal);
    border-radius: 50%;
    z-index: 2;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.timeline-item.active .timeline-dot {
    transform: scale(1);
}

.timeline-content {
    padding: 25px;
    background: #f9fafb;
    border-left: 4px solid var(--primary-teal);
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.timeline-item p {
    color: #666;
    font-size: 14px;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 20px;
    background: var(--secondary-teal);
    position: relative;
    overflow: hidden;
}

.mission-vision-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.mission-box, .vision-box {
    background: white;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-box.active, .vision-box.active {
    opacity: 1;
    transform: scale(1);
}

.mission-box:hover, .vision-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.mv-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: #ebfff0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.mission-box:hover .mv-icon, .vision-box:hover .mv-icon {
    background: var(--primary-teal);
    transform: scale(1.1);
}

.mv-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(99, 202, 162, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    z-index: 1;
}

.mission-box.active .mv-circle, .vision-box.active .mv-circle {
    width: 150px;
    height: 150px;
}

.mv-icon i {
    font-size: 42px;
    color: var(--primary-teal);
    transition: all 0.5s ease;
}

.mission-box:hover .mv-icon i, .vision-box:hover .mv-icon i {
    color: white;
    transform: rotateY(360deg);
}

.mission-box h3, .vision-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.mission-box p, .vision-box p {
    color: #666;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background: #fff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    color: #1a1a1a;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
    transition: transform 0.3s;
}

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

.team-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 202, 162, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--secondary-teal);
    color: white;
    transform: scale(1.1);
}

.team-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.team-role {
    color: var(--primary-teal);
    font-size: 14px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-card {
    background: white;
    padding: 40px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #ebfff0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: var(--primary-teal);
    transform: rotateY(360deg);
}

.why-icon i {
    font-size: 32px;
    color: var(--primary-teal);
    transition: color 0.3s;
}

.why-card:hover .why-icon i {
    color: white;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-timeline {
        padding-left: 30px;
    }
    
    .timeline-dot {
        left: -28px;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-box, .vision-box {
        padding: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* Blogs Page */
.blogs-page {
    padding: 140px 20px 80px;
    background: #ffffff;
    min-height: 100vh;
}

.blogs-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.blogs-page-header h1 {
    font-size: 42px;
    color: #0a1d2e;
    font-weight: 700;
    margin: 12px 0 15px;
}

.blogs-page-header p {
    font-size: 16px;
    color: #777;
}

.blogs-page-container {
    max-width: 1350px;
    margin: 0 auto;
}

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

@media (max-width: 1024px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .blogs-page {
        padding: 120px 20px 60px;
    }
    
    .blogs-page-header h1 {
        font-size: 30px;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}


/* Projects Page */
.projects-page {
    padding: 140px 20px 80px;
    background: #f9fafb;
    min-height: 100vh;
}

.projects-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-header h1 {
    font-size: 42px;
    color: #0a1d2e;
    font-weight: 700;
    margin: 12px 0 15px;
}

.projects-header p {
    font-size: 16px;
    color: #777;
}

.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 35px;
    background: #fff;
    border: 2px solid #e5e5e5;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50px;
}

.tab-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.tab-btn.active {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: #fff;
}

.projects-container {
    max-width: 1350px;
    margin: 0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(99, 202, 162, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-details-btn {
    padding: 12px 30px;
    background: #fff;
    color: var(--primary-teal);
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
}

.view-details-btn:hover {
    background: #0a1d2e;
    color: #fff;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 22px;
    color: #0a1d2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-location {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.project-location i {
    color: var(--primary-teal);
    margin-right: 5px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .projects-page {
        padding: 120px 20px 60px;
    }
    
    .projects-header h1 {
        font-size: 30px;
    }
    
    .projects-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}


/* Status Badge Styles */
.status-upcoming {
    background: #fff3cd;
    color: #856404;
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    line-height: normal;
        width: max-content;
}

.status-ongoing {
    background: #d1ecf1;
    color: #0c5460;
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
        width: max-content;
    line-height: normal;

}

.status-completed {
    background: #d4edda;
    color: #155724;
    padding: 5px 12px;
    line-height: normal;
    width: max-content;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
}


.blog-detail-meta div{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Popup Modal */
.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.popup-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    animation: slideDown 0.4s ease;
    display: flex;
    justify-content: center;
}
.popup-content > div  {
    position: relative;
}

.popup-content img {
    width: auto;
    height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.popup-content img:hover {
    transform: scale(1.02);
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    background: rgba(0, 0, 0, 0.6);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .popup-close {
        font-size: 30px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .popup-close {
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
}
