/*=========================================================
 AK FABRICATIONS
 Premium Business Website
 Author : ChatGPT
==========================================================*/


/*=========================================================
Google Font
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================================================
Root Variables
==========================================================*/

:root {
    --primary: #0F172A;
    --secondary: #D4AF37;
    --white: #FFFFFF;
    --light: #F8FAFC;
    --dark: #1E293B;
    --gray: #64748B;
    --border: #E5E7EB;
    --shadow: 0 10px 35px rgba(0,0,0,.08);
    --transition: .35s ease;
    --radius: 12px;
}


/*=========================================================
Reset
==========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}


/*=========================================================
Typography
==========================================================*/

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
}

h1 {
    font-size: 58px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 30px;
}

p {
    color: var(--gray);
    margin-bottom: 18px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    width: 100%;
    display: block;
}


/*=========================================================
Container
==========================================================*/

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}


/*=========================================================
Sections
==========================================================*/

section {
    padding: 100px 0;
}


/*=========================================================
Buttons
==========================================================*/

.btn-primary {
    background: var(--secondary);
    color: #000;
    padding: 15px 34px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212,175,55,.35);
    }


.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 15px 34px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-outline:hover {
        background: var(--secondary);
        color: #000;
    }


/*=========================================================
Header
==========================================================*/

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 9999;
    transition: .4s;
    background: rgba(15,23,42,.90);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}


    #header .container {
        height: 90px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    /* Sticky Header */

    #header.sticky {
        height: 75px;
        background: var(--primary);
    }

        #header.sticky .container {
            height: 75px;
        }


/*=========================================================
Logo
==========================================================*/

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .logo:hover {
        text-decoration: none;
    }

.logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
}

.logo-text h2 {
    color: #fff;
    font-size: 24px;
    margin: 0;
    line-height: 1.1;
}

.logo-text span {
    color: #ddd;
    font-size: 13px;
    letter-spacing: 1px;
}


/*=========================================================
Navigation
==========================================================*/

#navbar ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

    #navbar ul li {
        position: relative;
    }

        #navbar ul li a {
            color: #fff;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding: 6px 0;
        }


            /* Underline Animation */

            #navbar ul li a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 0;
                height: 2px;
                background: var(--secondary);
                transition: var(--transition);
            }

            #navbar ul li a:hover::after,
            #navbar ul li a.active::after {
                width: 100%;
            }

            #navbar ul li a:hover,
            #navbar ul li a.active {
                color: var(--secondary);
            }


/*=========================================================
Header Right
==========================================================*/

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-btn {
    background: var(--secondary);
    color: #000;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
}

    .quote-btn:hover {
        transform: translateY(-3px);
        color: #000;
    }


/*=========================================================
Mobile Button
==========================================================*/

#mobileMenuBtn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--secondary);
    border-radius: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    #mobileMenuBtn i {
        font-size: 30px;
        color: #000;
    }


/*=========================================================
Loader
==========================================================*/

#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #ddd;
    border-top: 5px solid var(--secondary);
    animation: spin 1s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }
}


/*=========================================================
Back To Top
==========================================================*/

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    color: #000;
    font-size: 22px;
    display: none;
    cursor: pointer;
    z-index: 999;
}


/*=========================================================
WhatsApp
==========================================================*/

.whatsapp {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 32px;
    z-index: 999;
}


/*=========================================================
Responsive
==========================================================*/

@media(max-width:991px) {

    #navbar {
        display: none;
    }

    .quote-btn {
        display: none;
    }

    #mobileMenuBtn {
        display: flex;
    }

    .logo-text h2 {
        font-size: 20px;
    }

    .logo-text span {
        font-size: 11px;
    }

    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }
}

@media(max-width:576px) {

    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    .container {
        width: 94%;
    }
}
/*=========================================================
 HERO SECTION
=========================================================*/

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 170px;
    padding-bottom: 80px;
    background: linear-gradient(135deg,#F8FAFC 0%,#EEF4F8 100%);
}


    /* Decorative Background */

    .hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(212,175,55,.08);
        top: -180px;
        right: -150px;
        z-index: 0;
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(15,23,42,.05);
        bottom: -150px;
        left: -120px;
    }


    /* Layout */

    .hero .container {
        position: relative;
        z-index: 2;
    }


/* Left Content */

.hero-content {
    padding-right: 40px;
}

.hero-tag {
    display: inline-block;
    background: rgba(212,175,55,.15);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--primary);
}

    .hero-content h1 span {
        color: var(--secondary);
    }

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 600px;
}


/* Buttons */

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}


/* Features */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

    .hero-features div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
        color: var(--dark);
    }

    .hero-features i {
        color: #28a745;
        font-size: 20px;
    }


/* Right Side */

.hero-image {
    position: relative;
    text-align: center;
}

    .hero-image img {
        width: 100%;
        max-width: 560px;
        border-radius: 22px;
        box-shadow: 0 30px 60px rgba(0,0,0,.15);
    }


/* Floating Card */

.experience-card {
    position: absolute;
    top: 50px;
    left: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: var(--shadow);
    animation: floatCard 4s ease-in-out infinite;
}

    .experience-card h3 {
        color: var(--secondary);
        font-size: 34px;
        margin-bottom: 5px;
    }

    .experience-card span {
        font-size: 14px;
        color: var(--gray);
    }


/* Project Card */

.project-card {
    position: absolute;
    right: -20px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite;
}

    .project-card i {
        font-size: 42px;
        color: var(--secondary);
    }

    .project-card strong {
        display: block;
        color: var(--primary);
        font-size: 24px;
    }

    .project-card span {
        color: var(--gray);
        font-size: 14px;
    }


/* Floating Animation */

