/* ===================================================
   Fentec STORAGE SOLUTIONS
   style.css
   Part 1
=================================================== */

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

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

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

:root{

    --primary:#0F4C81;
    --primary-dark:#08375e;

    --secondary:#F7941D;

    --white:#ffffff;

    --light:#f5f7fa;

    --gray:#6b7280;

    --dark:#1f2937;

    --border:#e5e7eb;

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

    --radius:12px;

    --transition:.35s ease;

    --max-width:1200px;

}

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

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:var(--white);

    color:var(--dark);

    line-height:1.8;

    overflow-x:hidden;

}

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

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:var(--max-width);

    margin:auto;

}

.section{

    padding:90px 0;

}

.light-bg{

    background:var(--light);

}

.center{

    text-align:center;

}

/* ===============================
   TYPOGRAPHY
================================== */

h1{

    font-size:58px;

    line-height:1.2;

    font-weight:700;

}

h2{

    font-size:40px;

    margin-bottom:20px;

    color:var(--dark);

}

h3{

    font-size:24px;

    margin-bottom:15px;

}

h4{

    font-size:20px;

    margin-bottom:15px;

}

p{

    color:var(--gray);

    margin-bottom:18px;

}

.subtitle{

    color:var(--secondary);

    text-transform:uppercase;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:10px;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

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

    backdrop-filter:blur(8px);

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:85px;

}

.logo img{

    width:180px;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:var(--dark);

    font-weight:500;

}

.nav-links a:hover{

    color:var(--secondary);

}

.nav-links a.active{

    color:var(--secondary);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.menu-btn{

    display:none;

    cursor:pointer;

    font-size:28px;

}

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

.hero{

    position:relative;

    height:100vh;

    background:url("../images/hero.jpg") center center/cover;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(8,25,45,.65);

}

.hero-content{

    position:relative;

    color:#fff;

    max-width:900px;

}

.hero h1{

    color:#fff;

    margin-bottom:25px;

}

.hero p{

    color:#eee;

    font-size:20px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

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

.btn-primary{

    display:inline-block;

    padding:15px 35px;

    background:var(--secondary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 12px 25px rgba(247,148,29,.35);

}

.btn-primary:hover{

    transform:translateY(-5px);

    background:#e8840c;

}

.btn-secondary{

    display:inline-block;

    padding:15px 35px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}

/* ===============================
   INTRO SECTION
================================== */

.intro-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.rounded-img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

/* ===============================
   SIMPLE FADE ANIMATION
================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:1s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* ===============================
   SMALL UTILITIES
================================== */

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.text-center{

    text-align:center;

}

.text-white{

    color:#fff;

}

/* ===================================================
   Fentec STORAGE SOLUTIONS
   style.css
   Part 2
=================================================== */


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

.card-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.card{

    background:#fff;

    padding:40px 30px;

    border-radius:16px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:var(--transition);

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

}

.card:hover{

    transform:translateY(-10px);

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

}

.card i{

    width:85px;
    height:85px;

    margin:auto;

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

    font-size:34px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    margin-bottom:25px;

}

.card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.card p{

    margin-bottom:0;

}


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

.service-grid{

    display:grid;

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

    gap:35px;

    margin-bottom:50px;

}

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

    padding:45px 35px;

    text-align:center;

    transition:var(--transition);

    border-top:5px solid var(--secondary);

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-card i{

    font-size:55px;

    color:var(--secondary);

    margin-bottom:25px;

}

.service-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.service-card p{

    margin-bottom:0;

}


/* ===============================
   STATS
================================== */

.stats{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    padding:80px 0;

    color:#fff;

}

.stats-grid{

    display:grid;

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

    gap:30px;

    text-align:center;

}

.stats-grid h2{

    color:#fff;

    font-size:52px;

    margin-bottom:10px;

}

.stats-grid p{

    color:#ddd;

    margin-bottom:0;

    font-size:18px;

}


/* ===============================
   COMPANY PROFILE BOX
================================== */

.profile-box{

    background:var(--light);

    padding:70px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

}

.profile-box h2{

    color:var(--primary);

}

.profile-box p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

}


/* ===============================
   CTA SECTION
================================== */

.cta{

    background:url("../images/warehouse.jpg")
    center center/cover;

    position:relative;

    padding:100px 0;

    text-align:center;

}

.cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(9,32,55,.78);

}

.cta .container{

    position:relative;

    z-index:1;

}

.cta h2{

    color:#fff;

    margin-bottom:20px;

}

.cta p{

    color:#ddd;

    font-size:18px;

    margin-bottom:35px;

}


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

footer{

    background:#111827;

    color:#fff;

    padding-top:70px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    padding-bottom:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

footer h4{

    color:#fff;

    margin-bottom:20px;

}

footer p{

    color:#cbd5e1;

    margin-bottom:15px;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#cbd5e1;

}

footer ul li a:hover{

    color:var(--secondary);

    padding-left:5px;

}

footer i{

    color:var(--secondary);

    margin-right:10px;

}

.copyright{

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

    padding:20px;

    text-align:center;

    color:#aaa;

    font-size:15px;

}


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

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:999;

}

.floating-buttons a{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#fff;

    font-size:26px;

    box-shadow:0 12px 25px rgba(0,0,0,.2);

    transition:var(--transition);

}

.floating-buttons a:hover{

    transform:translateY(-6px) scale(1.08);

}

.whatsapp{

    background:#25D366;

}

.email{

    background:var(--primary);

}


/* ===============================
   COMMON PAGE BANNER
================================== */

.page-banner{

    height:350px;

    background:url("../images/hero.jpg")
    center center/cover;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    margin-top:85px;

}

.page-banner::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(10,30,50,.65);

}

