﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
}

.navbar a.active {
  color: #e33e1e; /* Highlight color for active link */
  font-weight: 700; /* Optional: make it bolder */
  border-bottom: 2px solid #e33e1e; /* Optional underline */
  padding-bottom: 2px;
  
}


.navbar ul {
  list-style: none;
  display: flex;
  gap: 49px;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
  margin-right: 20px; /* Add space between links */
}

/* Optional: remove margin from the last link */
.navbar a:last-child {
  margin-right: 0;
}


.navbar a:hover {
  color: #ed2427 ;
}

.book-btn {
  background-color: #ed2427;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Video Background */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 20, 10, 0.6);
  z-index: -1;
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 5px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Badges */
.badges span {
  margin: 0 10px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 15px;
  border-radius: 20px;
}

/* Search Box */
.search-box {
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  margin: 30px auto;
  flex-wrap: wrap;
  width: fit-content;
}

.field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.field label {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 5px;
}

.field input,
.field select {
  padding: 10px;
  border: none;
  border-radius: 5px;
  min-width: 150px;
}

.search-btn {
  background-color: #005a66;
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
}

.logo img {
  height: 60px;          /* adjust for your design */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}


/* === Buttons Section === */
.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease both;
}

.buttons a {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.buttons a.primary {
  background: #005a66;   /* gold tone */
  color: #fff;
  box-shadow: 0 4px 10px rgba(181, 139, 76, 0.3);
}

.buttons a.primary:hover {
  background: #d4b06a;
  box-shadow: 0 6px 14px rgba(181, 139, 76, 0.5);
}

.buttons a.secondary {
  border: 2px solid #005a66;
  color: #fff;
  background: transparent;
}

.buttons a.secondary:hover {
  background: #ed2427;
  color: #fff;
  box-shadow: 0 4px 10px rgba(181, 139, 76, 0.4);
}
/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
#nav-menu {
  display: flex;
}

@media (max-width: 768px) {
  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px; /* below navbar */
    left: 0;
    text-align: center;
    padding: 20px 0;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  #nav-menu ul li {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  .book-btn {
    display: none; /* optional: hide book button on mobile */
  }
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* Mobile Close Button */
.menu-close {
  display: none;
  font-size: 2rem;
  color: #fff;
  text-align: right;
  padding: 0 20px 10px 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #005a66;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    padding: 20px 0;
    transition: all 0.3s ease;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 15px;
    background-color: #005a66;
  }

  .menu-close {
    display: block;
  }
}


/* === Animation === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===========================
   MOBILE RESPONSIVE DESIGN
   =========================== */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 40px;
  }

  .hero .content {
    margin-top: 200px;
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .stats {
    gap: 40px;
  }
}

/* Tablets / Medium screens */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px 25px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    height: auto;
    padding: 100px 20px 60px;
  }

  .hero .content {
    margin-top: 120px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .badges span {
    display: inline-block;
    margin: 8px 5px;
    font-size: 13px;
  }

  .search-box {
    flex-direction: column;
    gap: 15px;
    width: 90%;
  }

  .field input,
  .field select {
    width: 100%;
  }

  .search-btn {
    width: 100%;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .buttons a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .stats h2 {
    font-size: 32px;
  }

  .stats p {
    font-size: 14px;
  }

  .logo img {
    height: 50px;
  }
}

/* Small phones / portrait screens */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
    background-color: #005a66;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.6;
  }

  .badges span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .search-box {
    padding: 15px;
  }

  .buttons a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .stats h2 {
    font-size: 26px;
  }

  .stats p {
    font-size: 13px;
  }

  .logo img {
    height: 40px;
  }

  .hero .content {
    margin-top: 100px;
    padding: 0 15px;
  }
}





/* Moving Line (Announcement Bar) */
.moving-line {
  background: #005a66;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  padding: 10px 0;
  
  border-bottom: 2px solid #fff;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.moving-line marquee {
  white-space: nowrap;
}

.moving-line strong {
  color: #fff;
  font-weight: 700;
}

/* ==========================================================
   HIGH-RESOLUTION / DESKTOP / UHD RESPONSIVE ADJUSTMENTS
   ========================================================== */

/* 1024x600 – Small notebook & netbook */
@media (min-width: 1024px) and (max-width: 1199px) {
  .navbar { padding: 18px 60px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 15px; }
  .buttons a { font-size: 14px; padding: 10px 24px; }
}

/* 1280x800 & 1366x768 – Common laptop screens */
@media (min-width: 1200px) and (max-width: 1439px) {
  .navbar { padding: 20px 70px; }
  .logo img { height: 65px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 16px; }
  .search-box { padding: 25px; }
  .buttons a { padding: 12px 28px; font-size: 15px; }
}

/* 1440x900 – Mid-range laptop / HD+ */
@media (min-width: 1440px) and (max-width: 1599px) {
  .navbar { padding: 22px 80px; }
  .hero { height: 95vh; }
  .hero h1 { font-size: 50px; }
  .hero p { font-size: 17px; }
  .buttons a { padding: 14px 30px; font-size: 16px; }
  .logo img { height: 70px; }
}

/* 1680x1050 – Wide desktop / large laptop */
@media (min-width: 1600px) and (max-width: 1919px) {
  .navbar { padding: 25px 100px; }
  .hero h1 { font-size: 56px; }
  .hero p { font-size: 18px; max-width: 900px; margin: 0 auto 30px; }
  .buttons a { font-size: 16px; padding: 14px 34px; }
  .search-box { padding: 30px; gap: 15px; }
}

/* 1920x1080 / 1920x1200 – Full HD desktop */
@media (min-width: 1920px) and (max-width: 2559px) {
  .navbar { padding: 30px 120px; }
  .logo img { height: 80px; }
  .hero h1 { font-size: 60px; line-height: 1.3; }
  .hero p { font-size: 20px; }
  .search-box { padding: 35px; gap: 20px; }
  .buttons a { font-size: 17px; padding: 16px 36px; }
  .background-video { object-fit: cover; }
}

/* 2560x1440 – 2K / QHD monitors */
@media (min-width: 2560px) and (max-width: 3839px) {
  .navbar { padding: 35px 160px; }
  .logo img { height: 90px; }
  .hero { height: 95vh; }
  .hero h1 { font-size: 72px; }
  .hero p { font-size: 22px; }
  .search-box { padding: 40px 50px; gap: 25px; }
  .buttons a { font-size: 18px; padding: 18px 40px; }
}

/* 3840x2160 – 4K UHD monitors */
@media (min-width: 3840px) and (max-width: 4095px) {
  .navbar { padding: 40px 200px; }
  .logo img { height: 110px; }
  .hero { height: 100vh; }
  .hero h1 { font-size: 90px; }
  .hero p { font-size: 26px; }
  .search-box { padding: 50px 60px; gap: 30px; }
  .buttons a { font-size: 22px; padding: 20px 45px; }
}

/* 4096x2304 – 4K+ DCI screens */
@media (min-width: 4096px) and (max-width: 5119px) {
  .navbar { padding: 45px 240px; }
  .logo img { height: 120px; }
  .hero h1 { font-size: 96px; }
  .hero p { font-size: 28px; max-width: 1200px; margin: 0 auto 40px; }
  .buttons a { font-size: 24px; padding: 22px 50px; }
}

/* 5120x2880 – 5K Retina / Ultra-wide monitors */
@media (min-width: 5120px) {
  .navbar { padding: 60px 300px; }
  .logo img { height: 140px; }
  .hero h1 { font-size: 110px; }
  .hero p { font-size: 32px; max-width: 1400px; }
  .search-box { padding: 60px 80px; gap: 40px; }
  .buttons a { font-size: 26px; padding: 25px 60px; border-radius: 40px; }
}










/* About Section Layout */


/* Hospitality Layout (Renamed Classes) */
.luxury-showcase {
  background: #f9f6f2;
  padding: 100px 0;
}

.luxury-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

/* Left Images */
.luxury-images {
  position: relative;
  flex: 1 1 45%;
}

