/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7); 
    /* backdrop-filter: blur(10px); */
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(224, 224, 224);
}



.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%; 
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    padding-top: 5px;
    height: 50px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 18px rgba(220,140,60,0.09);
    transition: transform 0.3s ease;
    object-fit: contain;
}


.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(220, 140, 60);
    transition: box-shadow 0.2s, transform 0.2s;
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    box-shadow: 0 8px 38px rgba(220,140,60,0.18);
    transform: scale(1.04);
    color:  rgb(220, 140, 60);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background:  rgb(220, 140, 60);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(245, 245, 245, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2); 
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    color: #1a1a1a;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}
.hero-logo {
    display: none;
}
/* Desktop and up: show and center image */
@media (min-width: 768px) {
    .hero-logo {
        display: block;
        margin: 0 auto 2rem auto;             /* centers image & adds 2rem below */
        width: clamp(300px, 40vw, 600px);     /* much bigger size */
        height: auto;                         /* maintain aspect ratio */
    }
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background:  rgb(220, 140, 60);
    color: #000000;
    border-color:  rgb(220, 140, 60);
}

.btn-primary:hover {
    background: transparent;
    color:  rgb(220, 140, 60);
    border-color:  rgb(220, 140, 60);
}

.btn-outline {
    background: transparent;
    color: black;
    border-color: black;
}

.btn-outline:hover {
    background: black;
    color: #ffffff;
}

.btn-full {
    width: 100%;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll i {
    font-size: 2rem;
    color:  rgb(220, 140, 60);
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-line {
    width: 60px;
    height: 4px;
    background:  rgb(220, 140, 60);
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #444444;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f9f9f9; /* Light grey background */
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color:  rgb(220, 140, 60);
}

.about-closing {
    font-weight: 600;
    color:  rgb(220, 140, 60);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: #fffdfd;
}

.stat-label {
    font-size: 1rem;
    color: #d0d0d0;
}


.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}


.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color:  rgb(220, 140, 60);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #444444;
    font-weight: 500;
}

/* === TEAM SECTION === */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
    color: #222;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-member.main-employee {
    min-height: 420px; /* Larger cards for founders */
    box-shadow: 0 10px 30px rgba(220, 140, 60, 0.15);
    border: 2px solid rgba(220, 140, 60, 0.1);
    transform: scale(1);
    transition: all 0.3s ease;
}

.team-member.main-employee:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 140, 60, 0.25);
}

.team-member.regular-employee {
    min-height: 280px; /* Smaller cards for employees */
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    transform: scale(0.9);
}

