

/* Global Styles */
:root {
    --color-primary: #00A99D;
    --color-primary-light: #33B8AE;
    --color-secondary: #666666;
    --navy-900: #005B8D;
    --primary-color-dark:#005B8D;
}

body {
    font-family: "Outfit", serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.bg-color-blue{
    background-color: var(--navy-900);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.my-heading{
   font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(24px, 4vw, 30px);
}
.sub-heading{
    font-family: 'Outfit', sans-serif;
    font-weight: 400 !important; 
    font-size: clamp(37px, 2vw, 30px) !important;
}
.sub-heading2{
    font-family: 'Outfit', sans-serif;
    font-weight: 400 !important; 
    font-size: clamp(30px, 2vw, 24px) !important;
}
.sub-heading3{
    font-family: 'Outfit', sans-serif;
    font-weight: 500 !important; 
    font-size: clamp(18px, 1vw, 14px) !important;
}
.my-para{
    font-family: 'Outfit', sans-serif;
   font-weight: 300;
   font-size: clamp(16px, 1.2vw, 20px);
 }

 .my-para2{
    font-family: 'Outfit', sans-serif;
   font-weight: 300;
  
 }
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    background-image: url('/assets/img/stock/fl2.jpg') cover;

    color: white;
    position: relative;
    overflow: hidden;
    top: 15%;
}

.hero-section::before {
    content: '';
    position: absolute;
   
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/img/stock/fl2.jpg') cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.play-button{
    padding-bottom: 13px;
    padding-top: 13px;
    padding-right: 20px;
    padding-left: 20px;

    border-radius: 50%;
}

.text-primary{
    color: var(--color-primary);
}

/* Navigation Styles */
#mainNav {
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #00A99D;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 40px;

}

/* Slider Styles */
.slider-content {
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
}

.slider-nav button {
    transition: all 0.3s ease;
}

.slider-nav button.active {
    background-color: white;
    width: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Play Button Animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Introduction Section Styles */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Section Styles */
.service-icon{
    width: 20%;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 32px;
    background: white;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.fade-in-left {
    transform: translateX(-50px);
}

.service-card.fade-in-right {
    transform: translateX(50px);
}

.service-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: translateY(-5px);
}

.service-card:hover * {
    color: white;
}

.service-card:hover .read-more {
    border-color: white;
    color: white;
}

.service-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.read-more {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: transparent;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    position: relative;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

/* Auth Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.auth-modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    padding: 24px;
    position: relative;
}

.auth-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.auth-tabs {
    display: flex;
    margin: -24px -24px 24px -24px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 16px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-button:hover {
    background-color: #f8f8f8;
}

.google-button img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #666;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #eee;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.auth-input:focus {
    outline: none;
    border-color: #000;
}

.auth-submit {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-submit:hover {
    background-color: #333;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.auth-checkbox input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 4px;
}

.auth-checkbox label {
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 640px) {
    .auth-modal-content {
        width: 95%;
        margin: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

    .read-more {
        padding: 6px 18px;
        font-size: 14px;
    }
}


/* Referral Banner Styles */
.referral-banner {
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,169,157,0.1) 100%);
    position: relative;
}

.bg-hands {
    background-image: url('close-up-community-concept-outdoors.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: overlay;
}

.bg-gradient-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,41,94,0.7) 100%);
}

/* Add this to your existing responsive styles section */
@media (max-width: 640px) {
    .referral-banner {
        padding: 3rem 0;
    }
    
    .referral-banner h2 {
        font-size: 2rem;
    }
}


/* Reviews Section Styles */
.reviews-section {
    overflow: hidden;
}

.reviews-slider {
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    flex: 0 0 100%;
    padding: 1rem;
}

/* Desktop styles */
@media (min-width: 768px) {
    .reviews-track {
        gap: 2rem;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }
}
@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 calc(33.333% - 1.333rem);
    }
}






/* Blog Section Styles */
.blog-section article {
    transition: all 0.3s ease;
}

.blog-section article:hover {
    transform: translateY(-2px);
}

.blog-section .relative::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.blog-section article:hover .relative::after {
    opacity: 0;
}

@media (max-width: 768px) {
    .blog-section .md\:col-span-3 {
        margin-bottom: 2rem;
    }
}




/* FAQ Section Styles */
.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-button:focus, .faq-button:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-button i {
    transition: transform 0.3s ease;
}

.faq-button.active i {
    transform: rotate(-180deg);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
}

.faq-content.active {
    max-height: 1000px; /* Adjust if needed for longer content */
    opacity: 1;
}



/* Newsletter Section Styles */
.newsletter-section {
    background-color: #0F172A; /* Navy background */
}

.bg-gradient {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(0, 91, 144, 0.8) 100%
    );
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .newsletter-section form {
        max-width: 100%;
    }
}



/* Cookie Banner Styles */
#cookie-banner {
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
}

#cookie-banner.show {
    transform: translateY(0);
}





/*================================================ About Us*/
/* About Us Page Styles */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

/* Hero Section */
.hero-section {
    background-color: #0F172A;
    color: #fff;
    padding: 100px 0;
    margin-top: 2%;
    margin-left: 3%;
    margin-right: 3%;
border-radius: 30px;
    text-align: left;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    
}

/* Our Mission Section */
.our-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: #00A99D;
    margin-bottom: 15px;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Our Impact Section */
.our-impact {
    padding: 80px 0;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #00A99D;
    margin-bottom: 10px;
}

/* Get Involved Section */
.get-involved {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.get-involved ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #00A99D;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #008C82;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-section p{

        text-align: center;
    }
    .slider-nav{
        align-items: center;
        align-content: center;
     
    }
.top-bar{
    display: none;
}
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .impact-stats {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 20px;
    }
}



.service-active{
    background-color: var(--color-primary);
    color: #fff !important;
}


.step-connector {
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    right: calc(50% + 20px);
    height: 2px;
    background-color: #e5e7eb;
}
.country-select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
}


.contact-active{
    border: 2px solid var(--color-primary-light);
}



