* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    background: #ffffff;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.main-header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    position: fixed;
    top: 0;
    left: 0;

    z-index: 9999;

    border-bottom: 5px solid rgb(224, 224, 59);
}

/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 0;
}

/* ================= LOGO ================= */

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    width:180px;
    max-width: 100%;
    object-fit: contain;
    transition: 0.3s ease;
    /* image-rendering: crisp-edges; */
}

/* ================= NAV LINKS ================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;

    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 16px;

    transition: 0.3s ease;

    position: relative;
}

/* UNDERLINE */

.nav-links li a::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #d4a017;

    transition: 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #d4a017;
}

/* ================= MENU BUTTON ================= */

.menu-toggle {
    display: none;

    font-size: 30px;
    cursor: pointer;

    color: #111;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .logo-section img {
        width: 190px;
    }

    .nav-links {
        gap: 22px;
    }

}

/* ================= MOBILE ================= */

@media(max-width: 768px) {

    .main-header {
        border-bottom: 4px solid rgb(224, 224, 59);
    }

    .navbar {
        padding: 12px 0;
        position: relative;
    }

    .logo-section img {
        width: 170px;
    }

    /* MENU ICON */

    .menu-toggle {
        display: block;
        font-size: 32px;
        margin-left: auto;
        z-index: 1001;
    }

    /* MOBILE MENU */

    .nav-links {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #fff;

        flex-direction: column;
        align-items: center;

        gap: 0;

        max-height: 0;
        overflow: hidden;

        transition: 0.4s ease;

        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    /* ACTIVE */

    .nav-links.active {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;

        border-bottom: 1px solid #f1f1f1;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;

        padding: 16px 20px;

        font-size: 16px;
    }

    .nav-links li a::after {
        display: none;
    }

}

/* ================= SMALL MOBILE ================= */

@media(max-width: 480px) {

    .logo-section img {
        width: 150px;
    }

    .menu-toggle {
        font-size: 28px;
    }

    .nav-links li a {
        font-size: 15px;
        padding: 14px 15px;
    }

}
/* ========================================== */

/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 140px 0 100px;
}

/* ================= VIDEO ================= */

.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

/* ================= OVERLAY ================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(59, 59, 59, 0.65);

    z-index: 2;
}

/* ================= CONTENT ================= */

.hero-container {
    position: relative;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 950px;

    text-align: center;

    color: #fff;
}

/* SUBTITLE */

.hero-subtitle {
    display: inline-block;

    background: rgba(3, 19, 8, 0.18);

    color: #daa216;

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 14px;
    letter-spacing: 1px;

    margin-bottom: 28px;

    border: 1px solid rgba(212,160,23,0.35);
}

/* TITLE */

.hero-content h1 {
    font-size: 68px;
    line-height: 1.2;

    margin-bottom: 28px;

    font-weight: 700;
}

/* DESCRIPTION */

.hero-content p {
    font-size: 18px;

    line-height: 1.9;

    color: #e2e2e2;

    margin: 0 auto 40px;

    max-width: 780px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 15px 34px;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s ease;
}

/* PRIMARY */

.primary-btn {
    background: #d4a017;
    color: #fff;
}

.primary-btn:hover {
    background: #fff;
    color: #111;
}

/* SECONDARY */

.secondary-btn {
    border: 2px solid #d4a017;
    color: #d4a017;
    background: transparent;
}

.secondary-btn:hover {
    background: #d4a017;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .hero-content h1 {
        font-size: 52px;
    }

}

@media(max-width: 768px) {

    .hero-section {
        min-height: 90vh;
        padding: 130px 0 80px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 15px;
    }

}

@media(max-width: 480px) {

    .hero-section {
        min-height: 85vh;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

}

/* ================= ABOUT SECTION ================= */

.about-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.82)
        ),
        url('/assets/img/about-bg.jfif');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

/* ================= LEFT CONTENT ================= */

.about-content {
    flex: 1;
    color: #fff;
    padding-top: 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.15);
    color: #d4a017;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.about-heading {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #d6d6d6;
    margin-bottom: 25px;
}

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #d4a017;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
}

.about-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}
.about-btn:hover {
    background: #fff;
    color: #111;
}

/* ================= RIGHT SECTION ================= */

.about-right {
    flex: 1;
}

.about-image {
    width: 100%;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    border: 4px solid rgba(255,255,255,0.08);
}