.luxury-main img {
  width: 100%;
  height: 600px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.luxury-badge {
  position: absolute;
  bottom: 531px;
  left: 19px;
  background: #005a66;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.luxury-sub {
  position: absolute;
  bottom: -40px;
  left: 40px;
}

.luxury-sub img {
  width: 73%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
  margin-left: 160px;
}

/* Right Content */
.luxury-content {
  flex: 1 1 45%;
}

.luxury-subtitle {
  display: block;
  color: #005a66;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.luxury-heading {
  font-size: 2rem;
  color: #ed2427;
  
  font-weight: 700;
  margin-bottom: 20px;
}

.luxury-text {
  color: #5c5c5c;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Completely New Card Design */
.luxury-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fdf6f0; /* soft resort-like background */
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Top colored header for each card */
.luxury-feature::before {
  content: '';
  display: block;
  height: 6px;
  width: 100%;
  background: linear-gradient( #005a66, #005a66); /* gradient accent stripe */
}

/* Icon circle overlaps header */
.luxury-feature i {
  background: #fff;
  color: #005a66;
  font-size: 1.8rem;
  padding: 20px;
  border-radius: 50%;
  border: 3px solid #005a66;
  margin-top: -30px;
  margin-left: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.luxury-feature:hover i {
  transform: scale(1.1);
}

.luxury-feature div {
  padding: 8px;
  color: #000;
  font-size: 15px;
  margin-left: 23px;
}

.luxury-feature strong {
  font-size: 1.rem;
  font-weight: 700;
  color: #ed2427;
  margin-bottom: 5px;
  margin-left: 1px;
}

.luxury-feature br {
  content: '';
  margin-bottom: 3px;
}

.luxury-feature p {
  font-size: 0.95rem;
  color: #5c5c5c;
  line-height: 1.5;
}

/* Card hover effect */
.luxury-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* 2 cards per row on desktop */
.luxury-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  margin: 30px 0;
}

/* Responsive for tablets and smaller screens */
@media (max-width: 992px) {
    .luxury-features {
        grid-template-columns: 1fr; /* Switch to single column */
        gap: 20px 0; /* Reduce gap for smaller screens */
        margin: 20px 0;
       
    }
}

/* Optional: for very small screens / mobile */
@media (max-width: 576px) {
    .luxury-features {
        grid-template-columns: 1fr; /* Keep single column */
        gap: 15px 0; /* Slightly smaller gap */
        margin: 15px 0;
    }
}


.luxury-btn {
  display: inline-block;
  background: #005a66;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.luxury-btn:hover {
  background: #ed2427;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .luxury-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .luxury-images {
    order: -1;
  }

  .luxury-sub {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .luxury-features {
    grid-template-columns: 1fr;
    justify-items: center;
    
  }

  .luxury-feature {
    justify-content: center;
    text-align: left;
    width: 300px;
  }
}


/* Initial hidden state */
.luxury-images,
.luxury-content {
  opacity: 0;
  transform: translateX(100px); /* Right content slides from right */
  transition: all 1s ease;
}

/* Left image slides from left */
.luxury-images {
  transform: translateX(-100px);
}

/* Active state (visible when in viewport) */
.luxury-animate {
  opacity: 1;
  transform: translateX(0);
}



/* Tablet & Mobile: max-width 992px */
@media (max-width: 992px) {
  /* Wrapper becomes vertical */
  .luxury-wrapper {
    flex-direction: column;
    text-align: center;
  }

  /* Move images above content */
  .luxury-images {
    order: -1;
    transform: translateX(0); /* Reset transform for animation */
    margin-bottom: 40px;
  }

  /* Sub image positioning */
  .luxury-sub {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Features grid becomes single column */
  .luxury-features {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
  }

  /* Center the icon in feature cards */
  .luxury-feature {
    justify-content: center;
    text-align: center;
  }

  .luxury-feature i {
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

/* Small Mobile: max-width 576px */
@media (max-width: 576px) {
  .luxury-main img {
    height: auto; /* Image scales naturally */
  }

  .luxury-badge {
    bottom: auto;
    top: 10px;
    left: 10px;
    font-size: 0.85rem;
  }

  .luxury-sub img {
    width: 80%;
    margin-left: 0;
    border-width: 3px;
  }

  .luxury-text {
    font-size: 0.95rem;
  }

  .luxury-heading {
    font-size: 1.6rem;
  }
}


/* ===============================
   ✨ EXTENDED RESPONSIVE SETTINGS
   =============================== */

/* Tablets: 1024x600, 1024x768 */
@media (min-width: 993px) and (max-width: 1100px) {
  .luxury-wrapper {
    max-width: 900px;
    gap: 40px;
  }
  .luxury-main img {
    height: 480px;
  }
  .luxury-heading {
    font-size: 1.8rem;
  }
}

/* Medium Laptops: 1280x800, 1366x768 */
@media (min-width: 1101px) and (max-width: 1399px) {
  .luxury-wrapper {
    max-width: 1100px;
  }
  .luxury-main img {
    height: 520px;
  }
  .luxury-feature div {
    font-size: 14px;
  }
  .luxury-heading {
    font-size: 1.9rem;
  }
}

/* Standard HD Screens: 1440x900, 1680x1050 */
@media (min-width: 1400px) and (max-width: 1799px) {
  .luxury-wrapper {
    max-width: 1300px;
    gap: 60px;
  }
  .luxury-main img {
    height: 580px;
  }
  .luxury-heading {
    font-size: 2.2rem;
  }
  .luxury-text {
    font-size: 1.05rem;
  }
}

/* Full HD Screens: 1920x1080, 1920x1200 */
@media (min-width: 1800px) and (max-width: 2199px) {
  .luxury-wrapper {
    max-width: 1500px;
    gap: 80px;
  }
  .luxury-main img {
    height: 640px;
  }
  .luxury-heading {
    font-size: 2.4rem;
  }
  .luxury-text {
    font-size: 1.1rem;
  }
  .luxury-feature div {
    font-size: 16px;
  }
}

/* QHD / 2K Screens: 2560x1440 */
@media (min-width: 2200px) and (max-width: 3000px) {
  .luxury-wrapper {
    max-width: 1800px;
    gap: 100px;
  }
  .luxury-main img {
    height: 700px;
  }
  .luxury-heading {
    font-size: 2.6rem;
  }
  .luxury-text {
    font-size: 1.2rem;
  }
  .luxury-feature div {
    font-size: 17px;
  }
}

/* 4K Screens: 3840x2160, 4096x2304 */
@media (min-width: 3001px) and (max-width: 4500px) {
  .luxury-wrapper {
    max-width: 2300px;
    gap: 120px;
  }
  .luxury-main img {
    height: 850px;
  }
  .luxury-heading {
    font-size: 3rem;
  }
  .luxury-text {
    font-size: 1.25rem;
  }
  .luxury-feature {
    transform: scale(1.1);
  }
}

/* 5K Screens: 5120x2880 and above */
@media (min-width: 4501px) {
  .luxury-wrapper {
    max-width: 2800px;
    gap: 150px;
  }
  .luxury-main img {
    height: 950px;
  }
  .luxury-heading {
    font-size: 3.4rem;
  }
  .luxury-text {
    font-size: 1.3rem;
  }
  .luxury-feature {
    transform: scale(1.15);
  }
}










/* Why Choose Us Section - Updated Background Image */
.why-choose-us {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;

  background-image: url('assets/img/image.png'); /* Updated image */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* optional parallax effect */
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12); /* overlay for readability */
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 1; /* keep content above overlay */
}


/* Subtitle & Heading */
.why-choose-us .subtitle {
  color: #ed2427; /* Accent color */
  font-weight: 600;
  
  letter-spacing: 1px;
  font-size: 2rem;
}

.why-choose-us h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #005a66;
  margin: 10px 0 50px 0;
}

/* Custom Underline */
.why-choose-us .section-header .underline {
    width: 80px;
    height: 5px;
    background: #e33e1e;
    margin: 12px auto 0;
    border-radius: 2px;
    position: relative;
}

.why-choose-us .section-header .underline::before,
.why-choose-us .section-header .underline::after {
    content: '';
    width: 25px;
    height: 5px;
    background: #005a66;
    position: absolute;
    top: 0;
    border-radius: 2px;
}

.why-choose-us .section-header .underline::before {
    left: -35px;
}

.why-choose-us .section-header .underline::after {
    right: -35px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.feature-card::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(227, 62, 30, 0.2);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  transition: all 0.4s ease;
  z-index: 0;
}

.feature-card:hover::before {
  top: -80px;
  right: -80px;
  background: rgba(227, 62, 30, 0.3);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.4);
}

/* Icon */
.feature-icon {
  font-size: 50px;
  color: #005a66; /* Accent */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Card Heading & Text */
.feature-card h4 {
  font-size: 1.2rem;
  color: #ed2427;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

.feature-card p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* Hover Animation for Icon */
.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-icon {
    font-size: 40px;
  }

  .why-choose-us .section-header .underline {
    width: 60px;
  }

  .why-choose-us .section-header .underline::before,
  .why-choose-us .section-header .underline::after {
    width: 20px;
    left: -25px;
    right: -25px;
  }
}


/* ============================================
   🌐 EXTENDED RESPONSIVE DESIGN FOR ALL SCREENS
   ============================================ */

/* 1024x600 and 1024x768 (Small Tablets / iPads) */
@media (min-width: 993px) and (max-width: 1100px) {
  .why-choose-us {
    padding: 70px 20px;
    background-attachment: scroll; /* avoid lag on tablets */
  }
  .why-choose-us h2 {
    font-size: 1.8rem;
  }
  .why-choose-us .subtitle {
    font-size: 1.6rem;
  }
  .feature-card {
    padding: 25px 18px;
  }
  .feature-icon {
    font-size: 42px;
  }
}

/* 1280x800 and 1366x768 (Small Laptops) */
@media (min-width: 1101px) and (max-width: 1399px) {
  .why-choose-us {
    padding: 80px 30px;
  }
  .why-choose-us h2 {
    font-size: 2rem;
  }
  .feature-card {
    padding: 28px 20px;
  }
  .feature-icon {
    font-size: 46px;
  }
}

/* 1440x900 and 1680x1050 (Medium Desktops) */
@media (min-width: 1400px) and (max-width: 1799px) {
  .why-choose-us {
    padding: 90px 40px;
  }
  .why-choose-us h2 {
    font-size: 2.2rem;
  }
  .why-choose-us .subtitle {
    font-size: 1.8rem;
  }
  .feature-card {
    padding: 35px 25px;
  }
  .feature-icon {
    font-size: 50px;
  }
  .feature-card h4 {
    font-size: 1.3rem;
  }
}

/* 1920x1080 and 1920x1200 (Full HD Screens) */
@media (min-width: 1800px) and (max-width: 2199px) {
  .why-choose-us {
    padding: 100px 60px;
    background-size: cover;
  }
  .why-choose-us h2 {
    font-size: 2.5rem;
  }
  .why-choose-us .subtitle {
    font-size: 2rem;
  }
  .feature-card {
    padding: 40px 30px;
  }
  .feature-icon {
    font-size: 55px;
  }
  .feature-card h4 {
    font-size: 1.4rem;
  }
  .feature-card p {
    font-size: 1rem;
  }
}

/* 2560x1440 (QHD / 2K Monitors) */
@media (min-width: 2200px) and (max-width: 3000px) {
  .why-choose-us {
    padding: 120px 80px;
    max-width: 2000px;
    margin: 0 auto;
  }
  .why-choose-us h2 {
    font-size: 2.8rem;
  }
  .feature-card {
    padding: 50px 35px;
  }
  .feature-icon {
    font-size: 60px;
  }
  .feature-card h4 {
    font-size: 1.5rem;
  }
  .feature-card p {
    font-size: 1.1rem;
  }
}

/* 3840x2160 and 4096x2304 (4K Displays) */
@media (min-width: 3001px) and (max-width: 4500px) {
  .why-choose-us {
    padding: 140px 100px;
    max-width: 2400px;
    margin: auto;
  }
  .why-choose-us h2 {
    font-size: 3.2rem;
  }
  .why-choose-us .subtitle {
    font-size: 2.4rem;
  }
  .feature-card {
    padding: 60px 40px;
    transform: scale(1.05);
  }
  .feature-icon {
    font-size: 70px;
  }
  .feature-card h4 {
    font-size: 1.6rem;
  }
  .feature-card p {
    font-size: 1.15rem;
  }
}

/* 5120x2880 (5K Ultra Displays) */
@media (min-width: 4501px) {
  .why-choose-us {
    padding: 180px 120px;
    max-width: 2800px;
    margin: 0 auto;
  }
  .why-choose-us h2 {
    font-size: 3.6rem;
  }
  .why-choose-us .subtitle {
    font-size: 2.6rem;
  }
  .feature-card {
    padding: 70px 50px;
    transform: scale(1.1);
  }
  .feature-icon {
    font-size: 80px;
  }
  .feature-card h4 {
    font-size: 1.8rem;
  }
  .feature-card p {
    font-size: 1.2rem;
  }
}







/*facities*/
.location-activities {
    padding: 60px 20px;
    max-width: 1200px; /* Limit overall width for a nice presentation */
    margin: 0 auto;
    text-align: center; /* Center the header content */
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 30px;
    font-weight: normal;
    font-family: 'Georgia', serif;
    color: #ed2427;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block; /* Allows the line under the title */
}

/* Style for the decorative line under the title */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    
    margin: 10px auto 0;
}

.section-subtitle {
    font-size: 18px;
    color: #005a66;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif; /* Subtitle uses a sans-serif font */
}

.cards-container {
    display: flex;
    gap: 30px; /* Space between the cards */
    justify-content: center;
    flex-wrap: wrap; /* Allows cards to stack on smaller screens */
}

.card {
    flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis. Allows 3 cards per row */
    background: white;
    border-radius: 8px;
    overflow: hidden; /* Ensures image corners are rounded correctly */
    text-align: left;
    /* Create the 'floating' effect with a subtle box shadow */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    /* Slightly more pronounced shadow on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}




/* Make card relative for overlay */
.card {
    position: relative;
    overflow: hidden;
}

/* Create an overlay for hover effect */
.card::before {
    content: '';
    position: absolute;
    top: -100%; /* Start hidden above the card */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 90, 102, 0.1); /* Hover color */
    z-index: 0; /* Behind text */
    transition: top 0.6s ease; /* Smooth sliding */
}

/* On hover, slide the overlay down */
.card:hover::before {
    top: 0;
}

/* Make sure card content stays above overlay */
.card-content {
    position: relative;
    z-index: 1;
}

/* Optional: text color change on hover */
.card:hover .card-title {
    color: #005a66;
}
.card:hover .card-description,
.card:hover .card-list li {
    color: #005a66;
}
.card:hover .card-button {
    background-color: #005a66;
    color: white;
    border-color: #005a66;
}

.card-image-box {
    position: relative;
    height: 200px; /* Fixed height for the image area */
}
.card-image-box {
    position: relative; /* This is the reference point for the absolute icon */
    /* ... */
}

.icon-overlay {
    position: absolute;
    bottom: -20px; /* Moves the icon 20px down, outside the image box */
    left: 50%;
    transform: translateX(-50%); /* Centers the icon */
    /* ... other styling for the circle ... */
}
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the box without distortion */
}

/* Style for the circular icon overlay */
.icon-overlay {
    position: absolute;
    bottom: -20px; /* Position it half-out of the image box */
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #005a66; /* Warm accent color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.icon-overlay {
    animation: spin 5s linear infinite; /* Continuous rotation */
}

/* Define the spin animation */
@keyframes spin {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.card-content {
    padding: 30px 20px 20px;
}

.card-title {
    font-size: 20px;
    color: #ed2427;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.card-description {
    font-size: 14px;
    color: #000;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee; /* Separator line before the list */
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card-list li {
    font-size: 14px;
    color: #000;
    margin-bottom: 8px;
    
    /* Custom bullet point (optional - using a subtle line here) */
    position: relative;
    padding-left: 15px;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: #005a66;
}

/* Button Styling (Like a Ghost Button) */
.card-button {
    display: inline-block;
    padding: 8px 15px;
    margin-top: 10px;
    font-size: 13px;
    background-color: #ed2427;
    text-decoration: none;
    color: #ffffff; /* Text color is the accent color */
    border: 1px solid #ed2427; /* Border is the accent color */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

.card-button:hover {
    background-color: #a87e5b; /* Fills in on hover */
    color: white;
}
/* 3D Floating Card Effect */
.cards-container {
    perspective: 1500px; /* Gives depth for all child cards */
}

.card {
    transform-style: preserve-3d; /* Enable 3D transforms */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
    cursor: pointer;
}

.card:hover {
    transform: rotateY(15deg) rotateX(10deg) scale(1.05); /* Tilts card in 3D and scales */
    box-shadow: 0 40px 80px rgba(0,0,0,0.3); /* Deep shadow for floating effect */
}

/* Card Image 3D pop */
.card-image-box {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card:hover .card-image-box {
    transform: translateZ(30px) rotateX(2deg) rotateY(2deg); /* Image pops out */
}

/* Optional: Icon pop out in 3D */
.icon-overlay {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card:hover .icon-overlay {
    transform: translateZ(20px) scale(1.1);
}

/* --- Optional: Media Query for Responsiveness --- */
@media (max-width: 900px) {
    .cards-container {
        flex-direction: column; /* Stack cards vertically on smaller screens */
        align-items: center;
    }

    .card {
        max-width: 450px; /* Limit card width when stacked */
        margin-bottom: 20px;
    }
}








/* Bubbles Container: ensure it covers the full section */
.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Clicks pass through */
  overflow: hidden;
  z-index: 0; /* Behind the cards */
}

/* Individual bubble */
.bubbles-container .bubble {
  position: absolute;
  top: -50px; /* start above section */
  width: 10px;
  height: 10px;
  background: rgba(0, 200, 255, 0.3);
  border-radius: 50%;
  animation: fall linear infinite;
}

/* Falling animation */
@keyframes fall {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(1200px) scale(1); /* fall down */
    opacity: 0;
  }
}
.location-activities {
  position: relative;
}


/* Scroll animation for cards */
.card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
  position: relative;
  z-index: 1; /* Ensure above bubbles */
}

.card.animate {
  opacity: 1;
  transform: translateY(0);
}



/* Tablet & small desktops: max-width 900px */
@media (max-width: 900px) {
  .cards-container {
    flex-direction: column; /* Stack cards vertically */
    align-items: center;
    gap: 25px;
  }

  .card {
    flex: 1 1 100%; /* Make cards take full width */
    max-width: 450px; /* Optional: limit width */
    margin-bottom: 20px;
  }

  .card-image-box {
    height: 180px; /* Smaller image on smaller screens */
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
    padding-bottom: 15px;
  }

  .card-list li {
    font-size: 13px;
  }

  .card-button {
    font-size: 12px;
    padding: 7px 14px;
  }
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
  .location-activities {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
    max-width: 90%;
  }

  .cards-container {
    flex-direction: column; /* Ensure full vertical stack */
    align-items: center;
    gap: 20px;
  }

  .card {
    flex: 1 1 100%; /* Full width cards */
    max-width: 100%;
  }

  .card-image-box {
    height: 150px; /* Smaller images */
  }

  .card-title {
    font-size: 16px;
  }

  .card-description {
    font-size: 12px;
  }

  .card-list li {
    font-size: 12px;
    padding-left: 12px;
  }

  .card-button {
    font-size: 11px;
    padding: 6px 12px;
  }
}



/* ====================== RESPONSIVE OPTIMIZATION ====================== */

/* 1024x600 & 1024x768 (Small laptops & tablets landscape) */
@media (max-width: 1024px) {
  .location-activities {
    padding: 50px 30px;
  }
  .cards-container {
    gap: 25px;
  }
  .card {
    flex: 1 1 45%;
  }
  .card-title {
    font-size: 18px;
  }
  .card-description {
    font-size: 13px;
  }
}

/* 1280x800 (Mid-range laptop screens) */
@media (max-width: 1280px) {
  .location-activities {
    padding: 60px 40px;
  }
  .cards-container {
    gap: 30px;
  }
  .card-title {
    font-size: 19px;
  }
  .card-description {
    font-size: 14px;
  }
}

/* 1366x768 (Standard laptop size) */
@media (max-width: 1366px) {
  .location-activities {
    padding: 70px 50px;
  }
  .card {
    flex: 1 1 30%;
  }
  .card-title {
    font-size: 20px;
  }
}

/* 1440x900 (Large laptop) */
@media (max-width: 1440px) {
  .cards-container {
    gap: 35px;
  }
  .card-content {
    padding: 30px;
  }
  .card-description {
    font-size: 15px;
  }
}

/* 1680x1050 (Wide laptop/monitor) */
@media (max-width: 1680px) {
  .location-activities {
    padding: 80px 70px;
  }
  .card {
    max-width: 350px;
  }
}

/* 1920x1080 & 1920x1200 (Full HD) */
@media (max-width: 1920px) {
  .location-activities {
    padding: 100px 80px;
  }
  .section-title {
    font-size: 34px;
  }
  .section-subtitle {
    font-size: 20px;
  }
  .card-title {
    font-size: 22px;
  }
  .card-description {
    font-size: 15px;
  }
}

/* 2560x1440 (2K QHD displays) */
@media (max-width: 2560px) {
  .location-activities {
    padding: 120px 100px;
  }
  .section-title {
    font-size: 38px;
  }
  .section-subtitle {
    font-size: 22px;
  }
  .card {
    flex: 1 1 22%;
    max-width: 400px;
  }
  .card-title {
    font-size: 24px;
  }
  .card-description {
    font-size: 16px;
  }
}

/* 3840x2160 (4K UHD) */
@media (max-width: 3840px) {
  .location-activities {
    padding: 150px 160px;
  }
  .section-title {
    font-size: 42px;
  }
  .section-subtitle {
    font-size: 24px;
  }
  .card-title {
    font-size: 26px;
  }
  .card-description {
    font-size: 18px;
  }
  .card-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}

/* 4096x2304 (DCI 4K displays) */
@media (max-width: 4096px) {
  .location-activities {
    padding: 160px 180px;
  }
  .cards-container {
    gap: 50px;
  }
  .card {
    max-width: 420px;
  }
}

/* 5120x2880 (5K Retina displays) */
@media (max-width: 5120px) {
  .location-activities {
    padding: 180px 200px;
  }
  .section-title {
    font-size: 48px;
  }
  .section-subtitle {
    font-size: 26px;
  }
  .card-title {
    font-size: 28px;
  }
  .card-description {
    font-size: 20px;
  }
}






















/* New container for the background effect */
.main-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('assets/img/image9.png') no-repeat center center/cover;
    position: relative;
    padding: 20px;
}

/* Dark overlay */
.overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Main card */
.card-wrapper {
    display: flex;
    width: 60%;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    overflow: hidden;
}

/* Image column */
.left-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.left-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text column */
.right-panel {
    flex: 1;
    padding: 30px 40px;
}

.heading {
    font-family: 'Times New Roman', serif;
    font-size: 2.2em;
    font-weight: bold;
    color: #ed2427;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-content {
    font-size: 0.95em;
    line-height: 1.6;
    color: #444;
}
.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the area like the image */
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .card-wrapper {
        flex-direction: column;
        width: 100%;
        margin: 20px;
    }

    .right-panel {
        padding: 20px;
    }

    .heading {
        font-size: 1.8em;
    }
}


/* ====================== ADVANCED RESPONSIVE SCALING ====================== */

/* 1024x600 & 1024x768 — Small laptops/tablets */
@media (max-width: 1024px) {
  .card-wrapper {
    width: 80%;
    flex-direction: column;
  }
  .right-panel {
    padding: 25px 30px;
  }
  .heading {
    font-size: 1.9em;
  }
  .text-content {
    font-size: 0.9em;
  }
}

/* 1280x800 — Medium laptops */
@media (max-width: 1280px) {
  .card-wrapper {
    width: 75%;
  }
  .heading {
    font-size: 2em;
  }
  .text-content {
    font-size: 1em;
  }
}

/* 1366x768 — Standard laptop size */
@media (max-width: 1366px) {
  .card-wrapper {
    width: 70%;
  }
  .heading {
    font-size: 2.1em;
  }
  .text-content {
    font-size: 1.05em;
  }
}

/* 1440x900 — Large laptops */
@media (max-width: 1440px) {
  .card-wrapper {
    width: 65%;
  }
  .heading {
    font-size: 2.2em;
  }
  .text-content {
    font-size: 1.1em;
  }
}

/* 1680x1050 — Wide laptop displays */
@media (max-width: 1680px) {
  .card-wrapper {
    width: 60%;
  }
  .heading {
    font-size: 2.3em;
  }
}

/* 1920x1080 & 1920x1200 — Full HD screens */
@media (max-width: 1920px) {
  .main-wrapper {
    padding: 40px;
  }
  .card-wrapper {
    width: 55%;
  }
  .heading {
    font-size: 2.4em;
  }
  .text-content {
    font-size: 1.1em;
    line-height: 1.7;
  }
}

/* 2560x1440 — 2K / QHD screens */
@media (max-width: 2560px) {
  .main-wrapper {
    padding: 60px;
  }
  .card-wrapper {
    width: 50%;
  }
  .heading {
    font-size: 2.6em;
  }
  .text-content {
    font-size: 1.15em;
  }
}

/* 3840x2160 — 4K UHD displays */
@media (max-width: 3840px) {
  .main-wrapper {
    padding: 100px;
  }
  .card-wrapper {
    width: 45%;
  }
  .heading {
    font-size: 3em;
  }
  .text-content {
    font-size: 1.25em;
  }
}

/* 4096x2304 — DCI 4K displays */
@media (max-width: 4096px) {
  .main-wrapper {
    padding: 120px;
  }
  .card-wrapper {
    width: 42%;
  }
  .heading {
    font-size: 3.2em;
  }
  .text-content {
    font-size: 1.3em;
  }
}

/* 5120x2880 — 5K Retina / ultra-wide screens */
@media (max-width: 5120px) {
  .main-wrapper {
    padding: 150px;
  }
  .card-wrapper {
    width: 40%;
  }
  .heading {
    font-size: 3.4em;
  }
  .text-content {
    font-size: 1.4em;
  }
}










/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background: #f9f6f2;
  text-align: center;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #ed2427;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #ed2427;
  color: #fff;
  margin-top: 18px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: #c71c1f;
}

/* Gallery wrapper */
.gallery-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.gallery-track img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-track img:hover {
  transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* adjust depending on number of images */
}

/* ========================= ADVANCED RESPONSIVE SCALING ========================= */

/* 1024x600 & 1024x768 — Small laptops / tablets */
@media (max-width: 1024px) {
  .gallery-section {
    padding: 50px 15px;
  }
  .gallery-header h2 {
    font-size: 2rem;
  }
  .gallery-header p {
    font-size: 0.9rem;
  }
  .gallery-track img {
    width: 200px;
    height: 130px;
    margin-right: 15px;
  }
}

/* 1280x800 — Medium laptop screens */
@media (max-width: 1280px) {
  .gallery-header h2 {
    font-size: 2.1rem;
  }
  .gallery-header p {
    font-size: 0.95rem;
  }
  .gallery-track img {
    width: 220px;
    height: 135px;
  }
}

/* 1366x768 — Standard laptops */
@media (max-width: 1366px) {
  .gallery-section {
    padding: 55px 20px;
  }
  .gallery-header h2 {
    font-size: 2.2rem;
  }
  .gallery-header p {
    font-size: 1rem;
  }
  .gallery-track img {
    width: 230px;
    height: 140px;
  }
}

/* 1440x900 — Large laptops */
@media (max-width: 1440px) {
  .gallery-section {
    padding: 60px 25px;
  }
  .gallery-header h2 {
    font-size: 2.3rem;
  }
  .gallery-track img {
    width: 240px;
    height: 145px;
  }
}

/* 1680x1050 — Wide laptop screens */
@media (max-width: 1680px) {
  .gallery-header h2 {
    font-size: 2.4rem;
  }
  .gallery-track img {
    width: 250px;
    height: 150px;
  }
}

/* 1920x1080 & 1920x1200 — Full HD displays */
@media (max-width: 1920px) {
  .gallery-section {
    padding: 70px 30px;
  }
  .gallery-header h2 {
    font-size: 2.6rem;
  }
  .gallery-header p {
    font-size: 1.05rem;
  }
  .gallery-track img {
    width: 260px;
    height: 160px;
  }
  .read-more-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

/* 2560x1440 — 2K / QHD screens */
@media (max-width: 2560px) {
  .gallery-section {
    padding: 90px 40px;
  }
  .gallery-header h2 {
    font-size: 2.8rem;
  }
  .gallery-header p {
    font-size: 1.1rem;
  }
  .gallery-track img {
    width: 280px;
    height: 170px;
  }
  .read-more-btn {
    font-size: 1.1rem;
  }
}

/* 3840x2160 — 4K UHD screens */
@media (max-width: 3840px) {
  .gallery-section {
    padding: 120px 60px;
  }
  .gallery-header h2 {
    font-size: 3.2rem;
  }
  .gallery-header p {
    font-size: 1.2rem;
  }
  .gallery-track img {
    width: 320px;
    height: 190px;
  }
  .read-more-btn {
    font-size: 1.2rem;
    padding: 14px 32px;
  }
}

/* 4096x2304 — DCI 4K displays */
@media (max-width: 4096px) {
  .gallery-section {
    padding: 130px 70px;
  }
  .gallery-header h2 {
    font-size: 3.4rem;
  }
  .gallery-header p {
    font-size: 1.25rem;
  }
  .gallery-track img {
    width: 340px;
    height: 200px;
  }
}

/* 5120x2880 — 5K / Retina displays */
@media (max-width: 5120px) {
  .gallery-section {
    padding: 160px 100px;
  }
  .gallery-header h2 {
    font-size: 3.8rem;
  }
  .gallery-header p {
    font-size: 1.3rem;
  }
  .gallery-track img {
    width: 380px;
    height: 220px;
  }
  .read-more-btn {
    font-size: 1.3rem;
    padding: 16px 38px;
  }
}
















/* Section Title */
.places-section {
  text-align: center;
  padding: 60px 20px;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ed2427;
}

.section-title .star {
  color: #005a66;
  margin-right: 5px;
}

.section-title p {
  font-size: 15px;
  color: #555;
  margin-top: 8px;
}

/* Card Container */
.places-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Each Card */
.place-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Image Box */
.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-card:hover img {
  transform: scale(1.05);
}

/* Red Tag */
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e02929;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  padding: 6px 14px;
}

/* Card Content */
.card-content {
  text-align: left;
  padding: 20px;
}

.card-content h3 {
  font-size: 17px;
  color: #ed2427;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

/* ===================== RESPONSIVE MEDIA QUERIES ===================== */

/* 1024x600 & 1024x768 — Small laptops and tablets */
@media (max-width: 1024px) {
  .places-section {
    padding: 40px 15px;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title p {
    font-size: 13px;
  }
  .places-container {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .img-box img {
    height: 180px;
  }
  .card-content h3 {
    font-size: 15px;
  }
  .card-content p {
    font-size: 13px;
  }
}

/* 1280x800 — Medium laptops */
@media (max-width: 1280px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
  .places-container {
    gap: 25px;
  }
  .img-box img {
    height: 200px;
  }
}

/* 1366x768 — Standard laptops */
@media (max-width: 1366px) {
  .section-title h2 {
    font-size: 1.7rem;
  }
  .section-title p {
    font-size: 14px;
  }
  .places-container {
    gap: 28px;
  }
  .img-box img {
    height: 210px;
  }
  .card-content h3 {
    font-size: 16px;
  }
}

/* 1440x900 — Large laptop screens */
@media (max-width: 1440px) {
  .places-section {
    padding: 50px 20px;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .card-content p {
    font-size: 14px;
  }
}

/* 1680x1050 — Wide laptop displays */
@media (max-width: 1680px) {
  .places-section {
    padding: 55px 25px;
  }
  .section-title h2 {
    font-size: 1.9rem;
  }
  .img-box img {
    height: 220px;
  }
}

/* 1920x1080 & 1920x1200 — Full HD */
@media (max-width: 1920px) {
  .places-section {
    padding: 60px 30px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .section-title p {
    font-size: 15px;
  }
  .card-content h3 {
    font-size: 17px;
  }
  .card-content p {
    font-size: 14.5px;
  }
}

/* 2560x1440 — 2K (QHD) screens */
@media (max-width: 2560px) {
  .places-section {
    padding: 80px 40px;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .section-title p {
    font-size: 1rem;
  }
  .places-container {
    gap: 35px;
  }
  .img-box img {
    height: 240px;
  }
  .card-content h3 {
    font-size: 18px;
  }
  .card-content p {
    font-size: 15px;
  }
}

/* 3840x2160 — 4K UHD */
@media (max-width: 3840px) {
  .places-section {
    padding: 100px 60px;
  }
  .section-title h2 {
    font-size: 2.5rem;
  }
  .section-title p {
    font-size: 1.1rem;
  }
  .places-container {
    gap: 40px;
  }
  .img-box img {
    height: 280px;
  }
  .card-content h3 {
    font-size: 19px;
  }
  .card-content p {
    font-size: 16px;
  }
}

/* 4096x2304 — DCI 4K */
@media (max-width: 4096px) {
  .places-section {
    padding: 110px 70px;
  }
  .section-title h2 {
    font-size: 2.6rem;
  }
  .places-container {
    max-width: 1500px;
  }
  .img-box img {
    height: 300px;
  }
  .card-content h3 {
    font-size: 20px;
  }
}

/* 5120x2880 — 5K / Retina displays */
@media (max-width: 5120px) {
  .places-section {
    padding: 130px 100px;
  }
  .section-title h2 {
    font-size: 2.8rem;
  }
  .section-title p {
    font-size: 1.2rem;
  }
  .places-container {
    max-width: 1800px;
    gap: 50px;
  }
  .img-box img {
    height: 320px;
  }
  .card-content h3 {
    font-size: 21px;
  }
  .card-content p {
    font-size: 17px;
  }
}












/* Fixed contact buttons */
.fixed-contact {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #00aff5;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, background-color 0.3s;
}

.contact-btn:hover {
  transform: scale(1.1);
  background-color: #008ecf;
}

.contact-btn.whatsapp {
  background-color: #25d366;
}

.contact-btn.whatsapp:hover {
  background-color: #1ebe5b;
}


/* ===================== RESPONSIVE MEDIA QUERIES ===================== */

/* 1024x600 & 1024x768 — Small laptops/tablets */
@media (max-width: 1024px) {
  .fixed-contact {
    right: 15px;
    bottom: 25px;
    gap: 10px;
  }
  .contact-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* 1280x800 — Medium laptops */
@media (max-width: 1280px) {
  .fixed-contact {
    right: 18px;
    bottom: 30px;
    gap: 12px;
  }
  .contact-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* 1366x768 — Standard laptops */
@media (max-width: 1366px) {
  .fixed-contact {
    right: 20px;
    bottom: 35px;
    gap: 13px;
  }
  .contact-btn {
    width: 52px;
    height: 52px;
    font-size: 23px;
  }
}

/* 1440x900 — Large laptop screens */
@media (max-width: 1440px) {
  .fixed-contact {
    right: 22px;
    bottom: 40px;
  }
  .contact-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

/* 1680x1050 — Wide laptop displays */
@media (max-width: 1680px) {
  .fixed-contact {
    right: 25px;
    bottom: 45px;
  }
  .contact-btn {
    width: 58px;
    height: 58px;
    font-size: 25px;
  }
}

/* 1920x1080 & 1920x1200 — Full HD */
@media (max-width: 1920px) {
  .fixed-contact {
    right: 28px;
    bottom: 50px;
  }
  .contact-btn {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}

/* 2560x1440 — 2K (QHD) screens */
@media (max-width: 2560px) {
  .fixed-contact {
    right: 35px;
    bottom: 55px;
    gap: 18px;
  }
  .contact-btn {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}

/* 3840x2160 — 4K UHD */
@media (max-width: 3840px) {
  .fixed-contact {
    right: 40px;
    bottom: 60px;
    gap: 20px;
  }
  .contact-btn {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
}

/* 4096x2304 — DCI 4K */
@media (max-width: 4096px) {
  .fixed-contact {
    right: 45px;
    bottom: 70px;
  }
  .contact-btn {
    width: 85px;
    height: 85px;
    font-size: 38px;
  }
}

/* 5120x2880 — 5K / Retina displays */
@media (max-width: 5120px) {
  .fixed-contact {
    right: 60px;
    bottom: 80px;
    gap: 25px;
  }
  .contact-btn {
    width: 95px;
    height: 95px;
    font-size: 42px;
  }
}









/*footer*/
.jurilex-footer {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
}

.jurilex-footer h5 {
  color: #00aff5;
  margin-bottom: 15px;
  font-weight: 600;
}

.jurilex-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.jurilex-footer a:hover {
  color: #00aff5;
  text-decoration: underline;
}

.jurilex-footer p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .jurilex-footer iframe {
    height: 150px;
  }
}


.custom-footer {
  background: #005a66;
  color: #ccc;
  padding-top: 40px;
  font-family: Arial, sans-serif;
}

/* Flex container for 5 columns */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 40px;
}

.footer-col {
  flex: 1;
  min-width: 0;
}

.footer-col h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #005a66;
  margin-top: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff9800;
  padding-left: 5px;
}

.footer-col .social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-col .social-links a:hover {
  color: #ff9800;
}

/* Map column style */
.footer-map iframe {
  border-radius: 5px;
  overflow: hidden;
}

.footer-bottom {
  background: #005a66;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
}
.footer-col img.footer-logo {
  display: block;
  margin-bottom: 10px;
}

.footer-col h5 {
  color: #ed2427;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

/* Keep in one row even on small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .footer-col {
    min-width: 250px;
  }
}
.designer-credit {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

.designer-credit a {
  color: #ffffff;
  text-decoration: underline;
  
  font-weight: 500;
  transition: color 0.3s ease;
}

.designer-credit a:hover {
  color: #ed2427;
  text-decoration: underline;
}
/* Mobile-friendly footer layout */
@media (max-width: 768px) {
  .footer-container {
    flex-wrap: wrap;           /* Allow wrapping to new lines */
    overflow-x: visible;       /* Remove horizontal scroll */
    gap: 20px;
    padding: 0 20px;
  }

  .footer-col {
    flex: 1 1 100%;            /* Full width for each column */
    min-width: 100%;
  }

  .footer-map iframe {
    width: 100%;               /* Make map fit mobile width */
    height: 200px;
  }
}


/* ===================== RESPONSIVE FOOTER MEDIA QUERIES ===================== */

/* 1024x600 & 1024x768 — Small laptops / tablets */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 20px;
  }
  .footer-col {
    flex: 1 1 45%;
    min-width: 300px;
  }
  .footer-col h5 {
    font-size: 16px;
  }
  .footer-col p, 
  .footer-col ul li a {
    font-size: 13px;
  }
  .footer-logo {
    width: 120px;
  }
  .footer-map iframe {
    height: 200px;
  }
}

/* 1280x800 — Medium laptops */
@media (max-width: 1280px) {
  .footer-container {
    gap: 25px;
    padding: 0 30px;
  }
  .footer-col h5 {
    font-size: 17px;
  }
  .footer-col p {
    font-size: 13.5px;
  }
}

/* 1366x768 — Standard laptop displays */
@media (max-width: 1366px) {
  .footer-container {
    padding: 0 35px;
  }
  .footer-col h5 {
    font-size: 17px;
  }
  .footer-col p {
    font-size: 14px;
  }
}

/* 1440x900 — Large laptop screens */
@media (max-width: 1440px) {
  .footer-container {
    gap: 30px;
  }
  .footer-col h5 {
    font-size: 18px;
  }
}

/* 1680x1050 — Wide laptop / desktop */
@media (max-width: 1680px) {
  .footer-container {
    padding: 0 50px;
  }
  .footer-col h5 {
    font-size: 18px;
  }
  .footer-col p {
    font-size: 15px;
  }
}

/* 1920x1080 & 1920x1200 — Full HD displays */
@media (max-width: 1920px) {
  .footer-container {
    gap: 40px;
    padding: 0 60px;
  }
  .footer-col h5 {
    font-size: 19px;
  }
  .footer-col p {
    font-size: 15.5px;
  }
  .footer-logo {
    width: 160px;
  }
}

/* 2560x1440 — 2K (QHD) screens */
@media (max-width: 2560px) {
  .footer-container {
    gap: 50px;
    padding: 0 80px;
  }
  .footer-col h5 {
    font-size: 20px;
  }
  .footer-col p {
    font-size: 16px;
  }
  .footer-logo {
    width: 180px;
  }
}

/* 3840x2160 — 4K UHD */
@media (max-width: 3840px) {
  .footer-container {
    gap: 60px;
    padding: 0 100px;
  }
  .footer-col h5 {
    font-size: 22px;
  }
  .footer-col p {
    font-size: 17px;
  }
  .footer-logo {
    width: 200px;
  }
}

/* 4096x2304 — DCI 4K monitors */
@media (max-width: 4096px) {
  .footer-container {
    gap: 70px;
    padding: 0 120px;
  }
  .footer-col h5 {
    font-size: 23px;
  }
  .footer-col p {
    font-size: 17.5px;
  }
}

/* 5120x2880 — 5K Retina / Ultra-HD displays */
@media (max-width: 5120px) {
  .footer-container {
    gap: 80px;
    padding: 0 150px;
  }
  .footer-col h5 {
    font-size: 24px;
  }
  .footer-col p {
    font-size: 18px;
  }
  .footer-logo {
    width: 220px;
  }
  .footer-map iframe {
    height: 350px;
  }
}
















/* Banner Section Styles */
.banner-section {
  width: 100%;
  height: 50vh; /* Adjust banner height */
  background: url('assets/img/banner.png') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* Banner Section Styles */
.banner-section {
  width: 100%;
  height: 50vh; /* Default height */
  background: url('assets/img/banner.png') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.2rem;
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* 1024x600 */
@media (max-width: 1024px) and (max-height: 600px) {
  .banner-section {
    height: 55vh;
  }
  .banner-content h1 {
    font-size: 2.2rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
}

/* 1024x768 */
@media (max-width: 1024px) and (max-height: 768px) {
  .banner-section {
    height: 50vh;
  }
  .banner-content h1 {
    font-size: 2.5rem;
  }
  .banner-content p {
    font-size: 1.1rem;
  }
}

/* 1280x800 */
@media (max-width: 1280px) {
  .banner-content h1 {
    font-size: 2.6rem;
  }
  .banner-content p {
    font-size: 1.1rem;
  }
}

/* 1366x768 */
@media (max-width: 1366px) {
  .banner-section {
    height: 60vh;
  }
  .banner-content h1 {
    font-size: 2.8rem;
  }
}

/* 1440x900 */
@media (max-width: 1440px) {
  .banner-section {
    height: 60vh;
  }
  .banner-content h1 {
    font-size: 3rem;
  }
  .banner-content p {
    font-size: 1.2rem;
  }
}

/* 1680x1050 */
@media (max-width: 1680px) {
  .banner-content h1 {
    font-size: 3.2rem;
  }
  .banner-content p {
    font-size: 1.3rem;
  }
}

/* 1920x1080 & 1920x1200 */
@media (max-width: 1920px) {
  .banner-section {
    height: 65vh;
  }
  .banner-content h1 {
    font-size: 3.5rem;
  }
  .banner-content p {
    font-size: 1.4rem;
  }
}

/* 2560x1440 */
@media (max-width: 2560px) {
  .banner-section {
    height: 70vh;
  }
  .banner-content h1 {
    font-size: 4rem;
  }
  .banner-content p {
    font-size: 1.6rem;
  }
}

/* 3840x2160 (4K) */
@media (max-width: 3840px) {
  .banner-section {
    height: 75vh;
  }
  .banner-content h1 {
    font-size: 4.8rem;
  }
  .banner-content p {
    font-size: 1.8rem;
  }
}

/* 4096x2304 (4K DCI) */
@media (max-width: 4096px) {
  .banner-section {
    height: 80vh;
  }
  .banner-content h1 {
    font-size: 5rem;
  }
  .banner-content p {
    font-size: 2rem;
  }
}

/* 5120x2880 (5K) */
@media (max-width: 5120px) {
  .banner-section {
    height: 85vh;
  }
  .banner-content h1 {
    font-size: 5.5rem;
  }
  .banner-content p {
    font-size: 2.2rem;
  }
}




/* Vision Section Styles */
.vision-section {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 100px 0; /* Added top & bottom gap */
  background-color: rgba(0, 0, 0, 0.08);
}

.vision-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  box-shadow: 0 0 60px rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
}

.vision-left {
  flex: 1 1 50%;
  position: relative;
  min-height: 500px;
}

.vision-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-left .vision-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
}

.vision-right {
  flex: 1 1 50%;
  background: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ed2427;
  position: relative;
}

.vision-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  
  margin-top: 10px;
  border-radius: 2px;
}

.vision-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
}

.vision-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vision-card {
  flex: 1 1 45%;
  background: #fffbf5;
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card i {
  font-size: 2rem;
  color: #ed2427;
}

.vision-card h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #005a66;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .vision-container {
    flex-direction: column;
  }

  .vision-left, .vision-right {
    flex: 1 1 100%;
  }

  .vision-right {
    padding: 40px 20px;
  }

  .vision-cards {
    gap: 15px;
  }

  .vision-card {
    flex: 1 1 83%;
  }

  /* Correct image behavior on smaller screens */
  .vision-left {
    min-height: 300px; /* adjust height for stacked layout */
  }

  .vision-left img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
    object-fit: cover;
  }
}


/* ====================== RESPONSIVE BREAKPOINTS ====================== */

/* 1024x600 */
@media (max-width: 1024px) and (max-height: 600px) {
  .vision-section { padding: 60px 0; }
  .vision-title { font-size: 2rem; }
  .vision-description { font-size: 0.9rem; }
  .vision-card { flex: 1 1 100%; padding: 20px; }
  .vision-card i { font-size: 1.5rem; }
}

/* 1024x768 */
@media (max-width: 1024px) and (max-height: 768px) {
  .vision-title { font-size: 2.2rem; }
  .vision-description { font-size: 1rem; }
}

/* 1280x800 */
@media (max-width: 1280px) {
  .vision-right { padding: 50px 30px; }
  .vision-title { font-size: 2.4rem; }
}

/* 1366x768 */
@media (max-width: 1366px) {
  .vision-title { font-size: 2.5rem; }
  .vision-description { font-size: 1.1rem; }
  .vision-card h3 { font-size: 1.1rem; }
}

/* 1440x900 */
@media (max-width: 1440px) {
  .vision-title { font-size: 2.6rem; }
  .vision-description { font-size: 1.1rem; }
}

/* 1680x1050 */
@media (max-width: 1680px) {
  .vision-title { font-size: 2.8rem; }
  .vision-description { font-size: 1.15rem; }
}

/* 1920x1080 & 1920x1200 */
@media (max-width: 1920px) {
  .vision-section { padding: 120px 0; }
  .vision-title { font-size: 3rem; }
  .vision-description { font-size: 1.2rem; }
  .vision-card { padding: 30px; }
  .vision-card i { font-size: 2.2rem; }
}

/* 2560x1440 */
@media (max-width: 2560px) {
  .vision-section { padding: 140px 0; }
  .vision-title { font-size: 3.5rem; }
  .vision-description { font-size: 1.4rem; }
  .vision-card h3 { font-size: 1.4rem; }
  .vision-card i { font-size: 2.5rem; }
}

/* 3840x2160 (4K) */
@media (max-width: 3840px) {
  .vision-section { padding: 180px 0; }
  .vision-title { font-size: 4rem; }
  .vision-description { font-size: 1.6rem; }
  .vision-card { padding: 40px 30px; }
  .vision-card i { font-size: 3rem; }
  .vision-card h3 { font-size: 1.6rem; }
}

/* 4096x2304 (4K DCI) */
@media (max-width: 4096px) {
  .vision-section { padding: 200px 0; }
  .vision-title { font-size: 4.2rem; }
  .vision-description { font-size: 1.8rem; }
}

/* 5120x2880 (5K) */
@media (max-width: 5120px) {
  .vision-section { padding: 220px 0; }
  .vision-title { font-size: 4.5rem; }
  .vision-description { font-size: 2rem; }
  .vision-card i { font-size: 3.5rem; }
  .vision-card h3 { font-size: 1.8rem; }
}

/* Existing Mobile Layout (stacked) */
@media (max-width: 992px) {
  .vision-container { flex-direction: column; }
  .vision-left, .vision-right { flex: 1 1 100%; }
  .vision-right { padding: 40px 20px; }
  .vision-cards { gap: 15px; }
  .vision-card { flex: 1 1 83%; }
  .vision-left { min-height: 300px; }
  .vision-left img { width: 100%; height: auto; object-fit: cover; }
}



/* Mission Section Styles */
.mission-section {
  padding: 100px 20px; /* top & bottom spacing */
  background: #f7f9fc;
  color: #0d1b2a;
}

.mission-header {
  text-align: center;
  margin-bottom: 60px;
}

.mission-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ed2427;
  position: relative;
}

.mission-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.mission-header p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: #333;
}

.mission-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.mission-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card i {
  font-size: 3rem;
  color: #ed2427;
  margin-bottom: 15px;
}

.mission-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #005a66;
}

.mission-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .mission-card {
    flex: 1 1 100%;
  }
}



/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* 1024x600 */
@media (max-width: 1024px) and (max-height: 600px) {
  .mission-section { padding: 60px 15px; }
  .mission-header h2 { font-size: 2rem; }
  .mission-header p { font-size: 0.95rem; }
  .mission-card { max-width: 230px; padding: 20px 15px; }
  .mission-card i { font-size: 2rem; }
}

/* 1024x768 */
@media (max-width: 1024px) and (max-height: 768px) {
  .mission-header h2 { font-size: 2.2rem; }
  .mission-header p { font-size: 1rem; }
}

/* 1280x800 */
@media (max-width: 1280px) {
  .mission-header h2 { font-size: 2.3rem; }
  .mission-card { max-width: 260px; }
}

/* 1366x768 */
@media (max-width: 1366px) {
  .mission-header h2 { font-size: 2.4rem; }
  .mission-header p { font-size: 1rem; }
  .mission-card h3 { font-size: 1.1rem; }
}

/* 1440x900 */
@media (max-width: 1440px) {
  .mission-header h2 { font-size: 2.6rem; }
  .mission-header p { font-size: 1.1rem; }
}

/* 1680x1050 */
@media (max-width: 1680px) {
  .mission-header h2 { font-size: 2.8rem; }
  .mission-header p { font-size: 1.15rem; }
}

/* 1920x1080 & 1920x1200 */
@media (max-width: 1920px) {
  .mission-section { padding: 120px 30px; }
  .mission-header h2 { font-size: 3rem; }
  .mission-header p { font-size: 1.2rem; }
  .mission-card { max-width: 300px; padding: 35px 25px; }
  .mission-card i { font-size: 3.2rem; }
}

/* 2560x1440 */
@media (max-width: 2560px) {
  .mission-section { padding: 140px 40px; }
  .mission-header h2 { font-size: 3.5rem; }
  .mission-header p { font-size: 1.4rem; }
  .mission-card { max-width: 320px; padding: 40px 30px; }
  .mission-card i { font-size: 3.5rem; }
  .mission-card h3 { font-size: 1.3rem; }
}

/* 3840x2160 (4K UHD) */
@media (max-width: 3840px) {
  .mission-section { padding: 180px 60px; }
  .mission-header h2 { font-size: 4rem; }
  .mission-header p { font-size: 1.6rem; }
  .mission-card { max-width: 360px; padding: 50px 35px; }
  .mission-card i { font-size: 4rem; }
  .mission-card h3 { font-size: 1.5rem; }
  .mission-card p { font-size: 1.3rem; }
}

/* 4096x2304 (4K DCI) */
@media (max-width: 4096px) {
  .mission-section { padding: 200px 80px; }
  .mission-header h2 { font-size: 4.3rem; }
  .mission-header p { font-size: 1.8rem; }
  .mission-card { max-width: 400px; }
}

/* 5120x2880 (5K) */
@media (max-width: 5120px) {
  .mission-section { padding: 220px 100px; }
  .mission-header h2 { font-size: 4.8rem; }
  .mission-header p { font-size: 2rem; }
  .mission-card { max-width: 420px; padding: 60px 40px; }
  .mission-card i { font-size: 4.5rem; }
  .mission-card h3 { font-size: 1.8rem; }
  .mission-card p { font-size: 1.4rem; }
}

/* Mobile Layout (below 768px) */
@media (max-width: 768px) {
  .mission-card { flex: 1 1 100%; max-width: 100%; }
  .mission-header h2 { font-size: 2rem; }
  .mission-header p { font-size: 1rem; }
}












































/*gallery section*/
.custom-gallery-section {
  padding: 40px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: -93px;
}

.custom-gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 10px;
  box-sizing: border-box;
}

.custom-gallery-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}


