/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

:root{
    --primary:#0A192F;
    --secondary:#112240;
    --accent:#2563EB;
    --white:#ffffff;
    --light:#f8fafc;
    --text:#555;
}

body{
    background:var(--white);
    color:var(--text);
    overflow-x:hidden;
}

.section-padding{
    padding:80px 0;
}


/* Navbar */
.custom-navbar{
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    padding:12px 20px;
}

.navbar-brand{
    color:#0A192F !important;
}

.nav-link{
    color:#0A192F !important;
}

.nav-link:hover{
    color:#2563EB !important;
}

.img-fluid{
    max-width:100%;
    height:auto;
    display:block;
}

/* Hero */
.logo{
    height:60px;
    width:auto;
    object-fit:contain;
    margin-left:0;
}

.navbar-brand{
    display: flex;
    align-items: center;
}
.navbar .container{
    max-width: 100%;
    padding-right: -50px;
}
.brand-text{
    color:#0A192F;
    font-size:24px;
    font-weight:700;
}
.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:#fff;
    padding:100px 0 0;
    overflow:hidden;
}

.hero-section h1{
    font-size:60px;
    font-weight:800;
    color:#0F172A;
    line-height:1.2;
}

.hero-section p{
    font-size:18px;
    color:#64748B;
    margin:20px 0;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    padding:14px 30px;
    border-radius:50px;
}
.hero-tag{
    display:inline-block;
    padding:10px 22px;
    border:2px solid #2563EB;
    border-radius:50px;
    background:rgba(37,99,235,0.08);
    color:#2563EB;
    font-size:16px;
    font-weight:600;
    margin-bottom:25px;
}

.btn-primary{
    background:var(--primary);
    border:none;
}

.btn-primary:hover{
    background:var(--accent);
}

.btn-outline-light{
    border:2px solid var(--primary);
    color:var(--primary);
}

.btn-outline-light:hover{
    background:var(--primary);
    color:#fff;
}
#typing-text{
    color:#0A192F;
    font-size:80px;
    font-weight:800;
    min-height:100px;
}
@media(max-width:768px){

#typing-text{
    font-size:40px;
}

}
@media(max-width:768px){

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.hero-buttons .btn{
    width:250px;
    margin:0;
}

}
@media(max-width:768px){

.hero-section img{
    width:100%;
    max-width:320px;
    margin:30px auto;
}

}

#typing-text::after{
    content:"|";
    animation:blink .8s infinite;
}

@keyframes blink{
    50%{
        opacity:0;
    }
}

/* Section Heading */

.section-tag{
    color:var(--accent);
    font-weight:600;
    text-transform:uppercase;
}

h2{
    color:var(--primary);
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

/* About */

.stats{
    margin-top:30px;
}

.stats h3{
    color:var(--primary);
    font-size:35px;
    font-weight:700;
}

.stats p{
    font-weight:500;
}

/* Services */

.services-section{
    background:#f8fafc;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:var(--accent);
    margin-bottom:20px;
}

.service-card h4{
    color:var(--primary);
    margin-bottom:15px;
}

/* Feature */

.feature-box{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    font-weight:600;
    color:var(--primary);
    transition:.3s;
}

.feature-box:hover{
    background:var(--primary);
    color:#fff;
}

/* Portfolio */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    justify-items:center;
}

.portfolio-card{
    width:100%;
    text-align:center;
}

.port-img{
    width:100%;
    max-width:180px;
    height:250px;
    object-fit:contain;
    display:block;
    margin:0 auto;
    border-radius:15px;
    transition:.3s;
}

@media(max-width:768px){

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .port-img{
        max-width:140px;
        height:auto;
    }

}

#typing-text{
    font-family: 'arial', cursive;
    font-size: 90px;
    color: #4a73a8;
    font-size: 60px;
    font-weight: 600;
}

/* FAQ */

.accordion-button{
    color:var(--primary);
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#e0e7ff;
    color:var(--primary);
}

/* Contact */

.contact-section{
    background:#f8fafc;
}

.contact-form{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
   
}

