/* topbar start */

body {
    margin: 0;
    font-family: "Playfair Display", serif;
}

/* TOP BAR */
.top-bar {
    background-color: #2c2b2a;
    color: #ffcf00;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: #ffcf00;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Layout */
.topbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Contact */
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-contact i {
    margin-right: 6px;
    color: #ffcf00;
}

/* Social icons */
.topbar-social {
    display: flex;
    gap: 10px;
}

.topbar-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #2c2b2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    background: #ffcf00;
    color: #2c2b2a;
    transform: translateY(-2px);
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 575px) {

    /* hide email */
    .topbar-email {
        display: none;
    }

    .topbar-inner {
        padding: 0 14px;
    }

    .topbar-contact {
        gap: 8px;
    }

    .topbar-phone {
        font-weight: 600;
    }
}

/* topbar end */

/* navbar start */
/* ===== NAVBAR ===== */
.main-navbar {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
}

/* LOGO */
.navbar-brand img {
    height: 70px;
}

/* MENU LINKS */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #2c2b2a !important;
    padding: 6px 12px;
    white-space: nowrap;
    font-family: "Playfair Display", serif;
}

/* ACTIVE underline only */
.navbar-nav .nav-link.active {
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 55%;
    height: 2px;
    background: #ffcf00;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* BUTTONS */
/* BUTTONS */
.nav-action-buttons {
    display: flex;
    gap: 12px;
    font-family: "Playfair Display", serif;
}

/* Get Estimate Button */
.estimate-btn {
    background: linear-gradient(135deg, #ffcf00, #f5b800);
    color: #2c2b2a;
    font-size: 18px;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(255, 207, 0, 0.35);
    transition: all 0.35s ease;
}

.estimate-btn i {
    transition: transform 0.35s ease;
}

.estimate-btn:hover {
    background: linear-gradient(135deg, #f5b800, #ffcf00);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 207, 0, 0.45);
}

.estimate-btn:hover i {
    transform: rotate(-10deg) scale(1.1);
}

/* Get Direction Button */
.direction-btn {
    background: #ffffff;
    border: 1.8px solid #ffcf00;
    color: #2c2b2a;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.direction-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffcf00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.direction-btn:hover::before {
    transform: scaleX(1);
}

.direction-btn:hover {
    color: #2c2b2a;
    box-shadow: 0 8px 22px rgba(255, 207, 0, 0.35);
    transform: translateY(-2px);
}

.direction-btn i {
    transition: transform 0.35s ease;
}

.direction-btn:hover i {
    transform: translateX(3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        margin-top: 12px;
    }

    .nav-action-buttons {
        justify-content: center;
        margin-top: 14px;
    }
}

/* Desktop menu spacing */
@media (min-width: 1200px) {
    .navbar-nav {
        gap: 12px;
    }
}

@media (min-width: 1200px) {
    .navbar-nav .nav-item {
        margin: 0.9px;
    }
}


@media (max-width: 768px) {

    .topbar-contact {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .navbar-brand img {
        height: 55px;
    }

    .estimate-btn {
        font-size: 14px;
        padding: 8px 14px;
    }

    .direction-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* navbar end */

/* crousel start */
/* ===== Carousel Styling ===== */
.steel-carousel .carousel-item {
    height: 100%;
    min-height: 450px;
    position: relative;
}

.steel-carousel .carousel-inner {
    height: 85vh;
}


.steel-carousel .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Dark overlay */
.steel-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Caption */
.steel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    width: 90%;
    padding: 0 15px;
}

.steel-caption h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeDown 1s ease;
}

.steel-caption p {
    font-size: 18px;
    margin-bottom: 0;
    animation: fadeUp 1.2s ease;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

    .steel-carousel .carousel-inner {
        height: 40vh;
    }

    .steel-carousel .carousel-item {
        min-height: 260px;
    }

    .steel-caption {
        width: 92%;
    }

    .steel-caption h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .steel-caption p {
        font-size: 13px;
    }
}


/* crousel end */

/* welcome start */

/* Wrapper — NO background */
.es-welcome-wrapper {
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    /* ✅ completely removed */
}

/* Text container */
.es-caption {
    text-align: center;
    color: #000;

    padding: 20px;
}

/* Main title */
.es-title {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    animation: fadeDown 1s ease;
}

/* Brand highlight */
.es-brand {
    display: inline-block;
    color: #ffcf00;
    position: relative;
    padding: 0 6px;
}

/* Glow underline */
.es-brand::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, #ffcf00, #ffd84d);
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255, 207, 0, 0.7);
}

/* Subtitle */
.es-subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
    animation: fadeUp 1.2s ease;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .es-title {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .es-subtitle {
        font-size: 14px;
    }

    .es-divider {
        width: 60px;
        margin: 16px auto;
    }
}

/* welcome end */

/* about start */

/* ================= COMPANY PROFILE ================= */
.es-company-profile {
    position: relative;
    padding: 30px 0;
    background: url("images/bg.png") center/cover no-repeat;
    overflow: hidden;
}

/* Light background image effect */
.es-company-profile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.es-company-profile .container {
    position: relative;
    z-index: 2;
}

/* Left Image */
.es-company-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.es-company-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* Right Content */
.es-company-title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c2b2a;
    margin-bottom: 10px;
}

