﻿/*==================================================
    AdPrint Advertising
    Main CSS v2.0
==================================================*/

/*==================================================
    GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
    CSS VARIABLES
==================================================*/

:root {
    --primary: #0A2342;
    --secondary: #1E88E5;
    --accent: #25D366;
    --dark: #111827;
    --text: #4B5563;
    --white: #ffffff;
    --light: #F7F9FC;
    --border: #E5E7EB;
    --radius: 18px;
    --shadow-sm: 0 4px 12px rgba(0,0,0,.08);
    --shadow-md: 0 12px 30px rgba(0,0,0,.10);
    --shadow-lg: 0 18px 45px rgba(0,0,0,.15);
    --transition: .35s ease;
}

/*==================================================
    RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    font-family: 'Poppins',sans-serif;
}

/*==================================================
    CONTAINER
==================================================*/

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/*==================================================
    SECTION
==================================================*/

section {
    padding-block: 90px;
}

.sectionHeading {
    text-align: center;
    margin-bottom: 70px;
}

    .sectionHeading span {
        color: var(--secondary);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .sectionHeading h2 {
        margin-top: 12px;
        color: var(--primary);
        font-size: 48px;
        font-weight: 700;
    }

    .sectionHeading p {
        width: 70%;
        margin: 18px auto 0;
        font-size: 18px;
    }

/*==================================================
    BUTTONS
==================================================*/

.btnPrimary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 40px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

    .btnPrimary:hover {
        background: var(--secondary);
        transform: translateY(-4px);
    }

.btnOutline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: 2px solid var(--primary);
    border-radius: 40px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

    .btnOutline:hover {
        background: var(--primary);
        color: #fff;
    }

/*==================================================
                    HEADER
==================================================*/

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .header.hide {
        transform: translateY(-100%);
    }
.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

/*========================
        LOGO
========================*/

.logo {
    flex: 0 0 320px;
}

    .logo a {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo img {
        width: 62px;
        height: 62px;
        object-fit: contain;
    }

.logoText h2 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.logoText span {
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
}

/*========================
        NAVBAR
========================*/

.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .navbar ul {
        display: flex;
        align-items: center;
        gap: 42px;
    }

        .navbar ul li {
            list-style: none;
        }

            .navbar ul li a {
                color: var(--primary);
                font-weight: 600;
                font-size: 16px;
                position: relative;
                transition: .3s;
            }

                .navbar ul li a:hover {
                    color: var(--secondary);
                }

                .navbar ul li a::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -10px;
                    width: 0;
                    height: 3px;
                    background: var(--secondary);
                    transition: .3s;
                }

                .navbar ul li a:hover::after {
                    width: 100%;
                }

/*========================
        RIGHT
========================*/

.rightSection {
    flex: 0 0 180px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/*========================
        BUTTON
========================*/

.quoteButton {
    background: var(--primary);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    transition: .35s;
}

    .quoteButton:hover {
        background: var(--secondary);
    }

/*========================
        MOBILE
========================*/

.mobileMenu {
    display: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

@media(max-width:1200px) {

    .navbar ul {
        gap: 28px;
    }
}

@media(max-width:1050px) {

    .navbar {
        display: none;
    }

    .quoteButton {
        display: none;
    }

    .mobileMenu {
        display: block;
    }
}

@media(max-width:768px) {

    .headerContainer {
        height: 75px;
    }

    .logo {
        flex: auto;
    }

        .logo img {
            width: 50px;
            height: 50px;
        }

    .logoText h2 {
        font-size: 18px;
    }

    .logoText span {
        display: none;
    }
}
/*==================================================
    COMMON CARD
==================================================*/

.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

/*==================================================
    IMAGE HOVER
==================================================*/

.imageZoom {
    overflow: hidden;
}

    .imageZoom img {
        transition: .45s;
    }

    .imageZoom:hover img {
        transform: scale(1.08);
    }

/*==================================================
    SECTION BACKGROUNDS
==================================================*/

.bgLight {
    background: var(--light);
}

.bgWhite {
    background: #ffffff;
}

/*==================================================
    TEXT
==================================================*/

.textCenter {
    text-align: center;
}

.textPrimary {
    color: var(--primary);
}

.textSecondary {
    color: var(--secondary);
}

/*==================================================
    SPACING
==================================================*/

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb60 {
    margin-bottom: 60px;
}

/*==================================================
    ANIMATIONS
==================================================*/

@keyframes slideMenu {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
    RESPONSIVE HEADER
==================================================*/

@media(max-width:1200px) {

    .navbar ul {
        gap: 24px;
    }
}

@media(max-width:1100px) {

    .navbar {
        display: none;
    }

    .quoteButton {
        display: none;
    }

    .mobileMenu {
        display: block;
    }
}

@media(max-width:768px) {

    body {
        padding-top: 72px;
    }

    .header .container {
        height: 72px;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .logo span {
        font-size: 22px;
    }

    .sectionHeading h2 {
        font-size: 34px;
    }

    .sectionHeading p {
        width: 100%;
        font-size: 16px;
    }

    .floatingButtons {
        right: 15px;
        bottom: 15px;
    }

        .floatingButtons a,
        .floatingButtons button {
            width: 50px;
            height: 50px;
            font-size: 18px;
        }
}
/*==================================================
                HERO SLIDER
==================================================*/

.heroSlider {
    position: relative;
    width: 100%;
    height: calc(100vh - 82px);
    overflow: hidden;
    background: #000;
}

.slides {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

    .slides img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*==================================================
                OVERLAY
==================================================*/

    .slides::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(10,35,66,.82), rgba(10,35,66,.45), rgba(0,0,0,.20) );
        z-index: 1;
    }

/*==================================================
                HERO CONTENT
==================================================*/

.heroContent {
    position: absolute;
    top: 47%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
    z-index: 2;
    padding-bottom: 40px;
}

    .heroContent span {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(255,255,255,.15);
        backdrop-filter: blur(8px);
        border-radius: 30px;
        margin-bottom: 20px;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .heroContent h1 {
        font-size: 64px;
        line-height: 1.15;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .heroContent p {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 40px;
        opacity: .95;
    }

/*==================================================
                HERO BUTTONS
==================================================*/

.heroButtons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .heroButtons .btnPrimary {
        background: #ffffff;
        color: var(--primary);
    }

        .heroButtons .btnPrimary:hover {
            background: var(--secondary);
            color: #fff;
        }

    .heroButtons .btnOutline {
        border: 2px solid #fff;
        color: #fff;
    }

        .heroButtons .btnOutline:hover {
            background: #fff;
            color: var(--primary);
        }

/*==================================================
                PREVIOUS / NEXT
==================================================*/

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    transition: .35s;
    z-index: 5;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

    .prev:hover,
    .next:hover {
        background: #ffffff;
        color: var(--primary);
    }

/*==================================================
                DOTS
==================================================*/

.dots {
    position: absolute;
    bottom: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: .35s;
}

.activeDot {
    width: 40px;
    border-radius: 20px;
    background: #ffffff;
}

/*==================================================
                SCROLL INDICATOR
==================================================*/

.scrollDown {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 10;
    animation: float 2s infinite;
}

    .scrollDown i {
        color: #fff;
        font-size: 28px;
    }

/*==================================================
                HERO ANIMATION
==================================================*/

@keyframes fadeSlide {

    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .heroSlider,
    .slides {
        height: 75vh;
    }

    .heroContent {
        left: 40px;
        right: 40px;
        max-width: 100%;
    }

        .heroContent h1 {
            font-size: 48px;
        }
}

@media(max-width:768px) {

    .heroSlider,
    .slides {
        height: 65vh;
    }

    .heroContent {
        left: 25px;
        right: 25px;
    }

        .heroContent span {
            font-size: 12px;
        }

        .heroContent h1 {
            font-size: 34px;
        }

        .heroContent p {
            font-size: 16px;
            margin-bottom: 25px;
        }

    .heroButtons {
        flex-direction: column;
        align-items: flex-start;
    }

    .prev,
    .next {
        display: none;
    }
}
/*==================================================
                STATISTICS
==================================================*/

.statistics {
    position: relative;
    z-index: 20;
}

    .statistics .container {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 30px;
    }

.statCard {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

    .statCard::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--secondary);
        transform: scaleX(0);
        transition: .35s;
    }

    .statCard:hover {
        transform: translateY(-12px);
        box-shadow: 0 28px 60px rgba(0,0,0,.15);
    }

        .statCard:hover::before {
            transform: scaleX(1);
        }

.statIcon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eef6ff;
    color: var(--secondary);
    font-size: 34px;
    transition: .35s;
}

.statCard:hover .statIcon {
    background: var(--secondary);
    color: #ffffff;
    transform: rotateY(180deg);
}

.statNumber {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.statTitle {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.statDescription {
    margin-top: 12px;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

/*==================================================
                HOVER GLOW
==================================================*/

.statCard:hover {
    background: #ffffff;
}

    .statCard:hover .statNumber {
        color: var(--secondary);
    }

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px) {

    .statistics .container {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .statistics {
        margin-top: 0;
        padding-top: 70px;
    }

        .statistics .container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

    .statCard {
        padding: 35px 20px;
    }

    .statNumber {
        font-size: 42px;
    }

    .statIcon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
/*==================================================
                ABOUT US
==================================================*/

.aboutSection {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .aboutSection::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(30,136,229,.05);
    }

.aboutContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/*====================================
            IMAGE
====================================*/

.aboutImage {
    position: relative;
}

    .aboutImage img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

/*====================================
        EXPERIENCE CARD
====================================*/

.experienceCard {
    position: absolute;
    bottom: 35px;
    left: -30px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    text-align: center;
}

    .experienceCard h2 {
        color: var(--secondary);
        font-size: 42px;
        line-height: 1;
        margin-bottom: 8px;
    }

    .experienceCard span {
        color: #666;
        font-weight: 600;
    }

/*====================================
            CONTENT
====================================*/

.aboutContent {
    position: relative;
}

    .aboutContent .sectionTag {
        display: inline-block;
        color: var(--secondary);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .aboutContent h2 {
        color: var(--primary);
        font-size: 46px;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .aboutContent p {
        max-width: 620px;
        font-size: 18px;
        line-height: 1.9;
        margin-bottom: 35px;
        color: #666;
    }

/*====================================
        FEATURE LIST
====================================*/
.aboutChecklist {
    display: flex;
    flex-wrap: wrap;
    margin: 35px 0;
    row-gap: 28px;
}

.checkItem {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .checkItem i {
        font-size: 16px;
        color: #2B7DE9;
        width: auto;
        height: auto;
        background: none;
        border: none;
    }

    .checkItem span {
        font-size: 18px;
        font-weight: 600;
        color: #1b2c48;
        line-height: 1.4;
    }

/*====================================
        BUTTON
====================================*/

.aboutContent .btnPrimary {
    margin-top: 15px;
}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1100px) {

    .aboutContainer {
        grid-template-columns: 1fr;
    }

    .aboutContent {
        text-align: center;
    }

    .aboutFeatures {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .experienceCard {
        left: 20px;
        bottom: 20px;
    }
}

@media(max-width:768px) {

    .aboutChecklist {
        grid-template-columns: 1fr;
    }
}
/*==================================================
                WHY CHOOSE US
==================================================*/

.whyChoose {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

    .whyChoose::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(30,136,229,.05);
        top: -120px;
        left: -120px;
    }

.whyGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/*====================================
            CARD
====================================*/

.whyCard {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    border: 1px solid transparent;
    height: 100%;
}

    .whyCard:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-lg);
        border-color: #dbeafe;
    }

/*====================================
            ICON
====================================*/

.whyIcon {
    width: 85px;
    height: 85px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #eef6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .35s;
}

    .whyIcon i {
        font-size: 34px;
        color: var(--secondary);
        transition: .35s;
    }

.whyCard:hover .whyIcon {
    background: var(--secondary);
    transform: rotateY(180deg);
}

    .whyCard:hover .whyIcon i {
        color: #ffffff;
    }

/*====================================
            CONTENT
====================================*/

.whyCard h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 18px;
}

.whyCard p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/*====================================
        SMALL NUMBER
====================================*/

.whyNumber {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 70px;
    font-weight: 700;
    color: rgba(30,136,229,.05);
    line-height: 1;
    pointer-events: none;
}

/*====================================
            RESPONSIVE
====================================*/

@media(max-width:1100px) {

    .whyGrid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .whyGrid {
        grid-template-columns: 1fr;
    }

    .whyCard {
        padding: 35px 25px;
    }
}
/*==================================================
                SERVICES SECTION
==================================================*/

.servicesSection {
    background: #ffffff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

    .servicesSection::before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(30,136,229,.05);
        top: -150px;
        right: -150px;
    }

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 26px;
    margin-top: 65px;
}

/*====================================
            SERVICE CARD
====================================*/

.serviceCard {
    position: relative;
    height: 310px;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    transition: .45s ease;
}

    .serviceCard img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

    /*====================================
            HOVER
====================================*/

    .serviceCard:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 60px rgba(0,0,0,.18);
    }

        .serviceCard:hover img {
            transform: scale(1.08);
        }

/*====================================
            OVERLAY
====================================*/

.serviceOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    background: linear-gradient( to top, rgba(17,40,71,.82) 0%, rgba(17,40,71,.58) 45%, rgba(17,40,71,.22) 70%, transparent 100%);
}

    /*====================================
            TITLE
====================================*/

    .serviceOverlay h3 {
        color: #fff;
        font-weight: 700;
        font-size: 27px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    /*====================================
            DESCRIPTION
====================================*/

    .serviceOverlay p {
        color: rgba(255,255,255,.92);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
        max-width: 90%;
    }

    /*====================================
            BUTTON
====================================*/

    .serviceOverlay a {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 12px 24px;
        border-radius: 50px;
        background: #ffffff;
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        transition: .35s;
        font-size: 15px;
    }

        .serviceOverlay a i {
            transition: .35s;
        }

        .serviceOverlay a:hover {
            background: var(--secondary);
            color: #ffffff;
        }

            .serviceOverlay a:hover i {
                transform: translateX(6px);
            }

/*====================================
        LAST CARD
====================================*/

.serviceCard:last-child {
    height: 260px;
    width: 100%;
    right: -30px;
    transform: translateX(50%);
    justify-self: center;
}
/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1200px) {

    .servicesGrid {
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
}

@media(max-width:991px) {

    .servicesGrid {
        grid-template-columns: 1fr;
    }

    .serviceCard {
        height: 360px;
    }

        .serviceCard:last-child {
            width: 100%;
        }
}

@media(max-width:768px) {

    .servicesSection {
        padding: 80px 0;
    }

    .serviceCard {
        height: 320px;
    }

    .serviceOverlay {
        padding: 24px;
    }

        .serviceOverlay h3 {
            font-size: 28px;
        }

        .serviceOverlay p {
            font-size: 15px;
        }
}
/*==================================================
                OUR PROCESS
==================================================*/

.processSection {
    background: var(--light);
    position: relative;
}

.processGrid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
    margin-top: 60px;
}

.processCard {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    position: relative;
}

    .processCard:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.processCircle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 25px;
    font-size: 30px;
    transition: .35s;
}

.processCard:hover .processCircle {
    background: var(--secondary);
    transform: rotate(360deg);
}

.processCard h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

.processCard p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.processCard::after {
    content: "➜";
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--secondary);
}

.processCard:last-child::after {
    display: none;
}

/*==================================================
                PORTFOLIO
==================================================*/

.portfolioSection {
    background: #ffffff;
}

.portfolioGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 55px;
}

.portfolioCard {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    cursor: pointer;
}

    .portfolioCard:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.portfolioImage {
    height: 260px;
    overflow: hidden;
    position: relative;
}

    .portfolioImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .45s;
    }

.portfolioCard:hover img {
    transform: scale(1.08);
}

.portfolioOverlay {
    position: absolute;
    inset: 0;
    background: rgba(10,35,66,.72);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .35s;
}

.portfolioCard:hover .portfolioOverlay {
    opacity: 1;
}

.portfolioOverlay span {
    color: #fff;
    padding: 12px 28px;
    border: 2px solid #fff;
    border-radius: 40px;
    font-weight: 600;
}

.portfolioContent {
    padding: 25px;
}

    .portfolioContent h3 {
        color: var(--primary);
        font-size: 24px;
        margin-bottom: 8px;
    }

    .portfolioContent p {
        color: #666;
    }

.portfolioButton {
    text-align: center;
    margin-top: 60px;
}

.galleryButton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    background: var(--primary);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: .35s;
}

    .galleryButton:hover {
        background: var(--secondary);
        transform: translateY(-5px);
    }

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px) {

    .processGrid {
        grid-template-columns: repeat(2,1fr);
    }

    .processCard::after {
        display: none;
    }

    .portfolioGrid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .processGrid {
        grid-template-columns: 1fr;
    }

    .portfolioGrid {
        grid-template-columns: 1fr;
    }

    .portfolioImage {
        height: 220px;
    }
}
/*==================================================
                    CLIENTS
==================================================*/