/* ================= FEATURE CARDS ================= */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: #d4a017;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.feature-card h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1100px) {

    .about-heading {
        font-size: 46px;
    }

}

@media(max-width: 992px) {

    .about-wrapper {
        flex-direction: column;
    }

    .about-content {
        text-align: center;
    }

    .about-heading {
        font-size: 42px;
    }

    .feature-card {
        text-align: left;
    }

}

@media(max-width: 768px) {

    .about-section {
        padding: 70px 0;
        background-attachment: scroll;
    }

    .about-heading {
        font-size: 34px;
    }

    .about-content p {
        font-size: 15px;
    }

}

@media(max-width: 480px) {

    .about-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .feature-card {
        display: flex;
        flex-direction: row;   /* keep icon + text side by side */
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        flex-shrink: 0;
    }

    .feature-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }

}

/* ================= SERVICES SECTION ================= */

.services-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title .section-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.12);
    color: #d4a017;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 48px;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title p {
    max-width: 750px;
    margin: auto;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* ================= SERVICES GRID ================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= SERVICE CARD ================= */

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: #d4a017;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.service-btn {
    display: inline-block;
    text-decoration: none;
    color: #d4a017;
    font-weight: 600;
    position: relative;
}

.service-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #d4a017;
    transition: 0.3s;
}

.service-btn:hover::after {
    width: 100%;
}

/* ================= VIEW BUTTON ================= */

.services-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.view-services-btn {
    display: inline-block;
    padding: 15px 38px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.view-services-btn:hover {
    background: #d4a017;
    color: #fff;
}
/* ================= RESPONSIVE ================= */

@media(max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 768px) {

    .services-section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 480px) {

    .section-title h2 {
        font-size: 28px;
    }

    .service-content {
        padding: 22px;
    }

    /* ICON + HEADING INLINE */
    .service-content-top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .service-content h3 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 14px;
    }

}

/* ================= GALLERY SECTION ================= */

.gallery-section {
    padding: 100px 0;
    background: #111;
}

/* ================= SECTION TITLE ================= */

.gallery-section .section-title {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-section .section-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.12);
    color: #d4a017;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.gallery-section .section-title h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gallery-section .section-title p {
    max-width: 760px;
    margin: auto;
    color: #cfcfcf;
    line-height: 1.9;
    font-size: 16px;
}

/* ================= GALLERY GRID ================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= GALLERY ITEM ================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 320px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.2)
    );

    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 24px;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* HOVER EFFECT */

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* ================= BUTTON ================= */

.gallery-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.gallery-btn {
    display: inline-block;
    padding: 15px 38px;
    background: #d4a017;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.gallery-btn:hover {
    background: #fff;
    color: #111;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1100px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 768px) {

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-section .section-title h2 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 280px;
    }

}

@media(max-width: 480px) {

    .gallery-section .section-title h2 {
        font-size: 28px;
    }

    .gallery-overlay h3 {
        font-size: 20px;
    }

}

/* ================= CLIENTS SECTION ================= */

.clients-section {
    padding: 100px 0;
    background: #f8f8f8;
    overflow: hidden;
}

/* ================= SECTION TITLE ================= */

.clients-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.clients-section .section-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.12);
    color: #d4a017;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.clients-section .section-title h2 {
    font-size: 48px;
    color: #111;
    margin-bottom: 20px;
}

.clients-section .section-title p {
    max-width: 750px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

/* ================= LOGO SCROLLER ================= */

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

/* LOGO ITEM */

.logo-item {
    width: 220px;
    height: 120px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.3s ease;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.logo-item img {
    width: 100%;
    max-height: 70px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: 0.3s ease;
}
/* 
.logo-item:hover img {
    filter: grayscale(0%);
} */

/* ================= ANIMATION ================= */

@keyframes scrollLogos {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {

    .clients-section {
        padding: 70px 0;
    }

    .clients-section .section-title h2 {
        font-size: 34px;
    }

    .logo-item {
        width: 170px;
        height: 100px;
    }

}

@media(max-width: 480px) {

    .clients-section .section-title h2 {
        font-size: 28px;
    }

    .logo-track {
        gap: 20px;
    }

    .logo-item {
        width: 140px;
        height: 85px;
        padding: 15px;
    }

}

/* ================= CTA SECTION ================= */

.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.82)
        ),
        url('/assets/img/CTA-bg.jfif');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* OVERLAY SHAPE */

.cta-overlay {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 50%;
    filter: blur(10px);
}

/* CONTENT */

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* TAG */

.cta-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.12);
    color: #d4a017;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 160, 23, 0.25);
}

