*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#07141d;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

:root{
    --primary:#15b38a;
    --secondary:#427f80;
    --dark:#07141d;
    --dark2:#10222a;
    --white:#ffffff;
    --gray:#b6bec8;
    --glass:rgba(255,255,255,.08);
}

/* HEADER */

/* .header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
     background: rgba(3,17,29,.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    padding:0;
    transition:.4s ease;

    background:
    linear-gradient(
    90deg,
    rgba(8,28,45,.96),
    rgba(5,20,35,.96)
);

    border-bottom:
    1px solid rgba(255,255,255,.05);

    backdrop-filter:blur(14px);

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}
*/

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    padding:0;
    transition:.4s ease;

    

border-bottom: 1px solid rgba(255,255,255,0.06);
backdrop-filter: blur(10px);
box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
}

.logo img{
    height:65px;
}

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
}

nav ul li a{
    color:#fff;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}

.client-btn{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(21,179,138,.25);
    transition:.3s;
}

.client-btn:hover{
    transform:translateY(-5px);
}

/* HAMBURGER */

.hamburger{
    width:34px;
    height:25px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.hamburger span{
    width:100%;
    height:3px;
    border-radius:20px;
    background:#fff;
    transition:.3s;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg)
    translateY(10px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg)
    translateY(-10px);
}

/* HERO */

.hero{
    position:relative;
    padding:180px 0 120px;
    overflow:hidden;
    background:
    radial-gradient(
        circle at top left,
        rgba(21,179,138,.2),
        transparent 40%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(66,127,128,.2),
        transparent 40%
    ),
    linear-gradient(
        135deg,
        #07141d,
        #10222a
    );
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.hero-content{
    position:relative;
    z-index:10;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    padding:12px 22px;
    border-radius:50px;
    margin-bottom:30px;
    font-size:14px;
    color:#d9e3ea;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    color:#c9d4dd;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:40px;
}

.hero-features span{
    background:rgba(255,255,255,.06);
    padding:12px 18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.05);
    color:#d9e3ea;
    font-size:14px;
}

.hero-features i{
    margin-right:8px;
    color:var(--primary);
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 15px 35px rgba(21,179,138,.25);
}

.primary-btn:hover{
    transform:translateY(-6px);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    transition:.3s;
    backdrop-filter:blur(10px);
}

.secondary-btn:hover{
    background:#fff;
    color:#07141d;
}

.hero-image{
    position:relative;
    animation:float 5s ease-in-out infinite;
}

.hero-image img{
    filter:drop-shadow(0 30px 50px rgba(0,0,0,.5));
}

.hero-blur{
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    filter:blur(120px);
}

.blur-1{
    top:-120px;
    left:-100px;
    background:rgba(21,179,138,.2);
}

.blur-2{
    right:-120px;
    bottom:-120px;
    background:rgba(66,127,128,.25);
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* DOMAIN SEARCH */

.domain-search{
    margin-top:-60px;
    position:relative;
    z-index:100;
}

.domain-box{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:30px;
    padding:55px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.domain-box h2{
    font-size:46px;
    margin-bottom:15px;
}

.domain-box p{
    color:#c9d4dd;
    margin-bottom:35px;
}

.domain-box form{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.domain-box input{
    flex:1;
    height:68px;
    border:none;
    border-radius:16px;
    padding:0 25px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:18px;
    outline:none;
}

.domain-box button{
    border:none;
    padding:0 35px;
    border-radius:16px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.domain-pricing{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.domain-pricing span{
    background:rgba(255,255,255,.05);
    padding:12px 18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.06);
}

/* SECTION */

section{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.section-title h2{
    font-size:54px;
    margin-bottom:18px;
}

.section-title p{
    color:#b6bec8;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* BILLING */

.billing-switch{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:60px;
}

.billing-btn{
    border:none;
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.billing-btn.active{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

/* HOSTING */

.plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.plan-card{
    position:relative;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:45px;
    backdrop-filter:blur(18px);
    transition:.4s;
    overflow:hidden;
}

.plan-card:hover{
    transform:translateY(-15px);
    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.featured-card{
    border:1px solid var(--primary);
    transform:scale(1.04);
}

.recommended{
    position:absolute;
    top:25px;
    right:-40px;
    background:var(--primary);
    color:#fff;
    padding:10px 50px;
    transform:rotate(45deg);
    font-size:13px;
    font-weight:600;
}

.plan-card h3{
    font-size:42px;
    margin-bottom:10px;
}

.plan-desc{
    color:#b6bec8;
    margin-bottom:30px;
}

.price-hosting{
    font-size:58px;
    font-weight:800;
    margin-bottom:30px;
    color:var(--primary);
}

.price{
    font-size:58px;
    font-weight:800;
    margin-bottom:30px;
    color:var(--primary);
}

.price span{
    font-size:20px;
    color:#fff;
}

.plan-btn{
    display:block;
    text-align:center;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    padding:16px;
    border-radius:14px;
    color:#fff;
    font-weight:600;
    margin-bottom:35px;
}

.plan-card ul li{
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#d9e3ea;
}

/* FEATURES */

.features-section{
    background:#091822;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:45px;
    text-align:center;
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-12px);
    border-color:var(--primary);
}

.feature-icon{
    width:90px;
    height:90px;
    margin:auto auto 25px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.feature-card p{
    color:#b6bec8;
    line-height:1.8;
}

/* VPS */

.vps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.vps-card{
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );
    border:1px solid rgba(255,255,255,.08);
    padding:45px;
    border-radius:30px;
    transition:.4s;
    position:relative;
}

.vps-card:hover{
    transform:translateY(-15px);
}

.highlighted-vps{
    border-color:var(--primary);
}

/* STATS */

.stats-section{
    background:#091822;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
    background:rgba(255,255,255,.04);
    border-radius:25px;
    padding:45px;
}

.stat-box h3{
    font-size:60px;
    color:var(--primary);
    margin-bottom:15px;
}

.stat-box p{
    color:#d9e3ea;
}

/* REVIEWS */

.review-title h2{
    color:#fff;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    transition:.4s;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-stars{
    color:#ffb400;
    margin-bottom:20px;
    font-size:22px;
}

.review-card h3{
    margin-bottom:15px;
}

.review-card p{
    color:#c9d4dd;
    line-height:1.9;
}

/* FOOTER */

.footer{
    background:
    linear-gradient(
        180deg,
        #02070b 0%,
        #000000 100%
    );

    border-top:
    1px solid rgba(255,255,255,.06);
	padding-top:25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
}

.footer-logo{
    width:200px;
    margin-bottom:20px;
}

.footer-about p{
    color:#b6bec8;
    line-height:1.8;
    margin-bottom:25px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--primary);
}

.footer-links h3,
.footer-payments h3{
    margin-bottom:22px;
    font-size:28px;
    color:#fff;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-links a{
    color:#c9d4dd;
    transition:.3s;
    font-size:17px;
    width:fit-content;
}

.footer-links a:hover{
    color:var(--primary);
    transform:translateX(5px);
}

.payment-logos{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.payment-logos img{
    width:72px;
    background:#fff;
    padding:8px;
    border-radius:12px;
}

.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.06);
    padding:30px 0;
}

.footer-bottom-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#b6bec8;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .plans-grid,
    .features-grid,
    .vps-grid,
    .reviews-grid,
    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:
        1.5fr 1fr 1fr .8fr;

        gap:50px;

        align-items:flex-start;
    }

}

@media(max-width:991px){

    nav{
        position:fixed;
        top:90px;
        left:-100%;
        width:100%;
        height:calc(100vh - 90px);
        background:#07141d;
        transition:.4s;
        padding:50px 30px;
    }

    nav.active{
        left:0;
    }

    nav ul{
        flex-direction:column;
        align-items:flex-start;
    }

    .hamburger{
        display:flex;
    }

    .desktop-btn{
        display:none;
    }

    .hero-grid,
    .plans-grid,
    .features-grid,
    .vps-grid,
    .reviews-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:
        1fr 1fr;

        gap:50px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .domain-box form{
        flex-direction:column;
    }

}

@media(max-width:576px){

    section{
        padding:90px 0;
    }

    .hero{
        padding-top:150px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:36px;
    }

    .domain-box{
        padding:35px;
    }

    .domain-box h2{
        font-size:34px;
    }

    .plan-card,
    .feature-card,
    .vps-card,
    .review-card{
        padding:30px;
    }

    .price{
        font-size:42px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom-flex{
        flex-direction:column;
        text-align:center;
    }

    .payment-logos{
        justify-content:flex-start;
    }

}

/* HOSTING PRICING */

.monthly-price,
.yearly-price{
    font-size:58px;
    color:#15B38A;
    font-weight:800;
    line-height:1;
}

.billing-small{
    font-size:24px;
    color:#fff;
    font-weight:600;
    margin-bottom:8px;
}

/* VPS FEATURES */

.vps-features{
    margin:35px 0;
}

.vps-features li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    font-size:20px;
    color:#d9e3ea;
    line-height:1.6;
}

.vps-features li i{
    color:#15B38A;
    font-size:16px;
    margin-top:8px;
}

/* ========================================
ABOUT PAGE
======================================== */

.page-header{
    padding:180px 0 120px;
    text-align:center;
    background:
    linear-gradient(
        180deg,
        #03111d 0%,
        #071b2b 100%
    );

    position:relative;
    overflow:hidden;
}

.page-header::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#15B38A;
    filter:blur(180px);
    opacity:.15;
    top:-200px;
    left:-100px;
}

.page-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.06);
    color:#15B38A;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.page-header h1{
    color:#fff;
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.page-header p{
    color:#9fb0c0;
    max-width:750px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}
/* ========================================
WHO WE ARE
======================================== */

.about-section{
    padding:120px 0;
    background:#07131f;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:30px;
}

.section-mini{
    color:#15B38A;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:20px;
    display:inline-block;
}

.about-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.2;
    margin-bottom:30px;
    font-weight:800;
}

.about-content p{
    color:#a7b7c7;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:40px;
}

.about-points div{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    padding:18px 20px;
    border-radius:14px;
    color:#fff;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.4s;
}

.about-points div:hover{
    transform:translateY(-6px);
    border-color:#15B38A;
}

.about-points i{
    color:#15B38A;
}

/* ========================================
STATS
======================================== */

.stats-section{
    padding:120px 0;
    background:#03111d;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:linear-gradient(145deg,#0a1a29,#081521);
    border:1px solid rgba(255,255,255,.05);
    border-radius:28px;
    padding:60px 30px;
    text-align:center;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
    border-color:#15B38A;
}

.stat-box h3{
    color:#15B38A;
    font-size:70px;
    font-weight:900;
    margin-bottom:15px;
}

.stat-box p{
    color:#fff;
    font-size:20px;
}

/* ========================================
MISSION
======================================== */

.mission-vision{
    padding:120px 0;
    background:#07131f;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.mission-card{
    background:linear-gradient(145deg,#0a1a29,#081521);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    padding:60px;
    transition:.4s;
}

.mission-card:hover{
    transform:translateY(-10px);
    border-color:#15B38A;
}

.mission-icon{
    width:90px;
    height:90px;
    border-radius:24px;
    background:linear-gradient(135deg,#15B38A,#2fc8a2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#fff;
    margin-bottom:35px;
}

.mission-card h3{
    color:#fff;
    font-size:40px;
    margin-bottom:20px;
}

.mission-card p{
    color:#a7b7c7;
    line-height:1.9;
    font-size:17px;
}

/* ========================================
WHY CHOOSE US
======================================== */

.why-section{
    padding:120px 0;
    background:#03111d;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#15B38A;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    color:#fff;
    font-size:56px;
    margin-top:15px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:linear-gradient(145deg,#0b1b2a,#071520);
    border-radius:28px;
    padding:45px;
    border:1px solid rgba(255,255,255,.05);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#15B38A;
}

.why-card i{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#15B38A,#2bc6a0);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    margin-bottom:30px;
}

.why-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.why-card p{
    color:#9eb0c0;
    line-height:1.9;
}

/* ========================================
REVIEWS
======================================== */

.reviews-section{
    padding:120px 0;
    background:#07131f;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:linear-gradient(145deg,#0b1b2a,#071520);
    border-radius:28px;
    border:1px solid rgba(255,255,255,.05);
    padding:40px;
    transition:.4s;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:#15B38A;
}

.review-stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:25px;
}

.review-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:20px;
}

.review-card p{
    color:#a8b7c6;
    line-height:1.9;
}

/* ========================================
RESPONSIVE
======================================== */

@media(max-width:1100px){

    .about-grid,
    .mission-grid,
    .stats-grid,
    .why-grid,
    .reviews-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .about-grid,
    .mission-grid,
    .stats-grid,
    .why-grid,
    .reviews-grid,
    .about-points{
        grid-template-columns:1fr;
    }

    .page-header h1{
        font-size:42px;
    }

    .about-content h2,
    .section-title h2{
        font-size:38px;
    }

    .stat-box h3{
        font-size:52px;
    }

    .mission-card{
        padding:40px;
    }

}
/* ========================================
404 PAGE
======================================== */

.page-404{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:180px 0 120px;

    background:
    linear-gradient(
        180deg,
        #03111d 0%,
        #071b2b 100%
    );

    position:relative;
    overflow:hidden;
}

.page-404::before{
    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:#15B38A;

    filter:blur(180px);

    opacity:.12;

    top:-200px;
    left:-150px;
}

.error-box{
    text-align:center;
    position:relative;
    z-index:2;
}

.error-box h1{
    font-size:180px;
    line-height:1;

    font-weight:900;

    color:#15B38A;

    margin-bottom:20px;
}

.error-box h2{
    font-size:52px;
    color:#fff;

    margin-bottom:20px;
}

.error-box p{
    max-width:700px;

    margin:auto auto 40px;

    color:#9fb0c0;

    font-size:20px;
    line-height:1.9;
}

.error-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@media(max-width:768px){

    .error-box h1{
        font-size:120px;
    }

    .error-box h2{
        font-size:38px;
    }

    .error-box p{
        font-size:17px;
    }

}
/* ========================================
POLICY PAGE
======================================== */

.policy-section{
    padding:120px 0;
    background:#07141d;
}

.policy-box{
    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius:30px;

    padding:60px;

    backdrop-filter:blur(18px);
}

.policy-box h2{
    color:#fff;

    font-size:34px;

    margin-top:45px;
    margin-bottom:20px;
}

.policy-box h2:first-child{
    margin-top:0;
}

.policy-box p{
    color:#b6bec8;

    line-height:1.9;

    font-size:17px;

    margin-bottom:20px;
}

.policy-box ul{
    padding-left:20px;
    margin-bottom:20px;
}

.policy-box ul li{
    color:#d9e3ea;

    margin-bottom:14px;

    line-height:1.8;
}

.policy-update{
    margin-top:50px;

    color:#15B38A !important;

    font-weight:600;
}

@media(max-width:768px){

    .policy-box{
        padding:35px;
    }

    .policy-box h2{
        font-size:28px;
    }

}
.offer-badge{
    width: fit-content;
    margin: 20px auto 35px;
    padding: 12px 22px;
    background: linear-gradient(135deg,#00c896,#00a67e);
    color:#fff;
    font-size:15px;
    font-weight:600;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(0,200,150,0.25);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-4px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* ========================================
CONTACT PAGE
======================================== */

.contact-section{
    padding:120px 0;
    background:#07141d;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info h2{
    font-size:52px;
    margin-bottom:25px;
}

.contact-info p{
    color:#b6bec8;
    line-height:1.9;
    margin-bottom:35px;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.contact-box i{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #15B38A,
        #427f80
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.contact-form-box{
    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius:30px;

    padding:45px;
}

.form-group{
    margin-bottom:25px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:none;
    outline:none;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:18px 22px;

    color:#fff;

    font-size:16px;
}

.form-group textarea{
    height:180px;
    resize:none;
}

.success-message{
    background:#15B38A;
    color:#fff;
    padding:18px;
    border-radius:14px;
    margin-bottom:25px;
}

.error-message{
    background:#ff4d4d;
    color:#fff;
    padding:18px;
    border-radius:14px;
    margin-bottom:25px;
}

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}