.form-control{
    border-radius:10px;
    padding:14px;
}

/* Footer */

.footer{
    background:white;
    color:#0A192F;
    padding:70px 0 20px;
}

.footer h4,
.footer h5{
    margin-bottom:20px;
    color: #0A192F;
}

.footer ul{
    list-style:none;
    padding:0;
    color: #0A192F;
}

.footer ul li{
    margin-bottom:10px;
    color:#0A192F;
}

.footer a{
    color:#0A192F;
    text-decoration:none;
}

.social-icons a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:var(--primary);
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
    padding-right:20px;
}

.social-icons a:hover{
    background:var(--accent);
    color:#fff;
}
.custom-navbar,
.custom-navbar.scrolled{
    background:#ffffff !important;
    transition:0.3s;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}
.custom-navbar{
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 12px 25px;
    height: 70px;
}

/* WhatsApp */

.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    z-index:999;
}

/* Responsive */

@media(max-width:991px){

    .hero-section h1{
        font-size:42px;
    }

    h2{
        font-size:32px;
    }

    .hero-buttons .btn{
        margin-bottom:10px;
    }

    .navbar{
        background:var(--primary);
    }
}

@media(max-width:768px){

    .hero-section{
        text-align:center;
    }

    .hero-section h1{
        font-size:34px;
    }

    .section-padding{
        padding:70px 0;
    }
}
/* Smooth Transition */

*{
    transition: all 0.3s ease;
}

/* Hero Image Animation */

.hero-section img{
    animation: float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Hero Heading Animation */

.hero-section h1{
    animation: slideUp 1s ease;
}

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Service Card Premium Hover */

.service-card{
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    left:0;
    top:0;
    background:linear-gradient(90deg,#2563eb,#0A192F);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.service-card:hover i{
    transform:scale(1.2) rotate(8deg);
}

/* Portfolio Hover */


/* Feature Box Hover */

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(37,99,235,.25);
}

/* Navbar Hover Effect */

.nav-link{
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#60a5fa;
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* Button Hover */

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(37,99,235,.4);
}

.btn-outline-light:hover{
    transform:translateY(-4px);
}

/* Contact Form Hover */

.contact-form:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Social Icons Hover */

.social-icons a:hover{
    transform:translateY(-5px) rotate(360deg);
}

/* WhatsApp Button Pulse */

.whatsapp-btn{
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* Section Fade Effect */

.section-padding{
    animation:fadeIn 1s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
.contact-img{
    max-width: 100%;
    display: block;
    margin: 0 auto;
    animation: float 4s ease-in-out infinite;

}

@keyframes float{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0);
    }
}
.container{
    max-width:1200px;
}
.brand-text{
    padding-right: -100px;
}

@media (max-width:768px){

    .hero-section{
        padding-top:120px;
        text-align:center;
        min-height:auto;
    }


    .hero-section h1{
        font-size:34px;
        line-height:1.3;
    }

    #typing-text{
        font-size:38px;
        min-height:auto;
    }

    .hero-section p{
        padding-bottom:20px;
        font-size:16px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
        align-items:center;
    }

    .hero-buttons .btn{
        width:260px;
        margin:0;
    }

    .hero-section img{
        width:100%;
        max-width:320px;
        margin:0 auto 30px;
    }

    .container{
        padding-left:15px;
        padding-right:15px;
    }

    .brand-text{
        font-size:20px;
    }

    .portfolio-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:991px){

    .hero-section{
        padding-top:120px;
        text-align:center;
    }

    .hero-section h1{
        font-size:38px;
    }

    #typing-text{
        font-size:42px;
    }

    .hero-tag{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons .btn{
        width:260px;
    }

    .hero-section img{
        max-width:330px;
        width:100%;
        margin-bottom:40px;
    }

}
.mobile-hero-img{
    display:none;
}

@media(max-width:991px){

.mobile-hero-img{
    display:block;
    text-align:center;
    margin:25px 0;
}

.mobile-hero-img img{
    width:100%;
    max-width:300px;
}

.hero-section .col-lg-6:last-child{
    display:none;
}

}