.custom-gallery-item video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}






.custom-gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  transition: transform 0.4s ease;
}

.custom-gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* + icon overlay */
.custom-gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

.custom-gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .custom-gallery-container {
    grid-template-columns: 1fr;
  }
}

/* Modal overlay */
.image-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

/* Modal image */
.image-modal img.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
  user-select: none;
}

/* Close button (top-right X) */
.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  z-index: 1010;
}
.modal-close:hover {
  color: #bbb;
}

/* Next and Prev buttons */
.modal-next,
.modal-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  border: none;
  font-size: 48px;
  color: white;
  font-weight: bold;
  padding: 0 15px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 1010;
}

.modal-next:hover,
.modal-prev:hover {
  background: rgba(255,255,255,0.7);
  color: black;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}


.services-modern {
    text-align: center;
    padding: 50px 20px;
  
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1000px;
    
    transition: transform 0.3s ease;
}

.services-modern:hover {
    transform: translateY(-5px); /* subtle hover lift effect */
}

.services-modern h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #ed2427;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Optional underline effect */
.services-modern h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
  
    margin: 10px auto 0;
    border-radius: 2px;
}












.contact-container {
            display: flex;
            background-color: white;
            padding: 40px;
            border-radius: 8px; /* Slight rounding might be present */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
            max-width: 1200px;
            width: 100%;
                margin-left: 208px;
        }

        /* Responsive Breakpoint for Stacking Columns */
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                padding: 20px;
            }
        }

        /* Left Section: Contact Information */
        .contact-info {
            flex: 1; /* Takes up half the space */
            padding-right: 40px;
            border-right: 1px solid #eee; /* Visual separator (optional) */
        }
        @media (max-width: 900px) {
             .contact-info {
                padding-right: 0;
                border-right: none;
                border-bottom: 1px solid #eee; /* Separator for mobile */
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
        }

        /* Right Section: Send Us a Message (Form) */
        .send-message {
            flex: 1; /* Takes up half the space */
            padding-left: 40px;
        }
        @media (max-width: 900px) {
            .send-message {
                padding-left: 0;
            }
        }

        /* Headings Styling */
        h1 {
            font-size: 32px;
            font-weight: bold;
            color: #ed2427;
            margin-top: 0;
            margin-bottom: 20px;
        }

        /* Contact Details List Styling */
        .contact-details {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 16px;
            color: #000;
        }

        /* Icon Styling (using a placeholder for icons) */
        .icon {
            margin-right: 10px;
            font-size: 20px;
            width: 25px;
            text-align: center;
            /* Placeholder styles - In a real project, use FontAwesome or SVG */
            color: #a00; /* Example color for the icon indicators */
        }
        .icon.location::before { content: '📍'; }
        .icon.phone::before { content: '📞'; }
        .icon.mail::before { content: '✉️'; }
        .icon.mobile::before { content: '📱'; }
        .icon.clock::before { content: '🕒'; }

        /* Link Styling */
        .contact-details a {
            color: green; /* Mimics a common link/accent color */
            text-decoration: none;
            margin-top: -17px;
        }
        .contact-details a:hover {
            text-decoration: underline;
        }

        /* Map Placeholder Styling */
        .map-placeholder {
            margin-top: 20px;
            height: 300px; /* Approximate map height */
            background-color: #e0e0e0;
            border: 1px solid #ccc;
            position: relative;
            /* Mimics the text overlay inside the map area */
        }
        .map-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .map-info {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
        }
        .view-map-link {
            position: absolute;
            top: 10px;
            left: 10px;
            color: blue;
            background-color: white;
            padding: 5px 10px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
        }


        /* Form Styling */
        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-weight: bold;
            color: #005a66;
            margin-bottom: 5px;
            font-size: 16px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #000000;
            border-radius: 4px;
            box-sizing: border-box; /* Includes padding and border in the element's total width and height */
            font-size: 16px;
            color: #000000;
        }

        textarea {
            resize: vertical;
            min-height: 150px; /* Approximate height from the image */
        }

        input::placeholder,
        textarea::placeholder {
            color: #aaa;
            font-style: italic;
        }

        /* Submit Button Styling */
        .submit-button {
            width: 100%;
            padding: 15px;
            background-color: #005a66; /* Dark blue/black as seen in the image */
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .submit-button:hover {
            background-color: #1a3f63;
        }



/* Responsive Styling for Tablets & Mobile */
@media (max-width: 900px) {
    /* Stack the left and right sections */
    .contact-container {
        flex-direction: column;
        padding: 20px;
        margin-left: 0; /* Remove fixed left margin for mobile */
    }

    /* Left Section */
    .contact-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    /* Right Section (Form) */
    .send-message {
        padding-left: 0;
    }

    /* Headings smaller on mobile */
    h1 {
        font-size: 26px;
        text-align: center;
        margin-bottom: 15px;
    }

    /* Contact Details */
    .contact-details li {
        font-size: 15px;
        gap: 8px;
    }

    .contact-details .icon {
        font-size: 18px;
        width: 22px;
    }

    /* Map Placeholder */
    .map-placeholder {
        height: 250px;
    }

    .map-info, .view-map-link {
        font-size: 12px;
        padding: 4px 8px;
    }

    /* Form Elements */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 15px;
        padding: 10px;
    }

    label {
        font-size: 14px;
    }

    .submit-button {
        font-size: 16px;
        padding: 12px;
    }
}

/* Further adjustments for small phones */
@media (max-width: 500px) {
    .contact-container {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    .contact-details li {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-details .icon {
        margin-bottom: 5px;
    }

    .send-message {
        margin-top: 20px;
    }

    .map-placeholder {
        height: 200px;
    }
}
/* CSS */
.whatsapp-container {
    display: flex;
    justify-content: center; 
    margin: 20px 0;
}

/* WhatsApp link layout */
.whatsapp-link {
    display: inline-flex;     
    align-items: center;      
    gap: 8px;                
    text-decoration: none;    
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s, color 0.2s;
}

/* WhatsApp icon (green) */
.whatsapp-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* WhatsApp icon - Green */
.whatsapp-icon {
    color: #25D366; /* WhatsApp green */
    font-size: 20px;
}

/* WhatsApp number - Black */
.whatsapp-number {
    color: #000000; /* Black text */
    font-size: 16px;
    font-weight: 500;
}

/* Optional hover effect */
.whatsapp-link:hover .whatsapp-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}
