.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;

    background:
    linear-gradient(
    rgba(0,0,0,.5),
    rgba(0,0,0,.5)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
}

.newsletter{
    background:#0d6efd;
    color:#fff;
}

#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:45px;
    height:45px;
    border:none;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:none;
    z-index:999;
}

.dark-mode .service-card,
.dark-mode .portfolio-box{
    background:#1f1f1f;
    color:#fff;
}

/* Dark Mode */

body.dark-mode{
    background:#121212;
    color:#ffffff;
}

body.dark-mode .navbar{
    background:#1f1f1f !important;
}

body.dark-mode .service-card,
body.dark-mode .portfolio-box{
    background:#222 !important;
    color:#fff !important;
}

body.dark-mode .service-card h4,
body.dark-mode .service-card p,
body.dark-mode .portfolio-box h4,
body.dark-mode .portfolio-box p,
body.dark-mode .nav-link,
body.dark-mode .navbar-brand{
    color:#fff !important;
}

/* ==========================
   HERO SECTION
========================== */

.hero-section{
    min-height:100vh;
    background:linear-gradient(
    135deg,
    #0d6efd,
    #6610f2
    );
    color:#fff;
    overflow:hidden;
    position:relative;
}

.hero-tagline{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.hero-title{
    font-size:62px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-description{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
    opacity:.95;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.hero-btns .btn{
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.hero-btns .btn-outline-light:hover{
    color:#000;
}

.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.stat-box h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:5px;
}

.stat-box p{
    margin:0;
    opacity:.9;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    max-width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    animation:float 4s ease-in-out infinite;
}

.hero-title{
    font-size:62px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

#typed-text{
    color:#ffd700;
    border-right:3px solid #fff;
    padding-right:5px;
    animation:blink .8s infinite;
}

@keyframes blink{

    50%{
        border-color:transparent;
    }

}

/* Floating Animation */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}


/* ==========================
   FEATURES SECTION
========================== */


.features-section{
    background:#f8f9fa;
}

.section-subtitle{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:15px;
}

.section-description{
    max-width:700px;
    margin:auto;
    color:#6c757d;
}

/* .feature-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .4s ease;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
} */
.feature-card{
    position:relative;
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    overflow:hidden;
    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:all .5s ease;

    opacity:0;
    transform:translateY(80px);
}
.feature-card.show{
    opacity:1;
    transform:translateY(0);
} 

.feature-card:hover{

    transform:
    translateY(-15px)
    scale(1.03);

    box-shadow:
    0 20px 50px rgba(13,110,253,.25);

}

.feature-card::before{

    content:'';

    position:absolute;

    top:-100%;
    left:-100%;

    width:200%;
    height:200%;

    background:
    linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,.3),
    transparent
    );

    transition:.8s;

}

.feature-card:hover::before{

    top:100%;
    left:100%;

}

    
.feature-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #6610f2
    );

    transition:.5s;
}

.feature-icon i{
    color:#fff;
    font-size:32px;
    transition:.5s;
}

.feature-card:hover .feature-icon{

    transform:
    rotateY(180deg)
    scale(1.15);

}

.feature-card:hover .feature-icon i{

    transform:rotate(-180deg);

}
.feature-card h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
}

.feature-card p{
    color:#6c757d;
    line-height:1.8;
}
/* dark mode */

/* body.dark-mode .features-section{
    background:#121212;
}

body.dark-mode .feature-card{
    background:#1f1f1f;
    color:#fff;
}

body.dark-mode .feature-card p{
    color:#d1d1d1;
} */
body.dark-mode .feature-card{
    background:#1f1f1f;
    color:#fff;
    box-shadow:0 10px 30px rgba(255,255,255,.05);
}

body.dark-mode .feature-card:hover{
    box-shadow:0 20px 50px rgba(13,110,253,.35);
}

body.dark-mode .feature-card p{
    color:#d1d1d1;
}

body.dark-mode .section-title{
    color:#ffffff !important;
}

body.dark-mode .section-subtitle{
    color:#4da3ff !important;
}

body.dark-mode .section-description{
    color:#d1d1d1 !important;
}

