/* ============================================
}
    }

/* ============================================
   SERVICES PAGE STYLING
   ============================================ */

.services-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(253, 185, 19, 0.2);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FDB913;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

}
/* ============================================
   TDR QATAR - PROFESSIONAL CINEMATIC THEME
   Black & Yellow Brand Colors
   ============================================ */

/* General Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Cinematic Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(253, 185, 19, 0.6);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Body with Animated Dark Background */
body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header with Yellow Accent */
header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 4px 20px rgba(253, 185, 19, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #FDB913;
    animation: fadeIn 1s ease-in;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 0 15px rgba(253, 185, 19, 0.5));
    transition: all 0.4s ease;
    animation: scaleIn 0.8s ease-out;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(253, 185, 19, 0.9));
}

/* Navigation with Cinematic Hover */
nav ul,
.navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a,
.navigation a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

nav a::before,
.navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FDB913, #F7941D);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

nav a:hover::before,
.navigation a:hover::before,
nav a.active::before,
.navigation a.active::before {
    width: 100%;
}

nav a:hover,
.navigation a:hover {
    color: #FDB913;
    text-shadow: 0 0 10px rgba(253, 185, 19, 0.5);
}

nav a.active,
.navigation a.active {
    color: #FDB913;
}

/* Hero Section - Cinematic */
.hero,
.hero-section {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 0.85)), 
                url('../images/hero-bg-correct.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 185, 19, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.hero-overlay {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(253, 185, 19, 0.7), 0 5px 15px rgba(0, 0, 0, 0.8);
    animation: scaleIn 1s ease-out;
    background: linear-gradient(135deg, #FDB913, #F7941D, #FDB913);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scaleIn 1s ease-out, gradientShift 5s ease infinite;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: #f0f0f0;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(253, 185, 19, 0.3);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: #FDB913;
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FDB913;
    text-shadow: 0 0 20px rgba(253, 185, 19, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(253, 185, 19, 0.6);
    animation: scaleIn 1s ease-out 0.3s both;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #FDB913;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons with Glow Effect */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FDB913, #F7941D);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(253, 185, 19, 0.4);
    animation: glow 2s ease-in-out infinite, fadeInUp 1s ease-out 0.9s both;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(253, 185, 19, 0.7);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.85)),
                url('../images/hero-bg-correct.jpg') center/cover;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
    animation: fadeIn 0.8s ease-out;
    border-bottom: 4px solid #FDB913;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FDB913;
    text-shadow: 0 0 20px rgba(253, 185, 19, 0.5);
    animation: slideInLeft 0.8s ease-out;
    letter-spacing: 2px;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #FDB913;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(253, 185, 19, 0.4);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 300;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.heading-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FDB913, #F7941D, transparent);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Content Sections */
.content-section,
.about-content-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.about-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(20, 20, 20, 0.98));
    padding: 3rem;
    margin-bottom: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-left: 5px solid #FDB913;
    transition: all 0.4s ease;
    animation: slideInLeft 0.6s ease-out;
}

.about-box:nth-child(even) {
    border-left: none;
    border-right: 5px solid #F7941D;
    animation: slideInRight 0.6s ease-out;
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(253, 185, 19, 0.3);
}

.about-box h2,
.about-box h4 {
    font-size: 2.2rem;
    color: #FDB913;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(253, 185, 19, 0.3);
}

.about-box h4 {
    font-size: 1.8rem;
}

.about-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

/* Projects Section */
.projects-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.project {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.98));
    padding: 3.5rem;
    margin-bottom: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-top: 4px solid #FDB913;
    animation: scaleIn 0.6s ease-out;
    transition: all 0.4s ease;
}

.project:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(253, 185, 19, 0.4);
}

.project h1, .project h2 {
    color: #FDB913;
    margin-bottom: 2rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(253, 185, 19, 0.3);
}

.project h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
}

.project h2 {
    font-size: 2.3rem;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.project-images img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(253, 185, 19, 0.5);
    border-color: #FDB913;
}

/* Old client grid CSS removed - using carousel instead */
/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.98));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(253, 185, 19, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #FDB913;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.95));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(253, 185, 19, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FDB913;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(253, 185, 19, 0.3);
    border-radius: 8px;
    color: #f0f0f0;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FDB913;
    box-shadow: 0 0 15px rgba(253, 185, 19, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #FDB913, #F7941D);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(253, 185, 19, 0.4);
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 185, 19, 0.6);
}

.contact-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(253, 185, 19, 0.2);
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(253, 185, 19, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h3 {
    color: #FDB913;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-info-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 4rem 0 2rem;
    border-top: 3px solid #FDB913;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #FDB913;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FDB913;
    padding-left: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #d0d0d0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-contact strong {
    color: #FDB913;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 185, 19, 0.2);
}

.copyright {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin: 0;
}



/* ============================================
   CLIENT LOGOS CAROUSEL
   ============================================ */

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(26, 26, 26, 0.5);
    padding: 3rem 0;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 1), transparent);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(26, 26, 26, 1), transparent);
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    min-width: 150px;
    max-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FDB913;
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(100%);
}

/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #FDB913;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   RESPONSIVE MOBILE STYLES
   ============================================ */

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        padding: 80px 0 20px 0;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }

    .navigation.active {
        right: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(253, 185, 19, 0.1);
    }

    .navigation a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        text-align: left;
        transition: all 0.3s ease;
    }

    .navigation a:hover,
    .navigation a.active {
        background: rgba(253, 185, 19, 0.1);
        padding-left: 2.5rem;
    }

    .hero-section {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 250px;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }

    .clients-slider {
        padding: 2rem 0;
    }

    .clients-track {
        animation-duration: 20s;
        gap: 2rem;
    }

    .client-logo {
        min-width: 120px;
        max-width: 120px;
        height: 60px;
        padding: 0.5rem;
    }

    .client-logo img {
        max-height: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 2rem 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }

    .navigation {
        width: 100%;
    }

    .gallery-item {
        height: 200px;
    }

    .client-logo {
        min-width: 100px;
        max-width: 100px;
        height: 50px;
    }

    .client-logo img {
        max-height: 40px;
    }

    button[type="submit"] {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .navigation {
        padding: 60px 0 10px 0;
        overflow-y: auto;
    }

    .navigation a {
        padding: 0.8rem 2rem;
    }

    .hero-section {
        min-height: 100vh;
    }

    .services-content-section {
        padding: 3rem 0;
    }
    
    .service-detail {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
    
    .service-detail h4 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-detail p {
        font-size: 1rem;
        text-align: left;
    }
    
    .service-image {
        margin-bottom: 1.5rem;
    }

}
