/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@400;500;600;700&display=swap');


/* General Styles */
body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    color: #333333;
    background-color: #F8F9FA;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background: #F8F9FA;
    color: #1C1C1C;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    /* Adjust size */
    margin-right: 10px;
    /* Space between logo and text */
    margin-top: -10px;
}

.nav-logo h2 {
    font-size: 24px;
    color: #2F4F4F;
    /* Light contrast color */
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    margin: 0 15px;

}

.nav-links a {
    color: #333333;
    /* Changed to a darker color for better visibility */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
    white-space: nowrap;
    /* Prevent text from wrapping */
}

.nav-links a:hover {
    color: #cdcbc3;
}


.hamburger {
    display: none;
    /* Hidden by default */
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #2F4F4F;
    /* or any color you prefer */

    padding: 0;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        /* Align items to the start */
        padding: 5px;
    }

    .nav-logo {
        margin-bottom: -10px;
        /* Add some spacing */
    }

    .nav-links {
        display: none;
        /* Hide by default */
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #f8f9fa;
        /* Add a background color */
        padding: 10px 0;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
        /* Show when active class is applied */
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        /* Show the hamburger */
        position: absolute;
        top: 15px;
        right: 10px;

    }
}





/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    font-family: 'Playfair Display', serif;
}

.background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.welcome-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.welcome-message h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    line-height: 1.2;

}

.highlight {
    color: #61acac;
    font-size: 3.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 70px;
}

.welcome-message p {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;

}

@keyframes typing {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #f4f3f0;
    width: 0;
    animation: typing 4s steps(40) 1s forwards, blink 0.5s step-end infinite;
}


.highlights {
    color: #D4AF37;
    /* Gold */
}

.done {
    border-right: none;
    /* Removes the cursor */
}

.reset {
    width: 0;
    animation: none;
}

/* About Section */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
    background: #f9f9f9;
}

.about-content {
    flex: 1;
    padding-right: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.know-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: #EEEDEB;
    background: #2F4F4F;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.know-more-btn:hover {
    background: #F2F2F2;
    color: #2F4F4F;
    border: 2px solid #2F4F4F;
}

.about-image img {
    width: 550px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

/* Initial state: sections are invisible and slightly shifted down */
.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

/* When section becomes visible: fade in and slide up */
.animate-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for navigation links */
html {
    scroll-behavior: smooth;
}

.animate-section:nth-child(1) {
    transition-delay: 0s;
}

.animate-section:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-section:nth-child(3) {
    transition-delay: 0.4s;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 50px;
    text-align: center;
    background: #f4f4f4;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.box-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.box {
    background: #fff;
    padding: 20px;
    flex: 1 1 calc(33% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    /* Add spacing below the header */
}

.box-header i {
    font-size: 24px;
    color: #E5A34D;
}

.box-header p {
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.box p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    flex-grow: 1;
    text-align: left;
    /* Align text to the left */
}



.box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.highs {
    color: #2F4F4F;
}

/* Partners Section */
.partners-section {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    /* Light background */
    overflow: hidden;
    position: relative;

}

.partners-section h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    gap: 40px;
    /* Space between logos */
    animation: scroll 60s linear infinite;
    width: fit-content;
    align-items: center;
    padding: 20px 0;
}

.partners-logos img {
    height: 80px;
    /* Adjust logo size */
    max-width: 150px;
    /* Prevents large logos from stretching */
    object-fit: contain;
    /* Ensures logos are not cropped */
    filter: grayscale(50%);
    /* Optional: Gives a uniform look */
    transition: transform 0.3s ease-in-out;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    /* Slight zoom effect */
}

@keyframes scroll {
    from {
        transform: translateX(100);
    }

    to {
        transform: translateX(-100%);
    }
}

.partners-section {
    height: auto;
    /* Ensures enough space */
}

.logo-slider img {
    display: block;
    margin: auto;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)), url('images/IMG_4299.PNG') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.lets-talk-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    background: #F2F2F2;
    color: #2F4F4F;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.lets-talk-btn:hover {
    color: #EEEDEB;
    background: #2F4F4F;
    border: 2px solid #2F4F4F;
}

/* Footer Section */
.footer {
    background-color: #2F4F4F;
    /* Dark Teal */
    color: #F8F9FA;
    /* Off-White Text */
    padding: 50px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #E0DED6;
    text-align: left;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #EEEDEB;
    /* Ivory */
    text-align: left;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    margin-left: -290px;

}

.social-icons a {
    color: #E0DED6;
    /* Gold */
    font-size: 18px;
    transition: color 0.3s ease-in-out;

}

.social-icons a:hover {
    color: #E0DED6;
    /* Muted Orange */
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: #E0DED6;
    /* Soft Black */
    padding: 10px;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 12px;
    color: #333333;

}


/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 37px;
    height: 37px;
    background: #25d366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 3;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .hero-section .welcome-message h1 {
        font-size: 2rem;
    }

    .hero-section .welcome-message .highlight {
        font-size: 2.5rem;
    }

    .about-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about-image img {
        width: 100%;
        margin-top: 20px;
    }

    .why-choose-us .box {
        flex: 1 1 100%;
    }

    .partners-logos img {
        height: 60px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        margin-left: 0;
    }
}