/* TITLE */

.cta-content h2 {
    font-size: 56px;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 700;
}

/* DESCRIPTION */

.cta-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #b1a6a6;
    margin-bottom: 40px;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* PRIMARY */

.primary-btn {
    background: #d4a017;
    color: #fff;
}

.primary-btn:hover {
    background: #fff;
    color: #111;
}

/* SECONDARY */

.secondary-btn {
    border: 2px solid #d4a017;
    color: #d4a017;
}

.secondary-btn:hover {
    background: #d4a017;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .cta-content h2 {
        font-size: 44px;
    }

}

@media(max-width: 768px) {

    .cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 15px;
    }

}

@media(max-width: 480px) {

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

}

/* ================= FOOTER ================= */

.main-footer {
    background: #111;
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* ================= GRID ================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* ================= LOGO ================= */

.footer-logo {
    width: 240px;
    max-width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 25px;
}

/* ================= DESCRIPTION ================= */

.footer-description {
    color: #cfcfcf;
    line-height: 1.9;
    font-size: 15px;
}

/* ================= HEADINGS ================= */

.footer-column h3 {
    color: #d4a017;
    margin-bottom: 28px;
    font-size: 22px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: #d4a017;
}

/* ================= LINKS ================= */

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #d4a017;
    padding-left: 6px;
}

/* CONTACT ITEMS */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #cfcfcf;
    line-height: 1.7;
}

.contact-icon {
    color: #d4a017;
    font-size: 18px;
    min-width: 22px;
    margin-top: 2px;
}

.email-icon {
    color: red;
}

.email-text {
    word-break: break-word;
}

/* SOCIAL ICONS */

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    /* background: #d4a017; */
    transform: translateY(-4px);
}

/* ICON CENTER FIX */

.social-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
}

/* HOVER */

.social-icons a:hover {
    /* background: #658f17; */
    color: #111;
    transform: translateY(-4px);
}

/* REMOVE TEXT SHIFT */

.social-icons a:hover {
    padding-left: 0 !important;
}
/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 15px;
    text-align: center;
}

.footer-bottom p {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    flex-wrap: wrap;
}

/* ================= DEVELOPED BY ================= */

.devloped-by {
    color: #cfcfcf;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.devloped-by:hover {
    color: #d4a017;
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1100px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }

}

/* ================= TABLET ================= */

@media(max-width: 768px) {

    .main-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 50px;
    }

    .footer-column {
        text-align: justify;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        width: 200px;
        margin: 0 auto 25px;
        display: block;
    }

    .footer-description {
        max-width: 500px;
        margin: auto;
    }

    .footer-column ul li {
        margin-bottom: 14px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    .footer-bottom p {
        font-size: 14px;
        line-height: 1.9;
        flex-direction: column;
        gap: 4px;
    }

}

/* ================= MOBILE ================= */

@media(max-width: 480px) {

    .main-footer {
        padding-top: 50px;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-column ul li a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-logo {
        width: 170px;
    }

}

/* ================= LOADER ================= */

.site-loader{
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,#050816,#0b1225,#111827);
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    transition: 0.8s ease;
}

/* HIDE LOADER */

.site-loader.hide-loader{
    opacity: 0;
    visibility: hidden;
}

/* BACKGROUND GLOW */

.loader-bg-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
}

.circle-1{
    width: 350px;
    height: 350px;
    background: #d4a017;
    top: -80px;
    left: -80px;
    animation: floatCircle 8s linear infinite;
}

.circle-2{
    width: 300px;
    height: 300px;
    background: #d4a017;
    bottom: -100px;
    right: -100px;
    animation: floatCircle 10s linear infinite reverse;
}

