/* ===========================================================
   SK-TECH LANDING PAGE
   FILE: index.css
   PART 1
=========================================================== */

/* ===========================
   CSS RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#FFFFFF;
    color:#0B1F3A;
    overflow-x:hidden;
    line-height:1.7;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

/* ===========================
   REUSABLE CONTAINER
=========================== */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===========================
   SECTION TITLE
=========================== */

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

.section-title span{
    color:#2D6CDF;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title h2{
    margin-top:12px;
    font-size:40px;
    font-weight:700;
}

.section-title p{
    color:#666;
    margin-top:15px;
}

/* ===========================
   ANNOUNCEMENT BAR
=========================== */

.announcement-bar{
    background:#0B1F3A;
    color:#FFFFFF;
    padding:10px 0;
    font-size:15px;
    font-weight:500;
    overflow:hidden;
}

.announcement-bar marquee{
    width:100%;
}

/* ===========================
   HEADER
=========================== */

#header{
    position:sticky;
    top:0;
    width:100%;
    background:#FFFFFF;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:85px;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:58px;
}

.logo h2{
    color:#0B1F3A;
    font-size:28px;
    font-weight:700;
}

/* Navigation */

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#0B1F3A;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{

    color:#2D6CDF;

}

/* Mobile */

.menu-toggle{

    display:none;
    font-size:32px;
    cursor:pointer;
    color:#0B1F3A;

}

/* ===========================
   HERO SECTION
=========================== */

.hero{

    width:90%;
    max-width:1300px;
    margin:auto;

    min-height:90vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:70px;

    padding:80px 0;

}

/* Left */

.hero-left{

    flex:1;

}

.hero-badge{

    display:inline-block;

    background:#EAF2FF;

    color:#2D6CDF;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-left h1{

    font-size:58px;

    font-weight:700;

    line-height:1.2;

    color:#0B1F3A;

    margin-bottom:25px;

}

.hero-left p{

    font-size:18px;

    color:#555;

    margin-bottom:35px;

}

/* Hero Features */

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:40px;

}

.hero-features span{

    background:#F5F8FC;

    padding:10px 20px;

    border-radius:40px;

    font-size:15px;

    font-weight:500;

}

/* ===========================
   HERO BUTTONS
=========================== */

.hero-buttons{

    display:flex;

    gap:20px;

}

/* Primary */

.btn-primary{

    background:#2D6CDF;

    color:#FFFFFF;

    padding:16px 38px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:.4s;

}

.btn-primary:hover{

    background:#0B1F3A;

    transform:translateY(-4px);

}

/* Secondary */

.btn-secondary{

    background:#FFFFFF;

    color:#0B1F3A;

    border:2px solid #0B1F3A;

    padding:16px 38px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:.4s;

}

.btn-secondary:hover{

    background:#0B1F3A;

    color:#FFFFFF;

}

/* ===========================
   HERO IMAGE
=========================== */

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:100%;

    max-width:580px;

    animation:floatImage 4s ease-in-out infinite;

    filter:drop-shadow(0 20px 40px rgba(45,108,223,.25));

}

/* Floating Animation */

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ===========================
   TRUSTED NETWORKS
=========================== */

.trusted-networks{

    background:#F8FAFD;

    padding:100px 0;

}

.network-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

}

.network-card{

    background:#FFFFFF;

    border-radius:15px;

    padding:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.network-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(45,108,223,.20);

}

.network-card img{

    width:100px;

}
/* ===========================================================
   SK-TECH LANDING PAGE
   FILE: index.css
   PART 2
===========================================================*/

/* ===========================
   ABOUT SECTION
=========================== */

#about{

    padding:120px 0;
    background:#FFFFFF;

}

.about-container{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:80px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.about-content{

    flex:1;

}

.section-tag{

    display:inline-block;

    background:#EAF2FF;
    color:#2D6CDF;

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h2{

    font-size:42px;

    color:#0B1F3A;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    font-size:17px;

    margin-bottom:30px;

}

.about-boxes{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.about-card{

    background:#F8FAFD;

    padding:30px;

    border-radius:16px;

    transition:.4s;

    border:1px solid #E5E7EB;

}

.about-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(45,108,223,.15);

}

.about-card h3{

    color:#0B1F3A;

    margin-bottom:15px;

}

.about-card p{

    margin:0;

}

/* ===========================
   SERVICES
=========================== */

#services{

    padding:120px 0;

    background:#F8FAFD;

}

.services-container{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-card{

    background:#FFFFFF;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

    border:1px solid #ECECEC;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(45,108,223,.18);

}

.service-card i{

    width:80px;
    height:80px;

    background:#2D6CDF;

    color:#FFFFFF;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto;

    border-radius:50%;

    font-size:30px;

    margin-bottom:25px;

}

.service-card h3{

    color:#0B1F3A;

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:#666;

    font-size:16px;

    margin-bottom:25px;

}

.service-card a{

    color:#2D6CDF;

    font-weight:600;

}

.service-card a:hover{

    color:#0B1F3A;

}

/* ===========================
   WHY CHOOSE US
=========================== */

#why-us{

    padding:120px 0;

    background:#FFFFFF;

}

.why-container{

    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

.why-content{

    flex:1;

}

.why-content h2{

    font-size:42px;

    margin:20px 0;

    color:#0B1F3A;

}

.why-content p{

    color:#666;

    margin-bottom:35px;

}

.why-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.why-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#F8FAFD;

    padding:25px;

    border-radius:15px;

    transition:.4s;

}

.why-item:hover{

    transform:translateX(10px);

    box-shadow:0 15px 30px rgba(45,108,223,.15);

}

.why-item i{

    width:60px;

    height:60px;

    background:#2D6CDF;

    color:#FFFFFF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.why-item h3{

    color:#0B1F3A;

    margin-bottom:8px;

}

.why-item p{

    margin:0;

}

.why-image{

    flex:1;

}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

/* ===========================
   STATISTICS
=========================== */

#statistics{

    padding:120px 0;

    background:#F8FAFD;

}

