﻿

h1, h2 {
    color: #2aa3db;
}

/* ====== MODERN HEADER ====== */
.modern-header {
    position: relative;
    text-align: center;
    padding: 10px 5px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

    .modern-header h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
    }

    .modern-header p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

/* ====== ABOUT SECTION ====== */

.about-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.about-section img {
    border-radius: 16px;
    width: 100%;
}

/* ====== FEATURES SECTION ====== */
.features-section {
    background: #f8faff;
    padding: 50px 0;
}

    .features-section h2 {
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
    }

.feature-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #e5e9f2;
}

    .feature-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

.feature-icon {
    background: linear-gradient(135deg,#2aa3db,#17303b);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px;
}

/* ====== WHY CHOOSE SECTION ====== */
.why-choose-section {
    background: linear-gradient(135deg,#f9fcff,#eaf4ff);
    text-align: center;
}

    .why-choose-section h2 {
        font-weight: 700;
        margin-bottom: 20px;
    }

.why-list {
    list-style: none;
    max-width: 800px;
    margin: 30px auto 0;
    padding: 0;
}

    .why-list li {
        background: #fff;
        color: darkorange;
        margin-bottom: 15px;
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        transition: 0.3s;
    }

        .why-list li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.08);
        }

    .why-list .icon {
        color: #2aa3db;
        font-size: 1.3rem;
        margin-right: 12px;
    }

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg,#17303b,#2aa3db);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 1rem;
        opacity: 0.9;
    }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .modern-header h1 {
        font-size: 1.6rem;
    }

    .modern-header p {
        font-size: 0.9rem;
    }



    .about-section h2,
    .features-section h2,
    .why-choose-section h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }
}

/* Animated Button */
.btn-animated {
    display: inline-block;
    padding: 8px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2aa3db, #1f7bb6);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn2 {
    background: linear-gradient(135deg, #150, #150);
    margin: 10px
}

.btn-animated:hover {
    background: linear-gradient(135deg, #1f7bb6, #2aa3db);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(42,163,219,0.4);
}



/* Click animation */
.btn-animated:active {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(42,163,219,0.6) inset;
}

.btn2:hover {
    background: linear-gradient(135deg, #150, #150);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(42,163,219,0.4);
}


@media(min-width:778px) {
    .btn-animated {
        display: inline-block;
        padding: 14px 32px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, #2aa3db, #1f7bb6);
        border: none;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .btn2 {
        background: linear-gradient(135deg, #150, #150);
        margin: 10px
    }
}

.accordion-button {
    font-weight: 700;
    font-size: 1.2rem
}

    .accordion-button:not(.collapsed) {
        font-weight: 700;
        font-size: 1.2rem;
        color: #ff9933;
        background-color: #fff2e6;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    }

    .accordion-button:focus {
        z-index: 3;
        border-color: #ff9933;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(255, 153, 51, .2);
    }

    .accordion-button::after {
        color: #ff9933;
    }

.text-orange {
    color: #ff9933;
}


