/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
ROOT VARIABLES
==============================*/

:root{
    --primary:#0A4DFF;
    --secondary:#00C2FF;
    --dark:#071B35;
    --dark2:#0F2748;
    --white:#ffffff;
    --gray:#E9EEF8;
    --text:#666;
    --gradient:linear-gradient(135deg,#0A4DFF,#00C2FF);

    --shadow:0 20px 45px rgba(0,0,0,.12);
    --shadow2:0 12px 35px rgba(10,77,255,.20);

    --radius:18px;

    --transition:.35s ease;
}

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:90px 0;
}

/*==============================
PRELOADER
==============================*/

#preloader{
    position:fixed;
    inset:0;
    background:#071B35;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader{
    width:70px;
    height:70px;
    border-radius:50%;
    border:6px solid rgba(255,255,255,.15);
    border-top:6px solid #00C2FF;
    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}

/*==============================
SCROLL BAR
==============================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:var(--gradient);

    z-index:9999;

}

/*==============================
HEADER
==============================*/

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    transition:.4s;

    border-bottom:1px solid rgba(255,255,255,.15);
}
header.active{
    background:rgba(7,27,53,.94);
    backdrop-filter:blur(14px);
    box-shadow:0 5px 25px rgba(0,0,0,.18);
    border-bottom:1px solid rgba(255,255,255,.2);
}

