/* ================================
   GOOGLE FONT
================================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{

    padding:100px 8%;

}

/*=====================================
            NAVBAR
======================================*/

.header{

    position:sticky;

    top:0;

    width:100%;

    z-index:1000;

    background:#050816;

    display:flex;

    justify-content:center;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.navbar{

    width:92%;
    max-width:1300px;

    height:75px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:transparent;

    padding:0;

    border:none;

    border-radius:0;

    backdrop-filter:none;

}

.logo img{

    width:190px;
    height:auto;

}

.nav-links{

    display:flex;
    gap:45px;

}

.nav-links a{

    color:#fff;

    font-size:17px;
    font-weight:500;

    position:relative;

    transition:.35s;

}

.nav-links a:hover{

    color:#7b61ff;

}

.nav-links a{

position:relative;

}

.nav-links a::after{

content:"";

position:absolute;

bottom:-8px;

left:50%;

width:0;

height:2px;

background:#6C63FF;

transition:.3s;

transform:translateX(-50%);

}

.nav-links a:hover::after{

width:100%;

}

.nav-btn{

    padding:11px 26px;

    border-radius:50px;

    background:linear-gradient(135deg,#6C63FF,#00C2FF);

    font-size:15px;
    font-weight:600;

    color:white;

    transition:.35s;

}

.nav-btn:hover{

transform:translateY(-2px) scale(1.04);

box-shadow:0 12px 25px rgba(108,99,255,.35);

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

    color:white;

}

/*=====================================
            HERO SLIDER
======================================*/

.hero-slider{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding-top:0px;
    padding-bottom:10px;

}

.slides{

    position:relative;

    width:94%;
    max-width:1300px;

    aspect-ratio:16/9;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.slide{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:contain;

    background:#050816;

    opacity:0;

    transition:opacity .8s ease;

}

.slide.active{

    opacity:1;

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.45);

    color:#fff;

    cursor:pointer;

    z-index:10;

    font-size:20px;

    transition:.3s;

}

.prev{

    left:25px;

}

.next{

    right:25px;

}

.prev:hover,
.next:hover{

    background:#6C63FF;

}

.dots{

    position:absolute;

    bottom:-45px;

    width:100%;

}

.dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.3s;

}

.dot.active{

    background:#6C63FF;

}

/*=====================================
            plans button
======================================*/

.plans-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:25px;

    padding:16px 42px;

    border-radius:50px;

    background:linear-gradient(90deg,#6C63FF,#00C2FF);

    color:#fff;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(0,194,255,.25);

}

.plans-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,194,255,.4);

}

.plans-cta{

    padding:10px 0 35px;

    text-align:center;

}

.plans-cta .container{

    max-width:800px;

    margin:auto;

}

.plans-cta h2{

    font-size:42px;

    font-weight:700;

    color:#fff;

    margin-bottom:15px;

}

.plans-cta p{

    font-size:18px;

    color:#b8b8c7;

    line-height:1.8;

    margin-bottom:5px;

}



/*=====================================
            ABOUT
======================================*/

.about{

    padding:10px 8% 100px;

    background:#080B1A;

}

.about-heading{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

}


