/* =======================================================
   LINKWORLD EXPRESS
   style.css
   PART 1
   RESET • VARIABLES • GLOBAL • LOADER
======================================================= */


/* =======================================================
   GOOGLE FONT
======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


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

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins",sans-serif;

    background:#f7f9fc;

    color:#222;

    overflow-x:hidden;

    line-height:1.6;

}


/* =======================================================
   VARIABLES
======================================================= */

:root{

    --primary:#0d6efd;

    --secondary:#0056d6;

    --accent:#00b4ff;

    --success:#28a745;

    --warning:#ffc107;

    --danger:#dc3545;

    --dark:#132238;

    --light:#ffffff;

    --gray:#f3f6fb;

    --border:#dde6ef;

    --text:#555;

    --shadow:

    0 12px 35px rgba(0,0,0,.08);

    --shadow-hover:

    0 18px 45px rgba(0,0,0,.12);

    --radius:18px;

    --transition:.35s ease;

}


/* =======================================================
   GLOBAL ELEMENTS
======================================================= */

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:"Poppins",sans-serif;

    transition:var(--transition);

}

input,

textarea{

    outline:none;

    font-family:"Poppins",sans-serif;

}

section{

    padding:90px 8%;

}

.container{

    width:100%;

    max-width:1400px;

    margin:auto;

}


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

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-header span{

    display:inline-block;

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-header h2{

    font-size:42px;

    color:var(--dark);

    margin-bottom:15px;

}

.section-header p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.8;

}


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

.primary-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 32px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.primary-btn:hover{

    background:var(--secondary);

    transform:translateY(-4px);

    box-shadow:var(--shadow-hover);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 32px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.secondary-btn:hover{

    background:#fff;

    color:var(--primary);

}


/* =======================================================
   PAGE LOADER
======================================================= */

.page-loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.4s;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:90px;

    margin:auto;

    margin-bottom:25px;

}

.loader-spinner{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    border:6px solid #dce8ff;

    border-top-color:var(--primary);

    animation:spin 1s linear infinite;

}

.loader-content h2{

    color:var(--primary);

    font-size:28px;

    margin-bottom:12px;

}

.loader-content p{

    color:#666;

    font-size:15px;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/* =======================================================
   END PART 1
======================================================= */
/* =======================================================
   LINKWORLD EXPRESS
   style.css
   PART 2
   HEADER • NAVIGATION • HERO
======================================================= */


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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    box-shadow:0 4px 20px rgba(0,0,0,.06);

    z-index:1000;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

}


/* =======================================================
   LOGO
======================================================= */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:24px;

    font-weight:700;

    color:var(--primary);

}

.logo img{

    width:55px;

}


/* =======================================================
   NAVIGATION
======================================================= */

.navbar{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    position:relative;

    font-size:16px;

    font-weight:500;

    color:#333;

    transition:var(--transition);

}

.navbar a:hover,

.navbar a.active{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--primary);

    transition:.3s;

    border-radius:50px;

}

.navbar a:hover::after,

.navbar a.active::after{

    width:100%;

}


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

.header-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.track-btn{

    display:flex;

    align-items:center;

    gap:8px;

    background:var(--primary);

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.track-btn:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-size:20px;

}


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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero-bg.jpg")

    center/cover no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        90deg,

        rgba(8,28,54,.88),

        rgba(8,28,54,.55)

    );

}

.hero-content{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr 1fr;

    align-items:center;

    gap:60px;

    padding-top:120px;

}


/* =======================================================
   HERO LEFT
======================================================= */

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

    backdrop-filter:blur(8px);

}

.hero-left h1{

    font-size:62px;

    line-height:1.2;

    color:#fff;

    margin-bottom:25px;

    font-weight:800;

}

.hero-left p{

    color:#e4e8ee;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


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

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:100%;

    max-width:600px;

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

}


@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


/* =======================================================
   END PART 2
======================================================= */
/* =======================================================
   LINKWORLD EXPRESS
   style.css
   PART 3
   QUICK TRACKING • STATISTICS • ABOUT • WHY CHOOSE US
======================================================= */


/* =======================================================
   QUICK TRACKING
======================================================= */

.quick-track{

    margin-top:-90px;

    position:relative;

    z-index:10;

}

.track-card{

    background:#fff;

    border-radius:25px;

    padding:50px;

    box-shadow:var(--shadow);

    text-align:center;

}

.track-card h2{

    font-size:34px;

    color:var(--dark);

    margin-bottom:15px;

}

.track-card p{

    color:#666;

    margin-bottom:35px;

}

.track-form{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

}

.track-form input{

    width:500px;

    max-width:100%;

    height:60px;

    border:2px solid var(--border);

    border-radius:50px;

    padding:0 25px;

    font-size:16px;

    transition:.3s;

}

.track-form input:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(13,110,253,.12);

}

.track-form button{

    height:60px;

    padding:0 35px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-size:16px;

    font-weight:600;

}

.track-form button:hover{

    background:var(--secondary);

}


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

.statistics{

    background:var(--gray);

}

