:root {
    /* New Color Palette - Earthy & Warm Theme */
    --primary-color: black;  /* Warm terracotta - inviting and organic */
    --secondary-color: black; /* Muted brown - earthy and natural */
    --accent-color: #E9C46A;   /* Golden yellow - vibrant accent */
    --dark-color: black;     /* Deep teal - sophisticated contrast */
    --light-color: #F8F9FA;    /* Light gray - clean background */
    --success-color: #2A9D8F;  /* Muted teal - for positive actions */
    --darke-color: white;
    /* Additional accent colors */
    --pink-accent: #E76F51;
    --blue-accent: black;
    --bs-btn-hover-border-color: black;
    
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.nav-item
{
    color: #1a161f;
}
/* Navigation - Mobile Responsive */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
    max-height: 100px; /* Remove fixed height */
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0.5rem 0;
}

.navbar-brand .slogan {
    font-size: 0.7rem;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--accent-color);
}

.navbar-collapse {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

/* Mobile-specific styles */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        z-index: 1000;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link::after {
        display: none; /* Remove underline effect on mobile */
    }
    
    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .navbar {
        padding: 1.25rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.75rem 0;
    }
    
    .navbar-collapse {
        background-color: transparent;
        backdrop-filter: none;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
    }
}

/* Hero Section */
.hero {
    background: black
                url('C:\BananeWala\images\images.jpeg');
    background-size: cover;
    color: white;
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}



.hero h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero p {
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
                var(--primary-color), 
                var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, 
                var(--primary-color), 
                var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(212, 163, 115, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 12px 28px rgba(166, 138, 100, 0.4);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
                var(--primary-color), 
                var(--secondary-color));
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.pricing-card.featured::after {
    content: 'BEST VALUE';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.7rem;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, 
                var(--primary-color), 
                var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 20px 0;
    line-height: 1;
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: white;
    box-shadow: white;

.btn-primary:hover {
    background-color: #c08e5f;
    border-color: #c08e5f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.5);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    color: var(--darke-color);
    background: white;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.client-info h4 {
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: black
    color: white;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
                var(--primary-color), 
                var(--secondary-color));
}

.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-img {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .pricing-card.featured::after {
        right: -25px;
        padding: 3px 25px;
    }
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
}

.footer-brand h3 {
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #c08e5f;
    border-color: #c08e5f;
}

.btn-outline-light:hover {
    color: var(--dark-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item .icon {
        margin: 0 auto 15px;
    }
}

.col-lg-8 mx-auto

{
    border-color: #1a161f;
}

/* Custom styles for contact section */
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border-radius: 0.25rem !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(210, 125, 70, 0.25);
    border-color: var(--primary-color);
}

.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}

.info-item {
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item .icon {
    transition: all 0.3s ease;
}

.info-item:hover .icon {
    transform: scale(1.1);
}

 /* Add this to your existing styles */
    #result {
        transition: all 0.3s ease;
    }
    
    .alert {
        border-radius: 0.5rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .h-captcha {
        margin-bottom: 1.5rem;
    }