.es-company-title span {
    color: #ffcf00;
}

.es-company-divider {
    width: 80px;
    height: 3px;
    background: #ffcf00;
    margin: 18px 0 25px;
    border-radius: 2px;
}

.es-company-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* Yellow CTA Button */
.es-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ffcf00, #f5b800);
    color: #2c2b2a;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 207, 0, 0.45);
    transition: all 0.35s ease;
}

.es-whatsapp-btn i {
    font-size: 18px;
}

.es-whatsapp-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f5b800, #ffcf00);
    box-shadow: 0 15px 35px rgba(255, 207, 0, 0.6);
    color: #2c2b2a;
}

/* ================= MOBILE ================= */
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .es-company-profile {
        padding: 60px 0 70px;
        background-position: center;
    }

    /* Image first, then text (natural flow) */
    .es-img {
        order: 1;
    }

    .es-text {
        order: 2;
        text-align: center;
        padding: 0 10px;
    }

    .es-company-image {
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .es-company-image img {
        width: 100%;
        height: auto;
        /* 🔥 IMPORTANT */
        object-fit: contain;
    }

    .es-company-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .es-company-divider {
        margin: 14px auto 20px;
        /* center divider */
    }

    .es-company-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .es-whatsapp-btn {
        margin-top: 10px;
        padding: 11px 22px;
        font-size: 14px;
    }
}


/* about end */

/* why us start */
/* ===== WHY CHOOSE US ===== */
.es-why-section {
    padding: 30px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
        url("images/ban1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.es-why-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #2c2b2a;
}

.es-why-title span {
    color: #ffcf00;
}

.es-why-divider {
    width: 90px;
    height: 3px;
    background: #ffcf00;
    margin: 18px auto;
}

.es-why-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: auto;
}

.es-why-card {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.es-why-card i {
    font-size: 42px;
    color: #ffcf00;
    margin-bottom: 18px;
}

.es-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2b2a;
    margin-bottom: 8px;
}

.es-why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.es-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.es-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #ffcf00, #f5b800);
    color: #2c2b2a;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(255, 207, 0, 0.45);
    transition: 0.3s;
}

.es-why-btn:hover {
    transform: translateY(-2px);
    color: #2c2b2a;
}

/* Mobile */
@media (max-width: 768px) {
    .es-why-title {
        font-size: 26px;
    }

    .es-why-subtitle {
        font-size: 14px;
    }
}

/* why us end */

/* services start */
/* ===== SERVICES SECTION ===== */
.es-services-section {
    padding: 40px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.80)),
        url("images/service1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.es-services-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #2c2b2a;
}

.es-services-title span {
    color: #ffcf00;
}

.es-services-divider {
    width: 80px;
    height: 3px;
    background: #ffcf00;
    margin: 18px auto;
}

.es-services-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: auto;
}

/* Service Card */
.es-service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.es-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Image */
.es-service-img {
    height: 200px;
    overflow: hidden;
}

.es-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.es-service-card:hover .es-service-img img {
    transform: scale(1.08);
}

/* Content */
.es-service-content {
    padding: 30px 25px;
    text-align: center;
}

.es-service-content i {
    font-size: 38px;
    color: #ffcf00;
    margin-bottom: 15px;
}

.es-service-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2b2a;
    margin-bottom: 10px;
}

.es-service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .es-services-title {
        font-size: 26px;
    }

    .es-services-subtitle {
        font-size: 14px;
    }
}

/* services end */

/* banner start */
/* ===== CREATIVE CONTACT CTA ===== */
.es-contact-cta {
    position: relative;
    padding: 30px 0;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55)),
        url("images/about.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #ffffff;
}

/* Decorative shapes */
.es-contact-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255, 207, 0, 0.18);
    border-radius: 50%;
}

.es-contact-cta::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 207, 0, 0.12);
    border-radius: 50%;
}

.es-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.es-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255, 207, 0, 0.15);
    color: #ffcf00;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.es-contact-cta h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.es-contact-cta h2 span {
    color: #ffcf00;
}

.es-contact-cta p {
    font-size: 17px;
    color: #e5e5e5;
    max-width: 700px;
    margin: 0 auto 36px;
}

/* CTA Buttons */
.es-cta-btns {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.es-cta-btn {
    padding: 15px 38px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s;
    position: relative;
}

/* Primary */
.es-cta-primary {
    background: linear-gradient(135deg, #ffcf00, #f2c200);
    color: #2c2b2a;
    box-shadow: 0 12px 30px rgba(255, 207, 0, 0.45);
}

.es-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 207, 0, 0.65);
}