@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/*=========================================================
 HERO STATISTICS
=========================================================*/

.hero-stats {
    margin-top: 90px;
}

.stat-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,.05);
}

    .stat-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

    .stat-box h2 {
        font-size: 46px;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 10px;
    }

    .stat-box p {
        margin: 0;
        color: var(--gray);
        font-size: 16px;
        font-weight: 500;
    }


/*=========================================================
 HERO IMAGE EFFECTS
=========================================================*/

.hero-image {
    animation: fadeUp 1.2s ease;
}

.hero-content {
    animation: fadeLeft 1s ease;
}

.hero-image img {
    transition: .5s;
}

    .hero-image img:hover {
        transform: scale(1.03);
    }


/*=========================================================
 BACKGROUND SHAPES
=========================================================*/

.hero-shape-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(212,175,55,.12);
    border-radius: 50%;
    top: 120px;
    right: 8%;
}

.hero-shape-2 {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(15,23,42,.08);
    border-radius: 50%;
    bottom: 80px;
    left: 5%;
}


/*=========================================================
 SCROLL INDICATOR
=========================================================*/

.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

    .scroll-down i {
        font-size: 34px;
        color: var(--secondary);
    }


/*=========================================================
 ANIMATIONS
=========================================================*/

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,20%,50%,80%,100% {
        transform: translate(-50%,0);
    }

    40% {
        transform: translate(-50%,-12px);
    }

    60% {
        transform: translate(-50%,-6px);
    }
}


/*=========================================================
 RESPONSIVE
=========================================================*/

@media (max-width:1200px) {

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-image img {
        max-width: 500px;
    }
}

@media (max-width:991px) {

    .hero {
        padding-top: 140px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

        .hero-content h1 {
            font-size: 42px;
        }

        .hero-content p {
            margin: auto;
            margin-bottom: 30px;
        }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .experience-card {
        left: 0;
        top: 20px;
        padding: 15px 20px;
    }

    .project-card {
        right: 0;
        bottom: 20px;
        padding: 15px 20px;
    }

    .hero-stats {
        margin-top: 70px;
    }

    .stat-box {
        margin-bottom: 25px;
    }
}

@media (max-width:768px) {

    .hero {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 240px;
        text-align: center;
    }

    .experience-card {
        position: relative;
        left: auto;
        top: auto;
        margin: 20px auto;
    }

    .project-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 20px auto 0;
    }

    .stat-box h2 {
        font-size: 34px;
    }
}

@media (max-width:576px) {

    .hero-tag {
        font-size: 13px;
        padding: 8px 18px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }

        .hero-features div {
            font-size: 15px;
        }

    .stat-box {
        padding: 25px 15px;
    }

        .stat-box h2 {
            font-size: 30px;
        }
}
/*=========================================================
WHY CHOOSE US
=========================================================*/

.why-us {
    background: #fff;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

    .section-title span {
        color: var(--secondary);
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 14px;
    }

    .section-title h2 {
        margin-top: 15px;
        margin-bottom: 20px;
        font-size: 42px;
    }

    .section-title strong {
        color: var(--secondary);
    }

    .section-title p {
        font-size: 17px;
    }


/* Cards */

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    height: 100%;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,.12);
    }


    .why-card .icon {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin: auto;
        margin-bottom: 25px;
        background: rgba(212,175,55,.15);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .why-card i {
        font-size: 40px;
        color: var(--secondary);
    }

    .why-card h3 {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .why-card p {
        color: var(--gray);
        margin: 0;
    }

/* Responsive */

@media(max-width:768px) {

    .section-title {
        margin-bottom: 50px;
    }

        .section-title h2 {
            font-size: 32px;
        }

    .why-card {
        padding: 30px;
    }
}
/*=========================================================
OUR SERVICES
=========================================================*/

.services {
    background: #f8fafc;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: .4s;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212,175,55,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .service-icon i {
        font-size: 36px;
        color: var(--secondary);
    }

.service-card h3 {
    margin-bottom: 18px;
    font-size: 24px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
}

    .service-link:hover {
        letter-spacing: 1px;
    }

@media(max-width:768px) {

    .service-card {
        padding: 30px;
    }
}
/*=========================================================
FEATURED PROJECTS
=========================================================*/

.projects {
    background: #fff;
}

.project-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .project-card:hover {
        transform: translateY(-10px);
    }

.project-image {
    overflow: hidden;
}

    .project-image img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .5s;
    }

.project-card:hover img {
    transform: scale(1.08);
}

.project-content {
    padding: 30px;
}

    .project-content span {
        color: var(--secondary);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .project-content h3 {
        margin: 15px 0;
        font-size: 24px;
    }

    .project-content p {
        margin: 0;
    }
.projectSwiper {
    padding: 20px 5px 70px;
}

    .projectSwiper .swiper-button-next,
    .projectSwiper .swiper-button-prev {
        color: var(--secondary);
    }

    .projectSwiper .swiper-pagination-bullet {
        background: #ccc;
        opacity: 1;
    }

    .projectSwiper .swiper-pagination-bullet-active {
        background: var(--secondary);
    }
.swiper-slide {
    height: auto;
}
@media (max-width:991px) {

    #navbar {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: #0F172A;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
    }

        #navbar.mobile-open {
            display: block;
        }

        #navbar ul {
            flex-direction: column;
            gap: 0;
        }

            #navbar ul li {
                border-bottom: 1px solid rgba(255,255,255,.08);
            }

                #navbar ul li a {
                    display: block;
                    padding: 16px 25px;
                }
}
/*=========================================================
SCROLL PROGRESS
=========================================================*/

#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg,#D4AF37,#ffda6b);
    z-index: 999999;
}