/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: 'Inter', system-ui, Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', system-ui, Arial, sans-serif;
  font-weight: 600;
  color: #111;
}

a {
  color: inherit
}

/* Header */
/* Header & Navigation - Modern Redesign */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  /* Glassmorphism base */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: #0A3D62;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #0A3D62;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #0A3D62;
  font-weight: 600;
}

/* Call to Action in Nav */
.nav-cta {
  background: #0A3D62;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.2);
}

.nav-cta:hover {
  background: #083252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 61, 98, 0.3);
}

.nav-cta::after {
  display: none;
  /* No underline for button */
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  /* Hidden on desktop */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-nav a:hover {
  color: #0A3D62;
}

/* Open State for Mobile Menu */
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu.active .mobile-nav a {
  transform: translateY(0);
  opacity: 1;
}

/* Staggered animation for menu items */
.mobile-menu.active .mobile-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav a:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav a:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu.active .mobile-nav a:nth-child(5) {
  transition-delay: 0.5s;
}

/* Hamburger Animation */
.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Media Queries */
@media (max-width: 900px) {
  .desktop-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background-position: center;
  background-size: cover
}

.home-hero {
  background-image: url('images/banner2.JPG')
}

.projects-hero {
  background-image: url('images/projects.jpg')
}

.about-hero {
  background-image: url('images/abot me.jpg')
}

.contact-hero {
  background-image: url('images/contact.jpg')
}

/* Modern Hero Variants */
.contact-hero-modern,
.work-hero-modern {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-hero-modern::before,
.work-hero-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact-hero-modern {
  background-image: url('images/contact.jpg');
}

.work-hero-modern {
  background-image: url('images/contact.jpg');
}

.hero-inner {
  position: relative;
  z-index: 2;
}


.hero-inner h1 {
  color: #fff;
  font-size: 44px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.hero-inner p {
  color: #f4f4f4;
  margin-top: 12px
}

.btn {
  display: inline-block;
  margin-top: 18px;
  background: #0A3D62;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 800;
  color: #0A3D62;
}

.lead {
  text-align: left;
  color: #444;
  margin: 0 auto 24px;
  max-width: 900px
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.project {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer
}

.project img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease
}

.project:hover img {
  transform: scale(1.06);
  filter: brightness(.6)
}

.project .title {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6)
}

/* Services / Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.service {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, .06)
}

.service h3 {
  margin-bottom: 10px
}

/* Contact */
.contact form {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, .06);
  display: grid;
  gap: 14px
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 15px
}

.contact button {
  background: #0A3D62;
  padding: 12px;
  border-radius: 8px;
  border: 0;
  font-weight: 800;
  cursor: pointer
}

/* Footer */
/* Footer */
footer {
  background: #002244;
  /* Dark refined blue */
  color: #d0e7ff;
  padding: 60px 20px 20px;
  font-family: 'Inter', sans-serif;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background: #ffc107;
}

.brand-col .footer-logo img {
  width: 140px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.links-col ul,
.contact-col ul {
  list-style: none;
  padding: 0;
}

.links-col ul li,
.contact-col ul li {
  margin-bottom: 12px;
}

.links-col ul li a,
.contact-col ul li a {
  color: #d0e7ff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.links-col ul li a:hover {
  color: #ffc107;
  transform: translateX(5px);
}

.contact-col .icon {
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a,
.contact-socials a {
  background: transparent !important;
  /* Remove circle background if images are self-contained icons, or keep if transparent pngs */
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.social-icons a img,
.contact-socials a img {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.3s ease;
}

.social-icons a:hover img,
.contact-socials a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 0.9rem;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-bottom a {
  color: #ffc107;
  text-decoration: none;
}

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .brand-col .footer-logo img {
    margin: 0 auto 15px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .8);
  z-index: 200
}

.lightbox.show {
  display: flex
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6)
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 30px
}

/* Responsive */
@media(max-width:1000px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:720px) {
  .menu {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .hero-inner h1 {
    font-size: 28px
  }

  .project-grid {
    grid-template-columns: 1fr
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .about {
    grid-template-columns: 1fr
  }

  header {
    position: relative
  }
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
}

.lightbox-close {
  top: 20px;
  right: 30px;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}



.pool-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 50px;
  border-radius: 20px;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  width: 90%;
}

.content-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-box h1 {
  font-size: 30px;
  color: #0b4ea3;
  font-weight: 700;
  line-height: 1.3;
}

.content-box p {
  margin: 20px 0 30px;
  line-height: 1.6;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0b4ea3;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.image-box img {
  width: 100%;
  max-width: 750px;
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
  min-height: 450px;
}

@media (max-width: 900px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .pool-section {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .content-box,
  .image-box {
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .content-box {
    padding: 30px 20px !important;
  }

  .image-box img {
    width: 100% !important;
    max-width: none !important;
    min-height: 260px;
    border-radius: 0 !important;
  }
}

@media (max-width: 480px) {
  .pool-section {
    padding: 8px 0 !important;
  }

  .content-box {
    padding: 24px 16px !important;
  }

  .content-box h1 {
    font-size: 20px;
  }

  .content-box p {
    font-size: 14px;
    margin: 12px 0 18px;
  }

  .image-box img {
    min-height: 200px;
  }
}

@media (max-width: 360px) {
  .content-box h1 {
    font-size: 17px;
  }

  .content-box p {
    font-size: 13px;
  }

  .image-box img {
    min-height: 160px;
  }
}

.meta-pool-info {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 50px;
  border-radius: 20px;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  width: 90%;
}


.meta-text-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meta-text-box h1 {
  font-size: 30px;
  color: #0b4ea3;
  font-weight: 700;
  line-height: 1.3;
}

.meta-text-box p {
  margin: 20px 0 30px;
  line-height: 1.6;
  color: #444;
}

.meta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0b4ea3;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.meta-image-box img {
  width: 100%;
  max-width: 750px;
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
  min-height: 450px;
}

@media (max-width: 900px) {
  .meta-pool-info {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .meta-text-box,
  .meta-image-box {
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .meta-text-box {
    padding: 30px 20px !important;
  }

  .meta-image-box img {
    width: 100% !important;
    max-width: none !important;
    min-height: 260px;
    border-radius: 0 !important;
  }

  /* Process / service-grid definitive full-width */
  .process {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .process .service-grid {
    grid-template-columns: 1fr;
    gap: 0 !important;
  }

  .process .service {
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 30px 20px !important;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .meta-pool-info {
    padding: 8px 0 !important;
  }

  .meta-text-box {
    padding: 24px 16px !important;
  }

  .meta-text-box h1 {
    font-size: 20px;
  }

  .meta-text-box p {
    font-size: 14px;
    margin: 12px 0 18px;
  }

  .meta-image-box img {
    min-height: 200px;
  }
}

@media (max-width: 360px) {
  .meta-text-box h1 {
    font-size: 17px;
  }

  .meta-text-box p {
    font-size: 13px;
  }

  .meta-image-box img {
    min-height: 160px;
  }
}

.villa-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 50px;
  border-radius: 20px;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  width: 90%;
}

.villa-text-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.villa-text-box h1 {
  font-size: 30px;
  color: #0b4ea3;
  font-weight: 700;
  line-height: 1.3;
}

.villa-text-box p {
  margin: 20px 0 30px;
  line-height: 1.6;
  color: #444;
}

.villa-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0b4ea3;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.villa-image-box img {
  width: 100%;
  max-width: 750px;
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
  min-height: 450px;
}

@media (max-width: 900px) {
  .villa-section {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .villa-text-box,
  .villa-image-box {
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .villa-text-box {
    padding: 30px 20px !important;
  }

  .villa-image-box img {
    width: 100% !important;
    max-width: none !important;
    min-height: 260px;
    border-radius: 0 !important;
  }

  /* Contain sliders to prevent horizontal overflow */
  .projects-section,
  .testimonials {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .villa-section {
    padding: 8px 0 !important;
  }

  .villa-text-box {
    padding: 24px 16px !important;
  }

  .villa-text-box h1 {
    font-size: 20px;
  }

  .villa-text-box p {
    font-size: 14px;
    margin: 12px 0 18px;
  }

  .villa-image-box img {
    min-height: 200px;
  }
}

@media (max-width: 360px) {
  .villa-text-box h1 {
    font-size: 17px;
  }

  .villa-text-box p {
    font-size: 13px;
  }

  .villa-image-box img {
    min-height: 160px;
  }
}

/* Hide forced line-breaks in section headings on phones */
@media (max-width: 480px) {

  .pool-section .content-box h1 br,
  .meta-pool-info .meta-text-box h1 br,
  .villa-section .villa-text-box h1 br {
    display: none;
  }

  .image-box img,
  .meta-image-box img,
  .villa-image-box img {
    height: auto;
  }
}

.projects-section {
  padding: 50px;
  background: #f5faff;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.projects-header h2 {
  font-size: 32px;
  color: #003c8f;
  font-weight: 700;
}

.more-link {
  font-size: 16px;
  color: #0066ff;
  text-decoration: none;
  font-weight: 600;
}

.slider-row {
  width: 100%;
  overflow: hidden;
  margin: 25px 0;
  border-radius: 15px;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.slider-track img {
  width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
}

/* Testimonial Cards in Slider */
.slider-track .service {
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
  white-space: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

/* Slower speed for testimonials text */
.testimonials .slider-row .slider-track {
  animation-duration: 60s !important;
}

/* ANIMACION MAJTAS → */
.slider-row.left .slider-track {
  animation: slide-left 30s linear infinite;
}

/* ANIMACION DJATHTAS ← */
.slider-row.right .slider-track {
  animation: slide-right 30s linear infinite;
}

/* KEYFRAMES */
@keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes slide-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* --- About Page Specific Styles --- */

/* About Hero */
.about-hero-modern {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/abot me.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.about-hero-modern h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-hero-modern p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 300;
}

/* Identity / Who We Are */
.identity-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 20px;
  background: #fff;
  margin-bottom: 60px;
}

.identity-content {
  flex: 1;
}

.identity-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #0A3D62;
  position: relative;
  display: inline-block;
}

.identity-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: #ffc107;
}

.identity-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.identity-image {
  flex: 1;
  position: relative;
}

.identity-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0 #f0f0f0;
}

/* Stats Row in Identity */
.identity-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #0A3D62;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: #888;
}


/* New Team Section */
.team-modern {
  background: #f9f9f9;
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img-wrapper {
  height: 320px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.4rem;
  color: #0A3D62;
  margin-bottom: 5px;
}

.team-info p {
  color: #888;
  font-size: 0.95rem;
  font-weight: 500;
}


/* Locations Section */
.locations-section {
  padding: 100px 20px;
  background: #0A3D62;
  color: #fff;
  text-align: center;
}

.locations-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.location-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.location-card:hover {
  background: #fff;
  transform: translateY(-5px);
}

.location-card:hover h3 {
  color: #0A3D62;
}

.location-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: 0.3s;
}

.location-pin {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

/* Responsive specific to About */
@media (max-width: 900px) {
  .identity-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .about-hero-modern h1 {
    font-size: 2.5rem;
  }

  .identity-image img {
    box-shadow: 10px 10px 0 #f0f0f0;
  }
}

/* --- Contact Page Specific Styles --- */

/* Contact Hero */
.contact-hero-modern {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background-image: linear-gradient(rgba(10, 61, 98, 0.8), rgba(10, 61, 98, 0.6)), url('images/contact.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}

.contact-hero-modern h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero-modern p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Split Layout */
.contact-section-modern {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background: #f4f6f8;
}

.contact-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Info Panel (Left Side) */
.info-panel {
  flex: 2;
  background: #0A3D62;
  color: #fff;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.info-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.info-panel h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.info-panel .subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-socials {
  margin-top: 50px;
}

.contact-socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-socials a:hover {
  background: #fff;
  color: #0A3D62;
}

/* Form Panel (Right Side) */
.form-panel {
  flex: 3;
  padding: 50px;
  background: #fff;
}

.form-panel h2 {
  color: #0A3D62;
  margin-bottom: 30px;
}

.modern-form {
  display: grid;
  gap: 25px;
}

.input-group {
  position: relative;
}

.input-group label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #eee;
  font-size: 1rem;
  color: #333;
  transition: 0.3s;
  background: transparent;
  font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-bottom-color: #0A3D62;
}

.submit-btn {
  background: #0A3D62;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  align-self: start;
  justify-self: start;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(10, 61, 98, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .info-panel {
    padding: 40px;
  }

  .form-panel {
    padding: 40px;
  }
}

/* --- Projects Page Specific Styles --- */

/* Projects Hero */
.projects-hero-modern {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/projectsbanner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.projects-hero-modern h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.projects-hero-modern p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Bar */
.filter-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0A3D62;
  color: #fff;
  border-color: #0A3D62;
}

/* Gallery Grid */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 20px;
}

.project-card-modern {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
  /* Fallback for loading images */
}

.project-card-modern img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card-modern:hover img {
  transform: scale(1.08);
  /* Slightly more zoom for effect */
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  border-radius: 12px;
  /* Match card radius */
}

.project-card-modern:hover .project-overlay {
  opacity: 1;
}

/* Zoom Icon for visual feedback */
.project-overlay::before {
  content: '⤢';
  /* Zoom icon */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-card-modern:hover .project-overlay::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
  opacity: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.project-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
  opacity: 0;
}

.project-card-modern:hover .project-overlay h3,
.project-card-modern:hover .project-overlay p {
  transform: translateY(0);
  opacity: 1;
}

/* Hide empty elements to prevent layout shifts */
.project-overlay h3:empty,
.project-overlay p:empty {
  display: none;
}

.project-card-modern:hover .project-overlay h3,
.project-card-modern:hover .project-overlay p {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .projects-hero-modern h1 {
    font-size: 2.5rem;
  }

  .gallery-grid {
    columns: 1;
  }
}

/* --- Why Choose Us Redesign --- */
.why-us-redesign {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
  background: #022c43;
  /* Dark Blue */
  margin: 0;
  max-width: 100%;
}

.why-us-content {
  flex: 1;
  padding: 80px 60px;
  background: #022c43;
  color: #fff;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-content .small-title {
  color: #38b6ff;
  font-family: 'Playfair Display', serif;
  /* Or script logic if available, using standard serif for now */
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.why-us-content h2 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 500px;
}

.why-us-content .description {
  color: #b0c4de;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 700px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  color: #022c43;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

/* Right Side - Image & Stats */
.why-us-image-side {
  flex: 1;
  position: relative;
  min-width: 500px;
  background-image: url('images/c2.JPG');
  /* Using an existing pool image */
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.why-us-image-side .stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #38b6ff;
  /* Light Blue */
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 20px;
  color: #fff;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.side-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* Start Responsive */
@media (max-width: 1000px) {
  .why-us-redesign {
    flex-direction: column;
  }

  .why-us-content,
  .why-us-image-side {
    min-width: 100%;
    flex: auto;
  }

  .why-us-image-side {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-us-content {
    padding: 40px 20px;
  }

  .why-us-content h2 {
    font-size: 2.2rem;
  }
}

/* Lightbox Animations */
.lightbox-img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Slide Left (Next) */
.anim-slide-out-left {
  animation: slideOutLeft 0.4s forwards ease-in-out;
}

.anim-slide-in-right {
  animation: slideInRight 0.4s forwards ease-in-out;
}

/* Slide Right (Prev) */
.anim-slide-out-right {
  animation: slideOutRight 0.4s forwards ease-in-out;
}

.anim-slide-in-left {
  animation: slideInLeft 0.4s forwards ease-in-out;
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-50px);
    opacity: 0;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(50px);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}