:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --text-color: #333333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

.navbar {
    padding: 1rem 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.features-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works-section {
    background-color: #ffffff;
}

.step-content {
    padding: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    display: block;
    line-height: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: 600;
}

.how-it-works-section img {
    transition: transform 0.3s ease;
}

.how-it-works-section img:hover {
    transform: scale(1.02);
}

.how-it-works-section .row {
    margin-bottom: 6rem;
}

/* Footer Styles */
.footer-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    margin-top: 5rem;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-divider {
    border-color: #333333;
    margin: 2rem 0;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }
    .hero-image {
        margin-top: 2rem;
    }
    .step-content {
        text-align: center;
        padding: 2rem 0;
    }
    .how-it-works-section .row {
        margin-bottom: 3rem;
    }
}
/* Contact Section Styles */
.contact-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-item {
    text-align: center;
    padding: 1.5rem;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p {
    color: var(--text-color);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form .form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.25);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
}

/* Feature Link Styles */
.feature-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.feature-link:hover {
    text-decoration: none !important;
    color: inherit;
}

/* Feature Page Styles */
.feature-hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.feature-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-hero-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature-details-section {
    padding: 5rem 0;
    background-color: white;
}

.feature-detail-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-detail-card .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 1rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .feature-hero-section h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    .feature-hero-section .lead {
        text-align: center;
    }
    .feature-hero-image {
        margin-top: 2rem;
    }
}

/* Hero Carousel Styles */
#heroCarousel {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    transition: transform 1.5s ease-in-out;
}

#heroCarousel .hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.5s ease;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .3s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

/* Ensure smooth transition */
.carousel-item {
    transition: transform .3s ease-in-out;
}