/* =========================
GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#0f172a;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

.section-padding{
    padding:100px 0;
}

/* =========================
HEADER CSS
========================= */

.main-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#ffffff;
    padding:18px 0;
    border-bottom:1px solid #e2e8f0;
    transition:0.4s;
}

.main-header.scrolled{
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    display:flex;
    align-items:center;
    justify-content:center;
    animation:floatIcon 3s ease-in-out infinite;
}

.logo-icon i{
    color:#fff;
    font-size:26px;
}

.logo-text h2{
    font-size:30px;
    font-weight:800;
    color:#0f172a;
    margin:0;
    line-height:1.1;
}

.logo-text span{
    color:#2563eb;
}

/* NAVBAR */

.navbar-nav .nav-link{
    color:#334155;
    font-size:15px;
    font-weight:600;
    padding:12px 18px !important;
    border-radius:12px;
    transition:0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#2563eb;
    background:#eff6ff;
}

/* DROPDOWN */

.custom-dropdown{
    border:none;
    border-radius:20px;
    padding:15px;
    min-width:240px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.custom-dropdown .dropdown-item{
    padding:12px 18px;
    border-radius:12px;
    transition:0.3s;
    font-weight:500;
}

.custom-dropdown .dropdown-item:hover{
    background:#eff6ff;
    color:#2563eb;
    padding-left:22px;
}

/* BUTTON */

.header-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(37,99,235,0.20);
}

.header-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* MOBILE BTN */

.menu-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:14px;
    background:#eff6ff;
    color:#2563eb;
    font-size:20px;
}

.menu-btn:focus{
    box-shadow:none;
}

/* =========================
HERO SECTION
========================= */

.hero-section{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:linear-gradient(to bottom,#f8fbff,#eef5ff);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ffffff;
    padding:12px 22px;
    border-radius:50px;
    color:#2563eb;
    font-weight:600;
    box-shadow:0 10px 30px rgba(37,99,235,0.10);
    margin-bottom:25px;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
    color:#0f172a;
}

.hero-content h1 span{
    color:#2563eb;
}

.hero-content p{
    font-size:18px;
    color:#64748b;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(37,99,235,0.20);
}

.primary-btn:hover{
    transform:translateY(-6px);
    color:#fff;
}

.secondary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    background:#fff;
    color:#2563eb;
    border-radius:50px;
    font-weight:600;
    border:1px solid #dbeafe;
    transition:0.4s;
}

.secondary-btn:hover{
    background:#2563eb;
    color:#fff;
}

.hero-image{
    position:relative;
}

.hero-image img{
    animation:floatImage 4s ease-in-out infinite;
}

/* =========================
CARDS SECTION
========================= */

.info-card{
    background:#fff;
    padding:35px;
    border-radius:28px;
    transition:0.4s;
    height:100%;
    border:1px solid #eef2ff;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(37,99,235,0.10);
}

.info-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.info-card h3{
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.info-card p{
    color:#64748b;
    margin:0;
}

/* =========================
CTA SECTION
========================= */

.cta-section{
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    padding:100px 0;
    text-align:center;
    color:#fff;
}

.cta-section h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:25px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    font-size:18px;
}

/* =========================
FOOTER CSS
========================= */

.footer-area{
    background:#ffffff;
    padding:90px 0 0;
    border-top:1px solid #e2e8f0;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-icon{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-icon i{
    color:#fff;
    font-size:24px;
}

.footer-logo h2{
    font-size:30px;
    font-weight:800;
    margin:0;
}

.footer-logo h2 span{
    color:#2563eb;
}

.footer-text{
    color:#64748b;
    margin-bottom:30px;
    line-height:2;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:48px;
    height:48px;
    background:#eff6ff;
    color:#2563eb;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
}

.footer-social a:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-6px);
}

.footer-links h4{
    font-size:24px;
    margin-bottom:25px;
    font-weight:700;
}

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:#64748b;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#2563eb;
    padding-left:8px;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-box{
    display:flex;
    gap:15px;
}

.contact-icon{
    min-width:50px;
    height:50px;
    border-radius:14px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-box p{
    color:#64748b;
    margin:0;
}

.footer-bottom{
    margin-top:70px;
    padding:25px 0;
    border-top:1px solid #e2e8f0;
}

.bottom-links{
    display:flex;
    gap:20px;
}

.bottom-links a{
    color:#64748b;
    transition:0.3s;
}

.bottom-links a:hover{
    color:#2563eb;
}

/* =========================
ANIMATIONS
========================= */

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes floatIcon{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:25px;
        margin-top:20px;
        border-radius:24px;
        box-shadow:0 15px 40px rgba(0,0,0,0.08);
    }

    .hero-content h1{
        font-size:44px;
    }

}

@media(max-width:768px){

    .section-padding{
        padding:70px 0;
    }

    .hero-section{
        padding:90px 0;
        text-align:center;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .cta-section h2{
        font-size:36px;
    }

    .footer-bottom{
        text-align:center;
    }

    .bottom-links{
        justify-content:center;
        flex-wrap:wrap;
    }

}