img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f172a;
    color:#fff;
    overflow-x:hidden;
}


.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(15,23,42,.85);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.container{
    width:min(90%,1200px);
    margin:auto;
}
.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}
.logo{
    text-decoration:none;
    width: 150px;
}

.logo span{
    color:#ff7a00;
}

.navbar{
    display:flex;
    gap:30px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.navbar a:hover{
    color:#ff7a00;
}

.btn{
    background:#ff7a00;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:#0f172a;
    color:#fff;
    padding-top:100px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-left h1{
    font-size:60px;
    line-height:1.2;
    margin:20px 0;
}

.hero-left h1 span{
    color:#ff7a00;
}

.hero-left p{
    font-size:18px;
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:30px;
}

.tag{
    display:inline-block;
    padding:8px 18px;
    background:#1e293b;
    border-radius:30px;
    color:#ff7a00;
    font-size:14px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-outline{
    border:2px solid #ff7a00;
    color:#ff7a00;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.btn-outline:hover{
    background:#ff7a00;
    color:#fff;
}

.hero-right img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}
.services{
    padding:100px 0;
    background:#111827;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#ffffff;
}

.section-title p{
    color:#94a3b8;
    margin-top:12px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
    backdrop-filter:blur(10px);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#ff7a00;
    box-shadow:0 15px 35px rgba(255,122,0,.25);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#ff7a00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:25px;
}

.service-card h3{
    color:#fff;
    margin-bottom:15px;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.7;
}
.about{
    padding:100px 0;
    background:#0f172a;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.experience{
    position:absolute;
    bottom:20px;
    right:20px;
    background:#ff7a00;
    color:#fff;
    padding:20px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(255,122,0,.3);
}

.experience h2{
    font-size:36px;
    margin-bottom:5px;
}

.sub-title{
    color:#ff7a00;
    font-weight:600;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    color:#fff;
    margin:15px 0;
}

.about-content p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:30px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.about-box{
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.05);
    padding:15px;
    border-radius:12px;
}

.about-box span{
    color:#ff7a00;
    font-size:22px;
}

.about-box p{
    margin:0;
    color:#fff;
}
.stats{
    padding:100px 0;
    background:#111827;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    text-align:center;
    padding:40px 20px;
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:#ff7a00;
    box-shadow:0 15px 35px rgba(255,122,0,.25);
}

.stat-card h2{
    font-size:52px;
    color:#ff7a00;
    margin-bottom:10px;
}

.stat-card p{
    color:#ffffff;
    font-size:18px;
}
.portfolio{
    padding:100px 0;
    background:#0f172a;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.portfolio-card{
    background:rgba(255,255,255,.05);
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.portfolio-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(255,122,0,.25);
}

.portfolio-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-content{
    padding:25px;
}

.portfolio-content span{
    color:#ff7a00;
    font-size:14px;
    font-weight:600;
}

.portfolio-content h3{
    color:#fff;
    margin:12px 0 18px;
}

.btn-small{
    display:inline-block;
    color:#fff;
    background:#ff7a00;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.btn-small:hover{
    background:#ff9f43;
}
.testimonials{
    padding:100px 0;
    background:#111827;
}

.testimonial-slider{
    max-width:800px;
    margin:auto;
    position:relative;
}

.testimonial{
    display:none;
    text-align:center;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px;
}

.testimonial.active{
    display:block;
}

.testimonial img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #ff7a00;
    
}

.testimonial h3{
    color:#fff;
    margin-top:20px;
}

.testimonial span{
    color:#ff7a00;
}

.stars{
    font-size:22px;
    margin:20px 0;
}

.testimonial p{
    color:#cbd5e1;
    line-height:1.8;
}
.contact{
    padding:100px 0;
    background:#111827;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.contact-info p{
    color:#cbd5e1;
    line-height:1.8;
}

.info-box{
    margin-top:25px;
    padding:20px;
    background:rgba(255,255,255,.05);
    border-radius:15px;
}

.info-box h4{
    color:#ff7a00;
    margin-bottom:10px;
}

.contact-form{
    background:rgba(255,255,255,.05);
    padding:35px;
    border-radius:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
    background:#1f2937;
    color:#fff;
    outline:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#94a3b8;
}

.contact-form .btn{
    width:100%;
}
.footer{
    background:#0b1120;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer h2 span{
    color:#ff7a00;
}

.footer h2,
.footer h3{
    color:#fff;
    margin-bottom:20px;
}

