:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --hero-gradient-start: #1a5f7a;
    --hero-gradient-end: #2c3e50;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Styles */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 95, 122, 0.95), rgba(44, 62, 80, 0.95));
    position: relative;
    padding: 120px 0;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
}

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

.section-padding {
    padding: 100px 0;
}

.navbar {
    transition: background-color 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar.scrolled {
    background-color: var(--hero-gradient-start) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-tag .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-tag .period {
    font-size: 1rem;
    color: #6c757d;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Hero image styles */
.hero-section img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Navbar brand logo */
.navbar-brand img {
    height: 40px;
    width: auto;
}

/* Hero image styles */
.hero-image {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

/* Hero section responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 80px 0;
    }

    .hero-section .gap-3 {
        justify-content: center;
    }
}