.navbar{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo h2{

    color:#fff;

    font-size:30px;

    font-weight:700;

}

.logo span{

    color:#00C2FF;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#fff;

    font-weight:500;

    transition:.3s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#00C2FF;

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.menu-btn{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/*==============================
BUTTONS
==============================*/

.btn{

    display:inline-block;

    padding:15px 35px;

    border-radius:50px;

    background:var(--gradient);

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:var(--shadow2);

}

.btn:hover{

    transform:translateY(-6px);

}

.btn-outline{

    background:transparent;

    border:2px solid #fff;

}

/*==============================
HERO
==============================*/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:linear-gradient(135deg,#071B35,#0B4FFF);

    color:#fff;

    padding:130px 7%;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:#00C2FF;

    opacity:.10;

    border-radius:50%;

    top:-200px;

    right:-120px;

}

.hero-content{

    flex:1;

    z-index:2;

}

.hero-content h1{

    font-size:64px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-content span{

    color:#00C2FF;

}

.hero-content p{

    max-width:580px;

    font-size:18px;

    line-height:1.9;

    color:#dfe9ff;

}

.hero-btns{

    margin-top:40px;

    display:flex;

    gap:20px;

}

.hero-image{

    flex:1;
    display:flex;
    justify-content:center;
    margin-left:60px;
    text-align:center;

}

.hero-image img{

    width:90%;
    border-radius:10%;
    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    50%{

        transform:translateY(-20px);

    }

}

/*==============================
SECTION TITLE
==============================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:42px;

    color:#071B35;

    margin-bottom:12px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

/*==============================
ABOUT
==============================*/

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.about-card{

    background:#fff;

    border-radius:18px;

    padding:45px 35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.4s;

}

.about-card:hover{

    transform:translateY(-12px);

}

.about-card i{

    font-size:48px;

    color:#0A4DFF;

    margin-bottom:20px;

}

.about-card h3{

    margin-bottom:10px;

}

/*==============================
PLANS
==============================*/

.plans{

    background:#F5F8FD;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.plan-card{

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:45px 35px;

    position:relative;

    box-shadow:var(--shadow);

    transition:.35s;

}

.plan-card:hover{

    transform:translateY(-15px);

}

.plan-card h1{

    font-size:52px;

    margin:18px 0;

    color:#0A4DFF;

}

.plan-card ul{

    margin:25px 0;

}

.plan-card li{

    padding:10px;

}

.popular{

    background:linear-gradient(135deg,#0A4DFF,#00C2FF);

    color:#fff;

}

.popular h1{

    color:#fff;

}

.tag{

    position:absolute;

    top:20px;

    right:-10px;

    background:#ffb400;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

/*==============================
OFFERS
==============================*/

.offer{

    margin-top:70px;

    background:var(--gradient);

    color:#fff;

    border-radius:20px;

    padding:50px;

    text-align:center;

    box-shadow:var(--shadow2);

}

.offer h2{

    margin-bottom:20px;

}

.offer p{

    margin:12px 0;

    font-size:18px;

}
/*==============================
FEATURES
==============================*/

.features{
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-box{
    background:#fff;
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    overflow:hidden;
    position:relative;
}

.feature-box::before{
    content:"";
    position:absolute;
    width:100%;
    height:5px;
    left:0;
    top:0;
    background:var(--gradient);
}

.feature-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(10,77,255,.15);
}

.feature-box i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:var(--gradient);
    color:#fff;
    font-size:35px;
    margin-bottom:25px;
}

.feature-box h3{
    font-size:22px;
    color:#071B35;
}

/*==============================
CONTACT
==============================*/

.contact{
    background:#F7FAFF;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-item span,
.contact-item a{

    color:#333;

    text-decoration:none;

    line-height:1.8;

}
.contact-info{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-info h3{
    font-size:34px;
    margin-bottom:25px;
    color:#071B35;
}

.contact-info p{
    margin-bottom:20px;
    color:#555;
    line-height:1.8;
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.contact-info i{
    color:#0A4DFF;
    font-size:22px;
    margin-top:3px;
}

.contact form{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact form input,
.contact form textarea{

    width:100%;

    padding:18px 20px;

    margin-bottom:20px;

    border:none;

    outline:none;

    background:#F4F7FB;

    border-radius:12px;

    font-size:16px;

    transition:.3s;

}

.contact form input:focus,
.contact form textarea:focus{

    background:#fff;

    border:2px solid #0A4DFF;

}

.contact textarea{

    resize:none;

    height:180px;

}

.contact button{

    border:none;

    cursor:pointer;

}

/*==============================
FOOTER
==============================*/

footer{

    background:#071B35;

    color:#fff;

    text-align:center;

    padding:60px 20px;

}

footer h3{

    font-size:34px;

    margin-bottom:15px;

}

footer p{

    color:#cdd6e5;

    margin-top:12px;

}

/*==============================
WHATSAPP BUTTON
==============================*/

.whatsapp{

    position:fixed;

    bottom:25px;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:translateY(-8px) scale(1.08);

}

/*==============================
CALL BUTTON
==============================*/

.call{

    position:fixed;

    bottom:100px;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#0A4DFF;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

    z-index:999;

    transition:.35s;

}

.call:hover{

    transform:translateY(-8px) scale(1.08);

}

/*==============================
CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EAEAEA;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(#0A4DFF,#00C2FF);

    border-radius:30px;

}

/*==============================
ANIMATED BACKGROUND
==============================*/

.hero::after{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    left:-250px;

    bottom:-450px;

}

/*==============================
IMAGE HOVER
==============================*/

.hero-image img{

    filter:drop-shadow(0 30px 45px rgba(0,0,0,.25));

    transition:.4s;

}

.hero-image img:hover{

    transform:scale(1.04);

}

/*==============================
SECTION SPACING
==============================*/

.about,
.plans,
.features,
.contact{

    position:relative;

    overflow:hidden;

}

.about::before,
.features::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(0,194,255,.08);

    top:-100px;

    right:-100px;

}

.plans::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(10,77,255,.05);

    border-radius:50%;

    left:-150px;

    bottom:-150px;

}

/*==============================
TEXT SELECTION
==============================*/

::selection{

    background:#0A4DFF;

    color:#fff;

}

/*==============================
SMOOTH FADE
==============================*/

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}
.ripple{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    transform:scale(0);
    animation:ripple .6s linear;
    pointer-events:none;
}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}
/*==========================
FOOTER
==========================*/

footer{

    background:#071B35;

    color:#fff;

    padding:70px 8% 25px;

}

.footer-container{
    display:grid;
    grid-template-columns:1fr 1fr 1.2fr;
    gap:30px;
    align-items:flex-start;
}

.footer-box h3{

    margin-bottom:25px;

    font-size:28px;

    color:#fff;

}

.footer-box p{

    color:#d8d8d8;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-box p i{

    color:#00C2FF;

    margin-right:10px;

}

.footer-box a{

    color:#d8d8d8;

    transition:.35s;

}

.footer-box a:hover{

    color:#00C2FF;

    padding-left:8px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    display:inline-block;

    transition:.35s;

}

.footer-box ul li a:hover{

    color:#00C2FF;

    transform:translateX(8px);

}
.footer-box{
    text-align:left;
}
.social-icons{

    display:flex;
    gap:35px;   /* Increase spacing */
    margin-top:25px;
    align-items:center;

}

.social-icons a{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0A4DFF;

    color:#fff;

    font-size:22px;

    transition:.4s;

}

.social-icons a:hover{

    transform:translateY(-8px) scale(1.15);

}

.social-icons a:nth-child(1):hover{

    background:#1877F2;

}

.social-icons a:nth-child(2):hover{

    background:#E1306C;

}

.social-icons a:nth-child(3):hover{

    background:#000;

}
.footer-bottom{

    margin-top:45px;
    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

}
.social-text{
    color:#bbb;
    margin:15px 0 25px;
    line-height:1.7;
}
.contact-card{

    background:linear-gradient(135deg,#0A4DFF,#062b4f);

    color:#fff;

}

.contact-card h2{

    color:#fff;

}

.contact-card p{

    color:#f5f5f5;

}

.contact-card a{

    text-decoration:none;

}

.contact-card i{

    color:#00C2FF;

    margin-right:10px;

}
.logo a{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.logo img{

    width:55px;

    height:55px;

    object-fit:contain;

    transition:.4s ease;

}

.logo img:hover{

    transform:rotate(-8deg) scale(1.08);

}

.logo h2{

    font-size:2rem;

    font-weight:700;

    color:#00C2FF;

    margin:0;

}

.logo h2 span{

    color:#fff;

}
.contact-details p{

    margin:18px 0;

    font-size:1.05rem;

}
/*==============================
PAGE BANNER
==============================*/

.page-banner{

    padding:170px 8% 90px;

    background:linear-gradient(135deg,#041f38,#0A4DFF);

    color:#fff;

    text-align:center;

}

.page-banner h1{

    font-size:3.2rem;

    margin-bottom:20px;

}

.page-banner p{

    max-width:800px;

    margin:auto;

    color:#ddd;

    line-height:1.8;

}

/*==============================
POLICY SECTION
==============================*/

.policy-section{

    background:#f5f9ff;

    padding:80px 8%;

}

.policy-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    margin-bottom:30px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.policy-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,194,255,.25);

}

.policy-card h2{

    color:#0A4DFF;

    margin-bottom:20px;

}

.policy-card h2 i{

    margin-right:10px;

    color:#00C2FF;

}

.policy-card p,
.policy-card li{

    color:#555;

    line-height:1.9;

}

.policy-card ul{

    padding-left:20px;

}

.policy-card li{

    margin-bottom:10px;

}
.contact-item a{

    color:#333 !important;

    text-decoration:none;

    font-weight:500;

    display:inline-block;

}

.contact-item a:hover{

    color:#0A4DFF !important;

}

.contact-item span{

    color:#333 !important;

}