/* ---------------------- 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;
    }
}

/* -------------------------- hero section ------------------ */

.about-hero {
    background: url('https://img.freepik.com/free-photo/modern-office-with-no-people-luxury-chair-generated-by-ai_188544-26092.jpg?t=st=1743751013~exp=1743754613~hmac=33bb4c49d829d97525be431746f5f147b0d8a9721d71c3966a949d8f92ce7f4e&w=1380') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    margin-top: 4rem;
  }
  
  .hero-content {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    background: #00b98e;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #008f6d;
  }
  
/* ------------------------------- 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-direction: row-reverse;
}

.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;
    }
}

/* ---------------------- our mission ---------------------- */

/* 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;
}

/* Reverse Layout */
@media (min-width: 992px) {
    .reverse-layout {
        flex-direction: row-reverse;
    }
}

.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;
}

/* 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;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 10px;
      }
      
      p {
        font-size: 1rem;
        margin-bottom: 20px;
      }
}

/* ------------------------ benfits --------------------------- */

.benefits-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
}

.benefits-content {
    flex: 1;
    padding-right: 40px;
}

.benefits-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0E2E50;
    margin-bottom: 20px;
}

.benefits-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.benefits-list li span {
    color: #00B98E;
    font-weight: bold;
    margin-right: 8px;
}

.benefits-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    background-color: #00B98E;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
}

.benefits-btn:hover {
    background-color: #008766;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .benefits-content {
        padding-right: 0;
    }

    .benefits-image img {
        margin-top: 20px;
    }
    .benefits-title {
        font-size: 2rem;
    }
}

/* -------------------- how it Works ----------------------------- */

/* How It Works Section */
.how-it-works-container {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    color: #0E2E50;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    width: 250px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    color: #0E2E50;
}

.step-icon-p {
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* ------------------------------ Testmonial section ------------------------------ */

/* Testimonials Section */
.testimonials-container {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    color: #0E2E50;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Testimonials Grid */
.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 350px;
    transition: 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-size: 1rem;
    color: #555;
    font-style: italic;
}

.testimonial-profile {
    margin-top: 20px;
}

.testimonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-profile h4 {
    font-size: 1.2rem;
    color: #0E2E50;
    margin-bottom: 5px;
}

.testimonial-profile p {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* ------------------------ gallery section -------------------- */

/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 15px; */
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    /* border-radius: 10px; */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ----------------------- 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;
    }
}


