/* CSS Variables */
:root {
    --primary-color: #d9aa3a;
    --secondary-color: #2C3E50;
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --white-color: #FFFFFF;
    --text-dark: #000000;
    --text-light: #6C757D;

    --font-family: 'Unbounded', sans-serif;
    --secoundary-font: 'Montserrat', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --button-padding: 10px 20px;

    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    --border-radius: 0.2rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: #000;
    /* or any image/color */
    color: #fff;
    font-family: var(--font-family);
    overflow-x: hidden;
}

.container {
    max-width: 100%;

    padding: 0 var(--spacing-lg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--font-family);
    z-index: 1;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.4s ease, transform 0.3s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--dark-color);
    z-index: -1;
    transition: width 0.5s ease;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: #fff;
    /* text color after fill */


}

.btn-secondary {
    /* background-color: transparent; */
    color: var(--white-color);
    border: 1px solid var(--white-color);

    font-family: var(--font-family);
    z-index: 1;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.4s ease, transform 0.3s ease;
}



.btn-secondary:hover::before {
    width: 100%;
}

.btn svg {
    transition: transform 0.3s ease;
    width: 20px;
}

.btn-secondary:hover {

    color: var(--white-color);
}

.btn:hover svg {
    transform: rotate(50deg);
}

.btn-dark {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Section Labels */
.section-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.section-label .line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-label .text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Titles */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    text-transform: uppercase;

}

.section-title1 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    text-transform: uppercase;
    text-align: left;

}

.section-title span {
    white-space: nowrap;
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.top-bar {
    background: var(--primary-color);
    padding: 10px 30px;
}

.top-bar-contact-info {
    display: flex;
    gap: 30px;
    text-align: left;
}

.top-bar-contact-info a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
}

.top-bar-social-icons {
    display: flex;
    gap: 20px;
}

.top-bar-social-icon {
    color: var(--white-color);
    font-size: 18px;
}

.top-bar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-contact-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-social-col {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .top-bar-contact-info {
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .top-bar-social-icons {
        justify-content: center;
    }
}

/* Navbar */
.navbar {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0; */
    background: var(--text-dark);
    z-index: 1000;
    padding: 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.50);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-logo img {
    height: auto;
    width: 197px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin-bottom: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    font-size: 14px;
    color: var(--white-color);
    font-weight: 500;
    padding: var(--spacing-xl) 0;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-item.active .nav-link {
    color: var(--primary-color);
    /* or any color */
    font-weight: bold;
}

.dropdown-item.active {
    font-weight: bold;
    color: var(--primary-color);
    /* adjust based on your design */
}

.dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 15px;
    color: var(--dark-color);
    /* make sure this resolves to a visible color */
}

/* Make sure Font Awesome is linked in <head> */
.with-arrow::after {
    font-family: "Font Awesome 6 Free";
    /* for FA v6 */
    content: "\f107";
    /* Unicode for fa-arrow-down */
    font-weight: 900;
    /* 900 = solid icons */
    margin-left: 8px;
    font-size: 15px;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    min-width: 240px;
    font-family: var(--secoundary-font);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Dropdown icon styles */
.nav-link i.fa-arrow-down {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Rotate icon when dropdown is active */
.dropdown:hover .nav-link i.fa-arrow-down {
    transform: rotate(180deg);
}

/* Mobile-specific dropdown styles */
@media (max-width: 992px) {
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        /* Adjust based on content */
    }
}

.nav-cta {
    /* background-color: var(--primary-color); */
    color: var(--white-color);
    padding: var(--button-padding);
    border-radius: var(--border-radius);
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    border: 1px solid var(--white-color);
    transition: all var(--transition-normal);
}

.nav-cta svg {
    width: 23px;
    padding-left: 4px;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--primary-color);

}

.nav-cta:hover svg {
    transform: rotate(45deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    transition: all var(--transition-fast);
}

/* Mobile menu styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        /* Adjust based on navbar height */
        left: -100%;
        width: 71%;
        height: calc(100vh - 80px);
        background: #fff;
        /* Change color if needed */
        flex-direction: column;
        /* align-items: center; */
        padding: 20px 0;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    /* Show menu when active */
    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        border-bottom: 1px solid #ddd;
    }

    .dropdown-item {
        border-bottom: none;
    }

    .nav-link {
        color: var(--text-dark);
        padding: var(--spacing-sm) var(--spacing-md);

    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-icon {
        color: var(--text-dark);
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    color: var(--white-color);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: 100%;
    padding: 0 var(--spacing-3xl);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Animation for the slider */
@keyframes slideAnimation {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    53% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-slider .slide:nth-child(1) {
    animation: slideAnimation 9s infinite 8s;
}

.hero-slider .slide:nth-child(2) {
    animation: slideAnimation 9s infinite 2.8s;
}

.hero-slider .slide:nth-child(3) {
    animation: slideAnimation 9s infinite 3.9s;
}

.hero-slider .slide:nth-child(4) {
    animation: slideAnimation 9s infinite 5.9s;
}

.hero-slider .slide:nth-child(5) {
    animation: slideAnimation 9s infinite 7.9s;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* always above the background */
    max-width: 100%;
    width: 100%;
    /* margin-top: 15%; */
    padding: 0 var(--spacing-3xl);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner/banner-1.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: -1;
}


/* .hero-left {
    max-width: 600px;
} */

.hero-title {
    font-size: var(--font-size-6xl);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-weight: 900;
    font-family: 'Unbounded', sans-serif;
    line-height: 1.5;
}

.hero-subtext {
    color: var(--white-color);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-2xl);
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    align-items: center;
}

.hero-stats {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.stat-item {
    margin-bottom: var(--spacing-lg);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--white-color);
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background-color: var(--white-color);
    opacity: 0.7;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    /* Light line */
    margin: 2rem 0;
    /* Adjust spacing as needed */
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background-color: var(--light-color);
    font-family: 'Inter', sans-serif;
}

.section-title2 {
    font-size: var(--font-size-4xl);
    text-align: justify;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-button {
    float: inline-start;
    padding: 15px 30px;
}

.about-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
}

.about-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.about-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.about-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Services Section */
.services {
    padding: var(--spacing-3xl)0;
    background-color: var(--text-dark);

}

.services-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-3xl);
    align-items: start;
    margin-bottom: var(--spacing-xs);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Exactly two columns */
    gap: var(--spacing-xl);
}

.service-card {
    position: relative;
    padding: var(--spacing-md) var(--spacing-2xl);
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-lg);
    background-color: var(--text-dark);
    overflow: hidden;
    transition: all var(--transition-normal);
    z-index: 0;
}

