/* Purple and Green Theme Custom CSS */
:root {
    --main-color: #4b286d;
    --main-color-light: #6d4b8e;
    --main-color-dark: #3a1f56;
    --accent-color: #2b8000;
    --accent-color-light: #3e9c1a;
    --accent-color-dark: #1f6600;
    --light-color: #f8f9fa;
    --dark-color: #333333;
}
.logo-text img {
  width: 180px;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.hero-section h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-section .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

.hero-section .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 128, 0, 0.3);
}

.hero-section .btn-primary:hover {
    background-color: var(--accent-color-light);
    border-color: var(--accent-color-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 128, 0, 0.4);
}

.features-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    color: white;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--accent-color-light);
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
}

.about-section h3 {
    color: var(--main-color);
    position: relative;
    padding-bottom: 10px;
}

.about-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.commitment-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 40, 109, 0.1);
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-card .card-body {
    padding: 30px;
}

.commitment-card h4 {
    color: var(--main-color);
}

.commitment-card .text-accent {
    color: var(--accent-color);
}

/* Services Section */
.services-section {
    background: white;
}

.section-title {
    color: var(--main-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.service-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(75, 40, 109, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(75, 40, 109, 0.2);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--main-color-light), var(--main-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-card .icon-wrapper i {
    font-size: 28px;
    color: white;
}

.service-card h5 {
    color: var(--main-color);
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.accordion-button {
    background-color: white;
    color: var(--main-color);
    font-weight: 600;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--main-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234b286d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: white;
    padding: 20px;
    color: var(--dark-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: white;
}

.cta-section .btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-accent:hover {
    background-color: var(--accent-color-light);
    border-color: var(--accent-color-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 128, 0, 0.3);
}

.cta-section a.text-white {
    color: white !important;
    text-decoration: underline;
}

.cta-section a.text-white:hover {
    color: var(--accent-color-light) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .features-card {
        margin-top: 30px;
    }
    
    .commitment-card {
        margin-top: 20px;
    }
}
/* Header Styles */
.header-purple {
    background: var(--main-color);
    padding: 0;
    box-shadow: 0 4px 12px rgba(75, 40, 109, 0.15);
    position: relative;
    z-index: 1000;
}

.header-purple::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
    padding: 15px 0;
}

.navbar-brand .logo-text {
    background: linear-gradient(90deg, white, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.call-btn {
    background: var(--accent-color);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-btn:hover {
    background: var(--accent-color-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(43, 128, 0, 0.4);
    border-color: white;
}

.call-btn i {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--main-color-dark);
        padding: 15px;
        border-radius: 0 0 10px 10px;
        margin-top: 10px;
    }
    
    .call-btn {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .header-purple {
        padding: 5px 0;
    }
}


/* Footer Styles */
.footer-dark {
    background: #0a0a0a;
    color: white;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--accent-color));
}

/* Brand Section */
.footer-brand h5 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.footer-brand h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--accent-color-light);
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--accent-color-light);
    padding-left: 10px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-link:hover::before {
    left: 0;
    opacity: 1;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(75, 40, 109, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-link {
    color: var(--accent-color-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: white;
    text-decoration: underline;
}

.contact-text {
    color: white;
    margin: 0;
    font-weight: 500;
}

.contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 2px 0 0 0;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0 30px;
}

/* Copyright & Legal */
.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--accent-color-light);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-dark {
        padding-top: 40px;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-brand h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-link {
        padding-left: 0 !important;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}
.btn-green{
    background-color: rgb(8, 54, 8);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(43, 128, 0, 0.4);
    border: 2px solid transparent;
    text-decoration: none;
}
