/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    overflow-x:hidden;
    background:#ffffff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= TOPBAR ================= */
.topbar{
    background:#1554c0;
    color:white;
    padding:8px 0;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-auth a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}
.top-auth a:hover{
    text-decoration:underline;
}

/* ================= NAVBAR ================= */
.navbar{
    background:white;
    padding:15px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:9999;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:45px;
}

.menu{
    list-style:none;
    display:flex;
    gap:30px;
}

.menu li{
    position:relative;
}

.menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    padding:10px 0;
    display:block;
    transition:0.3s;
}

.menu li a:hover{
    color:#1554c0;
}

/* ================= DROPDOWN ================= */
.submenu{
    position:absolute;
    top:100%;
    left:0;
    background:#f3f5f9;
    min-width:220px;
    list-style:none;
    padding:12px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    display:none;
    opacity:0;
    transform:translateY(15px);
    transition:all 0.3s ease;
}

.dropdown:hover > .submenu{
    display:block;
    opacity:1;
    transform:translateY(0);
}

.dropdown-sub{
    position:relative;
}

.submenu-sub{
    position:absolute;
    top:0;
    left:100%;
    min-width:250px;
    padding:15px;
    border-radius:15px;
    background:linear-gradient(135deg,#2b6cb0,#1e73be);
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
    display:none;
    opacity:0;
    transform:translateY(15px);
    transition:0.3s;
}

.dropdown-sub:hover > .submenu-sub{
    display:block;
    opacity:1;
    transform:translateY(0);
}

.submenu li a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    border-radius:8px;
    transition:0.3s;
    color:#333;
}

.submenu li a:hover{
    background:rgba(21,84,192,0.08);
}

.submenu-sub li a{
    color:white;
}

.submenu-sub li a:hover{
    background:rgba(255,255,255,0.15);
}

/* ================= HERO ================= */
.hero{
    background:linear-gradient(-45deg,#1e3cbd,#1a53d1,#1554c0,#1e73be);
    background-size:400% 400%;
    animation:gradientMove 10s ease infinite;
    padding:120px 0;
    color:white;
    position:relative;
    overflow:hidden;
}

@keyframes gradientMove{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}

.hero-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hero-left{ width:50%; }
.hero-right{ width:50%; text-align:right; }

.hero-right img{
    width:420px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-15px); }
    100%{ transform:translateY(0px); }
}

.hero-left h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero-left p{
    margin-bottom:25px;
}

.hero-btn{
    background:white;
    color:#1e3cbd;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
    animation:pulse 2.5s infinite;
}

@keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(255,255,255,0.5); }
    70%{ box-shadow:0 0 0 15px rgba(255,255,255,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,255,255,0); }
}

/* ================= DOMAIN ================= */
.domain-section{
    background:#eef1f6;
    padding:60px 0;
    text-align:center;
}

/* ================= PRICING ================= */
.pricing-section{
    background:#f8f9fc;
    padding:80px 0;
    text-align:center;
}

.pricing-wrapper{
    display:flex;
    gap:30px;
    justify-content:center;
}

.pricing-card{
    background:white;
    width:320px;
    border-radius:10px;
    overflow:hidden;
    transition:0.4s ease;
}

.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(21,84,192,0.25);
}

/* ================= WHY ================= */
.why{
    padding:80px 0;
    text-align:center;
}

.why-items{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.why-box{
    flex:1;
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.why-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ================= SCROLL FADE ================= */
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

/* ================= FOOTER ================= */
footer{
    background:#0f172a;
    color:white;
    padding:60px 0;
    margin-top:60px;
}

/* ================= MOBILE ================= */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:#1554c0;
    border-radius:3px;
}

@media(max-width:992px){

.hero-wrapper,
.pricing-wrapper,
.why-items{
    flex-direction:column;
}

.hero-left,
.hero-right{
    width:100%;
    text-align:center;
}

.hero-right{
    margin-top:40px;
}

.menu{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    padding:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.menu.active{
    display:flex;
}

.hamburger{
    display:flex;
}
}

/* ================= SCROLL TOP ================= */
#scrollTopBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:45px;
    height:45px;
    background:#1554c0;
    color:white;
    border:none;
    border-radius:50%;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
/* ===== MOBILE DROPDOWN FIX ===== */
@media(max-width:992px){

    .submenu{
        position:static;
        display:none;
        box-shadow:none;
        background:#f8f9fc;
        margin-top:8px;
    }

    .dropdown.open > .submenu{
        display:block;
    }

}

/* ===== TABLET VIEW FIX ===== */
@media(min-width:768px) and (max-width:992px){

    .pricing-wrapper{
        flex-wrap:wrap;
        justify-content:center;
    }

    .pricing-card{
        width:45%;
        margin-bottom:20px;
    }

    .why-items{
        flex-wrap:wrap;
    }

    .why-box{
        width:45%;
    }
}

@media(max-width:992px){

.hero{
        padding:80px 0;
    }

.hero-left h1{
        font-size:32px;
    }

    .hero-right img{
        width:280px;
    }
}

/* ===== MOBILE WORDPRESS SUBMENU COLOR FIX ===== */
@media(max-width:992px){

    .submenu-sub{
        position:static;
        background:#ffffff !important;
        box-shadow:none;
        margin-top:5px;
        padding:10px 0;
    }

    .submenu-sub li a{
        color:#333 !important;
    }

    .submenu-sub li a i{
        color:#1554c0 !important;
    }

}

#scrollTopBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:45px;
    height:45px;
    background:#1554c0;
    color:white;
    border:none;
    border-radius:50%;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    z-index:9999;
    transition:0.3s;
}

#scrollTopBtn:hover{
    background:#1e73be;
    transform:translateY(-3px);
}
/* ===== Animated Sliding Light Line ===== */

.domain-title{
    position:relative;
    display:inline-block;
    padding-bottom:15px;
}

.domain-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,
        transparent,
        #1554c0,
        #4facfe,
        #1554c0,
        transparent);
    background-size:200% 100%;
    animation:slideLight 3s linear infinite;
    border-radius:5px;
}

@keyframes slideLight{
    0%{
        background-position:-100% 0;
    }
    100%{
        background-position:100% 0;
    }
}

/* ===== Animated Light Line Under Domain Title ===== */

.domain-title{
    position:relative;
    display:inline-block;
    padding-bottom:15px;
}

.domain-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        #1554c0,
        #4facfe,
        #1554c0,
        transparent
    );
    background-size:200% 100%;
    animation:lightSlide 3s linear infinite;
    border-radius:6px;
}

@keyframes lightSlide{
    0%{
        background-position:-100% 0;
    }
    100%{
        background-position:100% 0;
    }
}
@media(max-width:992px){
    .pricing-wrapper{
        flex-direction:column;
    }
}