/* Create the swipe effect using ::before */
.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: height 0.9s ease;
}

/* On hover, the background grows from bottom to top */
.service-card:hover::before {
    height: 100%;
}

/* Optional: change text color on hover to contrast with primary background */
.service-card:hover .service-description {
    color: var(--white-color);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.service-card:hover .service-title {
    color: var(--white-color);
}

.service-card:hover .service-icon {
    color: var(--white-color) !important;
}

.service-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
    font-size: var(--font-size-base);
    font-family: var(--secoundary-font);
    color: var(--light-color)
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: #E6A512;
}

/* Why Choose Us Section */
.why-choose {
    padding: var(--spacing-4xl) 0 0 0;
    background-color: var(--light-color);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-choose-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* .why-choose-features {
    margin-top: var(--spacing-2xl);
} */

.feature-item {
    display: flex;
    gap: var(--spacing-lg);

}

.divider2 {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.why-choose-right {
    display: flex;
    justify-content: center;
}

.feature-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    font-family: var(--secoundary-font);
    line-height: 1.5;
}

/* Statistics Section */
.statistics {
    padding: var(--spacing-4xl) 0;
    background-color: var(--light-color);
}

.statistics-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.stat-card {
    background-color: var(--white-color);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-card .stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.stat-card .stat-label {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    font-weight: 600;
}


/* counter section */
.counter-section {
    background: url('../images/bg/industry-archivement-bg.png') no-repeat right bottom;
    background-color: var(--text-dark);
    background-size: contain;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffb400;
    font-weight: 600;
}

.section-label .line {
    width: 20px;
    height: 2px;
    background: #ffb400;
    margin-right: 8px;
}

.counter-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    max-width: 700px;
}

.counters-grid.two-col-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 60.5%;
}

@media (max-width:425px) {
    .counters-grid.two-col-layout {
        display: block;
        grid-template-columns: repeat 1fr !important;
        width: 100%;
    }
}

.counter-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e7eb;
    text-align: left;
    border-radius: 4px;
}

.counter-header {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    /* space between number and text */
}

.countaer-content {
    /* display: flex; */
    align-items: center;
    gap: 20px;
    /* adjust spacing as needed */
}

.counter-number {
    color: #ffb400;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.counter-sub {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.counter-value {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.counter-label {
    font-size: 25px;
    font-weight: 600;
    color: #111;
}