.page-banner-content{

    position:relative;

    z-index:2;

}

.page-banner h1{

    color:#fff;

    margin-bottom:10px;

}

.page-banner p{

    color:#eee;

}


/* ===============================
   IMAGE HOVER EFFECT
================================== */

.rounded-img{

    transition:var(--transition);

}

.rounded-img:hover{

    transform:scale(1.03);

}


/* ===============================
   GENERAL CARD HOVER
================================== */

.card,
.service-card,
.profile-box{

    transition:all .35s ease;

}

.profile-box:hover{

    transform:translateY(-5px);

}


/* ===============================
   DIVIDER
================================== */

.divider{

    width:80px;

    height:4px;

    background:var(--secondary);

    margin:20px auto 40px;

    border-radius:10px;

}

/* ===================================================
   Fentec STORAGE SOLUTIONS
   style.css
   Part 3 — Inner Pages + Responsive Design
=================================================== */


/* ===================================================
   ABOUT US PAGE
=================================================== */

/* ===============================
   ABOUT CONTENT
================================== */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


/* ===============================
   MISSION & VISION
================================== */

.mission-grid {

    display: grid;

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

    gap: 35px;

}


.mission-card {

    background: #fff;

    padding: 45px;

    border-radius: 18px;

    box-shadow: var(--shadow);

    border-top: 5px solid var(--secondary);

    transition: var(--transition);

}


.mission-card:hover {

    transform: translateY(-8px);

}


.mission-card i {

    font-size: 45px;

    color: var(--secondary);

    margin-bottom: 25px;

}


.mission-card h3 {

    color: var(--primary);

}


/* ===============================
   CORE VALUES
================================== */

.values-grid {

    display: grid;

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

    gap: 30px;

}


.value-card {

    text-align: center;

    padding: 35px 25px;

    border-radius: 15px;

    background: #fff;

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

    transition: var(--transition);

}


.value-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}


.value-card i {

    width: 75px;

    height: 75px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #fff;

    border-radius: 50%;

    font-size: 28px;

    margin-bottom: 20px;

}


.value-card h3 {

    color: var(--primary);

    font-size: 20px;

}


/* ===================================================
   COMPANY TIMELINE
=================================================== */

.timeline {

    position: relative;

    max-width: 900px;

    margin: 60px auto 0;

}


.timeline::before {

    content: "";

    position: absolute;

    width: 4px;

    background: var(--primary);

    top: 0;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

}


.timeline-item {

    position: relative;

    width: 50%;

    padding: 20px 50px;

}


.timeline-item:nth-child(odd) {

    left: 0;

    text-align: right;

}


.timeline-item:nth-child(even) {

    left: 50%;

}


.timeline-dot {

    position: absolute;

    width: 20px;

    height: 20px;

    background: var(--secondary);

    border: 4px solid #fff;

    border-radius: 50%;

    box-shadow: 0 0 0 3px var(--primary);

    top: 30px;

}


