/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Language Selector - Custom Dropdown */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-button {
    background: transparent;
    border: 1px solid #ff6b35;
    color: #ff6b35;
    padding: 8px 30px 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.language-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ff6b35;
    transition: transform 0.3s ease;
}

.language-button:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff8c42;
    transform: translateY(-1px);
}

.language-button:hover::after {
    border-top-color: #ff8c42;
}

.language-dropdown.open .language-button::after {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ff6b35;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.open .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 12px 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-option:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.language-option.active {
    background: #ff6b35;
    color: white;
}

.language-option:first-child {
    border-radius: 12px 12px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 12px 12px;
}

/* Hide the original select */
.language-select {
    display: none;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #fff8f3 0%, #ffe5d6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero-graphic i {
    font-size: 5rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff3e0;
    border-radius: 15px;
    border: 1px solid #ffcc80;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-graphic {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic i {
    font-size: 4rem;
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fdf2e9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffcc80;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: white;
}

.projects-container {
    position: relative;
}

.projects-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ff6b35;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    color: #ff6b35;
    font-size: 18px;
}

.projects-nav:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.projects-nav-left {
    left: -25px;
}

.projects-nav-right {
    right: -25px;
}

.projects-nav:disabled {
    display: none;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #ffcc80;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
    border-color: #ff6b35;
}

.projects-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 350px;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.projects-grid::-webkit-scrollbar {
    height: 8px;
}

.projects-grid::-webkit-scrollbar-track {
    background: #ffe5d6;
    border-radius: 4px;
}

.projects-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    border-radius: 4px;
}

.projects-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e55100 0%, #ff8c42 100%);
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    transition: transform 0.3s ease;
    background: white;
    width: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card:hover .project-card-image {
    transform: scale(1.05);
}

.project-image {
    height: 320px;
    background: #f8f9fa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.project-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.project-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-overlay {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-overlay p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.project-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-btn:hover {
    background: linear-gradient(135deg, #e55100 0%, #ff8c42 100%);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff8f3;
}

.contact-content-single {
    display: flex;
    justify-content: center;
}

.contact-content-single .contact-info {
    max-width: 900px;
    text-align: center;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ffcc80;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #e55100 0%, #ff8c42 100%);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-details {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .projects-grid {
        grid-auto-columns: 300px;
    }
    
    .projects-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .language-selector {
        position: fixed;
        top: 15px;
        right: 70px;
        z-index: 1001;
    }

    .language-button {
        padding: 6px 20px 6px 10px;
        font-size: 12px;
        border-radius: 15px;
        min-width: 50px;
        gap: 4px;
    }
    
    .language-button::after {
        border-left-width: 3px;
        border-right-width: 3px;
        border-top-width: 4px;
    }
    
    .language-options {
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
        right: 0;
        left: auto;
        min-width: 60px;
    }
    
    .language-option {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .language-option:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    .language-option:last-child {
        border-radius: 0 0 8px 8px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        flex-direction: column-reverse;
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        display: none;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto 3rem auto;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-auto-columns: 280px;
        gap: 1rem;
    }

    .project-image {
        height: 250px;
    }

    .project-image-container {
        padding: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-graphic {
        width: 150px;
        height: 150px;
    }

    .hero-graphic i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .projects-filter {
        gap: 0.5rem;
    }

    .projects-grid {
        grid-auto-columns: 250px;
        gap: 1rem;
    }

    .project-image {
        height: 220px;
    }

    .project-image-container {
        padding: 8px;
    }

    .language-selector {
        right: 70px;
        top: 0px;
    }

    .language-button {
        padding: 4px 16px 4px 8px;
        font-size: 11px;
        min-width: 45px;
        gap: 3px;
    }

    .language-options {
        min-width: 50px;
    }

    .language-option {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffe5d6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e55100 0%, #ff8c42 100%);
}

/* Project Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    color: white;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #ffcc80;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1002;
}

.modal-header h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal-header p {
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-image-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.modal-image-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.modal-image-thumbnails {
    display: flex;
    gap: 10px;
}

.modal-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.modal-thumb.active,
.modal-thumb:hover {
    opacity: 1;
    border-color: #ff6b35;
}

.modal-info h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-info h4 {
    color: #333;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.modal-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-tag {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ff6b35;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ff6b35;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.modal-features li {
    padding: 10px 0;
    border-bottom: 1px solid #ffe5d6;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.modal-features li:last-child {
    border-bottom: none;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}



/* Project Detail Styles */
.project-detail-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.back-button-container {
    margin-bottom: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.back-button:hover {
    background: #ff6b35;
    color: white;
    transform: translateX(-5px);
}

.project-header {
    text-align: center;
    margin-bottom: 60px;
}



.project-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}



.project-content {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr;
    gap: 60px;
    margin-bottom: 80px;
}

.project-media {
    position: relative;
}

.main-media {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 600px;
}

.main-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.main-project-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



.project-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.thumbnail.active {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.thumbnail img,
.thumbnail video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.thumbnail:hover img,
.thumbnail:hover video {
    transform: scale(1.05);
}

/* Video thumbnail overlay */
.video-thumbnail {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 53, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    background: rgba(255, 107, 53, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Fullscreen icon for images */
.main-image-container {
    position: relative;
}

.fullscreen-icon {
    position: absolute;
    top: 35px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.main-image-container:hover .fullscreen-icon {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-icon:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: scale(1.1);
}

/* Media Navigation Arrows */
.media-nav-prev,
.media-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.media-nav-prev {
    left: 20px;
}

.media-nav-next {
    right: 20px;
}

.main-image-container:hover .media-nav-prev,
.main-image-container:hover .media-nav-next {
    opacity: 1;
}

.media-nav-prev:hover,
.media-nav-next:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.media-nav-prev.disabled,
.media-nav-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.thumbnail:hover {
    background: rgba(255, 107, 53, 0.1);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
}

.project-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
}

.project-features {
    margin-bottom: 40px;
}

.project-features ul {
    list-style: none;
    padding: 0;
}

.project-features li {
    position: relative;
    padding: 12px 0;
    padding-left: 30px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.project-features li:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 18px;
}

.project-features li:last-child {
    border-bottom: none;
}



.other-projects {
    margin-top: 80px;
    position: relative;
}

.other-projects::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    border-radius: 2px;
}

.other-projects h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.other-projects .scroll-hint {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.7;
}

.other-projects-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.other-projects-grid::-webkit-scrollbar {
    height: 8px;
}

.other-projects-grid::-webkit-scrollbar-track {
    background: #ffe5d6;
    border-radius: 4px;
}

.other-projects-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9800 100%);
    border-radius: 4px;
}

.other-projects-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e55100 0%, #ff8c42 100%);
}

.other-project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 320px;
}

.other-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.other-project-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-project-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.other-project-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.other-project-card:hover .other-project-card-image {
    transform: scale(1.05);
}

.other-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.other-project-card:hover .other-project-overlay {
    opacity: 1;
}

.other-project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    color: #ff6b35;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.other-project-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.other-project-info {
    padding: 25px;
}