/* Projects Section */
.projects {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(to bottom, var(--primary-color) 60%, #ffffff 40%);
    color: var(--white-color);
}

.projects .section-label .line {
    background-color: var(--white-color);
}

.projects .section-label .text {
    color: var(--white-color);
}

.projects .section-title {
    color: var(--white-color);
}

.projects-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-3xl);
    align-items: start;
    margin-bottom: var(--spacing-3xl);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.project-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 11/16;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.02));
    padding: var(--spacing-2xl);
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.project-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
}

.project-link {
    width: 80px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: var(--font-size-xl);
    transition: all var(--transition-normal);
}

.project-link:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Customer Trust Section */
.customer-trust {
    padding: var(--spacing-4xl) 0;
    background-color: var(--white-color);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.testimonial {
    background-color: var(--light-color);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.author-title {
    color: var(--text-light);
    margin: 0;
}

.rating {
    text-align: right;
}

.rating-number {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stars {
    color: var(--primary-color);
}

.trust-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* Premium Services Section */
.premium-services {
    padding: var(--spacing-4xl) 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.premium-services .section-label .line {
    background-color: var(--white-color);
}

.premium-services .section-label .text {
    color: var(--white-color);
}

.premium-services .section-title {
    color: var(--white-color);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.premium-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
}

.premium-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.premium-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
}

.premium-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-4xl) 0;
    background-color: var(--light-color);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta {
    padding: var(--spacing-4xl) 0;
    background: url('../images/bg/cta-box-bg.svg') center center / cover no-repeat;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    font-family: var(--secoundary-font);
    margin-bottom: var(--spacing-xl);
}

.ctabutton {
    float: inline-start;
}

.cta-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: right bottom;
    /* Align image to right */
    z-index: -1;
    border-radius: var(--border-radius-lg);
}

/* Blog Section */
.blog {
    padding: var(--spacing-4xl) 0;
    background-color: var(--white-color);
}

.blog-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.blog-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: var(--spacing-xl);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.blog-date,
.blog-category {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.blog-link:hover {
    color: #E6A512;
}

/* Footer */
.footer {
    background-color: #1E1E1E;
    color: var(--white-color);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
    font-family: var(--secoundary-font);

    background-image: url('../images/bg/footer-bg.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
    margin: auto;
    margin-left: 0px;
    text-align: left;
}



.footer-links li {
    list-style: none;
    position: relative;
    padding-left: 1.1em;
    margin-bottom: 18px;
    line-height: 1.8;
}

.footer-links li a {

    color: var(--white-color);
}

.footer-description {
    color: var(--white-color);
}

.footer-links li::before {
    content: "→";
    /* Unicode arrow */
    position: absolute;
    left: 0;
    padding-right: 5px;
    color: var(--primary-color);
    /* Customize */
    font-weight: bold;
}

.footer-content {
    display: flex;
    justify-content: left !important;
     flex-wrap: wrap; 
    /* gap: 20px; */
    text-align: left !important;
}

.footer-section {
    /* flex: 1; */
    min-width: 100px;
    justify-content: flex-start;
    text-align: left;
    margin-right: auto;
    /* Pushes it to the left if inside a flex container */
}



.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 10px;
    /* Space between items */
    /* text-align: justify; */

}

.contact-item {
    display: flex;
    align-items: left;
    gap: 10px;
    line-height: 1.6;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 5px;
    /* Adjust as needed */
}

.contact-item a {
    color: var(--white-color);
    /* or any preferred color */
    font-size: 16px;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);

}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details a {
    text-decoration: none;
    color: inherit;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    width: 200px;
}

.footer-description {

    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-title {
    text-align: left;
    /* justify-content: flex-start; */
    /* font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--white-color); */
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer-bottom {
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 100px;
    /* Adjust this value to increase height */
    padding-top: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }

    .hero-title {
        font-size: var(--font-size-5xl);
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .about-content,
    .services-header,
    .projects-header,
    .why-choose-content,
    .trust-content,
    .premium-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {


    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .statistics-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: var(--spacing-lg);
    }

    .feature-item {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .footer-content {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 425px) {
    :root {
        --spacing-4xl: 3rem;
        --spacing-3xl: 2rem;
    }

    .hero-title {
        font-size: var(--font-size-xl);
    }

    /* .section-title {
        font-size: var(--font-size-2xl);
    } */

    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }

    .hero-stats {
        padding: var(--spacing-lg);
    }

    .cta-title {
        font-family: var(--font-size-3xl) !important;
    }
}

@media (max-width: 375px) {

    .hero-title {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 320px) {

    .hero-title {
        font-size: var(--font-size-sm);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}



/* .expertise .container {
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
    padding: var(--spacing-4xl) 0;
} */
.expertise {
    padding: 0 0 var(--spacing-4xl) 0;
    background-color: var(--white-color);
}

.expertise-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Exactly two columns */
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
}


.expertise-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.75rem));
        /* Half of the duplicated content */
    }
}

/* .expertise-card {
    min-width: 300px;
    
    flex: 0 0 auto;
    transition: transform 0.3s ease;
} */


.expertise-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.expertise-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.expertise-carousel-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    min-width: 100%;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.expertise-card {
    background: var(--white-color);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.carousel-prev,
.carousel-next {
    /* background: transparent; */
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .expertise-carousel {
        gap: 1rem;
    }

    .expertise-card {
        min-width: 260px;
    }

    .expertise-carousel {
        animation: scroll 20s linear infinite;
    }
}

.expertise-card {
    background: var(--white-color);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);

    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

.expertise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e6a512);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}


