:root {
    --primary-color: #005CB0;
    --secondary-color: #004d99;
    --accent-color: #ff6600;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: url('files/banner (1).png') no-repeat center center;
    background-size: cover;
    color: white;
    height: 100vh;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    width: 100%;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    margin-top: 400px;
}

.features-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease;
    height: 100%;
}

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

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

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.btn-primary {
    background-color: #003E7E;
    border: none;
    padding: 18px 45px;
    font-weight: bold;
    transition: all 0.4s ease;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 62, 126, 0.3);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #003E7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 62, 126, 0.4);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.btn-primary:hover:before {
    left: 100%;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.plans-section {
    padding: 20px 0;
    margin-top: -50px;
    background-color: transparent;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: hidden;
}

.plans-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.plan-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.plan-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.center-plan {
    max-width: 450px;
    z-index: 2;
    margin: 0 20px;
}

.side-plan {
    max-width: 380px;
    opacity: 1;
}

.plans-button-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

.testimonials-section {
    padding: 40px 20px;
    text-align: center;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    margin: 10px;
}

.testimonial-image {
    width: 100%;
    height: auto;
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        aspect-ratio: 16/9;
        background-position: center center;
        min-height: unset;
    }

    .hero-content {
        margin-top: 200px;
    }

    .hero-section::before {
        background: rgba(0, 0, 0, 0.1);
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
        white-space: normal;
        max-width: 100%;
    }

    .plans-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .side-plan {
        display: none;
    }

    .center-plan {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .center-plan img {
        width: 100%;
        height: auto;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        margin: 10px 0;
    }

    .testimonials-title {
        font-size: 24px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .feature-card {
        margin-bottom: 20px;
        height: auto;
    }

    .plans-button-container {
        text-align: center;
        margin: 20px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        aspect-ratio: 4/3;
        background-position: center center;
    }

    .hero-content {
        margin-top: 165px;
    }

    .hero-section::before {
        background: rgba(0, 0, 0, 0.05);
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .testimonial-image {
        max-width: 100%;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    h2 {
        font-size: 22px;
        padding: 0 15px;
    }

    .lead {
        font-size: 16px;
        padding: 0 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Custom classes for more control */
.hero-button {
    position: relative;
    top: 0;
    margin-top: 20px;
}

.section-spacing {
    margin: 50px 0;
}

.custom-padding {
    padding: 20px;
}

.custom-margin {
    margin: 20px;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.custom-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-transition {
    transition: all 0.3s ease;
}

.custom-hover:hover {
    transform: scale(1.05);
}

.custom-border {
    border: 1px solid #ddd;
    border-radius: 8px;
}

.custom-bg {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Position Control */
.pos-relative { position: relative; }
.pos-absolute { position: absolute; }
.pos-fixed { position: fixed; }

/* Top Position Control */
.top-50 { top: 50px; }
.top-100 { top: 100px; }
.top-150 { top: 150px; }
.top-200 { top: 200px; }
.top-250 { top: 250px; }
.top-300 { top: 300px; }

/* Hero Button Position */
.hero-button-container {
    position: relative;
    top: 225px;
}

/* Plans Section */
.plans-section {
    padding: 0;
    margin-top: -50px;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.plans-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.plan-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.plan-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.center-plan {
    max-width: 450px;
    z-index: 2;
    margin: 0 20px;
}

.side-plan {
    max-width: 380px;
    opacity: 1;
}

.plans-button-container {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

/* Adjust features section to make room for plans */
.features-section {
    padding-top: 100px;
}

@media (max-width: 992px) {
    .plans-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .side-plan, .center-plan {
        max-width: 90%;
    }
    
    .features-section {
        padding-top: 50px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: 40px;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0b0a0a;
    margin-bottom: 50px;
    font-weight: bold;
    padding: 0 20px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease;
    padding: 20px;
    display: flex;
    justify-content: center;
}

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

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 90%;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF !important;
}