/* Secondary */
.es-cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.es-cta-secondary:hover {
    background: #ffffff;
    color: #2c2b2a;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
    .es-contact-cta {
        padding: 80px 0;
    }

    .es-contact-cta h2 {
        font-size: 28px;
    }

    .es-contact-cta p {
        font-size: 14px;
    }
}

.es-cta-btn span {
    position: relative;
}

.es-cta-btn span::after {
    content: "→";
    margin-left: 8px;
    transition: 0.3s;
}

.es-cta-btn:hover span::after {
    margin-left: 14px;
}

/* ===== CTA BUTTONS MOBILE FIX ===== */
@media (max-width: 768px) {
    .es-cta-btns {
        flex-direction: row;
        /* side by side */
        gap: 12px;
    }

    .es-cta-btn {
        padding: 12px 18px;
        /* thoda compact */
        font-size: 13px;
        border-radius: 30px;
        gap: 6px;
    }

    .es-cta-btn i {
        font-size: 14px;
    }

    .es-cta-btn span::after {
        display: none;
        /* arrow hide on small screens */
    }
}

/* banner end */

/* contact start */
/* ===== CONTACT INFO + FORM ===== */
/* ===== CONTACT SECTION ===== */
.es-contact-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
}

/* SECTION HEADING */
.es-section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.es-section-heading h2 {
    font-size: 44px;
    font-weight: 800;
    color: #2c2b2a;
    margin-bottom: 12px;
}

.es-section-heading h2 span {
    color: #ffcf00;
}

.es-section-heading p {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* LEFT INFO CARD (WHITE) */
.es-contact-info {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.es-contact-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #2c2b2a;
}

.es-contact-info h3 span {
    color: #ffcf00;
}

.es-contact-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 35px;
    max-width: 420px;
}

/* INFO LIST */
.es-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.es-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.es-contact-list i {
    width: 48px;
    height: 48px;
    background: rgba(255, 207, 0, 0.15);
    color: #ffcf00;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.es-contact-list span,
.es-contact-list a {
    color: #2c2b2a;
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
}

/* RIGHT FORM CARD */
.es-contact-form {
    background: #ffffff;
    padding: 60px 55px;
    border-radius: 26px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

.es-contact-form h4 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #2c2b2a;
}

/* FORM CONTROLS */
.es-contact-form .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 12px 16px;
    transition: 0.3s;
    background: #fafafa;
}

.es-contact-form textarea.form-control {
    height: auto;
}

.es-contact-form .form-control:focus {
    background: #ffffff;
    border-color: #ffcf00;
    box-shadow: 0 0 0 4px rgba(255, 207, 0, 0.25);
}

/* SUBMIT BUTTON */
.es-form-btn {
    background: linear-gradient(135deg, #ffcf00, #f2c200);
    border: none;
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 800;
    color: #2c2b2a;
    transition: 0.35s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.es-form-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(255, 207, 0, 0.65);
}

/* MOBILE */
@media (max-width: 768px) {
    .es-contact-section {
        padding: 80px 0;
    }

    .es-section-heading h2 {
        font-size: 30px;
    }

    .es-section-heading p {
        font-size: 14px;
    }

    .es-contact-info {
        padding: 45px 30px;
        margin-bottom: 35px;
    }

    .es-contact-form {
        padding: 40px 28px;
    }

    .es-contact-form h4 {
        font-size: 22px;
    }
}

/* contact end */

/* footer start */
/* ===== FOOTER ===== */
.es-footer {
    background:
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url("images/service1.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 90px 0 0;
}

/* TITLES */
.es-footer h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #ffffff;
}

.es-footer h4 span {
    color: #ffcf00;
}

/* LOGO */
.es-footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

/* ABOUT TEXT */
.es-footer p {
    font-size: 14px;
    color: #dddddd;
    line-height: 1.8;
}

/* LISTS */
.es-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.es-footer ul li {
    margin-bottom: 12px;
}

.es-footer ul li a {
    color: #dddddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.es-footer ul li a:hover {
    color: #ffcf00;
}

/* CONTACT */
.es-footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #dddddd;
}

.es-footer-contact i {
    color: #ffcf00;
    margin-top: 4px;
}

/* BOTTOM BAR */
.es-footer-bottom {
    margin-top: 60px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 13px;
    color: #bbbbbb;
}

/* ===== MOBILE CENTER ALIGN ===== */
@media (max-width: 768px) {
    .es-footer {
        padding: 60px 0 0;
        text-align: center;
    }

    .es-footer-logo {
        display: block;
        margin: 0 auto 15px;
        width: 130px;
    }

    .es-footer p {
        max-width: 90%;
        margin: 0 auto 10px;
    }

    .es-footer h4 {
        font-size: 20px;
        margin-top: 25px;
    }

    .es-footer-contact li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {

    .es-footer-contact li {
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }

    .es-footer ul {
        margin-bottom: 15px;
    }
}


/* footer end */