/* ---------------------- 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;
    }
}



/* General Styles */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Sora', sans-serif;
        } */

        /* body {
            background-color: #f4f4f8;
            color: #2c3e50;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        } */

        /* Contact Container */
        .contact-container {
            width: 80%;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: auto;
            margin-top: 6rem;
        }

        /* Header Section */
        .contact-header {
            background: linear-gradient(135deg, #00B98E, #6a1b9a);
            color: white;
            text-align: center;
            padding: 40px 30px;
        }

        .contact-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .contact-header p {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* Contact Details & Form */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 40px;
        }

        .contact-details {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
        }

        .contact-details-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-details-icon {
            background: #00B98E;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .contact-details-text h3 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .contact-details-text p {
            font-weight: 600;
        }

        /* Contact Form */
        .contact-form {
            display: grid;
            gap: 15px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: -12px;
            left: 15px;
            background: white;
            padding: 0 10px;
            font-size: 0.8rem;
            color: #555;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #00B98E;
            box-shadow: 0 0 5px rgba(0, 185, 142, 0.5);
            outline: none;
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(135deg, #ff6b6b, #6a1b9a);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(255, 107, 107, 0.3);
        }

        /* Google Map Section */
        .map-container {
            width: 100%;
            max-width: 900px;
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .map-container iframe {
                height: 350px;
            }
        }


        /* ----------------------- 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;
    }
}






