/*==========================
    GLOBAL
==========================*/


/* Logo */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
    height: 60px;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Mobile */

@media (max-width:900px) {

    .logo img {
        height: 48px;
    }

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f9fc;
    color: #1f2937;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 90px 0;
}

.title {
    text-align: center;
    margin-bottom: 60px;
}

.title h2 {
    font-size: 2.4rem;
    color: #12355B;
    margin-bottom: 15px;
}

.title p {
    color: #666;
    max-width: 700px;
    margin: auto;
}

/*==========================
HEADER
==========================*/

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}



.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: #12355B;
    font-weight: 600;
    transition: .3s;
}

.nav a:hover {
    color: #f97316;
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/*==========================
HERO
==========================*/

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;


    background: linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .55) 30%,
            rgba(0, 0, 0, .25) 55%,
            rgba(0, 0, 0, 0) 100%);

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1200px;

    color: #fff;
}

.hero h1 {
    max-width: 700px;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero span {
    color: #f97316;
}

.hero p {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
}

.hero span {
    color: #f97316;
}

.hero p {
    margin: 30px auto;
    font-size: 1.2rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



@media (max-width:768px) {

    .hero {
        height: 90vh;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 230px;
        text-align: center;
    }

}

/*==========================
BUTTONS
==========================*/

.btn {
    display: inline-block;
    padding: 16px 38px;
    background: #f97316;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-5px);
    background: #ea580c;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #12355B;
}

/*==========================
SERVICES
==========================*/

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width:1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:700px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.service-card:hover {
    transform: translateY(-12px);
}

.service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    text-align: center;
    transition: .3s;

    display: flex;
    flex-direction: column;
}

.service-card i {
    font-size: 45px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.service-btn {
    margin-top: 20px;
}

.service-btn:hover {
    background: #f97316;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    margin-top: 0;
}

.service-details.active {
    max-height: 300px;
    margin-top: 20px;
}

.service-details ul {
    list-style: none;
}

.service-details li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

/*==========================
WHY US
==========================*/

.why-us {
    background: #12355B;
    color: white;
    padding: 90px 0;
}

.why-us h2 {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.why-grid div {
    text-align: center;
}

.why-grid i {
    font-size: 45px;
    color: #f97316;
    margin-bottom: 20px;
}

/*==========================
PROCESS
==========================*/

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    text-align: center;
}

.process-grid span {
    width: 70px;
    height: 70px;
    background: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    margin: auto auto 20px;
}

/*==========================
ABOUT
==========================*/

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.about h2 {
    color: #12355B;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about p {
    line-height: 2;
    margin-bottom: 35px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

/*==========================
CTA
==========================*/

.cta {
    background: #f97316;
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.cta h2 {
    font-size: 2.5rem;
}

.cta p {
    margin: 25px 0;
}

/*==========================
TESTIMONIALS
==========================*/

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    padding: 35px;
    text-align: center;
    font-size: 20px;
}

.testimonial p {
    margin: 20px 0;
    color: #666;
}

/*==========================
CONTACT
==========================*/
.contact-box {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.contact-box i {
    font-size: 70px;
    color: #25D366;
    margin-bottom: 20px;
}

.contact-box h3 {
    color: #12355B;
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 20px;
    margin-bottom: 30px;
}

/*==========================
FOOTER
==========================*/

footer {
    background: #12355B;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

footer img {
    width: 170px;
    margin: auto;
    margin-bottom: 20px;
}

/*==========================
FLOATING BUTTONS
==========================*/

.whatsapp,
#topBtn {
    position: fixed;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 999;
}

.whatsapp {
    background: #25D366;
    right: 25px;
    bottom: 25px;
}

#topBtn {
    right: 25px;
    bottom: 95px;
    background: #12355B;
    border: none;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 35px;
}

.menu-btn {
    display: none;
}

/*==========================
MOBILE
==========================*/

@media (max-width:768px) {

    .nav-container {
        height: 75px;
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    .nav {
        display: flex;
        gap: 35px;
    }

    .menu-btn {
        display: none;
    }

    .menu-btn {
        display: block;
        font-size: 28px;
        color: #12355B;
        cursor: pointer;
    }

    .nav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: #9b1a1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 30px 0;
        transform: translateY(-120%);
        transition: .35s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 600;
        color: #12355B;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 20px 80px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

}



@media(max-width:900px) {

    .service-detail,
    .service-detail.reverse {

        flex-direction: column;
        gap: 35px;
        margin-bottom: 70px;

    }

    .service-text h2 {

        font-size: 1.8rem;
        text-align: center;

    }

    .service-text {

        text-align: center;

    }

    .service-text ul {

        text-align: left;

    }

}


.service-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: 100%;
    margin-top: 25px;
    padding: 15px 20px;

    background: #12355B;
    color: #fff;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;

    transition: .35s;

    text-decoration: none;
}

.service-btn i {
    transition: .35s;
}

.service-btn:hover {
    background: #f97316;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
}

.service-btn:hover i {
    transform: translateX(6px);
}


section {
    padding: 90px 0;
}


.page-title {
    text-align: center;
    margin-bottom: 60px;
}

.page-title h1 {
    font-size: 2.8rem;
    color: #12355B;
    margin-bottom: 15px;
}

.page-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}



.service-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    color: #12355B;
    margin-bottom: 20px;
}

.service-info p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.service-info ul {
    padding-left: 20px;
}

.service-info li {
    margin-bottom: 10px;
}


@media (max-width:900px) {

    .service-content,
    .service-content.reverse {

        flex-direction: column;

    }

    .service-info {
        text-align: center;
    }

    .service-info ul {
        text-align: left;
    }

}