.team-member.regular-employee .member-description {
    display: none; /* Hide description for regular employees */
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-member.main-employee .member-image-wrapper {
    height: 280px;
   
}

.team-member.regular-employee .member-image-wrapper {
    height: 200px;
    border-radius: 5px;
    width: 200px;
    margin: 0 auto;
}

.team-member.regular-employee .member-image {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-image {
    width: 100%;
    height: 125%;
    object-fit: fill;
}

.member-info {
    padding: 1.5rem;
}

.team-member.main-employee .member-info {
    background: linear-gradient(135deg, rgba(220, 140, 60, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2rem 1.5rem;
}

.team-member.regular-employee .member-info {
    padding: 1rem;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 5px 5px;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.team-member.main-employee .member-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.team-member.regular-employee .member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(220, 140, 60);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member.main-employee .member-role {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.8px;
}

.team-member.regular-employee .member-role {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.member-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Mobile Responsiveness for Team Section */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .member-image-wrapper {
        height: 250px;
    }
    
    .member-info {
        padding: 1.25rem;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-image-wrapper {
        height: 300px;
    }
    
    .team-member.main-employee,
    .team-member.regular-employee {
        min-height: auto;
    }
}

/* Services Section */
.services {
    background: #ffffff;
    background-image: url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
}

.services .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}


.service-icon {
    width: 80px;
    height: 80px;
    background:  rgb(220, 140, 60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}


.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-description {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: #cccccc;
    opacity: 0.3;
}


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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    .logo-image {
        height: 50px;
    }

    .hamburger {
        display: flex;
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        padding: 8px;
        z-index: 1002;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        z-index: 999;
        border-top: 1px solid #e0e0e0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #e0e0e0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background:  rgb(220, 140, 60);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background:  rgb(220, 140, 60);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        padding: 1.5rem;
        flex: 1;
    }

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

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


    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card,
    .feature-card {
        padding: 1.5rem;
    }

}

/* === PROJECTS SECTION === */
.projects-section {
    padding: 120px 0 80px;
    background: #fff;
    color: #000;
}

.projects-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #222;
    letter-spacing: -1px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #fff;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.project-image.lazy-load-main {
    opacity: 0.7;
    filter: blur(1px);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* === PROJECT MODAL === */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    scroll-behavior: smooth; /* Smooth scrolling */
}

.project-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background: #fff;
    min-height: 100vh;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: rgb(220, 140, 60);
}

/* Modal Image Viewer */
.modal-image-viewer {
    position: relative;
    width: 100%;
    height: 75vh; /* Reduced from 100vh to 75vh to show content below */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading spinner for main image */
.modal-image-viewer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid rgb(220, 140, 60);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.modal-image-viewer.loading::before {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll indicator */
.modal-image-viewer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.modal-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Lazy loading states for grid images */
.grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    background: #f0f0f0;
}

.grid-image.lazy-load {
    opacity: 0.7;
    filter: blur(2px);
}

.grid-image.loaded {
    opacity: 1;
    filter: blur(0);
}

.grid-image.error {
    opacity: 0.5;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-image.error::after {
    content: 'Failed to load';
    color: #999;
    font-size: 0.9rem;
}

.modal-image-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(220, 140, 60, 0.9);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.modal-nav-btn:hover {
    background: rgb(220, 140, 60);
    transform: scale(1.1);
}

.image-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Modal Project Info */
.modal-project-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.modal-project-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 2rem;
    text-align: center;
}

.project-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
}

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

.detail-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.detail-item strong {
    color: rgb(220, 140, 60);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Modal Image Grid */
.modal-image-grid {
    padding: 80px 0;
    background: #fff;
}

.modal-image-grid h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 3rem;
}

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

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    background: #f0f0f0;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .project-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .project-image-wrapper {
        height: 250px;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
    
    .modal-image-viewer {
        height: 60vh; /* Smaller on mobile to show more content below */
    }
    
    .modal-image-controls {
        padding: 0 20px;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .modal-project-info h2 {
        font-size: 2.2rem;
    }
    
    .project-description p {
        font-size: 1.1rem;
    }
    
    .project-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .grid-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .projects-title {
        font-size: 2rem;
    }
    
    .modal-project-info {
        padding: 60px 0;
    }
    
    .modal-image-grid {
        padding: 60px 0;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Video Section */
.modal-video-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.modal-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.3) 70%);
    pointer-events: none;
}

.modal-video-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 3rem;
    display: none; /* Hide title for cleaner full-width look */
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-container-fullwidth {
    max-width: 85%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.project-video {
    width: 100%;
    height: auto;
    min-height: 350px;
    background: #000;
    display: block;
    border-radius: 20px;
}

/* Modal Spacing Section */
.modal-spacing {
    height: 0px;
    background: #f8f9fa;
}

/* Video lazy loading */
.project-video.lazy-video {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-video.lazy-video.loaded {
    opacity: 1;
}

.video-loading-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: videoLoading 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.2rem;
    border-radius: 20px;
}

@keyframes videoLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Modal Additional Slider Section */
.modal-additional-slider {
    padding: 80px 0;
    background: #fff;
}

.modal-additional-slider h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 3rem;
}

.additional-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.additional-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.additional-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.slider-item {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-nav-btn {
    background: rgb(220, 140, 60);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn:hover {
    background: rgb(184, 115, 48);
    transform: scale(1.1);
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .modal-video-section {
        padding: 40px 0;
    }
    
    .video-container-fullwidth {
        max-width: 95%;
        border-radius: 15px;
    }
    
    .project-video {
        min-height: 220px;
        border-radius: 15px;
    }
    
    .modal-spacing {
        height: 0px;
    }
    
    .modal-additional-slider {
        padding: 60px 0;
    }
    
    .modal-video-section h3,
    .modal-additional-slider h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .video-loading-placeholder {
        height: 220px;
        font-size: 1rem;
        border-radius: 15px;
    }
}
    
    .slider-item {
        flex: 0 0 250px;
        height: 200px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

@media (max-width: 480px) {
    .additional-slider {
        gap: 1rem;
    }
    
    .slider-item {
        flex: 0 0 200px;
        height: 150px;
    }
    
    .video-container-fullwidth {
        max-width: 98%;
    }
    
    .project-video {
        min-height: 200px;
    }
    
    .video-loading-placeholder {
        height: 200px;
    }
}


/* Features Section */
.features {
    background: #ffffff;
    padding: 100px 0;
}

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

.feature-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

/* Contact Us Section Styles */
.contact-section {
    background: #f7f6f3;
    padding: 100px 0 80px;
    color: #222;
    position: relative;
    overflow: hidden;
}
.contact-section .section-header {
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    width: 100%;
}
.contact-details p {
    background: none;
    border-radius: 16px;
    box-shadow: none;
    border: 2px solid #e0e0e0;
    padding: 1.1rem 2.8rem;
    min-width: 320px;
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 500;
    font-size: 1.02rem;
    letter-spacing: 0.01em;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInContact 0.7s ease forwards;
}
.contact-details p:nth-child(1) { animation-delay: 0.2s; }
.contact-details p:nth-child(2) { animation-delay: 0.4s; }
.contact-details p:nth-child(3) { animation-delay: 0.6s; }
.contact-details a {
    color: rgb(220, 140, 60);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08em;
    transition: color 0.2s;
    position: relative;
    word-break: break-all;
}
.contact-details a:hover {
    color: #d28e27;
    text-decoration: none;
}
.contact-details p:hover {
    border-color: rgb(220, 140, 60);
    box-shadow: 0 0 16px 0 rgba(220,140,60,0.18);
    transform: scale(1.025);
    background: none;
}
@keyframes fadeInContact {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .contact-details {
        padding: 0 8px;
        font-size: 0.98rem;
        max-width: 98vw;
    }
    .contact-details p {
        padding: 0.7rem 0.7rem;
        min-width: 0;
        max-width: 98vw;
        font-size: 0.98rem;
    }
}


.feature-icon {
    width: 70px;
    height: 70px;
    background: rgb(220, 140, 60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}


.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    color: #444444;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(220, 140, 60);
    font-weight: bold;
    font-size: 1.1rem;
}


/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: rgb(220, 140, 60);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}


.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem;
    }
}