.expertise-card:hover {
    /* transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); */
    border-color: var(--primary-color);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e6a512);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--white-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.expertise-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent); */
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.expertise-card:hover .expertise-icon::before {
    opacity: 1;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    transition: color var(--transition-normal);
}

/* .expertise-card:hover .expertise-title {
    color: var(--primary-color);
} */

.expertise-description {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.expertise-tag {
    padding: 6px 14px;
    /* background-color: var(--primary-color); */
    color: var(--dark-color);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: capitalize;
}

.expertise-tag:hover {
    background-color: #222;
    color: var(--white-color);
    border-color: var(--dark-color);
    /* Or a darker variant of --primary-color */
}

.expertise-hover-content {
    /* max-height: 0; */
    overflow: hidden;
    transition: all var(--transition-slow);

}

.expertise-card:hover .expertise-hover-content {
    /* max-height: 100px; */
    opacity: 1;
    margin-top: var(--spacing-md);
}

.expertise-hover-content p {
    color: var(--text-light);
    font-size: var(--font-size-md);
    line-height: 1.5;
    font-family: var(--secoundary-font);
    margin: 0;
    padding-top: var(--spacing-md);
    border-top: 1px solid #f0f0f0;
}

/* Expertise Section Animations */
.expertise-card {
    /* opacity: 0; */
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.expertise-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Expertise Section */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-xl);
    }

    .expertise-card {
        padding: var(--spacing-xl);
    }

    .expertise-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .expertise-card {
        padding: var(--spacing-lg);
        text-align: center;
    }

    .expertise-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto var(--spacing-lg);
    }

    .expertise-title {
        font-size: var(--font-size-lg);
    }

    .expertise-hover-content {
        max-height: none;
        opacity: 1;
        margin-top: var(--spacing-md);
    }

    .expertise-hover-content p {
        border-top: none;
        padding-top: 0;
    }

    .about-button {
        float: inline-start;
    }
}

