body {
    font-family: "Inter", sans-serif;
    margin: 0;
}

/* Headings */
h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}


/* ================= TOP BAR ================= */
.topbar {
    background: #f20e1c;
    color: #141316;
    font-size: 14px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.topbar .container {
    max-width: 1200px;
    margin: auto;
    min-height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT INFO */
.topbar-info {
    display: flex;
    gap: 26px;
    align-items: center;
}

.topbar-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 500;
}

.topbar-info a:hover {
    opacity: 0.85;
}

/* RIGHT SOCIAL */
.topbar-social {
    display: flex;
    gap: 10px;
}

.topbar-social a {
    width: 34px;
    height: 34px;
    background: #ffffff;
    /* 🔑 CLEAN CONTRAST */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar-social a i {
    font-size: 15px;
}

/* FACEBOOK */
.topbar-social a.facebook i {
    color: #1877f2;
}

.topbar-social a.facebook:hover {
    background: #1877f2;
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.6);
}

.topbar-social a.facebook:hover i {
    color: #fff;
}

/* INSTAGRAM */
.topbar-social a.instagram i {
    background: linear-gradient(45deg,
            #feda75,
            #fa7e1e,
            #d62976,
            #962fbf,
            #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.topbar-social a.instagram:hover {
    background: linear-gradient(45deg,
            #feda75,
            #fa7e1e,
            #d62976,
            #962fbf,
            #4f5bd5);
    box-shadow: 0 0 12px rgba(214, 41, 118, 0.6);
}

.topbar-social a.instagram:hover i {
    -webkit-text-fill-color: #fff;
}

.topbar-social a:hover {
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .topbar-info a:last-child {
        display: none;
    }
}

/* topbar end */

/*navbar start */
/* ===== NAVBAR ===== */
.header-bar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.header-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* LOGO */
.brand-logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* CENTER MENU */
.main-navigation {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-navigation a {
    text-decoration: none;
    color: #141316;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    padding: -2px 0;
    transition: color 0.3s ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f20e1c;
    transform: translateX(-50%);
    transition: 0.3s;
}

.main-navigation a:hover {
    color: #f20e1c;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* ===== CTA BUTTON ===== */
.cta-enquiry {
    position: relative;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.6px;
    background: linear-gradient(135deg, #f20e1c, #b80b14);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow:
        0 8px 20px rgba(242, 14, 28, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: 0.3s;
    overflow: hidden;
}

.cta-enquiry::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transition: 0.6s;
}

.cta-enquiry:hover::before {
    left: 125%;
}

.cta-enquiry:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(242, 14, 28, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.cta-enquiry:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(242, 14, 28, 0.5);
}

.cta-enquiry i {
    margin-right: 8px;
    font-size: 14px;
}

.cta-enquiry.direction {
    background: linear-gradient(135deg, #f20e1c, #f20e1c);
}

/* MOBILE TOGGLE */
.nav-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #141316;
}

@media (max-width: 768px) {
    .header-wrapper {
        grid-template-columns: auto auto;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 22px;
        padding: 22px 0;
        display: none;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    }

    .main-navigation.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .cta-enquiry {
        display: none;
    }
}

.cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-enquiry,
.cta-direction {
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* EXISTING ENQUIRY BUTTON */
.cta-enquiry {
    background: #f20e1c;
    color: #fff;
}

.cta-enquiry:hover {
    background: #d30c18;
}

/* GET DIRECTION BUTTON */
.cta-direction {
    background: transparent;
    color: #f20e1c;
    border: 2px solid #f20e1c;
}

.cta-direction:hover {
    background: #f20e1c;
    color: #fff;
}

.map-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.map-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    z-index: 10;
}

@media (max-width: 768px) {
    .main-navigation.active .cta-enquiry {
        display: inline-block;
    }

    .main-navigation.active .cta-group {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 0 20px;
        width: 100%;
    }

    .main-navigation.active .cta-group a {
        width: 100%;
        text-align: center;
    }
}


/* navbar end */

/* crousel start */

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.carousel-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* ===== CENTER CONTENT ===== */
.carousel-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* horizontal center */
    justify-content: center;
    /* vertical center */
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

/* .carousel-content h1 {
       font-size: 48px;
       font-weight: 700;
       margin-bottom: 16px;
       animation: fadeUp 1s ease;
   } */

.carousel-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 28px;
    animation: fadeUp 1.3s ease;
}

.hero-btn {
    padding: 9px 33px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f20e1c, #b80b14);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 26px rgba(242, 14, 28, 0.55);
    transition: 0.3s;
    animation: fadeUp 1.6s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(242, 14, 28, 0.7);
}

/* ===== CONTROLS ===== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: #fff;
    font-size: 26px;
    padding: 10px 16px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero-carousel {
        height: 40vh;
    }

    .carousel-content h1 {
        font-size: 20px;
    }

    .carousel-content p {
        font-size: 12px;
    }
}

/* crousel end */

/* about index start */

/* ===== ABOUT SECTION ===== */
.machine-about {
    background: linear-gradient(180deg, #f8f8f8, #ffffff);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* .machine-about::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 300px;
        height: 300px;
        background: rgba(242, 14, 28, 0.08);
        border-radius: 50%;
    } */

.machine-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(242, 14, 28, 0.1);
    color: #f20e1c;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.machine-heading {
    font-size: 35px;
    font-weight: 700;
    color: #141316;
}

.machine-heading span {
    color: #f20e1c;
}

.machine-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* FEATURES */
.machine-point {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.machine-point i {
    color: #f20e1c;
    font-size: 18px;
}

/* BUTTON */
.machine-cta {
    margin-top: 22px;
    padding: 14px 36px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f20e1c, #b80b14);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(242, 14, 28, 0.45);
    transition: 0.35s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.machine-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(242, 14, 28, 0.6);
    color: #fff;
}

.gear-spin {
    animation: gearSpin 4s linear infinite;
}

.arrow-move {
    transition: transform 0.3s ease;
}

.machine-cta:hover .arrow-move {
    transform: translateX(6px);
}

@keyframes gearSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* IMAGE */
.machine-img-box {
    width: 100%;
    max-width: 100%;
}

.machine-img-box img {
    width: 100%;
    transition: transform 0.6s ease;
}

.machine-img-box:hover img {
    transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 768px) {
    .machine-about {
        padding: 60px 0;
        text-align: center;
    }

    .machine-heading {
        font-size: 28px;
    }

    .machine-text {
        font-size: 15px;
    }

    .machine-point {
        justify-content: center;
    }

    .machine-cta {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
        font-size: 15px;
    }

    .machine-img-box {
        margin-bottom: 30px;
    }
}

/* about end */

/* why us start */


/* ===== WHY SECTION ===== */
.why-machine {
    padding: 60px 0;
    background: linear-gradient(180deg, #faf3f3, #f4e1e1);
}

/* SMALL TAG */
.why-tag {
    display: inline-block;
    padding: 8px 26px;
    border-radius: 40px;
    background: rgba(242, 14, 28, 0.12);
    color: #f20e1c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* MAIN HEADING */
.why-heading {
    font-size: 35px;
    font-weight: 700;
    color: #141316;
}

.why-heading span {
    color: #f20e1c;
}

.why-subtext {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* ===== CARDS ===== */
.why-card {
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: 0.45s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid transparent;
    transition: 0.45s;
}

/* icon circle */
.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(242, 14, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #f20e1c;
    transition: 0.45s;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #141316;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.why-card:hover::after {
    border-color: #f20e1c;
}

.why-card:hover .why-icon {
    background: #f20e1c;
    color: #fff;
    transform: rotate(6deg) scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .why-machine {
        padding: 70px 0;
    }

    .why-heading {
        font-size: 30px;
    }

    .why-subtext {
        font-size: 15px;
    }
}

/* why us end */

/* built start */
/* ===== SECTION ===== */
.power-section {
    background: linear-gradient(180deg, #fff0f0, #ffffff);
    color: #141316;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

/* LEFT CONTENT */
.power-title {
    font-size: 35px;
    font-weight: 700;
    color: #141316;
}

.power-title span {
    color: #f20e1c;
}

.power-text {
    color: #000000;
    font-size: 16px;
    max-width: 480px;
    line-height: 1.8;
}

/* RIGHT BLOCKS */
.power-box {
    background: #ffffff;
    padding: 30px;
    border-left: 5px solid #f20e1c;
    transition: 0.35s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.power-box:hover {
    transform: translateX(10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

.power-box i {
    font-size: 34px;
    color: #f20e1c;
    margin-bottom: 15px;
}

.power-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #141316;
}

.power-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .power-section {
        padding: 70px 0;
        text-align: center;
    }

    .power-section::before {
        display: none;
    }

    .power-title {
        font-size: 30px;
    }

    .power-text {
        margin: auto;
    }

    .power-box:hover {
        transform: none;
    }
}

/* built end */

/* ===== HERO ===== */
.manufacture-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff3f3, #ffffff);
    overflow: hidden;
}

/* BACK TEXT */
/* .manufacture-hero::before {
    content: "INDUSTRIAL";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    font-family: "Montserrat", sans-serif;
    font-size: 70px;
    font-weight: 900;
    color: rgba(242, 14, 28, 0.045);
    letter-spacing: 12px;
    white-space: nowrap;
} */

/* CONTENT */
.manufacture-content {
    position: relative;
    z-index: 2;
}

.manufacture-tag {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 40px;
    background: rgba(242, 14, 28, 0.14);
    color: #f20e1c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 22px;
}

/* TITLE */
.manufacture-title {
    font-size: 35px;
    font-weight: 700;
    color: #141316;
}

.manufacture-title span {
    color: #f20e1c;
}

/* TEXT */
.manufacture-text {
    font-size: 17px;
    color: #555;
    max-width: 540px;
    line-height: 1.85;
    margin-bottom: 36px;
}

/* BUTTONS */
.manufacture-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.manufacture-btn-primary {
    padding: 15px 40px;
    border-radius: 40px;
    background: linear-gradient(135deg, #f20e1c, #b80b14);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 16px 38px rgba(242, 14, 28, 0.45);
    transition: 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.manufacture-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(242, 14, 28, 0.6);
    color: #fff;
}

.manufacture-btn-outline {
    padding: 15px 40px;
    border-radius: 40px;
    border: 2px solid #f20e1c;
    color: #f20e1c;
    text-decoration: none;
    font-weight: 600;
    transition: 0.35s;
}

.manufacture-btn-outline:hover {
    background: #f20e1c;
    color: #fff;
}

/* VISUAL */
.manufacture-visual {
    position: relative;
    height: 440px;
}

.visual-card {
    position: absolute;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #f20e1c;
    animation: float 6s ease-in-out infinite;
}

.card-large {
    width: 250px;
    height: 250px;
    top: 0;
    right: 40px;
}

.card-medium {
    width: 210px;
    height: 210px;
    bottom: 0;
    right: 0;
    animation-delay: 1.5s;
}

.card-small {
    width: 170px;
    height: 170px;
    bottom: 50px;
    left: 40px;
    background: #f20e1c;
    color: #fff;
    animation-delay: 3s;
}

/* FLOAT */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* MOBILE */
@media (max-width: 992px) {
    .manufacture-hero {
        min-height: auto;
        padding: 90px 0;
    }

    .manufacture-title {
        font-size: 36px;
    }

    .manufacture-text {
        font-size: 15px;
    }

    .manufacture-visual {
        height: 320px;
        margin-top: 40px;
    }

    .manufacture-hero::before {
        display: none;
    }
}

/* services start */


.services-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fff5f5, #ffffff);
}

.services-heading {
    font-size: 35px;
    font-weight: 700;
    color: #141316;
}

.services-heading span {
    color: #f20e1c;
}

.services-subtext {
    max-width: 720px;
    margin: auto;
    font-size: 16px;
    color: #666;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.service-img {
    position: relative;
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f20e1c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    box-shadow: 0 15px 35px rgba(242, 14, 28, 0.45);
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: translateX(-50%) rotate(12deg) scale(1.1);
}

.service-body {
    padding: 50px 28px 30px;
    text-align: center;
}

.service-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #141316;
}

.service-body p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f20e1c, #b80b14);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s;
}

.service-btn:hover {
    color: #fff;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-heading {
        font-size: 28px;
    }
}

/* services end */

/* contact start */
/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #fff5f5, #ffffff);
}

/* IMAGE */
.contact-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    height: 400px;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FORM BOX */
.contact-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* HEADING */
.contact-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #141316;
}

.contact-title span {
    color: #f20e1c;
}

.contact-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* INPUT */
.contact-box input,
.contact-box textarea {
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    background: #f6f6f6;
    font-size: 14px;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(242, 14, 28, 0.25);
}

/* BUTTON */
.contact-btn {
    margin-top: 10px;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f20e1c, #b80b14);
    color: #fff;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: 0.35s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(242, 14, 28, 0.55);
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-img {
        margin-bottom: 30px;
    }
}

/* contact end */

/* footer start */
/* ===== FOOTER ===== */
.site-footer {
    background:
        linear-gradient(rgba(79, 78, 80, 0.9), rgba(20, 19, 22, 0.9)),
        url("images/services2.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ccc;
    padding: 70px 0 0;
}


/* LOGO IMAGE */
.footer-logo-img img {
    max-width: 240px;
    width: 100%;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 18px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f1f24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #f20e1c;
    transform: translateY(-3px);
}

/* TITLES */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

/* LINKS */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f20e1c;
    padding-left: 4px;
}

/* CONTACT */
.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-contact i {
    color: #f20e1c;
    margin-top: 4px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #f20e1c;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    background: #3d3d3e;
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
}

/* GRID */
.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* footer end */