
/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
        }
        
        /* Marquee section */
        .marquee-container {
            background-color: #7c0794;
            color: white;
            padding: 8px 0;
            overflow: hidden;
        }
        
        .marquee-content {
            display: flex;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }
        
        .marquee-section {
            display: flex;
            align-items: center;
            margin-right: 40px;
        }
        
        .marquee-section i {
            margin-right: 8px;
            color: #4CAF50;
        }
        
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        /* Main header */
        .header-container {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo img {
            height: 80px;
            width: auto;
        }
        
        /* Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
            margin-left: 35px;
        }
        
        .nav-item a {
            text-decoration: none;
            color: #333;
            font-weight: 800;
            font-size: 24px;
            transition: color 0.3s;
            padding: 15px 0;
        }
        
        .nav-item a:hover {
            color: #4CAF50;
        }
        
        /* Mega menu */
        .mega-menu {
        
            left: 0;
            top: 100%;
            width: 600px;
            background: white;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            display: none;
            z-index: 1000;
            border-radius: 0 0 5px 5px;
        }
        
        .nav-item:hover .mega-menu {
            display: flex;
        }
        
        .mega-menu-column {
            flex: 1;
            padding: 0 15px;
        }
        
        .mega-menu-column h4 {
            color: #4CAF50;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }
        
        .mega-menu-column ul {
            list-style: none;
        }
        
        .mega-menu-column ul li {
            margin-bottom: 10px;
        }
        
        .mega-menu-column ul li a {
            color: #555;
            font-weight: normal;
            font-size: 14px;
            display: block;
            padding: 5px 0;
        }
        
        .mega-menu-column ul li a:hover {
            color: #4CAF50;
            padding-left: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                padding: 15px;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .nav-menu {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-item {
                margin: 5px 0;
            }
            
            .mega-menu {
                position: static;
                width: 100%;
                display: none;
                box-shadow: none;
            }
        }

/* container with a welcome note */
.hero-section {
    position: relative;
    height: 60vh;
    background-image: url("images/IMG_0338.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

/* Overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Content container */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Typing text styles */
.typing-text {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    min-height: 4rem;
}

/* Cursor animation */
.typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Button styles */
.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #4CAF50;
}

.hero-button:hover {
    background-color: transparent;
    color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .typing-text {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}


.services-container {
    max-width: 12000px;
    margin:30px auto;
    padding: 20px;
    background-color: #f0f8ff;  /* Light blue background */
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
}

/* Flexbox grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* Service box styling */
.service-box {
    flex: 1 1 calc(25% - 25px);
    min-width: 200px;
    max-width: 250px;
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4a6bff;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    transform: scale(1.1);
    color: #3a56d4;
}

/* Service title/link */
.service-title {
    display: block;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-box:hover .service-title {
    color: #4a6bff;
}

/* See more box styling */
.see-more-box {
    background: linear-gradient(135deg, #4a6bff, #3a56d4);
    color: white;
}

.see-more-box .service-icon,
.see-more-box .service-title {
    color: white;
}

.see-more-box:hover .service-icon {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .service-box {
        flex: 1 1 calc(33.333% - 25px);
    }
}

@media (max-width: 600px) {
    .service-box {
        flex: 1 1 calc(50% - 25px);
    }
}

@media (max-width: 400px) {
    .service-box {
        flex: 1 1 100%;
    }
}

    /*why choose us section*/

     /* Main container styling */
     .main-container {
        background-color: #f0f8ff;  /* Light blue background */
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-width: 1200px;
        margin: 30px auto;
        font-family: 'Arial', sans-serif;
    }

    .main-title {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 40px;
        font-size: 2.2rem;
    }

    /* Grid layout for sub-divs */
    .content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    /* Common styling for all sub-divs */
    .content-block {
        padding: 25px;
        border-radius: 10px;
        color: white;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .content-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .block-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 10px;
    }

    .block-content {
        line-height: 1.6;
    }

    /* Individual block colors */
    .reasons {
        background-color: #3498db;  /* Blue */
    }

    .vision {
        background-color: #2ecc71;  /* Green */
    }

    .mission {
        background-color: #e74c3c;  /* Red */
    }

    .prospective {
        background-color: #9b59b6;  /* Purple */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .content-grid {
            grid-template-columns: 1fr;
        }
        
        .main-container {
            padding: 25px;
        }
    }

    /* Footer Styles */
    .footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 50px 0 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

   
    .footer-column h3 {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: #3498db;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        display: block;
    }

    .footer-links a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .contact-info {
        margin-top: 20px;
        
       
    }

    .contact-info p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    } 

    .contact-info i {
        margin-right: 10px;
        color: #3498db;
        width: 20px;
        text-align: center;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        color: #ecf0f1;
        background-color: #34495e;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 20px;
        margin-top: 20px;
        border-top: 1px solid #34495e;
        font-size: 0.9rem;
        color: #bdc3c7;
        background-color: #5a0c5a;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer-column {
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            margin-bottom: 15px;
        }
    }

/* About us page*/
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url("images/IMG_0333.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.about-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--secondary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.features {
    background: var(--light);
    padding: 80px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-section {
        flex-direction: column;
    }
}

/* contact us page */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.info-content h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-content p, .info-content a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--primary);
}

.contact-form {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.contact-form h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
}

.map-container {
    grid-column: 1 / -1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.business-hours {
    margin-top: 30px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table tr:nth-child(even) {
    background-color: #f1f1f1;
}

.hours-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }}

    /* registration section */

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    /* Registration Form */
    .registration-form {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-width: 800px;
        margin: 30px auto;
    }
    
    .form-title {
        text-align: center;
        color: var(--secondary-color);
        margin-bottom: 30px;
        font-size: 2rem;
        position: relative;
    }
    
    .form-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--secondary-color);
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
    }
    
    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-row {
        display: flex;
        gap: 20px;
    }
    
    .form-row .form-group {
        flex: 1;
    }
    
    .submit-btn {
        background-color: var(--primary-color);
        color: rgb(0, 0, 0);
        border: none;
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        display: block;
        margin: 30px auto 0;
    }
    
    .submit-btn:hover {
        background-color: #27ae60;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    }
    
    /* Status Message */
    .status-message {
        text-align: center;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        display: none;
    }
    
    .status-pending {
        background-color: rgba(243, 156, 18, 0.2);
        color: var(--pending-color);
        border: 1px solid var(--pending-color);
    }
    
    /* Admin Panel */
    .admin-panel {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 50px;
        display: none;
    }
    
    .admin-title {
        text-align: center;
        color: var(--secondary-color);
        margin-bottom: 30px;
        font-size: 1.8rem;
    }
    
    .business-list {
        display: grid;
        gap: 20px;
    }
    
    .business-card {
        background: white;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        transition: all 0.3s;
    }
    
    .business-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .business-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .business-name {
        font-size: 1.3rem;
        color: var(--secondary-color);
    }
    
    .business-status {
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .status-pending {
        background-color: rgba(243, 156, 18, 0.1);
        color: var(--pending-color);
    }
    
    .status-approved {
        background-color: rgba(46, 204, 113, 0.1);
        color: var(--approved-color);
    }
    
    .status-rejected {
        background-color: rgba(231, 76, 60, 0.1);
        color: var(--rejected-color);
    }
    
    .business-details {
        margin-bottom: 15px;
    }
    
    .business-details p {
        margin-bottom: 8px;
        color: #555;
    }
    
    .business-details strong {
        color: var(--secondary-color);
    }
    
    .business-actions {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
    }
    
    .action-btn {
        padding: 8px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .approve-btn {
        background-color: var(--primary-color);
        color: white;
    }
    
    .reject-btn {
        background-color: var(--rejected-color);
        color: white;
    }
    
    .edit-btn {
        background-color: var(--accent-color);
        color: white;
    }
    
    /* Service Sections (Example) */
    .service-section {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 50px;
        display: none;
    }
    
    .service-title {
        color: var(--secondary-color);
        margin-bottom: 20px;
        font-size: 1.5rem;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .approved-businesses {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    /* Admin Toggle */
    .admin-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: var(--secondary-color);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 100;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
            gap: 0;
        }
        
        .approved-businesses {
            grid-template-columns: 1fr;
        }
    }