/* ==========================
   GLOBAL
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:#222;
    background:#fff;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

img{
    max-width:100%;
}

.section-padding{
    padding:100px 0;
}

.section-heading{
    margin-bottom:60px;
}

.section-heading span{
    color:#0d47c9;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    margin-top:15px;
}

/* ==========================
   TOP HEADER
========================== */

.top-header{
    background:#fff;
    padding:25px 0;
}

.logo-area img{
    max-height:60px;
}

.header-contact{
    display:flex;
    justify-content:flex-end;
    gap:40px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.contact-item i{
    color:#0d6efd;
    font-size:24px;
}

.contact-item h6{
    margin:0;
    font-size:16px;
    font-weight:600;
}

.contact-item span{
    color:#666;
    font-size:14px;
}

/* ==========================
   NAVBAR
========================== */

.main-navbar{
    background:linear-gradient(
    90deg,
    #0728a8,
    #0d6efd);
}

.main-navbar .nav-link{
    color:#fff !important;
    font-weight:600;
    margin-right:15px;
}

.main-navbar .nav-link:hover{
    color:#dbe7ff !important;
}

.navbar-icons{
    display:flex;
    gap:25px;
}

.navbar-icons a{
    color:#fff;
    font-size:18px;
}

.navbar-toggler{
    border:none;
    color:#fff;
}

/* ==========================
   HERO
========================== */

.hero-section{
    position:relative;
    background:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    min-height:850px;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    font-size:24px;
    max-width:700px;
    line-height:1.8;
}

.play-btn{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#0d6efd;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    margin-top:40px;
    font-size:34px;
}

.play-btn:hover{
    color:#fff;
    transform:scale(1.05);
}

.hero-shape{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:120px;
    background:#fff;
    clip-path:polygon(0 70%,100% 100%,100% 100%,0 100%);
}

/* ==========================
   ABOUT
========================== */

.about-images{
    position:relative;
    min-height:650px;
}

.about-img-1{
    position:absolute;
    width:180px;
    top:0;
    left:0;
    border-radius:15px;
}

.about-img-2{
    position:absolute;
    width:480px;
    top:50px;
    left:120px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-img-3{
    position:absolute;
    width:220px;
    bottom:0;
    left:0;
    border-radius:15px;
}

.section-title span{
    color:#0d47c9;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:56px;
    font-weight:700;
    margin:20px 0;
}

.section-title p{
    font-size:22px;
    color:#666;
}

.skill-item{
    margin-bottom:25px;
}

.progress{
    height:10px;
    border-radius:50px;
}

.progress-bar{
    background:#0d6efd;
}

/* ==========================
   SERVICES
========================== */

.services-section{
    background:#f7f8fb;
}

.service-card{
    background:#fff;
    padding:45px;
    border-radius:15px;
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-card h4{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.service-card p{
    color:#666;
    line-height:2;
}

/* ==========================
   PRICING
========================== */

.pricing-card{
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:60px 40px;
    box-shadow:0 0 30px rgba(0,0,0,.05);
    height:100%;
}

.pricing-card h3{
    font-size:65px;
    font-weight:800;
}

.pricing-card p{
    color:#777;
    margin-bottom:30px;
}

.pricing-card ul li{
    margin-bottom:18px;
}

.active-plan{
    background:linear-gradient(
    135deg,
    #0d6efd,
    #082ca8);
    color:#fff;
}

.active-plan p{
    color:#fff;
}

.active-plan .btn{
    color:#0d47c9;
}

/* ==========================
   TESTIMONIAL
========================== */

.testimonial-section{
    background:#f8f9fc;
}

.testimonial-box{
    max-width:800px;
    margin:auto;
}

.testimonial-box p{
    font-size:28px;
    color:#444;
    line-height:1.8;
}

.testimonial-box h5{
    margin-top:20px;
    color:#0d47c9;
}

/* ==========================
   BLOG
========================== */

.blog-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,0,0,.05);
}

.blog-card img{
    width:100%;
}

.blog-card h4{
    padding:25px;
    font-size:24px;
    font-weight:700;
}

/* ==========================
   FOOTER
========================== */

.footer-top-shape{
    background:#090b95;
    padding:70px 0;
    clip-path:polygon(
    0 0,
    100% 0,
    58% 100%,
    0 100%);
}

.footer-brand{
    display:flex;
    justify-content:center;
    gap:80px;
    align-items:center;
}

.footer-brand img{
    max-height:100px;
}

.footer-main{
    background:#eef4ff;
    padding:80px 0;
}

.footer-logo{
    margin-bottom:25px;
}

.footer-widget h4{
    margin-bottom:25px;
    font-weight:700;
}

.footer-widget li{
    margin-bottom:15px;
    color:#666;
}

.footer-widget p{
    color:#666;
    line-height:2;
}

.footer-bottom{
    background:#fff;
    padding:25px 0;
}

.footer-bottom p{
    margin:0;
}

/* ==========================
   CHAT BUTTON
========================== */

.chat-button{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#0d6efd;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    z-index:999;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.chat-button:hover{
    color:#fff;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .header-contact{
        display:none;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .section-title h2{
        font-size:36px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .about-images{
        min-height:450px;
        margin-bottom:50px;
    }

    .about-img-2{
        width:320px;
        left:70px;
    }

    .about-img-3{
        width:160px;
    }

    .pricing-card h3{
        font-size:45px;
    }

    .footer-brand{
        flex-direction:column;
        gap:30px;
    }
}

@media(max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-section{
        min-height:700px;
    }

    .play-btn{
        width:80px;
        height:80px;
        font-size:24px;
    }

    .section-padding{
        padding:70px 0;
    }
}