.clientsSection {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.clientsSlider {
    overflow: hidden;
    margin-top: 60px;
    position: relative;
}

.clientsTrack {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientsScroll 45s linear infinite;
}

.clientsSlider:hover .clientsTrack {
    animation-play-state: paused;
}

.clientLogo {
    flex: 0 0 auto;
    margin: 0 45px;
}

    .clientLogo img {
        max-width: 130px;
        max-height: 65px;
        object-fit: contain;
        transition: .35s ease;
    }

    .clientLogo:hover img {
        transform: scale(1.12);
    }

.clientsSlider {
    position: relative;
    overflow: hidden;
    padding: 0 70px;
}
    .clientsSlider::before,
    .clientsSlider::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 5;
        pointer-events: none;
    }
    .clientsSlider::before {
        left: 0;
        background: linear-gradient(to right,#ffffff 10%,transparent);
    }
    .clientsSlider::after {
        right: 0;
        background: linear-gradient(to left,#ffffff 10%,transparent);
    }
@keyframes clientsScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*==================================================
            TESTIMONIALS
==================================================*/

.testimonialSection {
    background: var(--light);
    position: relative;
}

.testimonialGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonialCard {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    position: relative;
}

    .testimonialCard:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.testimonialQuote {
    font-size: 50px;
    color: #1E88E5;
    opacity: .15;
    position: absolute;
    top: 15px;
    right: 20px;
}

.stars {
    margin-bottom: 20px;
    color: #FFC107;
    font-size: 18px;
}

.testimonialText {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonialProfile {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .testimonialProfile img {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        object-fit: cover;
    }

.clientInfo h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.clientInfo span {
    color: #777;
    font-size: 14px;
}

/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:1100px) {

    .testimonialGrid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .testimonialGrid {
        grid-template-columns: 1fr;
    }

    .clientTrack {
        gap: 30px;
    }

    .clientLogo {
        min-width: 140px;
        height: 90px;
    }

        .clientLogo img {
            max-width: 110px;
        }
}
/*==================================================
                ENQUIRY SECTION
==================================================*/

.enquirySection {
    padding: 110px 0;
    background: #f7faff;
}

.enquiryContainer {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 80px;
    align-items: center;
}

.smallTitle {
    color: #1E88E5;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 15px;
    display: block;
    margin-bottom: 18px;
}

.enquiryLeft h2 {
    font-size: 58px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 30px;
}

.enquiryLeft p {
    color: #666;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 45px;
}

.contactInfo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contactItem {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .contactItem i {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #eef5ff;
        color: #1E88E5;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
    }

    .contactItem h4 {
        font-size: 18px;
        color: var(--primary);
        margin-bottom: 4px;
    }

    .contactItem p {
        margin: 0;
        color: #666;
        font-size: 16px;
    }

/*========================*/

.enquiryCard {
    background: #ffffff;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.inputBox {
    width: 100%;
    height: 62px;
    padding: 0 22px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 16px;
    background: #ffffff;
    transition: .3s;
}

    .inputBox:focus {
        border-color: #1E88E5;
        outline: none;
        box-shadow: 0 0 0 4px rgba(30,136,229,.12);
    }

.messageBox {
    height: 150px;
    padding: 20px;
    resize: none;
}

.quoteBtn {
    height: 62px;
    border: none;
    border-radius: 14px;
    background: var(--primary);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
}

    .quoteBtn:hover {
        background: #1E88E5;
        transform: translateY(-3px);
    }

/*=========================================
                FOOTER
=========================================*/

.footer {
    background: #07192f;
    color: #dfe8f3;
    margin-top: 0;
}

    .footer * {
        color: inherit;
    }

.footerGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.2fr;
    gap: 60px;
    padding: 80px 0;
}

.footer h2,
.footer h3 {
    color: #ffffff;
    margin-bottom: 25px;
}

.footer p {
    color: #cfd8e3;
    line-height: 1.9;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer ul li {
        margin-bottom: 15px;
    }

        .footer ul li a {
            color: #cfd8e3 !important;
            text-decoration: none;
            transition: .3s;
        }

            .footer ul li a:hover {
                color: #ffffff !important;
                padding-left: 6px;
            }

.footer .socialIcons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .footer .socialIcons a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #102947;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff !important;
        transition: .3s;
    }

        .footer .socialIcons a:hover {
            background: #1E88E5;
        }

.footerBottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 22px;
    color: #b8c5d3;
}

    .footerBottom p {
        margin: 0;
    }
/*====================================
        COPYRIGHT
====================================*/

.footerBottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
    color: #9bb3ca;
}

/*==================================================
            FINAL RESPONSIVE
==================================================*/

@media(max-width:1100px) {

    .footerGrid {
        grid-template-columns: repeat(2,1fr);
    }

    .enquiryContainer {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enquiryLeft {
        text-align: center;
    }

    .contactInfo div {
        justify-content: center;
    }

    .enquiryLeft h2 {
        font-size: 34px;
    }

    .enquiryRight {
        padding: 28px;
    }

    section {
        padding: 70px 0;
    }

    .container {
        width: 94%;
    }
}

/*==================================================
            SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }
/*=============================
        MOBILE NAVIGATION
==============================*/

.mobileNavigation {
    position: fixed;
    top: 88px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 88px);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    transition: .35s ease;
    display: flex;
    flex-direction: column;
    padding: 25px;
    z-index: 9998;
}

    .mobileNavigation a {
        color: var(--primary);
        font-weight: 600;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
    }

    .mobileNavigation.active {
        left: 0;
    }

@media(min-width:1051px) {
    .mobileNavigation {
        display: none;
    }
}
/*==================================================
            FLOATING BUTTONS
==================================================*/

.floatingButtons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floatingWhatsapp,
.floatingCall,
.backToTop {
    width: 58px;
    height: 58px;
    border: none;
    outline: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    transition: all .35s ease;
}

.floatingWhatsapp {
    background: #25D366;
}

.floatingCall {
    background: #1976D2;
}

.backToTop {
    background: #0F274A;
}

    .floatingWhatsapp:hover,
    .floatingCall:hover,
    .backToTop:hover {
        transform: translateY(-5px) scale(1.08);
        box-shadow: 0 18px 35px rgba(0,0,0,.28);
    }

