/* ---------------------- Nav bar -------------------------- */
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.nav-bar {
    width: 100%;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.navbar-title {
    color: #00B98E;
    font-size: 24px;
    font-weight: bold;
}

/* Links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #0E2E50;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #00B98E;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-size: 16px;
    color: #0E2E50;
    cursor: pointer;
    font-weight: 500;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
    min-width: 150px;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px;
    color: #0E2E50;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #00B98E;
    color: white;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Button */
.btn-green {
    padding: 10px 20px;
    background-color: #00B98E;
    color: white;
    font-size: 14px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-green:hover {
    background-color: #009472;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #0E2E50;
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}


/* ---------------header section ------------------------ */

/* Global Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Section */
.header-section {
    background-color: white;
    padding: 50px 0;
    margin-top: 50px;
    height:auto;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Left Side: Text Content */
.header-content {
    width: 50%;
    padding: 20px;
}

.header-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0E2E50;
    margin-bottom: 20px;
}

.text-green {
    color: #00B98E;
}

.header-text {
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.btn-green {
    display: inline-block;
    padding: 12px 25px;
    background-color: #00B98E;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: #009472;
}

/* Right Side: Image (Carousel) */
.image-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00B98E;
    color: white;
    border: none;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #009472;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-content,
    .image-container {
        width: 100%;
    }
}

/* ------------------------------- about section ---------------------- */
/* General Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
}

/* Main Container */
.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

/* Flexbox Grid */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.flex-half {
    width: 100%;
}

@media (min-width: 992px) {
    .flex-half {
        width: 48%;
    }
}

/* Image Styling */
.image-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Image Overlay Effect */
.image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #00B98E;
    transform: skew(20deg);
    z-index: 1;
}

.image-wrapper img {
    position: relative;
    z-index: 2;
}

/* Headings */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #0E2E50;
    margin-bottom: 20px;
}

/* Paragraph */
.text-content {
    margin-bottom: 15px;
    color: #555;
}

/* List Styling */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 10px;
}

.icon-primary {
    color: #00B98E;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Button Styling */
.custom-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

.btn-green {
    background-color: #00B98E;
    color: white;
}

.btn-green:hover {
    background-color: #009472;
}

/* Responsive */
@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .flex-half {
        width: 100%;
    }

    .custom-list-item {
        justify-content: center;
    }
}

/* ----------------------- Aminities section --------------------- */
/* Amenities Section */
.amenities-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #2c3e50;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

/* Amenity Item */
.amenity-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.amenity-item i {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Text Styling */
.amenity-item p {
    font-size: 14px;
    color: #444;
    margin: 0;
}

/* View More Button */
.view-more-btn {
    padding: 12px 25px;
    background: linear-gradient(to right, #ff4d79, #6a5acd);
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.view-more-btn:hover {
    background: linear-gradient(to right, #6a5acd, #ff4d79);
    transform: scale(1.05);
}

/* ------------------------ who is this for -------------------- */

/* :root {
    --primary: #00B98E;
    --dark: #0E2E50;
    --light-bg: #F8F9FA;
} */

.who-this-for {
    background: #F8F9FA;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #0E2E50;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #00B98E;
    margin: 10px auto;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.grid-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item i {
    font-size: 40px;
    color: #00B98E;
    margin-bottom: 15px;
}

.grid-item h3 {
    font-size: 20px;
    color: #0E2E50;
    margin-bottom: 10px;
}

.grid-item p {
    font-size: 16px;
    color: #666;
}


/* ------------------------------------ Call ----------------------------------- */

/* :root {
    --primary: #00B98E;
    --dark: #0E2E50;
    --light-bg: #F8F9FA;
    --border-color: rgba(0, 185, 142, 0.3);
} */

.call-to-action {
    padding: 60px 0;
    background: #F8F9FA;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    background: #fff;
    border: 8px solid rgba(0, 185, 142, 0.3);
    border-radius: 10px;
    padding: 5px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; /* Ensures better spacing */
    gap: 20px;
    border-radius: 10px;
}


/* Columns */
.col {
    flex: 1;
    min-width: 280px; /* Works better on smaller screens */
}

/* Image Styling */
.left img {
    width: 100%;
    max-width: 250px; /* Prevents over-sizing */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* Text Section */
.right h1 {
    font-size: 28px;
    color: #0E2E50;
    margin-bottom: 15px;
}

.right p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Button Section */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Buttons */
.btn-primary,
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centers text & icon */
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevents text wrapping */
}

.btn-primary {
    background: #00B98E;
}

.btn-dark {
    background:#0E2E50;
}

.btn-primary:hover {
    background: #008f75;
}

.btn-dark:hover {
    background: #09213c;
}

.btn-primary i,
.btn-dark i {
    margin-right: 8px;
}

/* 🔥 FULLY RESPONSIVE - Works on All Screens */
@media (max-width: 1024px) {
    .row {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column; /* Stacks buttons on mobile */
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-dark {
        width: 90%; /* Makes buttons full-width on smaller screens */
        text-align: center;
    }

    .left img {
        width: 80%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-dark {
        font-size: 14px;
        padding: 10px 16px;
    }

    .right h1 {
        font-size: 24px;
    }
}



/* --------------------- Testmonial Sections ---------------------- */

/* :root {
    --primary: #00B98E;
    --dark: #0E2E50;
    --light-bg: #F8F9FA;
    --border-color: rgba(0, 185, 142, 0.3);
} */

.testimonials-section {
    padding: 60px 20px;
    background: #EFFDF5;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #0E2E50;
    margin-bottom: 40px;
  }
  
  .testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
  }
  
  .testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
  }
  
  .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .client-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #0E2E50;
  }
  
  .client-info span {
    font-size: 0.9rem;
    color: #888;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .testimonials-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  
/* ----------------------- Footer --------------------- */

:root {
    --primary: #00B98E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

/* Footer Background & Text */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 30px;
}

h5 {
    color: var(--light);
    margin-bottom: 15px;
}

/* Quick Links */
.column a {
    display: block;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.column a:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--light);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
    border-color: var(--light);
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.photo-gallery img {
    width: 100%;
    border-radius: 5px;
    background: var(--light);
    padding: 3px;
}

/* Newsletter */
.newsletter {
    position: relative;
    max-width: 300px;
}

.newsletter input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
}

.newsletter button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: var(--secondary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(256, 256, 256, 0.1);
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--light);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-menu {
    margin-top: 10px;
}

.footer-menu a {
    margin: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 10px;
}

.footer-menu a:last-child {
    border-right: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}


