/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo span{
    color: #8B4513 !important;

}

.footer-logo span {
    color: #8B4513 !important;

}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8B4513;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B4513;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.nav-menu.mobile-active {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    gap: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #2e1300;
    color: white;
}

.btn-primary:hover {
    background: #654321;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #8B4513 0%, #1e7e34 100%); */
        background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8B4513;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.section-description {
    font-size: 1.1rem;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 3rem 2rem;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-card p {
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #654321;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #8B4513;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Project Showcase Section */
.project-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Modern Slider Wrapper */
.modern-slider-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Slider Container */
.slider-main-container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.slide-track {
    display: flex;
    width: 1000%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-item {
    min-width: 10%;
    height: 100%;
    display: flex;
    position: relative;
    opacity: 1;
}

.slide-item.active {
    opacity: 1;
}

/* Image Container */
.slide-image-container {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
    padding: 20px;
}

.slide-item:hover .slide-img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(0,0,0,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-item:hover .image-overlay {
    opacity: 1;
}

/* Slide Info */
.slide-info {
    flex: 0.8;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.slide-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: linear-gradient(to bottom, #8B4513, #654321);
    border-radius: 2px;
}

.slide-category {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #654321);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.slide-meta {
    display: flex;
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-size: 0.95rem;
}

.meta-item i {
    color: #8B4513;
}

/* Navigation Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #8B4513;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.nav-btn:hover {
    background: #8B4513;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.3);
}

/* Thumbnail Navigation */
.thumbnail-nav {
    margin-bottom: 2rem;
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: #8B4513;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 0.3rem;
    font-size: 0.7rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.thumbnail:hover .thumb-overlay {
    transform: translateY(0);
}

/* Progress Bar */
.slider-progress {
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8B4513, #654321);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.showcase-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
}

.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature {
    margin-bottom: 2rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.feature p {
    color: #000;
    line-height: 1.8;
}

.choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

.image-placeholder {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.image-placeholder i {
    font-size: 4rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: #000;
    font-style: italic;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
}

.about-intro p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.company-stats .stat-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.company-stats .stat-item h3 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.company-stats .stat-item p {
    color: #000;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.position {
    color: #8B4513;
    font-weight: 600;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.partner-item {
    background: #8B4513;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    color: white;
}

/* Services Page Styles */
.services-content {
    padding: 80px 0;
}

.service-detail {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-detail .service-icon {
    margin-bottom: 1rem;
}

.service-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-detail p {
    color: #000;
    line-height: 1.8;
}

.additional-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-service {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.special-service i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.special-service h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
}

.special-service p {
    color: #000;
    line-height: 1.8;
}

/* Portfolio Page Styles */
.portfolio-content {
    padding: 80px 0;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-stats .stat-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.portfolio-stats .stat-item h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.client-item:hover {
    transform: translateY(-5px);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.client-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.client-item p {
    color: #000;
    line-height: 1.8;
}

.project-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.gallery-caption p {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.6;
}

.gallery-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    color: #000;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-text p {
    color: #000;
    line-height: 1.8;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-placeholder {
    background: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 4rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #000;
    font-size: 1.1rem;
}

/* Footer Styles */
.footer {
    background: #fff; /* Changed from black to white */
    color: rgba(0, 0, 0, 0.986); /* Adjusted text color for contrast */
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    margin-right: 0.5rem;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    color: #8B4513;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #8B4513;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.footer .contact-item i {
    color: #8B4513;
    margin-top: 2px;
}

.footer .contact-item span {
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box .stat-number {
        font-size: 2.2rem;
    }
    
    .why-choose {
        padding: 80px 0;
    }
    
    .choose-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .project-showcase {
        padding: 80px 0;
    }
    
    .modern-slider-wrapper {
        padding: 0 15px;
    }
    
    .main-slider {
        height: 500px;
    }
    
    .slide-item {
        flex-direction: column;
    }
    
    .slide-image-container {
        flex: 1;
        height: 60%;
    }
    
    .slide-info {
        flex: 1;
        height: 40%;
        padding: 2rem 1.5rem;
        justify-content: flex-start;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .slide-meta {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .slider-controls {
        left: 1rem;
        right: 1rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .thumbnail-container {
        gap: 0.5rem;
        padding: 0.8rem;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    
    .project-showcase {
        padding: 60px 0;
    }
    
    .modern-slider-wrapper {
        padding: 0 10px;
    }
    
    .main-slider {
        height: 400px;
    }
    
    .slide-item {
        flex-direction: column;
    }
    
    .slide-image-container {
        height: 50%;
    }
    
    .slide-info {
        height: 50%;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .slide-info::before {
        display: none;
    }
    
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slide-category {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .slide-meta {
        justify-content: center;
        gap: 1rem;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .thumbnail {
        width: 50px;
        height: 35px;
    }
    
    .thumbnail-container {
        gap: 0.3rem;
        padding: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .thumb-overlay {
        font-size: 0.6rem;
        padding: 0.2rem;
    }

/* Extra Small Mobile */
@media (max-width: 400px) {
    .main-slider {
        height: 350px;
    }
    
    .slide-info {
        padding: 1rem 0.8rem;
    }
    
    .slide-title {
        font-size: 1.3rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
    }
    
    .thumbnail {
        width: 40px;
        height: 30px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .main-slider {
        height: 700px;
    }
    
    .slide-info {
        padding: 5rem 4rem;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .nav-btn {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
    }
    
    .thumbnail {
        width: 100px;
        height: 75px;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .main-slider {
        height: 450px;
    }
    
    .slide-item {
        flex-direction: row;
    }
    
    .slide-image-container {
        flex: 1.5;
        height: 100%;
    }
    
    .slide-info {
        flex: 1;
        height: 100%;
        padding: 2rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-btn {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .thumbnail.active {
        box-shadow: 0 4px 15px rgba(44, 95, 45, 0.4);
    }
}
@media (max-width: 500px) {

    .slide-item {
    min-width: 10%;
    height: 71%;
    display: flex;
    position: relative;
    opacity: 1;
}
}
/* Additional responsive improvements */
@media (max-width: 480px) {

    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
}

/* Smooth animations */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}
}