.about-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.section-title span{

    width:55px;
    height:2px;

    background:linear-gradient(to right,#6C63FF,#00C2FF);

}

.section-title{

    width:100%;

    text-align:center;

    margin-bottom:15px;

}

.section-title h5{

    display:inline-block;

    font-size:40px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#6C63FF;

    position:relative;

    padding-bottom:12px;

}

.section-title h5::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:70px;

    height:3px;

    border-radius:5px;

    background:linear-gradient(90deg,#6C63FF,#00C2FF);

}

.about-content h2{

    font-size:20px;

    line-height:1.2;

    margin-bottom:1px;

}

.about-content p{

    color:#C8C8D0;

    font-size:17px;

    line-height:1.9;

    margin-bottom:15px;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

}

.feature i{

    color:#6C63FF;

    font-size:18px;

}

.service-areas{

    max-width: 1200px;

    margin: 60px auto 0;

    padding: 0 20px;

}

.service-areas h4{

    color:#ffffff;

    text-align: center;

    margin-bottom: 25px;

    font-size:24px;

}

.area-list{

    display:flex;

    flex-wrap:wrap;

    justify-content: center;

    gap:12px;

}

.area-list span{

    padding:10px 18px;

    border-radius:30px;

    background:#11162a;

    border:1px solid rgba(108,99,255,.3);

    color:#fff;

    transition:.3s;

}

.area-list span:hover{

    background:linear-gradient(90deg,#6C63FF,#00C2FF);

    transform:translateY(-3px);

}


/* ==========================
      WHO WE ARE BUTTON
========================== */

.who-btn{

    padding:12px 28px;

    border:none;

    border-radius:40px;

    background:linear-gradient(135deg,#5f5cff,#29b6f6);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.who-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(41,182,246,.3);

}

/* ==========================
        POPUP
========================== */

.who-popup{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    padding:25px;

    background:rgba(8,15,35,.35);

    backdrop-filter:blur(8px);

    z-index:9999;

}

.who-popup-content{

    width:100%;

    max-width:700px;

    max-height:85vh;

    overflow-y:auto;

    background:rgba(18,27,48,.92);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

    color:#fff;

    position:relative;

    animation:popup .35s ease;

}

.who-popup-content h3{

    color:#29b6f6;

    margin-bottom:20px;

    font-size:30px;

}

.who-popup-content p{

    color:#d6dced;

    line-height:1.9;

    margin-bottom:18px;

}

.close-popup{

    position:absolute;

    right:20px;

    top:15px;

    font-size:32px;

    cursor:pointer;

    color:#fff;

}

.close-popup:hover{

    color:#29b6f6;

}

@keyframes popup{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@media (max-width:768px){

    .who-popup{

        padding:15px;

    }

    .who-popup-content{

        max-height:90vh;

        padding:25px;

    }

    .who-popup-content h3{

        font-size:24px;

    }

    .who-popup-content p{

        font-size:15px;

        line-height:1.7;

    }

}



/*======================================
            PLANS SECTION
======================================*/

.plans-section{
    padding:90px 0;
    background:#070b1d;
}

.plans-section .section-heading{
    text-align:center;
    margin-bottom:50px;
}

.plans-section .section-heading span{
    display:inline-block;
    color:#6C63FF;
    font-size:40px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.plans-section .section-heading h2{
    font-size:24;
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
}

.plans-section .section-heading p{
    color:#b8bfd6;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* Category Tabs */

.plan-tabs{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.tab-btn{

    padding:13px 28px;

    border:none;

    border-radius:40px;

    background:#12182d;

    color:#fff;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

    font-weight:600;

}

.tab-btn:hover,
.tab-btn.active{

    background:linear-gradient(90deg,#6C63FF,#22C1F1);

}

/* OTT Button */

.ott-wrapper{
    display:none;
    text-align:center;
    margin-bottom:30px;
    justify-content:center;
    margin:20px 0;
}

.ott-btn{

    padding:11px 28px;

    border:none;

    border-radius:35px;

    cursor:pointer;

    background:transparent;

    border:2px solid #6C63FF;

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.ott-btn:hover{

    background:linear-gradient(90deg,#6C63FF,#22C1F1);

    border-color:transparent;

}

/* Month Tabs */

.month-tabs{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.month-btn{

    padding:10px 24px;

    border:none;

    border-radius:30px;

    background:#11182d;

    color:#fff;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

}

.month-btn:hover,
.month-btn.active{

    background:linear-gradient(90deg,#6C63FF,#22C1F1);

}

/* Cards */

.plans-grid{

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 30px;

    margin-top: 45px;

}


/* Responsive */

@media(max-width:768px){

    .plans-section{

        padding:70px 0;

    }

    .plans-section .section-heading h2{

        font-size:32px;

    }

    .tab-btn,
    .month-btn{

        width:100%;

        max-width:280px;

    }

}


/* ==========================
        PLAN CARD
========================== */

.plan-card{

    position:relative;

    background:#11182d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px 30px;

    text-align:center;

    transition:.35s;

    overflow:hidden;

}

.plan-card{
    min-height:420px;
}

.plan-card{

    width: 280px;

    flex: 0 0 280px;

}

.plan-card:hover{

    transform:translateY(-10px);

    border-color:#6C63FF;

    box-shadow:0 20px 45px rgba(108,99,255,.25);

}

.popular-badge{

    position:absolute;

    top:18px;

    right:-38px;

    background:linear-gradient(90deg,#6C63FF,#22C1F1);

    color:#fff;

    padding:8px 40px;

    font-size:12px;

    font-weight:600;

    transform:rotate(45deg);

}

.plan-card h3{

    font-size:32px;

    color:#fff;

    margin-top:15px;

    margin-bottom:25px;

}

.plan-price{

    margin-bottom:30px;

}

.plan-price .price{

    font-size:35px;

    font-weight:700;

    color:#6C63FF;

}

.plan-price .duration{

    color:#b8bfd6;

    font-size:16px;

}

.plan-features{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.plan-features li{

    color:#d8dbea;

    margin:14px 0;

    display:flex;

    align-items:center;

    gap:12px;

    justify-content:center;

}

.plan-features i{

    color:#22C1F1;

}

.plan-btn{

    display:inline-block;

    padding:14px 34px;

    border-radius:40px;

    background:linear-gradient(90deg,#6C63FF,#22C1F1);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.plan-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(34,193,241,.35);

}

/* ======================
        OTT MODAL
====================== */

.ott-modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

.ott-modal-content{
    width: 90%;
    max-width: 850px;
    max-height: 90%;
    overflow: hidden;
    animation: popup .3s ease;
    background: #050c1a;
    border-radius: 12px;
}

.ott-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-bottom: 1px solid #ddd;
}

.ott-header h3{
    margin: 0;
    color: #6c63ff;
    font-size: 20px;
}

.close-modal{
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
    color: #22c1f1;
}

.ott-modal img{

    display: block;
    width: 100%;
    max-height: 75vh;   /* Leaves space above & below */
    object-fit: contain;

}

@keyframes popup{
    from{
        transform: scale(.9);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}

/*===========================
    SPECIAL OFFER SECTION
===========================*/

.offer-card{

    width: 490px;
    max-width:650px;

    margin:40px auto;

    padding:30px 25px;

    border-radius:24px;

    background:linear-gradient(135deg,#242d52,#1b213c);

    border:2px solid #29b6f6;

    box-shadow:0 20px 40px rgba(41,182,246,.25);

    box-sizing:border-box;

}

.plans-grid{

    padding:0 18px;

}

.offer-data{

    color:#29b6f6;

    font-size:20px;

    font-weight:700;

    margin:10px 0 18px;

}

.offer-note{

    margin-top:18px;

    font-size:13px;

    color:#bfc8dc;

    text-align:center;

    font-style:italic;

}

.offer-price sup{

    font-size:12px;

    top:-0.4em;

    position:relative;

}

/* ========= PLANS NOTE =========== */

.plans-note{

    margin-top:50px;

    text-align:center;

    max-width:800px;

    margin-left:auto;

    margin-right:auto;

}

.plans-note p{

    color:#cfd8e8;

    font-size:18px;

    line-height:1.8;

}

.plans-note strong{

    color:#ffffff;

}

.plans-note a{

    color:#29b6f6;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.plans-note a:hover{

    color:#5f5cff;

    text-decoration:underline;

}

.offer-badge{

    display:inline-block;

    margin-bottom:20px;

    padding:8px 18px;

    border-radius:50px;

    background:linear-gradient(90deg,#5f5cff,#29b6f6);

    color:#fff;

    font-size:14px;

    font-weight:700;

}

.offer-card h2{

    color:#fff;

    font-size:30px;

    margin-bottom:10px;

}

.offer-card h3{

    color:#29b6f6;

    font-size:25px;

    margin-bottom:10px;

}

.offer-price{

    font-size:48px;

    font-weight:700;

    color:#6c63ff;

    margin-bottom:30px;

}

.offer-price span{

    font-size:16px;

    color:#fff;

}

.offer-card ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.offer-card ul li{

    color:#d7dcef;

    font-size:18px;

    margin:12px 0;

}





/* ==========================================
            SERVICES SECTION
========================================== */

.services-section{
    padding:100px 0;
}

.achievements{
    margin-top:120px;
}

.why-choose{
    margin-top:120px;
}

/* ---------- Common Heading ---------- */

.services-section .section-heading,
.services-heading{

    text-align:center;
    max-width:900px;
    margin:0 auto 70px;

}

.services-section .section-heading span,
.services-heading span{

    display:block;
    color:#6C63FF;
    font-size:40px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:14px;

}

.services-section .section-heading h2,
.services-heading h2{

    color:#fff;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;

}

.services-section .section-heading p,
.services-heading p{

    color:#b8bfd8;
    font-size:22px;
    line-height:1.8;
    max-width:850px;
    margin:0 auto;

}

/* ---------- Services Cards ---------- */

.services-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;

}

.service-card{

    width:320px;
    background:#171d33;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);
    border-color:#29b6f6;
    box-shadow:0 15px 35px rgba(41,182,246,.18);

}

.service-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#5f5cff,#29b6f6);
    margin-bottom:25px;

}

.service-icon i{

    font-size:30px;
    color:#fff;

}

.service-card h3{

    font-size:26px;
    color:#fff;
    margin-bottom:15px;

}

.service-card p{

    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:25px;

}

.service-card ul{

    list-style:none;
    padding:0;

}

.service-card ul li{

    color:#ddd;
    margin-bottom:12px;

}

.service-card ul li i{

    color:#29b6f6;
    margin-right:10px;

}

/* ==========================================
            OUR ACHIEVEMENTS
========================================== */

.achievement-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;

}

.achievement-card{

    width:250px;
    background:#171d33;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;

}

.achievement-card:hover{

    transform:translateY(-8px);
    border-color:#29b6f6;
    box-shadow:0 15px 35px rgba(41,182,246,.18);

}

.achievement-card i{

    font-size:40px;
    color:#29b6f6;
    margin-bottom:20px;

}

.achievement-card h3{

    color:#fff;
    font-size:34px;
    margin-bottom:10px;

}

.achievement-card p{

    color:#cfcfcf;

}

/* ==========================================
            WHY CHOOSE US
========================================== */

.why-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;

}

.why-card{

    width:320px;
    background:#171d33;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);
    border-color:#29b6f6;
    box-shadow:0 15px 35px rgba(41,182,246,.18);

}

.why-card i{

    font-size:34px;
    color:#29b6f6;
    margin-bottom:20px;

}

.why-card h4{

    color:#fff;
    font-size:22px;
    margin-bottom:15px;

}

.why-card p{

    color:#cfcfcf;
    line-height:1.8;

}


/* ======================================
            FAQ SECTION
====================================== */

.faq-section{

    padding:100px 0;

}


.faq-section .section-heading{

    text-align:center;
    max-width:900px;
    margin:0 auto 70px;

}

.faq-section .section-heading span{

    display:block;
    color:#6C63FF;
    font-size:40px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:14px;

}

.faq-section .section-heading h2{

    color:#fff;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;

}

.faq-section .section-heading p{

    color:#b8bfd8;
    font-size:22px;
    line-height:1.8;
    max-width:850px;
    margin:0 auto;

}


.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#171d33;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.3s;

}

.faq-item:hover{

    border-color:#29b6f6;

}

.faq-question{

    width:100%;

    padding:24px 30px;

    background:none;

    border:none;

    color:#fff;

    font-size:21px;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    text-align:left;

}

.faq-question i{

    color:#29b6f6;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#cfcfcf;

    line-height:1.8;

    font-size:17px;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}


/* ==========================================
            CONTACT SECTION
========================================== */

.contact-section{

    padding:100px 40px;

}


.contact-section .section-heading{

    text-align:center;
    max-width:900px;
    margin:0 auto 70px;

}

.contact-section .section-heading span{

    display:block;
    color:#6C63FF;
    font-size:40px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:14px;

}

.contact-section .section-heading h2{

    color:#fff;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;

}

.contact-section .section-heading p{

    color:#b8bfd8;
    font-size:22px;
    line-height:1.8;
    max-width:850px;
    margin:0 auto;

}


.contact-wrapper{

    max-width: 1200px;

    margin: 60px auto 0;

    display:flex;
    gap:40px;
    align-items:stretch;
    margin-top:60px;
    flex-wrap:wrap;

}

/* ===========================
        LEFT CARD
=========================== */

.contact-info{

    flex:1;
    min-width:320px;

    background:#171d33;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

}

.contact-info h3{

    font-size:30px;

    color:#fff;

    margin-bottom:35px;

}

.info-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:30px;

}

.info-item:last-child{

    margin-bottom:0;

}

.info-item i{

    width:60px;

    height:60px;

    background:linear-gradient(135deg,#5f5cff,#29b6f6);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

    flex-shrink:0;

}

.info-item h4{

    color:#fff;

    font-size:20px;

    margin-bottom:8px;

}

.info-item p{

    color:#cfcfcf;

    line-height:1.8;

    margin:0;

}

/* ===========================
        RIGHT CARD
=========================== */

.contact-form{

    flex:1.2;

    min-width:350px;

    background:#171d33;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

}

.contact-form h3{

    color:#fff;

    font-size:30px;

    margin-bottom:35px;

}

.form-row{

    display:flex;

    gap:20px;

}

.form-row .input-group{

    flex:1;

}

.input-group{

    margin-bottom:25px;

}

.input-group label{

    display:block;

    color:#fff;

    font-weight:600;

    margin-bottom:10px;

}

.input-group input,

.input-group select,

.input-group textarea{

    width:100%;

    background:#0f1528;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:15px 18px;

    color:#fff;

    font-size:16px;

    transition:.3s;

    outline:none;

}

.input-group input::placeholder,

.input-group textarea::placeholder{

    color:#999;

}

.input-group input:focus,

.input-group select:focus,

.input-group textarea:focus{

    border-color:#29b6f6;

    box-shadow:0 0 0 3px rgba(41,182,246,.18);

}

.input-group textarea{

    resize:vertical;

    min-height:140px;

}

/* ===========================
        BUTTON
=========================== */

.contact-btn{

    width:100%;

    border:none;

    border-radius:12px;

    padding:16px;

    background:linear-gradient(135deg,#5f5cff,#29b6f6);

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(41,182,246,.25);

}

/* ===========================
        RESPONSIVE
=========================== */

@media(max-width:991px){

    .contact-wrapper{

        flex-direction:column;

    }

    .form-row{

        flex-direction:column;

        gap:0;

    }

    .contact-info,

    .contact-form{

        min-width:100%;

    }

}

/* ==========================================
                FOOTER
========================================== */

.footer{

    margin-top:100px;

    background:#11172b;

    border-top:1px solid rgba(255,255,255,.08);

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-col p{

    color:#b8bfd8;

    line-height:1.8;

}

.footer-contact{

    margin-top:20px;

}

.footer .container{
    padding-left:25px;
    padding-right:25px;
}

.footer .container{
    padding-inline:50px;
}

.footer-contact p{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

}

.footer-contact i{

    color:#29b6f6;

}

.footer-col h3{

    color:#fff;

    margin-bottom:25px;

    font-size:24px;

}

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col ul li{

    margin-bottom:15px;

    color:#b8bfd8;

}

.footer-col ul li a{

    color:#b8bfd8;

    text-decoration:none;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#29b6f6;

    padding-left:8px;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:60px 0 40px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#171d33;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:linear-gradient(135deg,#5f5cff,#29b6f6);

    transform:translateY(-6px);

}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

}

.footer-bottom p{

    color:#aeb7d4;

    margin:0;

}

/* ==========================
        RESPONSIVE
========================== */

@media(max-width:991px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:650px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-contact p{

        justify-content:center;

    }

}