/* Font Face Declarations */
@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-LightOblique.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-BookOblique.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-MediumOblique.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-BoldOblique.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-ExtraBoldOblique.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('font_2/FuturaStd-HeavyOblique.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'FuturaPT', sans-serif;
    background-color: #fafafa;
    color: #2F2F2F;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Header Styles */
.header {
    background-color: #fafafa;
    padding: 50px 0 0 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}


.nav {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-left: 100px;
}

.nav-item {
    text-decoration: none;
    color: #959595;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #7E6000;
}

.nav-item.active {
    color: #7E6000;
    font-weight: 700;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background-color: #d0d0d0;
    margin: 0 5px;
}

.nav-item.dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.contact-btn {
    background-color: #7E6000;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    /* font-weight: 600; */
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #6d5401;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 80px 0 0 0;
    text-align: center;
}

.hero .section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 5px !important;
    word-spacing: 10px !important;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
} 

/* .hero .section-title */
.highlight {
    color: #7E6000;
}

.hero .hero-description {
    font-size: 15px;
    color: #2F2F2F;
    margin-top: 30px;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 49px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #7E6000;
    color: #7E6000;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #7E6000;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #7E6000;
    color: white;
    border: 2px solid #7E6000;
}

.btn-primary:hover {
    background-color: #7a6349;
    border-color: #7a6349;
    transform: translateY(-2px);
}