@media (max-width: 425px) {
    .expertise {
        padding: var(--spacing-3xl) 0;
    }

    .expertise-header {
        margin-bottom: var(--spacing-2xl);
    }

    .expertise-card {
        padding: var(--spacing-md);
    }

    .section-title {
        margin-bottom: var(--spacing-xs);
    }

    .countaer-content {

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .counter-label {
        font-size: 15px;
    }
}

.banner-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* banner under in house project */
    /* Black with 30% opacity */
    /* Adjust opacity (0 = transparent, 1 = solid) */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.banner-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.banner-title {
    font-size: 60px;
    margin-bottom: 20px;
    color: white;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #FFB703;
    /* Accent color for hover */
}

.breadcrumb-separator {
    margin: 0 10px;
}

.breadcrumb-current {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-section {
        padding: 80px 0;
    }

    .banner-title {
        font-size: 2.5rem;
    }
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    /* margin: 0 auto; */
    gap: 40px;
    width: 100%;
    max-width: 800px;
    /* Or your preferred width */
    margin: 0 auto;
}

.conatct-section-title {
    color: var(--white-color) !important;
}

.contact-section-description {
    color: var(--white-color);
}

.contact-info-title {
    color: var(--primary-color) !important;
}

.contact-info-title a {
    color: var(--primary-color) !important;
}

.contactinfo-content {
    color: var(--white-color) !important;
}

.contact-content,
.contact-form-section {
    flex: 1 1 45%;
    box-sizing: border-box;
    text-align: left;
}

.contact-header {
    margin-bottom: 30px;
}

.conatct-section-title {
    color: var(--white-color);
}

.contact-subtitle {
    position: relative;
    padding-left: 40px;
    /* space for the line */
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    /* Adjust color as needed */
    transform: translateY(-50%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-description,
.form-description {
    margin: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
}


.info-title a {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.info-text {
    font-size: 16px;

}

/* Form Styling */
.form-container {
    border: 1px dashed var(--white-color);
    padding: 30px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 20px;
    width: 100%;
    color: var(--text-light);
    border: 1px solid var(--white-color);
    /* background-color: transparent; */
    border-radius: 5px;
    font-family: var(--font-family);
}


input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border: 1px solid var(--white-color);
    box-shadow: none;

}


.submit-btn {
    padding: 12px 25px;
    font-size: 18px;
    background-color: #FFB703;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 700;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-content,
    .contact-form-section {
        flex: 1 1 100%;
    }
}



/* heading in the left  */

/* Move ALL section labels/titles to the left */
/* Force ALL section titles to align left */
.section-label,
.services-header .services-left,
.projects-header .projects-left,
.expertise .services-left {
    text-align: left !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100%;
}

/* Fix the decorative line spacing */
.section-label .line {
    margin-right: 10px;
    /* Space between line and text */
}


/* Specifically align the text with the line */
.section-label {
    display: flex;
    align-items: center;
}

/* Adjust the decorative line */
.section-label .line {
    margin-right: 10px;
    /* Space between line and text */
}

/* About Page Section */

/* on  */
/* Add these styles to center the content */
.container {
    max-width: 1200px;
    /* or whatever max-width you prefer */
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-section {
    width: 100%;
    max-width: 600px;
    /* Slightly narrower than container */
    margin: 0 auto;
}

/* Center form elements */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    width: 100%;
    justify-content: center;
}

.form-group {
    width: 100%;
    max-width: 500px;
    /* Control form field widths */
}


.aboutpage-grid {
    /* Remove these grid properties: */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 48px; */

    /* Add these instead: */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.aboutpage-section,
.aboutpage-content {
    height: auto !important;
    min-height: auto !important;
}

@media (max-width: 768px) {
    .aboutpage-grid {
        padding: 0 15px;
    }

    .contact-form-section {
        padding: 0 15px;
    }
}

.aboutpage-content {
    max-width: 800px;
    /* Adjust this value as needed */
    width: 100%;
}

/* second  */

.aboutpage-section .container {
    display: flex;
    justify-content: center;
}

.aboutpage-grid {
    display: flex;
    /* Change from grid to flex */
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically if needed */
    max-width: 800px;
    /* Set a max-width for better readability */
    margin: 0 auto;
    /* Center the container */
    gap: 0;
    /* Remove grid gap if no longer needed */
    text-align: center;
    /* Center text */
}

/* Add this to center the section content */
.aboutpage-section .container {
    display: flex;
    justify-content: center;
}

/* More comprehensive centering solution */
.aboutpage-section .container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    /* Optional: adds some side padding */
}

.aboutpage-grid {
    width: 100%;
    max-width: 1200px;
    /* Match this to your desired content width */
    margin: 0 auto;
    /* Centers the grid within container */
}

/* third  */
/* Add this to your existing CSS */
.aboutpage-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.aboutpage-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.aboutpage-content {
    width: 100%;
    /* Take full width of parent */
    max-width: 100%;
    /* Ensure it doesn't exceed container */
    padding: 0 20px;
    /* Add some side padding */
}

.aboutpage-image {
    max-width: 600px;
    /* Adjust this width as needed */
    width: 100%;
}

/* on  */
/* Add these CSS rules */
.aboutpage-section .container {
    display: flex;
    justify-content: center;
}

.aboutpage-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.aboutpage-content {
    width: 100%;
}

.section-label.justify-content-center {
    justify-content: center;
}

.aboutpage-badges {
    justify-content: center;
}

.aboutpage-buttons {
    justify-content: center;
}

/* remove grid on  */

/* Remove the grid styles and add these: */
.aboutpage-section {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    justify-content: center;
}

.aboutpage-section .container {
    max-width: 800px;
    /* Control the max width of centered content */
    margin: 0 auto;
    padding: 0 20px;
}

.aboutpage-content {
    width: 100%;
    text-align: center;
}

.section-label {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.aboutpage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.aboutpage-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* off  */


.aboutpage-section {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    /* text-align: center; */
}

.aboutpage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.aboutpage-content {
    display: flex;
    flex-direction: column;
}

.aboutpage-description {

    font-family: "Inter", sans-serif;
}

.aboutpage-title {
    font-size: 48px;
    line-height: 1.1;
}

.aboutpage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    justify-content: center;
}

.aboutpage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.aboutpage-badge i {
    font-size: 14px;
}

/* Residential Badge */
.aboutpage-badge.residential {
    background-color: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
}

.aboutpage-badge.residential i {
    color: #1D4ED8;
}

/* Commercial Badge */
.aboutpage-badge.commercial {
    background-color: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
}

.aboutpage-badge.commercial i {
    color: #047857;
}

/* Office Works Badge */
.aboutpage-badge.office {
    background-color: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

.aboutpage-badge.office i {
    color: #B91C1C;
}

/* Contract & JV Badge */
.aboutpage-badge.contract {
    background-color: #F5F3FF;
    color: #5B21B6;
    border: 1px solid #C4B5FD;
}

.aboutpage-badge.contract i {
    color: #5B21B6;
}

/* Hover Effects */
.aboutpage-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.aboutpage-badge.residential:hover {
    background-color: #DBEAFE;
}

.aboutpage-badge.commercial:hover {
    background-color: #D1FAE5;
}

.aboutpage-badge.office:hover {
    background-color: #FEE2E2;
}

.aboutpage-badge.contract:hover {
    background-color: #EDE9FE;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aboutpage-badges {
        gap: 8px;
    }

    .aboutpage-badge {
        padding: 8px 14px;
        font-size: 13px;
    }
}

.aboutpage-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* .aboutpage-image {
    position: relative;
} */

.aboutpage-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.aboutpage-floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.aboutpage-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.aboutpage-card-icon {
    background-color: #fef6db;
    padding: 12px;
    border-radius: 50%;
}

.aboutpage-card-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.aboutpage-card-title {
    font-weight: 600;
    font-size: 18px;
}

.aboutpage-card-subtitle {
    font-size: 14px;
    color: #64748b;
}

/* Mission Section */
.mission-section {
    padding: 80px 0 100px;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mission-card {
    padding: 48px;
    border-radius: 16px;
    border: 2px solid var(--white-color);
}

.mission-card:hover {

    border: 2px dashed var(--primary-color);
}

.mission-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--white-color);
}

.mission-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.section-label {
    justify-content: center;
}

.section-label1 {
    justify-content: center;
}

/* Values Section */
.values-section {
    padding: 80px 0 100px;
    background-color: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    position: relative;
    padding: var(--spacing-md) var(--spacing-2xl);
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-lg);
    background-color: var(--text-dark);
    overflow: hidden;
    transition: all var(--transition-normal);
    z-index: 0;
}


/* added now for 2*2  */

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Forces 2 columns */
    gap: 24px;
    margin-top: 48px;
}