.loader-content{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

/* LOGO WRAPPER */

.loader-logo-wrapper{
    position: relative;
    width: 230px;
    height: 230px;
    margin: auto;
}

/* ROTATING RING */

.logo-ring{
    position: absolute;
    inset: 0;
    border-radius: 50%;

    border: 3px solid rgba(255,255,255,0.08);
    border-top: 3px solid #d4a017;
    border-bottom: 3px solid #d4a017;

    animation: rotateRing 3s linear infinite;
}

/* LOGO */

.loader-logo{
    position: absolute;
    inset: 18px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    box-shadow:
    0 0 30px rgba(212,160,23,0.25),
    0 0 60px rgba(30,111,184,0.2);
}

.loader-logo img{
    width: 90%;
    object-fit: contain;

    filter: drop-shadow(0 0 12px rgba(255,255,255,0.25));
    image-rendering: -webkit-optimize-contrast;
    animation: pulseLogo 2.5s ease-in-out infinite;
}

/* LOADING LINE */

.loader-line{
    width: 260px;
    height: 5px;

    background: rgba(255,255,255,0.08);

    margin: 40px auto 20px;
    border-radius: 30px;

    overflow: hidden;
}

.loader-line span{
    display: block;
    height: 100%;
    width: 40%;

    background: linear-gradient(90deg,#d4a017,#ffffff,#23b81e);

    border-radius: 30px;

    animation: loadingMove 1.8s ease-in-out infinite;
}

/* TEXT */

.loader-content h2{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.loader-content p{
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ANIMATIONS */

@keyframes rotateRing{
    100%{
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.08);
    }

    100%{
        transform: scale(1);
    }

}

@keyframes loadingMove{

    0%{
        transform: translateX(-100%);
    }

    100%{
        transform: translateX(300%);
    }

}

@keyframes floatCircle{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(30px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .loader-logo-wrapper{
        width: 180px;
        height: 180px;
    }

    .loader-content h2{
        font-size: 22px;
    }

    .loader-line{
        width: 200px;
    }

}
/* ================= SMOOTH ANIMATION ================= */

.service-card,
.gallery-item,
.feature-card,
.logo-item,
.hero-content,
.hero-image,
.about-content,
.about-right,
.cta-content {
    transition: all 0.4s ease;
}

/* ================= FLOAT EFFECT ================= */

.feature-card:hover,
.service-card:hover,
.gallery-item:hover,
.logo-item:hover {
    transform: translateY(-10px);
}

/* ================= BUTTON GLOW ================= */

.primary-btn,
.about-btn,
.gallery-btn,
.view-services-btn {
    position: relative;
    overflow: hidden;
}

.primary-btn::before,
.about-btn::before,
.gallery-btn::before,
.view-services-btn::before {
    content: '';

    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.2);

    transition: 0.5s ease;
}

.primary-btn:hover::before,
.about-btn:hover::before,
.gallery-btn:hover::before,
.view-services-btn:hover::before {
    left: 100%;
}

/* ================= IMAGE HOVER EFFECT ================= */

.hero-image img,
.gallery-item img,
.service-image img {
    transition: transform 0.6s ease;
}

.hero-image:hover img,
.gallery-item:hover img,
.service-card:hover img {
    transform: scale(1.05);
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #d4a017;
    border-radius: 20px;
}

/* ================= FLOATING BUTTONS ================= */

.scroll-top-btn,
.whatsapp-float,
.call-float {

    position: fixed;

    right: 20px;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    z-index: 99999;

    transition: 0.35s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

/* ================= TOP SCROLLER ================= */

.scroll-top-btn {

    bottom: 160px;

    border: none;
    outline: none;

    background: #111;
    color: #fff;

    font-size: 20px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);
}

.scroll-top-btn.show-scroll {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top-btn:hover {

    background: #d4a017;

    transform: translateY(-5px);
}

/* ================= WHATSAPP ================= */

.whatsapp-float {

    bottom: 90px;

    background: #25D366;
    color: #fff;

    font-size: 30px;
}

.whatsapp-float:hover {

    transform: translateY(-5px) scale(1.08);
}

/* ================= CALL BUTTON ================= */

.call-float {

    bottom: 20px;

    background: #d4a017;
    color: #fff;

    font-size: 22px;
}

.call-float:hover {

    background: #111;

    transform: translateY(-5px) scale(1.08);
}

/* ================= MOBILE ================= */

@media(max-width:480px){

    .scroll-top-btn,
    .whatsapp-float,
    .call-float {

        width: 48px;
        height: 48px;

        right: 10px;
        overflow-x: hidden;
    }

    .scroll-top-btn {

        bottom: 135px;
        font-size: 16px;
    }

    .whatsapp-float {

        bottom: 75px;

        font-size: 24px;
    }

    .call-float {

        bottom: 15px;

        font-size: 18px;
    }

}