body.dark-mode .section-title{
    color:#ffffff !important;
    opacity:1 !important;
}

body.dark-mode .section-description{
    color:#d1d1d1 !important;
    opacity:1 !important;
}


body.dark-mode .features-section{
    background:#121212 !important;
}

body.dark-mode .section-title{
    color:#ffffff !important;
}

body.dark-mode .section-subtitle{
    color:#4da3ff !important;
}

body.dark-mode .section-description{
    color:#d1d1d1 !important;
}
/* About Section */
.about-preview{
    background:#f8f9fa;
}

.about-preview img{
    border-radius:20px;
    transition:.5s;
}

.about-preview img:hover{
    transform:scale(1.03);
}

.about-subtitle{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
}

.page-banner{
padding:120px 0;
background:linear-gradient(135deg,#0d6efd,#6610f2);
color:#fff;
}

.about-title{
font-size:42px;
font-weight:700;
margin:20px 0;
}

.about-subtitle{
color:#0d6efd;
font-weight:600;
text-transform:uppercase;
}

.mission-box,
.team-card,
.value-card{
background:#fff;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.mission-box:hover,
.team-card:hover,
.value-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.mission-box i,
.value-card i{
font-size:40px;
color:#0d6efd;
margin-bottom:20px;
}

.experience-section h3{
font-size:40px;
font-weight:700;
color:#0d6efd;
}



/* =========================
ABOUT PAGE
========================= */

.page-banner{
    padding:120px 0;
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    color:#fff;
    text-align:center;
}

.page-banner h1{
    font-size:60px;
    font-weight:700;
}

.about-company img{
    transition:.5s;
}

.about-company img:hover{
    transform:scale(1.05);
}

.mission-card,
.feature-card,
.team-card,
.process-box,
.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.mission-card:hover,
.feature-card:hover,
.team-card:hover,
.process-box:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:150px;
    height:150px;
    object-fit:cover;
    margin-bottom:20px;
}

.process-box h2{
    color:#0d6efd;
    font-size:50px;
}

.counter-section{
    background:#0d6efd;
    color:#fff;
}

.counter{
    font-size:55px;
    font-weight:700;
}

.testimonial-card{
    max-width:700px;
    margin:auto;
}

.cta-section{
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    color:#fff;
}

.footer{
    background:#111;
    color:#fff;
}





/* dark mode */
/* =========================
DARK MODE
========================= */

body.dark-mode .about-company,
body.dark-mode .why-us,
body.dark-mode .team-section,
body.dark-mode .faq-section{
    background:#121212;
}

body.dark-mode .mission-card,
body.dark-mode .feature-card,
body.dark-mode .team-card,
body.dark-mode .process-box,
body.dark-mode .testimonial-card{
    background:#1f1f1f;
    color:#fff;
}

body.dark-mode p{
    color:#d1d1d1;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5{
    color:#fff;
}


/* =========================
TEAM SECTION
========================= */

.team-section{
    background:#f8f9fa;
}

.team-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:all .5s ease;

    opacity:0;
    transform:translateY(80px);
}

.team-card.show{
    opacity:1;
    transform:translateY(0);
}

.team-card:hover{

    transform:
    translateY(-15px);

    box-shadow:
    0 20px 50px rgba(13,110,253,.25);
}

.team-img{

    position:relative;

    overflow:hidden;
}

.team-img img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.6s;
}

.team-card:hover .team-img img{

    transform:scale(1.1);
}

.team-social{

    position:absolute;

    left:50%;

    bottom:-60px;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    transition:.5s;
}

.team-card:hover .team-social{

    bottom:20px;
}

.team-social a{

    width:45px;
    height:45px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.team-social a:hover{

    transform:translateY(-5px);

    background:#6610f2;
}

.team-content{

    padding:25px;
}

.team-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;
}

.team-content span{

    color:#6c757d;
}

/* Dark Mode */

body.dark-mode .team-section{

    background:#121212;
}

body.dark-mode .team-card{

    background:#1f1f1f;

    color:#fff;
}

body.dark-mode .team-content span{

    color:#d1d1d1;
}


/* =========================
PORTFOLIO SECTION
========================= */

.portfolio-section{
    background:#f8f9fa;
}

