        :root {
            --primary: #1b9c73;
            --secondary: #588367;
            --accent: #a4b476;
            --light: #f8f9fa;
            --dark: #212529;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding-top: 120px;
            color: #333;
        }

        /* Header Styling */
        .main-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 97%;
            max-width: 1200px;
            z-index: 1000;
            border-bottom-left-radius: 25px;
            border-bottom-right-radius: 25px;
            padding: 10px 20px;
            backdrop-filter: blur(6px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .nav-menu .btn,
        .nav-menu .dropdown-toggle {
            font-size: 1rem;
            font-weight: 500;
            color: white;
            border: none;
            background: none;
            transition: all 0.3s ease;
        }

        .nav-menu .btn:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .nav-menu .dropdown-menu {
            background-color: var(--secondary);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }

        .nav-menu .dropdown-item {
            color: white;
            transition: all 0.2s ease;
        }

        .nav-menu .dropdown-item:hover {
            background-color: var(--accent);
            color: #000;
            padding-left: 25px;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 60px 20px 30px;
            text-align: center;
        }

        .footer h5 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            display: inline-block;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin: 5px;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent);
            color: #333;
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
        }

        /* Contact Section */
        #contact {
            background-color: #f9fafb;
            border-radius: 20px;
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-card {
            background: #fff;
            transition: all 0.3s ease;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .contact-link {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-link:hover {
            color: var(--secondary);
            text-decoration: underline;
        }

        /* Navbar toggler */
        .navbar-toggler {
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 6px 10px;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* Responsive Media Queries */
        @media (max-width: 992px) {
            .main-header {
                padding: 10px 20px;
                width: 100%;
                border-radius: 1;
            }

            .footer {
                padding: 40px 20px 20px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 100px;
            }

            .contact-card {
                margin-bottom: 20px;
            }

            .main-header {
                width: 95%;
                align-items: flex-start;
                flex-wrap: wrap;
            }


        }

        @media (max-width: 576px) {

            .footer {
                padding: 30px 15px 15px;
            }

            .contact-card {
                padding: 15px;
            }

            .icon-circle {
                width: 60px;
                height: 60px;
            }
        }