        /* Hero Section */
       .hero-section {
    height: 100vh;
    min-height: 600px;
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1593693397692-8d5963858f51?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'); */
    background-color: #5a6fd8;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    /* transition: all 0.3s ease; */
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-btn {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #3646A8, #3646A8);
    /* transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4); */
}

.hero-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.phone-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a42a0);
}

.hero-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.vns{
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 8px;
}
.vns-image{
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}
.vns h1{
    font-family: cursive;
    color: rgb(139, 199, 19);
    font-weight: bolder;
}
.vns p{
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
}
.highlight{
    color:#5A6FD8;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
        background-attachment: scroll;
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-btn {
        padding: 14px 25px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .hero-contact-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-contact-buttons .hero-btn {
        width: 100%;
    }
    .vns p{
        font-size: 16px;
    }
    .vns-image{
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-description {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}