.portfolio-filter button{

    border:none;

    padding:12px 25px;

    margin:5px;

    border-radius:50px;

    background:#fff;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.4s;
}

.portfolio-filter button:hover,
.portfolio-filter button.active{

    background:#0d6efd;

    color:#fff;
}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.portfolio-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;
}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:
    rgba(13,110,253,.90);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    opacity:0;

    transition:.5s;
}

.portfolio-card:hover img{

    transform:scale(1.15);
}

.portfolio-card:hover .portfolio-overlay{

    opacity:1;
}

.portfolio-overlay h4{

    margin-bottom:10px;

    transform:translateY(-30px);

    transition:.4s;
}

.portfolio-overlay p{

    transform:translateY(30px);

    transition:.4s;
}

.portfolio-card:hover .portfolio-overlay h4,
.portfolio-card:hover .portfolio-overlay p{

    transform:translateY(0);
}

.portfolio-btn{

    margin-top:15px;

    padding:10px 20px;

    background:#fff;

    color:#0d6efd;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;
}

.portfolio-btn:hover{

    background:#111;

    color:#fff;
}

/* Dark Mode */

body.dark-mode .portfolio-section{

    background:#121212;
}

body.dark-mode .portfolio-filter button{

    background:#1f1f1f;

    color:#fff;
}

/* =========================
TESTIMONIAL SECTION
========================= */

.testimonial-section{
    background:#f8f9fa;
}

.testimonial-slider{
    position:relative;
    max-width:800px;
    margin:auto;
}

.testimonial-card{

    display:none;

    text-align:center;

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    animation:fadeIn .8s ease;
}

.testimonial-card.active{
    display:block;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    transition:.4s;

    box-shadow:0 20px 50px rgba(13,110,253,.2);
}

.testimonial-card img{

    width:100px;
    height:100px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

    border:5px solid #0d6efd;
}

.stars{

    color:#ffc107;

    margin-bottom:20px;

    font-size:20px;
}

.testimonial-card p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:20px;
}

.testimonial-card h4{

    font-weight:700;

    margin-bottom:5px;
}

.testimonial-card span{

    color:#6c757d;
}

.testimonial-nav{

    text-align:center;

    margin-top:30px;
}

.testimonial-nav button{

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    margin:0 10px;

    background:#0d6efd;

    color:#fff;

    font-size:18px;

    transition:.4s;
}

.testimonial-nav button:hover{

    background:#6610f2;

    transform:scale(1.1);
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Dark Mode */

body.dark-mode .testimonial-section{

    background:#121212;
}

body.dark-mode .testimonial-card{

    background:#1f1f1f;

    color:#fff;
}

body.dark-mode .testimonial-card span{

    color:#d1d1d1;
}

/* =========================
FAQ SECTION
========================= */

.faq-section{
    background:#f8f9fa;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{

    background:#fff;

    border-radius:15px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(13,110,253,.15);
}

.faq-question{

    padding:20px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;
}

.faq-question h5{

    margin:0;

    font-weight:600;
}

.faq-icon{

    font-size:28px;

    font-weight:bold;

    color:#0d6efd;

    transition:.3s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 25px;
}

.faq-answer p{

    padding-bottom:20px;

    color:#6c757d;

    line-height:1.8;
}

.faq-item.active .faq-answer{

    max-height:200px;
}

.faq-item.active .faq-icon{

    transform:rotate(45deg);
}

/* Dark Mode */

body.dark-mode .faq-section{

    background:#121212;
}

body.dark-mode .faq-item{

    background:#1f1f1f;
}

body.dark-mode .faq-question h5{

    color:#fff;
}

body.dark-mode .faq-answer p{

    color:#d1d1d1;
}


/* =========================
NEWSLETTER SECTION
========================= */

.newsletter-section{

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #6610f2
    );

    position:relative;

    overflow:hidden;
}

.newsletter-box{

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:60px;

    border-radius:25px;

    color:#fff;

    animation:
    floating 4s ease-in-out infinite;
}

.newsletter-tag{

    display:inline-block;

    background:rgba(255,255,255,.2);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:15px;
}

.newsletter-box h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;
}