.stats-grid{

    display:grid;

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

    gap:30px;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.stat-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.stat-card h2{

    font-size:42px;

    color:var(--dark);

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

}


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

.about-home{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.about-image img{

    width:100%;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:600;

    margin-bottom:18px;

    text-transform:uppercase;

}

.about-content h2{

    font-size:42px;

    margin-bottom:20px;

    color:var(--dark);

}

.about-content p{

    color:#666;

    margin-bottom:20px;

    line-height:1.9;

}


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

.why-us{

    background:var(--gray);

}

.features-grid{

    display:grid;

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

    gap:30px;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.feature-card i{

    width:80px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(13,110,253,.12);

    color:var(--primary);

    font-size:34px;

    margin-bottom:25px;

}

.feature-card h3{

    font-size:24px;

    color:var(--dark);

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

    line-height:1.8;

}


/* =======================================================
   END PART 3
======================================================= */
/* =======================================================
   LINKWORLD EXPRESS
   style.css
   PART 4
   SERVICES • HOW IT WORKS • TESTIMONIALS
======================================================= */


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

.services-home{

    background:#ffffff;

}

.services-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:.35s;

    text-align:center;

    border:1px solid #eef2f7;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

    border-color:var(--primary);

}

.service-card i{

    width:85px;

    height:85px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(13,110,253,.1);

    color:var(--primary);

    font-size:36px;

}

.service-card h3{

    font-size:24px;

    color:var(--dark);

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}


/* =======================================================
   HOW IT WORKS
======================================================= */

.how-it-works{

    background:var(--gray);

}

.steps-grid{

    display:grid;

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

    gap:30px;

}

.step-card{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    position:relative;

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.step-number{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.step-card i{

    font-size:48px;

    color:var(--primary);

    margin:20px 0;

}

.step-card h3{

    font-size:24px;

    color:var(--dark);

    margin-bottom:15px;

}

.step-card p{

    color:#666;

    line-height:1.8;

}


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

.testimonials{

    background:#fff;

}

.testimonial-grid{

    display:grid;

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

    gap:30px;

}

.testimonial-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

    border:1px solid #edf1f5;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.stars{

    color:#ffc107;

    margin-bottom:20px;

    font-size:18px;

}

.testimonial-card p{

    color:#555;

    line-height:1.9;

    margin-bottom:30px;

    font-style:italic;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    color:var(--dark);

    margin-bottom:5px;

    font-size:18px;

}

.client span{

    color:#777;

    font-size:14px;

}


/* =======================================================
   END PART 4
======================================================= */
/* =======================================================
   LINKWORLD EXPRESS
   style.css
   PART 5
   GLOBAL COVERAGE • CTA • CONTACT • FOOTER • RESPONSIVE
======================================================= */


/* =======================================================
   GLOBAL COVERAGE
======================================================= */

.global-coverage{

    background:var(--gray);

}

.coverage-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.coverage-image img{

    width:100%;

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

}

.coverage-content span{

    display:inline-block;

    color:var(--primary);

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:15px;

}

.coverage-content h2{

    font-size:42px;

    color:var(--dark);

    margin-bottom:20px;

}

.coverage-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.coverage-content ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.coverage-content li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#444;

    font-weight:500;

}

.coverage-content li i{

    color:var(--success);

}


/* =======================================================
   CALL TO ACTION
======================================================= */

.cta-section{

    background:linear-gradient(

        135deg,

        #0d6efd,

        #0047ba

    );

}

.cta-box{

    text-align:center;

    color:#fff;

    padding:70px 40px;

}

.cta-box h2{

    font-size:46px;

    margin-bottom:20px;

}

.cta-box p{

    font-size:18px;

    line-height:1.8;

    max-width:750px;

    margin:auto;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


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

.contact-preview{

    background:#fff;

}

.contact-grid{

    display:grid;

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

    gap:30px;

}

.contact-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.contact-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-card h3{

    color:var(--dark);

    margin-bottom:15px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

}


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

.footer{

    background:#081c36;

    color:#fff;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

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

    gap:40px;

}

.footer-logo{

    width:75px;

    margin-bottom:20px;

}

.footer-column h3,

.footer-column h4{

    margin-bottom:20px;

}

.footer-column p{

    color:#d5dbe3;

    line-height:1.8;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-column ul li a{

    color:#d5dbe3;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#fff;

    padding-left:6px;

}

.social-links{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.social-links a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

.footer hr{

    margin:50px 0 25px;

    border:none;

    height:1px;

    background:rgba(255,255,255,.12);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:#d5dbe3;

    font-size:15px;

}


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

@media(max-width:1100px){

    .hero-content,

    .about-grid,

    .coverage-grid{

        grid-template-columns:1fr;

    }

    .stats-grid,

    .features-grid,

    .services-grid,

    .steps-grid,

    .testimonial-grid,

    .contact-grid,

    .footer-grid{

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

    }

}

@media(max-width:768px){

    .navbar{

        display:none;

    }

    .menu-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .hero-left h1{

        font-size:42px;

    }

    .section-header h2{

        font-size:32px;

    }

    .track-form{

        flex-direction:column;

    }

    .track-form input,

    .track-form button{

        width:100%;

    }

    .stats-grid,

    .features-grid,

    .services-grid,

    .steps-grid,

    .testimonial-grid,

    .contact-grid,

    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer-bottom{

        text-align:center;

        justify-content:center;

    }

}

/* =======================================================
   END OF style.css
======================================================= */