/* Optional: Responsive adjustment for mobile */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        /* Stacks to 1 column on small screens */
    }
}


/* Create the swipe effect using ::before */
.value-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: height 0.9s ease;
}

/* On hover, the background grows from bottom to top */
.value-card:hover::before {
    height: 100%;
}

/* Optional: change text color on hover to contrast with primary background */
.value-card:hover .value-title {
    color: var(--white-color);
}

.value-card:hover .value-description {
    color: var(--white-color);
}

.value-card:hover .value-icon {
    color: var(--white-color);
}


.value-icon {
    font-size: 40px;

    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);

}


.value-title {

    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);

}

.value-description {

    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
    font-size: var(--font-size-base);
    font-family: var(--secoundary-font);
    color: var(--light-color);

}


.aboutpage-projects-section {
    padding: 80px 0 100px;
    background: var(--white-color);
}

.aboutpage-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.aboutpage-project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding-bottom: 30px;
}

.aboutpage-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.aboutpage-project-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.aboutpage-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .aboutpage-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
} */

.aboutpage-project-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.aboutpage-project-content {
    padding: 32px 24px;
}

.aboutpage-project-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.aboutpage-project-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.aboutpage-project-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.aboutpage-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aboutpage-feature-item i {
    color: #16a34a;
    font-size: 16px;
}

.aboutpage-feature-item span {
    font-size: 14px;
    color: var(--text-light);
}

.aboutpage-button {
    margin-top: auto;
}

.info-content a {
    text-decoration: none;
}