.newsletter-box p{

    opacity:.9;

    line-height:1.8;
}

.newsletter-form{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.newsletter-form input{

    flex:1;

    min-width:250px;

    height:60px;

    border:none;

    border-radius:50px;

    padding:0 25px;

    outline:none;

    transition:.4s;
}

.newsletter-form input:focus{

    transform:scale(1.02);

    box-shadow:
    0 0 25px rgba(255,255,255,.4);
}

.newsletter-form button{

    border:none;

    height:60px;

    padding:0 30px;

    border-radius:50px;

    background:#fff;

    color:#0d6efd;

    font-weight:600;

    transition:.4s;
}

.newsletter-form button:hover{

    transform:
    translateY(-5px);

    background:#111;

    color:#fff;
}

#newsletterMessage{

    margin-top:15px;

    font-weight:600;
}

@keyframes floating{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }
}

/* Dark Mode */

body.dark-mode .newsletter-section{

    background:
    linear-gradient(
    135deg,
    #111,
    #222
    );
}

/* Responsive */

@media(max-width:768px){

    .newsletter-box{

        padding:35px;
    }

    .newsletter-box h2{

        font-size:30px;
    }

    .newsletter-form{

        flex-direction:column;
    }

    .newsletter-form button{

        width:100%;
    }
}


/* =========================
CONTACT SECTION
========================= */

.contact-section{
    background:#f8f9fa;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{

    display:flex;
    align-items:center;

    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.contact-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 15px 40px rgba(13,110,253,.18);
}

.contact-card i{

    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#fff;

    font-size:24px;

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #6610f2
    );
}

.contact-form-box{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-box input,
.contact-form-box textarea{

    border:none;

    background:#f5f7fa;

    padding:15px;

    border-radius:12px;

    transition:.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{

    background:#fff;

    box-shadow:
    0 0 15px rgba(13,110,253,.15);
}

.contact-btn{

    border:none;

    padding:15px 35px;

    border-radius:50px;

    color:#fff;

    font-weight:600;

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #6610f2
    );

    transition:.4s;
}

.contact-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 15px 35px rgba(13,110,253,.3);
}

#contactMessage{

    margin-top:15px;

    font-weight:600;
}

/* Dark Mode */

body.dark-mode .contact-section{
    background:#121212;
}

body.dark-mode .contact-card,
body.dark-mode .contact-form-box{

    background:#1f1f1f;

    color:#fff;
}

body.dark-mode .contact-form-box input,
body.dark-mode .contact-form-box textarea{

    background:#2b2b2b;

    color:#fff;
}

/* Responsive */

@media(max-width:768px){

    .contact-form-box{
        padding:25px;
    }

    .contact-card{
        flex-direction:column;
        text-align:center;
    }
}

/* =========================
FOOTER SECTION
========================= */

.footer-section{

    background:#0f172a;

    color:#fff;

    padding-top:80px;

    position:relative;
}

.footer-widget h3,
.footer-widget h4{

    margin-bottom:25px;

    font-weight:700;
}

.footer-logo{

    font-size:32px;

    color:#0d6efd;
}

.footer-widget p{

    color:#cbd5e1;

    line-height:1.8;
}

.footer-widget ul{

    list-style:none;

    padding:0;
}

.footer-widget ul li{

    margin-bottom:12px;
}

.footer-widget ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.4s;
}

.footer-widget ul li a:hover{

    color:#0d6efd;

    padding-left:10px;
}

.footer-contact li{

    color:#cbd5e1;
}

.footer-contact i{

    color:#0d6efd;

    margin-right:10px;
}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;
}

.footer-social a{

    width:45px;
    height:45px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#1e293b;

    color:#fff;

    text-decoration:none;

    transition:.4s;
}

.footer-social a:hover{

    background:#0d6efd;

    transform:
    translateY(-8px)
    rotate(360deg);
}

.footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.1);

    padding:25px 0;

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:#cbd5e1;
}

/* Dark Mode */

body.dark-mode .footer-section{

    background:#000;
}

/* Responsive */

@media(max-width:768px){

    .footer-section{

        text-align:center;
    }

    .footer-social{

        justify-content:center;
    }

}