.other-project-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Project Detail Responsive */
@media (max-width: 1024px) {
    .project-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .project-detail-section {
        padding: 100px 0 60px;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-content {
        gap: 30px;
    }

    .main-media {
        min-height: 300px;
        max-height: 450px;
    }

    .main-image-container {
        padding: 15px;
    }
    

    
    .project-thumbnails {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .thumbnail {
        height: 100px;
        padding: 6px;
        flex-shrink: 0;
        min-width: 120px;
    }

    /* Hide image thumbnails on mobile, show only videos */
    .thumbnail[data-type="image"] {
        display: none;
    }

    .thumbnail[data-type="video"] {
        display: flex;
    }

    /* Scrollbar styling for video thumbnails */
    .project-thumbnails::-webkit-scrollbar {
        height: 6px;
    }

    .project-thumbnails::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }

    .project-thumbnails::-webkit-scrollbar-thumb {
        background: #ff6b35;
        border-radius: 3px;
    }

    .project-thumbnails::-webkit-scrollbar-thumb:hover {
        background: #e55100;
    }

    .media-nav-prev,
    .media-nav-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .media-nav-prev {
        left: 15px;
    }

    .media-nav-next {
        right: 15px;
    }
    

    
    .other-projects-grid {
        gap: 20px;
    }
    
    .other-project-card {
        width: 280px;
    }
    
    .other-projects h3 {
        font-size: 2rem;
    }
    
    .other-projects::before {
        width: 160px;
        height: 2.5px;
        top: -30px;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 1.8rem;
    }

    .main-media {
        min-height: 250px;
        max-height: 350px;
    }

    .main-image-container {
        padding: 10px;
    }
    

    
    .project-thumbnails {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .thumbnail {
        height: 80px;
        padding: 4px;
        flex-shrink: 0;
        min-width: 100px;
    }

    /* Hide image thumbnails on small mobile, show only videos */
    .thumbnail[data-type="image"] {
        display: none;
    }

    .thumbnail[data-type="video"] {
        display: flex;
    }

    .media-nav-prev,
    .media-nav-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .media-nav-prev {
        left: 10px;
    }

    .media-nav-next {
        right: 10px;
    }
    

    
    .back-button span {
        display: none;
    }
    
    .other-project-card {
        width: 240px;
    }
    
    .other-projects-grid {
        gap: 15px;
    }
    
    .scroll-hint {
        font-size: 0.8rem !important;
    }
    
    .other-projects::before {
        width: 120px;
        height: 2px;
        top: -20px;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 95vw;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: scale(1.1);
}

.video-modal-body {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
}

.modal-video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}

.modal-open {
    overflow: hidden;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: scale(1.1);
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-image-main img {
        height: 200px;
    }
    
    /* Video Modal Responsive */
    .video-modal-content {
        max-width: 98vw;
        max-height: 90vh;
    }
    
    .video-modal-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
    
    .video-modal-body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        max-width: 100vw;
        max-height: 85vh;
        border-radius: 0;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .video-modal-body {
        padding: 10px;
    }
    
    .video-modal-close {
        top: 5px;
        right: 10px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    
    /* Image Modal Responsive */
    .image-modal-close {
        top: 10px;
        right: 10px;
        font-size: 24px;
        width: 40px;
        height: 40px;
    }
    
    .fullscreen-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: 30px;
        right: 15px;
    }
}

/* Feature Item Styles */
.feature-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f1f3f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-weight: 700;
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.feature-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features li:not(.feature-item) {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}