.timeline-item:nth-child(odd) .timeline-dot {

    right: -10px;

}


.timeline-item:nth-child(even) .timeline-dot {

    left: -10px;

}


.timeline-content {

    background: #fff;

    padding: 30px;

    border-radius: 15px;

    box-shadow: var(--shadow);

}


.timeline-content h3 {

    color: var(--primary);

}


.timeline-year {

    color: var(--secondary);

    font-weight: 700;

    font-size: 18px;

}


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

.services-full-grid {

    display: grid;

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

    gap: 35px;

}


.service-full-card {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

}


.service-full-card:hover {

    transform: translateY(-10px);

}


.service-full-card img {

    height: 240px;

    object-fit: cover;

    transition: transform .5s ease;

}


.service-full-card:hover img {

    transform: scale(1.06);

}


.service-full-content {

    padding: 35px;

}


.service-full-content h3 {

    color: var(--primary);

}


.service-full-content i {

    color: var(--secondary);

    margin-right: 8px;

}


/* ===============================
   SERVICE FEATURE LIST
================================== */

.feature-list {

    margin-top: 20px;

}


.feature-list li {

    margin-bottom: 12px;

    color: var(--gray);

}


.feature-list li i {

    color: var(--secondary);

    margin-right: 10px;

}


/* ===================================================
   PARTNERS PAGE
=================================================== */

.partner-grid {

    display: grid;

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

    gap: 30px;

    align-items: center;

}


.partner-card {

    background: #fff;

    height: 150px;

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

    border-radius: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 25px;

    transition: var(--transition);

}


.partner-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.partner-card img {

    max-width: 160px;

    max-height: 85px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: .75;

    transition: var(--transition);

}


.partner-card:hover img {

    filter: grayscale(0);

    opacity: 1;

}


/* ===================================================
   INDUSTRIES
=================================================== */

.industry-grid {

    display: grid;

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

    gap: 25px;

}


.industry-card {

    position: relative;

    height: 280px;

    border-radius: 18px;

    overflow: hidden;

}


.industry-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}


.industry-card:hover img {

    transform: scale(1.08);

}


.industry-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    background: linear-gradient(
        transparent,
        rgba(5, 20, 35, .9)
    );

}


.industry-overlay h3 {

    color: #fff;

    margin: 0;

}


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

.testimonial-grid {

    display: grid;

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

    gap: 30px;

}


.testimonial-card {

    background: #fff;

    padding: 40px;

    border-radius: 18px;

    box-shadow: var(--shadow);

    position: relative;

}


.testimonial-card::before {

    content: "\201C";

    position: absolute;

    top: 10px;

    right: 25px;

    font-size: 90px;

    color: rgba(15, 76, 129, .08);

    font-family: Georgia, serif;

}


.testimonial-stars {

    color: #f5a623;

    margin-bottom: 20px;

}


.testimonial-name {

    font-weight: 600;

    color: var(--primary);

    margin-bottom: 0;

}


.testimonial-company {

    font-size: 14px;

    color: var(--gray);

}


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

.contact-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 60px;

    align-items: start;

}


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

.contact-info {

    background: var(--primary);

    padding: 50px;

    border-radius: 20px;

    color: #fff;

}


.contact-info h2 {

    color: #fff;

}


.contact-info > p {

    color: #dbeafe;

}


.contact-item {

    display: flex;

    gap: 20px;

    margin-top: 30px;

    align-items: flex-start;

}


.contact-icon {

    min-width: 55px;

    height: 55px;

    background: var(--secondary);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


.contact-item h4 {

    margin-bottom: 5px;

}


.contact-item p {

    color: #dbeafe;

    margin-bottom: 0;

}


.contact-item a {

    color: #dbeafe;

}


.contact-item a:hover {

    color: var(--secondary);

}


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

.contact-form {

    background: #fff;

    padding: 50px;

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.contact-form h2 {

    color: var(--primary);

}


.form-group {

    margin-bottom: 22px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: 500;

    color: var(--dark);

}


.form-control {

    width: 100%;

    height: 52px;

    padding: 0 18px;

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

    border-radius: 10px;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition: var(--transition);

}


textarea.form-control {

    height: 160px;

    padding-top: 15px;

    resize: vertical;

}


.form-control:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(15, 76, 129, .08);

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.form-submit {

    border: none;

    cursor: pointer;

    font-family: inherit;

    font-size: 16px;

}


/* ===================================================
   GOOGLE MAP
=================================================== */

.map-container {

    width: 100%;

    height: 450px;

    overflow: hidden;

}


.map-container iframe {

    width: 100%;

    height: 100%;

    border: 0;

}


/* ===================================================
   OFFICE HOURS
=================================================== */

.office-hours {

    margin-top: 35px;

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

    padding-top: 30px;

}


.office-hours h3 {

    color: #fff;

}


.office-hours-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 10px;

}


.office-hours-row span {

    color: #dbeafe;

}


/* ===================================================
   BREADCRUMB
=================================================== */

.breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    color: #fff;

}