/* Image Gallery */
.image-gallery {
    padding: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item img {
    width: 100%;
    /* height: 250px; */
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* What We Do Section */
.what-we-do {
    margin-top: 40px;
    padding: 80px 0;
    background-color: #F6EBE4;
}

.what-we-do-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.what-we-do-text {
    grid-column: span 2;
    max-width: none;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #B8860B;
    margin-bottom: 16px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.what-we-do .section-title {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.2;
    /* letter-spacing: 5px !important; */
    /* word-spacing: 10px !important; */
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 16px;
    color: black;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 16px;
    width: 75%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    grid-column: span 3;
}

.features-grid .feature-card:first-child {
    grid-column: span 1;
}

.feature-card {
    background: #FFF4ED;
    padding: 35px 25px;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: #000000;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    /* color: #B8860B; */
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Who It's For Section */
.who-its-for {
    padding: 80px 0;
    /* background-color: white; */
}

.who-its-for-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
    align-items: center;
}

.who-its-for-image {
    width: 100%;
}

.who-its-for-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.who-its-for-text {
    padding-left: 20px;
}

.who-its-for .section-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #7E6000;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.who-its-for .section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    color: #2F2F2F;
    margin-bottom: 32px;
}

.target-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.bullet {
    width: 20px;
    height: 20px;
    background-color: #7E6000;
    border-radius: 50%;
    flex-shrink: 0;
    /* margin-top: 8px; */
}

.target-content {
    font-size: 16px;
    line-height: 1.5;
    color: #2F2F2F;
}

.target-content strong {
    color: #7E6000;
    font-weight: 600;
}

/* Responsive Card Section */
.responsive-card {
    padding: 80px 0;
    /* background-color: #F6EBE4; */
}

.card-content {
    background: white;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.card-header {
    padding: 50px 50px 10px 50px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.card-logo {
    display: flex;
    align-items: center;
}

.card-logo img {
    width: 250px;
}


.card-title-section {
    flex: 1;
    margin-left: 70px;
}

.card-title {
    font-size: 25;
    font-weight: 700;
    color: black;
    margin-top: 20px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-description {
    font-size: 15px;
    color: black;
    width: 75%;
    font-weight: 500;
    line-height: 1.6;
}

.underlined {
    text-decoration: underline;
    text-decoration-color: #7E6000;
    text-underline-offset: 3px;
}

.card-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 20px; */
}

.card-gallery-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-gallery-item img {
    width: 100%;
    /* border-radius: 8px; */
    display: block;
}

/* Footer Section */
.footer {
    /* background-color: #F6EBE4; */
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 15px;
    color: black;
    margin: 0;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 50px;
    height: 50px;
    /* background-color: #F6EBE4; */
    border: 2px solid #DDDDDD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7E6000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #7E6000;
    color: white;
    border-color: #7E6000;
}

/* Page Title */
.page-title {
    background-color: #f5f5f5;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0;
}

/* Ads Section */
.ads-section {
    padding: 120px 0;
    background-color: #F6EBE4;
    min-height: 300px;
    width: 80%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
}

.ads-content {
    text-align: center;
}

.ads-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0;
}

/* Contact Information Section */
.contact-info {
    padding: 40px 0;
    /* background-color: #F6EBE4; */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 130px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    display: inline-flex;
}

.contact-content {
    text-align: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #7E6000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-title {
    font-size: 24px;
    font-weight: 500;
    color: #161C2D;
    margin-bottom: 16px;
}

.contact-details {
    color: #161C2D;
    font-weight: 500;
}

.contact-details p {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Contact Form Section */
.form-container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #E8E8E8;
    margin-top: 20px;
    /* margin-bottom: 20px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2F2F2F;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7E6000;
    box-shadow: 0 0 0 2px rgba(126, 96, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #7E6000;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.submit-btn:hover {
    background-color: #6b5200;
}

/* Services Section */
.services-section {
    /* padding: 40px 0 80px; */
    /* background-color: #F6EBE4; */
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.services-title-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.services-title {
    font-size: 32px;
    font-weight: 500;
    color: #7E6000;
    margin: 0;
}

.services-count {
    background-color: #F6EBE4;
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.services-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #999;
    z-index: 1;
}

.search-input {
    padding: 18px 25px 18px 48px;
    border: 1px solid #E8E8E8;
    border-radius: 25px;
    color: #959595;
    font-size: 14px;
    width: 480px;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #7E6000;
}

.filters-btn {
    background-color: #7E6000;
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.filters-btn:hover {
    background-color: #6b5200;
}

/* Header dropdown */
.dropdown-container {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dropdown-menu {
    position: absolute;
    top: 52px;
    left: 0;
    background: #FFFFFF;
    border-radius: 16px; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 16px;
    display: none;
    min-width: 380px;
    z-index: 1000;
}

.dropdown-container.open .dropdown-menu {
    display: block;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    align-items: center;
}

.dropdown-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.dropdown-item {
    text-decoration: none;
    color: inherit;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f6ece482;
    border-radius: 5px;
}

.dropdown-heading {
    font-size: 16px;
    font-weight: 500;
    color: #18181B;
}

.dropdown-desc {
    font-size: 12px;
    color: #838383;
}

.dropdown-separator {
    height: 1px;
    width: 100%;
    background: #EAEAEA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    /* background: white; */
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-category,
.service-providers {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #959595;
    margin-bottom: 8px;
}

.service-providers {
    margin-bottom: 0;
}

.category-icon,
.provider-icon {
    color: #7E6000;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #2F2F2F;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-number:hover {
    background-color: #f0f0f0;
}

.page-number.active {
    background-color: #7E6000;
    color: white;
}

/* Service Details Section */
.service-details-section {
    padding: 40px 0 0 0px;
    /* background-color: #F6EBE4; */
}

.service-details-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-header {
    margin-bottom: 40px;
}

.service-main-title {
    font-size: 32px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.service-meta {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.service-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #959595;
}

.meta-icon {
    color: #7E6000;
}

.service-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #959595;
    width: 100%;
}

.service-image-large {
    width: 100%;
    height: 500px;
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-providers-section {
    margin-bottom: 40px;
}

.providers-title {
    font-size: 28px;
    font-weight: 600;
    color: #2F2F2F;
    margin-bottom: 30px;
}

.providers-wrapper {
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.provider-card {
    background: white;
    padding: 28px 32px;
    border-right: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.provider-card:nth-child(3n) {
    border-right: none;
}

.provider-card.span-all {
    grid-column: 1 / -1;
}

.provider-name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 18px;
}

.provider-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.provider-detail {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: #959595;
}

.detail-icon {
    color: #7E6000;
}

@media (max-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .provider-card:nth-child(3n) {
        border-right: 1px solid #E8E8E8;
    }
    .provider-card:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .providers-grid {
        grid-template-columns: 1fr;
    }
    .provider-card {
        border-right: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item {
        padding: 8px 15px;
        font-size: 14px;
    }

    .hero .section-title {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .what-we-do-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .what-we-do-text {
        grid-column: span 1;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-column: span 1;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .who-its-for-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-its-for-text {
        padding-left: 0;
    }

    .who-its-for .section-title {
        font-size: 28px;
    }

    .who-its-for-image img {
        height: 300px;
    }

    .card-content {
        padding: 40px 30px;
    }

    .card-header {
        flex-direction: column;
        gap: 30px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .ads-content h2 {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-title {
        font-size: 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .services-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .services-controls {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .search-input {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-main-title {
        font-size: 28px;
    }

    .service-meta {
        flex-direction: column;
        gap: 12px;
    }

    .service-image-large {
        height: 300px;
    }

    .providers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero .section-title {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .card-content {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logo-line-1 {
        font-size: 20px;
    }

    .logo-line-2 {
        font-size: 16px;
    }

    .ads-content h2 {
        font-size: 28px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-title {
        font-size: 18px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .form-container {
        padding: 20px 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .services-title {
        font-size: 24px;
    }

    .service-content {
        padding: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .page-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .service-main-title {
        font-size: 24px;
    }

    .service-image-large {
        height: 250px;
    }

    .provider-card {
        padding: 20px;
    }

    .provider-name {
        font-size: 18px;
    }
}

/* Jobs Section Styles */
.jobs-section {
    /* padding: 60px 0; */
    /* background-color: #f8f9fa; */
}

/* Equipments & Suppliers */
.equipments-section {
    padding: 40px 0 80px;
}

.equipments-container {
    display: grid;
    grid-template-columns: 300px 1fr; /* with sidebar */
}

.equipments-sidebar {
    border-top: none;
    border-right: 1px solid #DDDDDD;
    border-bottom: none;
    border-left: none;
    padding-right: 20px;
    height: fit-content;
}

.equipments-sidebar .sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.equipments-sidebar .sidebar-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #7E6000;
}

.equipments-sidebar .sidebar-count {
    background: #F6EBE4;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    color: #000;
}

.sidebar-search input {
    width: 100%;
    border: 1px solid #E8E8E8;
    border-radius: 28px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 8px;
}

.category-item {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    gap: 10px;
    padding: 10px 6px;
}

.category-item .cat-icon { font-size: 18px; }
.category-item .cat-label { font-size: 14px; color: #000; font-weight: 500; }

.cat-check { justify-self: end; position: relative; width: 20px; height: 18px; }
.cat-check input { opacity: 0; width: 0; height: 0; position: absolute; }
.cat-check .checkmark {
    width: 20px; height: 18px; border: 1px solid #D0D0D0; border-radius: 5px; display: inline-block;
}
.cat-check input:checked + .checkmark { background: #F6EBE4; border-color: #7E6000; }

.suppliers-main .suppliers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.suppliers-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-toggle-icon {
    border: none;
    border-radius: 6px; 
    background: transparent;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.sidebar-toggle-icon:hover {
    background-color: rgba(126, 96, 0, 0.1);
}

.sidebar-toggle-icon:active {
    background-color: rgba(126, 96, 0, 0.2);
}

.suppliers-title {  
    font-size: 18px;
    color: #7E6000;
    font-weight: 500;
    margin: 0;
}

.suppliers-count {
    background: #F6EBE4;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* default with sidebar */
    gap: 24px;
    margin-left: 30px;
}

.suppliers-grid.grid-3 { /* no sidebar */
    grid-template-columns: repeat(3, 1fr);
}

.supplier-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    overflow: hidden;
}

.supplier-image {
    height: 220px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid #E8E8E8;
}

.image-placeholder {
    width: 200px;
    /* height: 100px; */
    /* border: 1px dashed #C9C9C9; */
    border-radius: 8px;
}

.supplier-content {
    padding: 16px 18px 18px;
}

.supplier-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.supplier-info {
    display: grid;
    gap: 6px;
    color: #959595;
    font-size: 13px;
}

/* Sidebar hidden variant */
.equipments-container.sidebar-hidden {
    grid-template-columns: 1fr; /* no sidebar column */
}

.equipments-container.sidebar-hidden .equipments-sidebar {
    display: none;
}

.equipments-container.sidebar-hidden .sidebar-toggle-icon {
    background-color: rgba(126, 96, 0, 0.15);
}

@media (max-width: 1024px) {
    .suppliers-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipments-container {
        grid-template-columns: 1fr;
    }
    .equipments-sidebar {
        display: none;
    }
    .suppliers-grid,
    .suppliers-grid.grid-3 {
        grid-template-columns: 1fr;
    }
}
.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.jobs-title-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jobs-title {
    font-size: 32px;
    font-weight: 500;
    color: #7E6000;
    margin: 0;
}

.jobs-count {
    background-color: #F6EBE4;
    color: #000000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.jobs-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #E8E8E8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 15px; */
    margin-bottom: 25px;
}

.talent-card-header {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 15px;
    align-items: center;
}

.talent-profile-picture {
    width: 100%;
    height: 100px;
    margin-bottom: 30px;
}

.talent-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.talent-name {
    color: #838383;
    font-size: 16px;
    font-weight: 500;
}

.talent-profile-picture img {
    width: 100%;
    height: 100%;
}

.company-logo {
    width: 44px;
    height: 39px;
    background-color: #F6EBE4;
    border-radius: 10px;
    flex-shrink: 0;
}

.job-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.company-name {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    /* margin-bottom: 5px; */
}

.posted-time {
    font-size: 14px;
    color: #7E6000;
    font-weight: 500;
}

.job-title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 32px;
    line-height: 1.3;
}

.job-details {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2c3e50;
}

.job-icon {
    color: #7f8c8d;
    flex-shrink: 0;
}

.job-description {
    font-size: 14px;
    color: #959595;
    line-height: 1.5;
    margin-bottom: 30px;
}

.apply-btn {
    /* width: 100%; */
    padding: 13px 44px;
    background-color: #7E6000;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: #725800;
}

/* Responsive Design for Jobs */
@media (max-width: 768px) {
    .jobs-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jobs-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-details {
        gap: 15px;
    }
    
    .jobs-title {
        font-size: 28px;
    }
}
