:root {
    --dark-bg: #1e2a30;
    --light-bg: #ffffff;
    --primary-color: #1c2b33;
    --accent-color: #0b6efd;
    --text-light: #ffffff;
    --text-dark: #111111;
    --text-muted: #6c757d;
    --font-primary: 'Inter', sans-serif;
    --header-height: 80px;
    --radius: 40px;
    --primary-color-slider: #ffffff;
    --btn-bg-slider: #ffffff;
    --btn-text-slider: #111;
    --overlay-bg-slider: rgba(0, 0, 0, 0.55);
    --font-primary-slider: 'Inter', sans-serif;
    --transition: 0.6s ease;
    --siteprimarycolor: #2f1b19;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* ================= TOP BAR ================= */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.top-left span {
    margin-right: 20px;
}

.top-left i {
    margin-right: 6px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-right a {
    color: var(--text-light);
    text-decoration: none;
}

.social-icons a {
    margin-left: 8px;
    color: var(--text-light);
}

/* ================= MAIN HEADER ================= */
.main-header {
    background: var(--light-bg);
    height: var(--header-height);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;


}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo img {

    height: 80px;
    width: 180px;

}


/* Navigation 
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;

}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

.nav i {
    font-size: 12px;
    margin-left: 4px;
}





/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.btn-custom {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}




.service-btn-custom {
    background: var(--light-bg);
    color: black;
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
}

/* ================= RESPONSIVE ================= */
.mobile-toggle {
    display: none;
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .btn-custom {
        display: none;
    }


}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}




.hero-slider {
    position: relative;
    height: 73vh;
    overflow: hidden;
    font-family: var(--font-primary);
}

.slider {
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-bg-slider);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: var(--primary-color-slider);
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10%;
}

.tagline {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
}

.slide-content h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.slide-content p {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-custom-slider {
    display: inline-block;
    background: var(--btn-bg-slider);
    color: var(--btn-text-slider);
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    z-index: 3;
}

.nav-arrow.prev {
    left: 30px;
}

.nav-arrow.next {
    right: 30px;
}

.nav-arrow i {
    color: #111;
}

/* Pagination */
.pagination {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
}

.dot.active {
    background: #fff;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        margin-left: 0;
        text-align: center;
    }

    .pagination {
        display: none;
    }

    .nav-arrow {
        width: 42px;
        height: 42px;
    }
}

.about-section {
    padding: 100px 0;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-main-image {
    width: 100%;
    border-radius: 16px;
}

/* Experience Box */
.experience-box {
    position: absolute;
    top: 30px;
    left: -60px;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 30px 26px;
    border-radius: 14px;
    text-align: center;
    width: 160px;
}

.experience-box h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 6px;
}

.experience-box p {
    font-size: 14px;
    line-height: 1.3;
}

/* Content */
.about-content {
    padding-left: 40px;
}

.section-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-list i {
    color: var(--accent-color);
}

/* Footer */
.about-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}



.call-box i {
    width: 48px;
    height: 48px;
    background: var(--dark-bg);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.call-box span {
    font-size: 13px;
    color: var(--text-muted);
}

.call-box strong {
    display: block;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-footer {
        justify-content: center;
    }

    .experience-box {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .about-footer {
        flex-wrap: wrap;
        gap: 20px;
    }
}


.services-section {

    padding-bottom: 100px;
}

.section-heading {
    margin-bottom: 60px;
}

.section-label {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
}

/* Row Border */
.services-row {
    border: 1px solid #eee;
}

/* Items */
.service-item {
    border-right: 1px solid #eee;
}

.service-item:last-child {
    border-right: none;
}

/* Service Box */
.service-box {
    padding: 45px 30px;
    height: 100%;
    background: var(--light-bg);
}

.service-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.service-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Image Item */
.image-item {
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(50%);
}

/* ZOOM EFFECT */
.image-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .service-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .service-item:last-child {
        border-bottom: none;
    }
}


.cta-section {
    position: relative;
    padding: 80px 0;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;

}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    color: var(--text-light);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    max-width: 740px;
}

/* Button */
.cta-btn {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-btn {
        margin-top: 20px;
    }
}


.consultancy-section {
    padding: 120px 0;
}

.consultancy-content .section-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 14px;
}

.consultancy-content h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 40px;
}

/* Features */
.consultancy-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f1f3f5;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Actions */
.consultancy-actions {
    margin-top: 40px;
}

/* Images */
.consultancy-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-back img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
}

.image-front {
    position: absolute;
    left: 0;
    bottom: -40px;
}

.image-front img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .consultancy-images {
        margin-top: 60px;
        justify-content: center;
    }

    .image-front {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
    }

    .consultancy-content {
        text-align: center;
    }

    .consultancy-feature {
        justify-content: center;
        text-align: left;
    }
}

.site-footer {
    background: #1f2b31;
    color: #ffffff;
}

/* MAIN AREA */
.footer-main {
    padding: 90px 0 70px;
}

.footer-col {
    margin-bottom: 40px;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand img {
    max-width: 48px;
}

.brand-text {
    font-size: 14px;
    opacity: 0.8;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #b9c3c9;
    margin-bottom: 25px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #2b3941;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
}

/* Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 45px;
    height: 2px;
    background: #ffffff;
}

/* Links */
.footer-links {
    display: flex;
    gap: 45px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #b9c3c9;
    font-size: 14px;
    text-decoration: none;
}

.footer-links i {
    margin-right: 8px;
    font-size: 12px;
}

/* Contact */
.footer-contact .contact-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
    /* Aligns icon with the top line of text */
}

.icon-box {
    width: 44px;
    height: 44px;
    background: #2b3941;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

.icon-box i {
    font-size: 14px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 44px;
}

.footer-contact strong {
    font-size: 15px;
}

.footer-contact span {
    display: block;
    font-size: 14px;
    color: #b9c3c9;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links a {
    color: #fff;
    margin-left: 20px;
    font-size: 14px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-links {
        flex-direction: column;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/* Ensure the logo and toggle button stay on one line on mobile */
.main-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*   padding: 10px 15px; */
}

.nav-item {
    font-size: 14px;
}

/* Fix mobile menu appearance */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        /* Solid white background for mobile menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;


    }
}

/* Ensure the dropdown menu is visible */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 13px;
}