.info-content .info-text:hover {
    color: var(--primary-color) !important;
}

.info-title {
    color: var(--secondary-color);
}

#services {
    scroll-margin-top: -80px;
}

#project {
    scroll-margin-top: -80px;
}

#contact {
    scroll-margin-top: -80px;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* or dark background like #000 if you prefer */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.project-page {
    padding: var(--spacing-2xl) 0;
    background-color: white;
    font-family: var(--secoundary-font);
    color: black;
}

.project-page__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 992px) {
    .project-page__container {
        grid-template-columns: 1fr 2fr;
    }
}

.project-page__title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    font-family: var(--font-family);
    font-weight: 600;
}

.projects-details {
    display: none;
    /* background: var(--white-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md); */
}

.projects-details--active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Reduce image width and add navigation buttons */
.projects-image {
    width: 100%;
    /* Reduced from 100% */
    height: 400px;
    /* object-fit: cover; */
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.projects-highlight {
    background-color: rgba(217, 170, 58, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(217, 170, 58, 0.2);
}

.projects-highlight__title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.projects-highlight__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .projects-highlight__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.projects-features__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-weight: 600;
}

.projects-features {
    list-style: none;
    padding: 0;
}

.projects-features__item {
    padding: var(--spacing-sm) 0;
    position: relative;
    padding-left: var(--spacing-xl);
    color: black;
    line-height: 1.5;
}

.projects-features__item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--white-color);
    font-weight: bold;
}

.project-page__sidebar {
    position: relative;
}

.projects-nav {
    background: var(--white-color);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

@media (min-width: 992px) {
    .projects-nav {
        position: sticky;
        top: var(--spacing-md);
    }
}

.projects-nav__header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: var(--spacing-md);
}

.projects-nav__title {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
    font-family: var(--font-family);
}

.projects-nav__list {
    display: grid;
    gap: 1px;
    background-color: #ddd;
}

.projects-nav__item {
    display: block;
    padding: var(--spacing-md);
    background: var(--white-color);
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.projects-nav__item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.projects-nav__item--active {
    border-left: 4px solid var(--primary-color);
}

.projects-nav__name {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: var(--font-size-base);
    font-weight: 500;
}

.projects-nav__location {
    /* color: var(--gray-color); */
    font-size: var(--font-size-sm);
}

/* Additional improvements */
.projects-highlight p {
    margin: 0 0 var(--spacing-sm) 0;
    color: black;
}

.projects-highlight strong {
    color: black;
}

.projects-details {
    transition: all var(--transition-normal);
}

.project-swiper {
    width: 85%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);

}

/* now added  */
.project-container {

    position: relative;

    width: 100%;

}

/* Custom navigation buttons */
.swiper-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 10px;
    /* spacing from edges */
    background: linear-gradient(90deg, #ffffff, #007bff);
    /* white to blue */
    border-radius: 12px;
    /* optional rounded corners */
    box-sizing: border-box;
    z-index: 10;
    /* ensure buttons are above slides */
}