.statistics-container{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    background:#FFFFFF;

    padding:40px;

    border-radius:18px;

    text-align:center;

    border:1px solid #ECECEC;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.stat-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(45,108,223,.18);

}

.stat-card h2{

    font-size:42px;

    color:#2D6CDF;

    margin-bottom:12px;

    font-weight:700;

}

.stat-card p{

    color:#666;

    font-size:16px;

    font-weight:500;

}
/* ===========================================================
   SK-TECH LANDING PAGE
   FILE: index.css
   PART 3
===========================================================*/

/* ===========================
   TESTIMONIALS
=========================== */

#testimonials{

    padding:120px 0;
    background:#FFFFFF;

}

.testimonial-container{

    width:90%;
    max-width:1300px;
    margin:auto;

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

}

.testimonial-card{

    background:#F8FAFD;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
    border:1px solid #E5E7EB;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(45,108,223,.18);

}

.testimonial-card img{

    width:90px;
    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    margin-bottom:20px;

}

.testimonial-card h3{

    color:#0B1F3A;
    margin-bottom:5px;

}

.testimonial-card h4{

    color:#2D6CDF;
    margin-bottom:15px;
    font-weight:500;

}

.testimonial-card p{

    color:#666;

}

/* ===========================
   FAQ
=========================== */

#faq{

    padding:120px 0;
    background:#F8FAFD;

}

.faq-container{

    width:90%;
    max-width:900px;
    margin:auto;

}

.faq-item{

    background:#FFFFFF;

    margin-bottom:20px;

    border-radius:15px;

    padding:25px;

    border:1px solid #E5E7EB;

    transition:.3s;

}

.faq-item:hover{

    box-shadow:0 15px 35px rgba(45,108,223,.15);

}

.faq-item h3{

    color:#0B1F3A;

    margin-bottom:15px;

}

.faq-item p{

    color:#666;

}

/* ===========================
   DOWNLOAD APP
=========================== */

#download{

    padding:120px 0;

    background:#FFFFFF;

}

.download-container{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.download-content{

    flex:1;

}

.download-content h2{

    font-size:42px;

    margin:20px 0;

    color:#0B1F3A;

}

.download-content p{

    color:#666;

    margin-bottom:35px;

}

.download-image{

    flex:1;

}

.download-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

/* ===========================
   CONTACT
=========================== */

#contact{

    padding:120px 0;

    background:#F8FAFD;

}

.contact-container{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.contact-image{

    flex:1;

}

.contact-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.contact-content{

    flex:1;

}

.contact-content h2{

    font-size:42px;

    margin:20px 0;

    color:#0B1F3A;

}

.contact-content p{

    color:#666;

    margin-bottom:18px;

    font-size:18px;

}

/* ===========================
   FOOTER
=========================== */

footer{

    background:#0B1F3A;

    color:#FFFFFF;

    padding-top:80px;

}

.footer-container{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:50px;

    padding-bottom:50px;

}

.footer-logo img{

    width:70px;

    margin-bottom:20px;

}

.footer-logo h2{

    margin-bottom:15px;

}

.footer-logo p{

    color:#D1D5DB;

}

.footer-links h3,
.footer-services h3,
.footer-contact h3{

    margin-bottom:20px;

}

.footer-links a,
.footer-services a{

    display:block;

    color:#D1D5DB;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover,
.footer-services a:hover{

    color:#FFFFFF;

    padding-left:8px;

}

.footer-contact p{

    color:#D1D5DB;

    margin-bottom:10px;

}

.copyright{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    padding:25px 0;

    color:#D1D5DB;

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#2D6CDF;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#F5F8FC;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero,
.about-container,
.why-container,
.download-container,
.contact-container{

flex-direction:column;
text-align:center;

}

.hero-left h1{

font-size:42px;

}

.nav-links{

display:none;

}

.menu-toggle{

display:block;

}

.network-container{

grid-template-columns:repeat(2,1fr);

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

}

@media(max-width:768px){

.section-title h2{

font-size:32px;

}

.hero-left h1{

font-size:34px;

}

.about-boxes{

grid-template-columns:1fr;

}

.statistics-container,
.services-container,
.testimonial-container{

grid-template-columns:1fr;

}

.network-container{

grid-template-columns:1fr;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;
text-align:center;

}

}

/* ===========================
   FADE-IN ANIMATION
=========================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
.social-media{

    display:flex;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;

}

.social{

    width:55px;
    height:55px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    color:#FFFFFF;

    font-size:24px;

    transition:.4s;

}

.social:hover{

    transform:translateY(-8px) scale(1.1);

}

.whatsapp{

    background:#25D366;

}

.facebook{

    background:#1877F2;

}

.instagram{

    background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);

}

.tiktok{

    background:#000000;

}

.twitter{

    background:#0B1F3A;

}

.linkedin{

    background:#0077B5;

}

.youtube{

    background:#FF0000;

}
.social-media{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;

}

.social{

    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    color:#FFFFFF;

    font-size:28px;

    text-decoration:none;

    transition:all .3s ease;

}

.social:hover{

    transform:translateY(-8px) scale(1.1);

}

.whatsapp{

    background:#25D366;

}

.facebook{

    background:#1877F2;

}

.instagram{

    background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);

}

.tiktok{

    background:#000000;

}

.twitter{

    background:#000000;

}

.linkedin{

    background:#0077B5;

}

.youtube{

    background:#FF0000;

}