.breadcrumb a {

    color: #fff;

}


.breadcrumb a:hover {

    color: var(--secondary);

}


.breadcrumb span {

    color: #ddd;

}


/* ===================================================
   SCROLL REVEAL ANIMATIONS
=================================================== */

/* ===================================================
   SCROLL REVEAL
   Temporary safe version
=================================================== */

/* Content is visible by default */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
}


/* Only prepare animation when JavaScript is available */

.js .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.js .reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.js .reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


/* JavaScript activates the animation */

.js .reveal.active,
.js .reveal-left.active,
.js .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}


/* ===================================================
   BUTTON PULSE
=================================================== */

@keyframes pulse {

    0% {

        box-shadow:
            0 0 0 0 rgba(37, 211, 102, .5);

    }

    70% {

        box-shadow:
            0 0 0 15px rgba(37, 211, 102, 0);

    }

    100% {

        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);

    }

}


.whatsapp {

    animation: pulse 2.5s infinite;

}


/* ===================================================
   BACK TO TOP BUTTON
=================================================== */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 180px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: var(--dark);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

    z-index: 998;

    border: none;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--secondary);

    transform: translateY(-4px);

}


/* ===================================================
   TABLET RESPONSIVE
   1024px and below
=================================================== */

@media (max-width: 1024px) {


    /* ===========================
       TYPOGRAPHY
    ============================ */

    h1 {

        font-size: 48px;

    }


    h2 {

        font-size: 34px;

    }


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

    .nav-links {

        gap: 22px;

    }


    .logo img {

        width: 155px;

    }


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

    .card-grid {

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

    }


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

    .service-grid {

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

    }


    .services-full-grid {

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

    }


    /* ===========================
       VALUES
    ============================ */

    .values-grid {

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

    }


    /* ===========================
       PARTNERS
    ============================ */

    .partner-grid {

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

    }


    /* ===========================
       INDUSTRIES
    ============================ */

    .industry-grid {

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

    }


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

    .testimonial-grid {

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

    }


}


/* ===================================================
   MOBILE NAVIGATION
   850px and below
=================================================== */

@media (max-width: 850px) {


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

    .navbar {

        height: 75px;

    }


    header {

        height: 75px;

    }


    .logo img {

        width: 145px;

    }


    .menu-btn {

        display: block;

        color: var(--primary);

        z-index: 1001;

    }


    nav {

        position: fixed;

        top: 75px;

        left: -100%;

        width: 100%;

        height: calc(100vh - 75px);

        background: #fff;

        transition: .4s ease;

        overflow-y: auto;

    }


    nav.active {

        left: 0;

    }


    .nav-links {

        flex-direction: column;

        gap: 0;

        padding: 35px;

    }


    .nav-links li {

        width: 100%;

        border-bottom: 1px solid var(--border);

    }


    .nav-links a {

        display: block;

        padding: 18px 5px;

        font-size: 17px;

    }


    .nav-links a::after {

        display: none;

    }


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

    .hero {

        min-height: 750px;

        height: 100vh;

        padding-top: 75px;

    }


    .hero-content {

        max-width: 700px;

    }


    .hero h1 {

        font-size: 44px;

    }


    .hero p {

        font-size: 18px;

    }


    /* ===========================
       ABOUT / INTRO
    ============================ */

    .intro-grid,
    .about-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    /* ===========================
       MISSION
    ============================ */

    .mission-grid {

        grid-template-columns: 1fr;

    }


    /* ===========================
       STATS
    ============================ */

    .stats-grid {

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

        row-gap: 45px;

    }


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

    .contact-grid {

        grid-template-columns: 1fr;

    }


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

    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }


    /* ===========================
       PAGE BANNER
    ============================ */

    .page-banner {

        margin-top: 75px;

    }

}


