html {
    scroll-behavior: smooth;
}

* {
    font-family: sans-serif;
}

body {
    background: linear-gradient(to right, #e8f3fe, #fff7ea);
}

.hero {
    display: flex;
    align-items: center;
    width: 100%;
    height: 722px;
    justify-content: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85%;
}

.hero .container .hero-content {
    width: 50%;
    height: 100%;
}

.hero .container .hero-image {
    width: 62%;
    height: 100%;
    margin-top: 7%;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: bold;
    color: #1e3a5f;
    margin-bottom: 1px;
}

.hero-content span {
    color: #ff8c00;
}

.hero-content p {
    font-size: 21px;
    color: #444;
    margin: 18px 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #1e3a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 19px;
    transition: background 0.3s;
    margin-top: 2%;
}

.cta-button:hover {
    background: #ff8c00;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    background: white;
}

.features .feature-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
}

.feature {
    flex: 1;
    padding: 5px;
}

.feature img {
    width: 90px;
    height: 70px;
    margin-top: 10px;
    margin-bottom: -10px;
}

.feature h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f355b;
}

.feature span {
    color: #ff8c00;
}

/* About Content */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-image {
    width: 40%;
    height: 100%;
}

.about-image img {
    width: 100%;
}

.about-text {
    width: 42%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 30px;
    color: #1f355b;
}

.about-text span {
    color: #f4a261;
    font-weight: bold;
}

.about-text p {
    font-size: 19px;
    color: #1f355b;
    margin-top: 10px;
    line-height: 1.6;
    margin-right: 25px;
}

/* Why Choose Us Section */
.why-choose {
    text-align: center;
    padding: 45px 10%;
    margin-bottom: 2%;
}

.why-choose h2 {
    font-size: 45px;
    text-shadow: 1px 0px 1px #5e5d5d;
    color: #1f355b;
    margin-bottom: 50px;
}

.why-choose span {
    color: #ff8c00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.feature-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 320px;
}

.feature-box:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-box img {
    width: 60px;
    height: 50px;
    margin-bottom: 5px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f355b;
}

.feature-box h3 span {
    color: #ff8c00;
}

.feature-box p {
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        height: auto;
        text-align: center;
    }
    .hero .container {
        flex-direction: column;
    }
    .hero .container .hero-content,
    .hero .container .hero-image {
        width: 90%;
    }
    .about-content {
        flex-direction: column;
    }
    .about-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .cta-button {
        font-size: 14px;
        padding: 8px 16px;
    }
    .feature img {
        width: 50px;
        height: 40px;
    }
    .footer-contact{
        display: none;
    }
}

@media (max-width: 425px){
    .footer-contact{
        display: none;
    }
    .hero{
        margin-top: 28%;
    }
    .about-image img{
        display: none;
    }
    .about-text{
        width: 70%;
    }
    .feature h3 {
        font-size: 17px;
    }
    
}


