/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Dark text for contrast */
}


/* Header Section */
header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff; /* Blue theme */
}


  /* Navbar Styling */
  .navbar {
    background: #c2d8b9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
}

.navbar .logo {
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}


/* CTA Button */
.apply-btn {
    background-color: #c2d8b9;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        margin-top: 10px;
    }

    .nav-links li {
        margin: 10px 0;
    }
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 80px 10%;
    height: 100vh;
    background-color: #ffffff;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
}

.hero-content p {
    font-size: 1.1rem;
    margin: 20px 0;
    color: #555;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons {
    margin-top: px;
}

.btn {
    display: inline-block;
    padding: 10x 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.primary-btn {
    background-color: #c2d8b9;
    color: white;
}

.primary-btn:hover {
    background-color: #0056b3;
}

.secondary-btn {
    background-color: #e0e0e0;
    color: #333;
    margin-left: 10px;
}

.secondary-btn:hover {
    background-color: #ccc;
}

/* Hero Image */
.hero-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        margin-top: 30px;
        width: 80%;
    }
}

/* About Us Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background-color: #ffffff;
}

.about-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    max-width: 50%;
    padding-left: 40px;
}

.about-content h2 {
    font-size: 2rem;
    color: #007bff;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #555;
    line-height: 1.6;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }

    .about-image img {
        margin-bottom: 20px;
    }

    .about-content {
        max-width: 100%;
        padding: 0;
    }
}

/* About Us Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background-color: #ffffff;
}

.about-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    max-width: 50%;
    padding-left: 40px;
}

.about-content h2 {
    font-size: 2rem;
    color: #007bff;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    margin: 15px 0;
    color: #555;
    line-height: 1.6;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }

    .about-image img {
        margin-bottom: 20px;
    }

    .about-content {
        max-width: 100%;
        padding: 0;
    }
}


/* Services Section */
.services {
    text-align: center;
    padding: 150px 10%;
    background-color: #ffffff;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
}

.services p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}
.services-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-item i {
    font-size: 24px;
    color: #007bff;
}
.service-content h3 {
    margin: 5px 0 0;
    font-size: 16px;
}
/* Apply Button */
.apply-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    background-color: #c9154e;
    color: white;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.apply-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services {
        padding: 50px 5%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 10%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #007bff;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.feature-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
}


/* Footer Section */
.footer {
    background-color: #f8f9fa;
    padding: 40px 10%;
    text-align: center;
    color: #333;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-logo h2 {
    color: #007bff;
    font-size: 1.8rem;
}

.footer-logo p {
    font-size: 1rem;
    color: #555;
}

.footer-links h3, 
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #0056b3;
}

.footer-social .social-icons a {
    margin: 0 10px;
    color: #007bff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-social .social-icons a:hover {
    color: #0056b3;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


 .faq-container {
            max-width: 700px;
            margin: auto;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .faq-title {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            outline: none;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f1f1f1;
        }

        .faq-answer {
            display: none;
            padding: 0 15px 15px;
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }

        /* Expand Effect */
        .faq-item.active .faq-answer {
            display: block;
        }

        /* Plus/Minus Icon */
        .faq-question::after {
            content: "+";
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            content: "-";
        }


        
  /* Apply Now Button */
  .apply-btn {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 2px;
}
.apply-btn:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services {
        padding: 50px 5%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
 /* Dropdown Styling */
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
            z-index: 1000;
        }

        .dropdown-menu a {
            color: #333;
            padding: 10px 15px;
            display: block;
            text-decoration: none;
        }

        .dropdown-menu a:hover {
            background: #007bff;
            color: white;
        }

        /* Show dropdown when active */
        .dropdown.active .dropdown-menu {
            display: block;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #5f94cd1e;
                position: absolute;
                top: 60px;
                left: 0;
                text-align: center;
            }

            .nav-links li {
                margin: 0;
            }

            .nav-links a {
                padding: 15px;
                display: block;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links.active {
                display: flex;
            }

            /* Dropdown for Mobile */
            .dropdown-menu {
                position: static;
                display: none;
                box-shadow: none;
                background: #5b8fc63e;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-menu a {
                color: white;
            }
        }

            /* Logo Styling */
        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px; /* Adjust this for logo size */
            margin-right: 10px;
        }

        .logo span {
            font-size: 22px;
            font-weight: bold;
        }
        
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            background: white;
            padding: 30px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            display: none;
            text-align: center;
        }
        .popup.active {
            display: block;
        }
        .popup h2 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        .popup p {
            font-size: 18px;
            margin-bottom: 20px;
        }
        .popup button {
            background: #007BFF;
            color: white;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
        }
        .highlight {
            font-weight: bold;
            color: #1b30ea;
        }
        .cta-button {
            display: inline-block;
            background: #007BFF;
            color: white;
            padding: 12px 20px;
            font-size: 16px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 15px;
        }
        .promo-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .promo-text {
            max-width: 50%;
            text-align: left;
        }
        .promo-image img {
            max-width: 100%;
            border-radius: 10px;
        }