/* ===================================================
   MOBILE
   650px and below
=================================================== */

@media (max-width: 650px) {


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

    .container {

        width: 88%;

    }


    .section {

        padding: 65px 0;

    }


    h1 {

        font-size: 38px;

    }


    h2 {

        font-size: 30px;

        line-height: 1.3;

    }


    h3 {

        font-size: 21px;

    }


    p {

        font-size: 15px;

    }


    .section-title {

        margin-bottom: 40px;

    }


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

    .hero {

        min-height: 700px;

    }


    .hero h1 {

        font-size: 38px;

    }


    .hero p {

        font-size: 16px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: center;

    }


    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {

        width: 220px;

    }


    /* ===========================
       BUTTON
    ============================ */

    .btn-primary,
    .btn-secondary {

        padding: 13px 27px;

    }


    /* ===========================
       CARDS
    ============================ */

    .card-grid,
    .service-grid,
    .services-full-grid,
    .values-grid,
    .partner-grid,
    .industry-grid,
    .testimonial-grid {

        grid-template-columns: 1fr;

    }


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

    .card {

        padding: 35px 25px;

    }


    /* ===========================
       STATS
    ============================ */

    .stats {

        padding: 65px 0;

    }


    .stats-grid h2 {

        font-size: 40px;

    }


    .stats-grid p {

        font-size: 14px;

    }


    /* ===========================
       PROFILE
    ============================ */

    .profile-box {

        padding: 45px 25px;

    }


    /* ===========================
       CTA
    ============================ */

    .cta {

        padding: 75px 0;

    }


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

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    /* ===========================
       PAGE BANNER
    ============================ */

    .page-banner {

        height: 280px;

    }


    .page-banner h1 {

        font-size: 36px;

    }


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

    .contact-info,
    .contact-form {

        padding: 35px 25px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    /* ===========================
       MAP
    ============================ */

    .map-container {

        height: 350px;

    }


    /* ===========================
       PARTNER
    ============================ */

    .partner-card {

        height: 130px;

    }


    /* ===========================
       TIMELINE
    ============================ */

    .timeline::before {

        left: 15px;

    }


    .timeline-item {

        width: 100%;

        left: 0 !important;

        padding:

            15px
            0
            15px
            50px;

        text-align: left !important;

    }


    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {

        left: 5px;

        right: auto;

    }


    .timeline-content {

        padding: 25px;

    }


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

    .floating-buttons {

        right: 15px;

        bottom: 20px;

        gap: 10px;

    }


    .floating-buttons a {

        width: 52px;

        height: 52px;

        font-size: 23px;

    }


    .back-to-top {

        right: 17px;

        bottom: 145px;

        width: 44px;

        height: 44px;

    }

}


/* ===================================================
   SMALL MOBILE
   420px and below
=================================================== */

@media (max-width: 420px) {


    h1 {

        font-size: 33px;

    }


    h2 {

        font-size: 27px;

    }


    .hero h1 {

        font-size: 34px;

    }


    .hero {

        min-height: 650px;

    }


    .stats-grid {

        grid-template-columns: 1fr 1fr;

        gap: 30px 15px;

    }


    .stats-grid h2 {

        font-size: 34px;

    }


    .contact-info,
    .contact-form {

        padding: 30px 20px;

    }


    .service-full-content {

        padding: 28px 22px;

    }


    .testimonial-card {

        padding: 30px 25px;

    }

}


/* ===================================================
   ACCESSIBILITY
=================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {

    outline: 3px solid rgba(247, 148, 29, .45);

    outline-offset: 3px;

}


/* ===================================================
   TEXT SELECTION
=================================================== */

::selection {

    background: var(--primary);

    color: #fff;

}


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

::-webkit-scrollbar {

    width: 10px;

}


::-webkit-scrollbar-track {

    background: #f1f1f1;

}


::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 10px;

}


::-webkit-scrollbar-thumb:hover {

    background: var(--secondary);

}


/* ===================================================
   REDUCED MOTION ACCESSIBILITY
=================================================== */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    * {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}