.footer p,
.footer li,
.footer a{
    color:#cbd5e1;
    text-decoration:none;
    list-style:none;
    line-height:2;
}

.footer a:hover{
    color:#ff7a00;
}

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#1f2937;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    transition:.3s;
}

.social a:hover{
    background:#ff7a00;
    color:#fff;
}

.copyright{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding-top:20px;
    color:#94a3b8;
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:90px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:999;
}

#topBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#ff7a00;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    display:none;
}
/* ==========================
   RESPONSIVE DESIGN
========================== */

/* Tablet */
@media (max-width:991px){

.container{
    width:95%;
}

.hero-grid,
.about-grid,
.contact-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.hero-left,
.about-content,
.contact-info{
    text-align:center;
}

.hero-left h1{
    font-size:48px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-right img,
.about-image img{
    max-width:500px;
    width:100%;
    margin:auto;
    display:block;
}

.about-list{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.navbar{
    display:none;
}

.menu-btn{
    display:block;
}

}


/* Mobile */
@media (max-width:768px){

.hero{
    padding-top:120px;
    min-height:auto;
}

.hero-left h1{
    font-size:36px;
}

.hero-left p{
    font-size:16px;
}

.section-title h2{
    font-size:32px;
}

.about-content h2,
.contact-info h2{
    font-size:30px;
}

.service-grid,
.stats-grid,
.portfolio-grid,
.pricing-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.social{
    justify-content:center;
}

.btn,
.btn-outline{
    width:100%;
    text-align:center;
}

.hero-buttons{
    flex-direction:column;
}

.experience{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
}

.whatsapp{
    width:55px;
    height:55px;
    font-size:28px;
}

#topBtn{
    width:50px;
    height:50px;
}

}


/* Small Mobile */
@media (max-width:480px){

.logo{
    font-size:24px;
}

.hero-left h1{
    font-size:30px;
}

.hero-left p{
    font-size:15px;
}

.section-title h2{
    font-size:28px;
}

.stat-card h2{
    font-size:40px;
}

.price{
    font-size:34px;
}

.contact-form{
    padding:20px;
}

.service-card,
.price-card,
.portfolio-card,
.testimonial{
    padding:25px;
}

}
/* ==========================
   RESPONSIVE DESIGN
========================== */

@media (max-width:992px){

.hero-grid,
.about-grid,
.contact-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.service-grid,
.stats-grid,
.portfolio-grid,
.pricing-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.about-list{
    grid-template-columns:1fr;
}

.navbar{
    display:none;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#111827;
    flex-direction:column;
    padding:20px;
    gap:15px;
}

.navbar.active{
    display:flex;
}

.menu-btn{
    display:block;
}

}

@media (max-width:768px){

.hero{
    min-height:auto;
    padding-top:120px;
}

.hero-grid,
.about-grid,
.contact-grid{
    grid-template-columns:1fr;
}

.service-grid,
.stats-grid,
.portfolio-grid,
.pricing-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.hero-left h1{
    font-size:36px;
}

.about-content h2,
.contact-info h2,
.section-title h2{
    font-size:30px;
}

.hero-buttons{
    flex-direction:column;
}

.btn,
.btn-outline{
    width:100%;
    text-align:center;
}

.experience{
    position:static;
    margin-top:20px;
}

.social{
    justify-content:center;
}

.footer{
    text-align:center;
}

.whatsapp{
    width:55px;
    height:55px;
    font-size:28px;
}

#topBtn{
    width:50px;
    height:50px;
}

}

@media (max-width:480px){

.logo{
    font-size:24px;
}

.hero-left h1{
    font-size:30px;
}

.hero-left p{
    font-size:15px;
}

.section-title h2{
    font-size:26px;
}

.stat-card h2{
    font-size:40px;
}

.price{
    font-size:34px;
}

.contact-form,
.service-card,
.portfolio-card,
.price-card,
.testimonial{
    padding:25px;
}

}
/*#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#0f172a;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .5s ease, visibility .5s ease;
}


@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
.loader{
    width:60px;
    height:60px;
    border:6px solid rgba(255,255,255,.2);
    border-top:6px solid #ff7a00;
    border-radius:50%;
    animation:spin 1s linear infinite;
}*/
.services,
.about,
.stats,
.portfolio,
.testimonials,
.contact{
    padding:30px 0;
}

#preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Center Content */
.loader-logo{
    position: relative;
    text-align: center;
}

/* Logo */
.loader-logo img{
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

/* Tagline */
.loader-logo p{
    margin-top: 0px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #777;
}

    