.swiper-buttons-wrapper .swiper-button-next,
.swiper-buttons-wrapper .swiper-button-prev {
    background: rgba(13, 190, 42, 0.3);
    /* keep the circular button style */
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.project-container {
    width: 100%;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 400px;
    top: 20px;
    border-radius: 20px;
    transition: all var(--transition-fast);
    background-color: #d9aa3a;
}

.project-swiper .swiper-slide {
    width: 100% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}

.project-swiper .swiper-slide {
    width: 100% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #d9aa3a;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}



.footer {
    position: relative;
    padding: 96px 0 32px 0;
    /* Top:96px | Bottom:32px */
}

.gold-line {
    position: absolute;
    top: 3px;
    /* Positions line in middle of top padding */
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #D4AF37);
    z-index: 1;
}




/* footer alignment  */

/* Footer Content Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    /* Pushes left and right sections apart */
     flex-wrap: wrap; 
    /* Allows wrapping on small screens */
}

/* Right-Aligned Sections */
.footer-section:nth-last-child(2),
/* Targets Quick Links */
.footer-section:last-child {
    /* Targets Contact Info */
    margin-left: auto;
    /* Pushes these sections to the right */
    text-align: left;
    /* Aligns content to the right */
}

/* Adjust list alignment */
.footer-links {
    padding-left: 0;
    /* Removes default left padding */
    list-style-position: inside;
    /* Aligns bullets with right text */
}

/* Contact items alignment */
.contact-item {
    justify-content: flex-end;
    /* Right-aligns icons + text */
}

/* Adds space between them */
.footer-section:nth-last-child(2) {
    margin-right: 0px;
    /* Adjust this value as needed */
}

/* Move ONLY Quick Links to the right */
.footer-section:nth-last-child(2) {
    margin-left: auto;
    margin-right: 60px;
    /* Space between Quick Links and Contact Info */
}

/* Targets ONLY the Quick Links section */
.footer-section:nth-child(2) {
    margin-left: 100px;
    /* Pushes it to the right */
    margin-right: 40px;
    /* Space between Quick Links and Contact Info */
    text-align: left;
    /* Right-aligns the text */
}


/* 3 column ready by style  */

.footer-content {
    display: flex;
    justify-content: flex-start;
    /* Align columns to the left */
    gap: 0px;
    /* Space between columns */
     flex-wrap: wrap; 
    /* Allow wrapping on small screens */
}

/* Make Quick Links take less space and stick to the left
.footer-section:nth-child(2) {
    /* Quick Links is the 2nd column in your HTML */
/* flex: 0 0 200px; */
/* Do not grow, do not shrink, fixed width */
/* margin-right: auto; */
/* Push other columns to the right */

/* Make other columns take equal remaining space */
.footer-section:not(:nth-child(2)) {
    flex: 1;
    /* Take available space */
    min-width: 200px;
    /* Prevent squeezing on small screens */
}

/* mobile responsive for projects images  */
/* ✅ For mobiles (max-width 768px) */
@media (max-width: 768px) {
    .projects-image {
        height: 200px;
        /* smaller height for mobiles */
    }

    .swiper-button-next,
    .swiper-button-prev {
        height: 200px;
        width: 30px;
    }

    .project-swiper {
        height: 200px;
        width: 95%;
        /* full width on mobile */
    }

}

@media (max-width: 500px) {
  .aboutpage-projects-grid {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    gap: 24px; /* smaller gap for mobile */
    margin-top: 32px;
  }
}



/* 24.09  */


/* Responsive styles for small mobile devices (320px - 420px) */
@media (min-width: 320px) and (max-width: 420px) {

    /* Container adjustments */
    .contact-container {
        padding: 15px;
    }

    /* Header text adjustments */
    .contact-header .conatct-section-title {
        font-size: 18px;
        /* slightly smaller for very small screens */
        line-height: 1.3;
        text-align: center;
        word-break: break-word;
        /* allows long titles to wrap */
    }

    .contact-header .contact-subtitle {
        font-size: 14px;
        text-align: left;
        /* left align on mobile */
        position: relative;
        padding-left: 25px;
        /* space for ::before line */
    }

    .contact-header .contact-subtitle::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 20px;
        height: 2px;
        background-color: var(--primary-color);
        transform: translateY(-50%);
    }

    .contact-header .contact-section-description {
        font-size: 13px;
        text-align: left;
        line-height: 1.4;
        margin-top: 8px;
    }

    /* Contact info cards stack vertically */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }

    .info-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .info-icon svg {
        width: 36px;
        height: 36px;
    }

    .info-content {
        margin-left: 8px;
    }

    .info-title {
        font-size: 15px;
    }

    .info-text {
        font-size: 13px;
    }

    /* Contact form adjustments */
    .contact-form-section {
        margin-top: 25px;
    }

    .contact-form .section-title {
        font-size: 18px;
        text-align: center;
        word-break: break-word;
    }

    .form-description {
        font-size: 13px;
        text-align: left;
        margin-bottom: 12px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .form-group {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }

    .btn-submit {
        text-align: center;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}


/* Extra small screens: 320px - 350px */
@media (min-width: 320px) and (max-width: 350px) {

    .contact-header .contact-subtitle {
        display: flex;
        align-items: left;
        gap: 6px;
        font-size: 12px;
        /* smaller font for tiny screens */
    }

    .contact-header .contact-subtitle::before {
        width: 15px;
        /* shorter line */
        height: 2px;
    }

    .contact-header .conatct-section-title {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
        word-break: break-word;
    }
}

/* Small screens: 351px - 420px */
@media (min-width: 351px) and (max-width: 420px) {

    .contact-header .contact-subtitle {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        /* slightly larger font */
    }

    .contact-header .contact-subtitle::before {
        width: 20px;
        /* longer line */
        height: 2px;
    }

    .contact-header .conatct-section-title {
        font-size: 18px;
        line-height: 1.3;
        text-align: left;
        word-break: break-word;
    }
}