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

:root {
    --gold: #D6AB64;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    background: var(--black);
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* Global Background Video - Covers entire page except hero (which has its own video) */
.global-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    opacity: 0.5;
}

/* Navbar Styles */
.navbar {
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    background: transparent;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.nav-menu {
    flex: 1;
    max-width: 0;
    overflow: visible;
    opacity: 0;
    transition: max-width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu.active {
    max-width: 800px;
    opacity: 1;
}

.burger-menu {
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.nav-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.nav-items li {
    margin: 0;
    text-align: center;
}

.nav-items a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 15px;
}

.nav-items a:hover {
    color: var(--gold);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    border: 2px solid var(--gold);
    border-radius: 5px;
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 1002;
}

.dropdown.active .dropdown-menu {
    max-height: 300px;
    padding: 10px 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    font-size: 14px;
    color: var(--gold);
    padding: 10px 20px;
}

.dropdown-menu a:hover {
    background: rgba(214, 171, 100, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -220px;
    padding-top: 220px;
}

.hero-video {
    position: absolute;
    top: -220px;
    left: 0;
    width: 100%;
    height: calc(100vh + 220px);
    object-fit: cover;
    z-index: -1;
}

/* Desktop Video - Show on screens larger than 768px */
.hero-video-desktop {
    display: block;
}

/* Mobile Video - Hide on desktop */
.hero-video-mobile {
    display: none;
}

/* Mobile Video - Show on screens 768px and below */
@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
    }
}
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 0 0px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text {
    margin-bottom: 40px;
    margin-left: 0%;
}

.hero-text h1 {
    font-size: 80px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    flex-direction: row;
    gap: 20px;
    line-height: 1.2;
    white-space: nowrap;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0%;
}

.hero-text h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    margin-top: 20px;
    letter-spacing: 1px;
}

/* iPhone-style Text Switcher */
.text-switcher {
    position: relative;
    display: inline-block;
    height: 100px;
    min-width: 700px;
    overflow: hidden;
}

.switch-word {
    display: block;
    color: var(--gold);
    position: absolute;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.switch-word.active {
    opacity: 1;
    transform: translateY(0);
}

.switch-word.exit {
    opacity: 0;
    transform: translateY(-100%);
}

.cta-button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 171, 100, 0.3);
    text-decoration: none;
}

/* About Section */
.about {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    margin-top: 50px;
    background: transparent;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.floating-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(214, 171, 100, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

.about-content h2 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--white);
}

.read-more-button {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
}

.read-more-button:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 171, 100, 0.3);
    text-decoration: none;
}

/* Clients Section */
.clients {
    position: relative;
    padding: 100px 0;
    background: transparent;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.clients-container h2 {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex: 0 0 250px;
    height: 150px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 280px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(214, 171, 100, 0.3));
}

.logo-placeholder {
    width: 200px;
    height: 100px;
    background: rgba(214, 171, 100, 0.1);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    border-radius: 10px;
}

/* Services Section */
.services {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.services-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    overflow: hidden;
    z-index: 0;
}

.services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.services-container h2 {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--gold);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 171, 100, 0.3);
    background: rgba(214, 171, 100, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.services-container > .read-more-button {
    display: block;
    margin: 0 auto;
    text-decoration: none;
}

/* Blogs Section */
.blogs {
    position: relative;
    padding: 100px 0;
    background: transparent;
}

.blogs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.blogs-container h2 {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.blog-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--gold);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(214, 171, 100, 0.3);
}

.blog-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(214, 171, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 15px;
    flex: 1;
}

.blog-date {
    font-size: 12px;
    color: var(--gold);
    font-style: italic;
}

.blogs-container > .read-more-button {
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    background: transparent;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.contact-container h2 {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    border-radius: 5px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    border-top: 3px solid var(--gold);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-column:hover h3::after {
    width: 80px;
}

/* About Column */
.footer-about .footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(214, 171, 100, 0.3));
    transition: transform 0.3s ease;
}

.footer-about .footer-logo:hover {
    transform: scale(1.05);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

/* Links Column */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    align-self: flex-start;
}

.footer-contact li > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.footer-contact strong {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Social Media Column */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(214, 171, 100, 0.05);
    border: 1px solid rgba(214, 171, 100, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 171, 100, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: rgba(214, 171, 100, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(214, 171, 100, 0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(214, 171, 100, 0.2);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-about .footer-logo {
        margin: 0 auto 20px;
    }
    
    .footer-about h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        text-align: left;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 25px 20px;
    }
    
    .footer-bottom p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 50px 0 25px;
    }
    
    .footer-container {
        gap: 35px;
        padding: 0 15px;
    }
    
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-about .footer-logo {
        width: 120px;
    }
    
    .footer-links a,
    .footer-contact strong,
    .social-links a {
        font-size: 14px;
    }
    
    .footer-contact span {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* RTL Support for Footer */
body.rtl .footer-links a {
    padding-left: 0;
    padding-right: 20px;
}

body.rtl .footer-links a::before {
    left: auto;
    right: 0;
    content: '←';
}

body.rtl .footer-links a:hover {
    padding-left: 0;
    padding-right: 25px;
}

body.rtl .social-links a:hover {
    transform: translateX(-5px);
}

body.rtl .footer-column h3::after {
    left: auto;
    right: 0;
}

body.rtl .footer-about h3::after {
    right: 50%;
    transform: translateX(50%);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(214, 171, 100, 0.2);
}

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

.submit-button {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    align-self: center;
    text-decoration: none;
}

.submit-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 171, 100, 0.3);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid var(--gold);
}

.footer-content p {
    color: var(--white);
    font-size: 14px;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 70px;
    }
    
    .text-switcher {
        min-width: 600px;
    }
}

/* Tablet Landscape & Small Desktop */
@media (max-width: 1024px) {
    .logo img {
        height: 140px;
    }
    
    .hero-text h1 {
        font-size: 60px;
    }
    
    .text-switcher {
        min-width: 500px;
        height: 80px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-cards {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo img {
        height: 100px;
    }
    
    /* Mobile Navigation - Full Screen Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        z-index: 999;
        max-width: 100%;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
        opacity: 1;
    }
    
    .nav-items {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        padding: 40px 30px;
        white-space: normal;
    }
    
    .nav-items li {
        width: 100%;
        text-align: center;
    }
    
    .nav-items a {
        font-size: 20px;
        padding: 15px 20px;
        display: block;
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .dropdown-menu a {
        font-size: 18px;
        padding: 12px 20px;
        min-height: 48px;
    }
    
    .burger-menu {
        z-index: 1001;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 36px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        white-space: normal;
    }
    
    .text-switcher {
        height: 50px;
        min-width: auto;
        width: 100%;
    }
    
    .hero-text h3 {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Sections Padding */
    .about-container,
    .clients-container,
    .services-container,
    .blogs-container,
    .contact-container {
        padding: 0 20px;
    }
    
    /* Typography */
    .about-content h2,
    .clients-container h2,
    .services-container h2,
    .blogs-container h2,
    .contact-container h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* Images */
    .floating-image {
        max-width: 350px;
    }
    
    /* Services */
    .services-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    /* Buttons */
    .read-more-button,
    .submit-button {
        padding: 15px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Forms */
    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    /* Client Slider */
    .client-logo {
        flex: 0 0 200px;
        height: 120px;
        margin: 0 20px;
    }
    
    .logo-placeholder {
        width: 160px;
        height: 80px;
        font-size: 16px;
    }
}

/* Large Mobile Phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 80px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .text-switcher {
        height: 40px;
    }
    
    .hero-text h3 {
        font-size: 16px;
    }
    
    .about-content h2,
    .clients-container h2,
    .services-container h2,
    .blogs-container h2,
    .contact-container h2 {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 15px;
    }
    
    .floating-image {
        max-width: 280px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .nav-items a {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* Small Mobile Phones */
@media (max-width: 375px) {
    .logo img {
        height: 70px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .text-switcher {
        height: 35px;
    }
    
    .hero-text h3 {
        font-size: 14px;
    }
    
    .about-content h2,
    .clients-container h2,
    .services-container h2,
    .blogs-container h2,
    .contact-container h2 {
        font-size: 24px;
    }
    
    .nav-items a {
        font-size: 16px;
        padding: 12px 15px;
    }
}

/* Translation Button Styles */
.translate-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    white-space: nowrap;
}

.translate-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.translate-text {
    display: inline-block;
}

/* RTL Support */
body.rtl {
    direction: rtl;
}



body.rtl .hero-content {
    align-items: flex-end;
    padding: 0 50px 0 20px;
}

body.rtl .hero-text {
    text-align: right;
    align-items: flex-end;
}

body.rtl .hero-text h1 {
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
}

body.rtl .hero-text h1 > span:first-child {
    order: 1;
    unicode-bidi: plaintext;
}

body.rtl .hero-text h1 .text-switcher {
    order: 2;
}

body.rtl .text-switcher {
    text-align: right;
}

body.rtl .switch-word {
    text-align: right;
    unicode-bidi: plaintext;
}

body.rtl .cta-button {
    align-self: flex-start !important;
}

body.rtl .about-container {
    direction: rtl;
}

body.rtl .dropdown-menu {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* Mobile Translation Button */
@media (max-width: 768px) {
    .translate-btn {
        padding: 10px 18px;
        font-size: 13px;
        min-height: 44px;
    }
}

/* Landscape Mode Optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .text-switcher {
        height: 45px;
    }
    
    .nav-menu.active {
        padding-top: 60px;
    }
}


* {
    max-width: 100%;
}
.nav-menu,
.dropdown-menu,
html,
body {
    max-width: none;
}



/* Force Push */

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    text-align: center;
    background: transparent;
    margin-top: -100px;
}

.page-header-content h1 {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header-content p {
    font-size: 20px;
    color: var(--white);
    opacity: 0.9;
}

/* Clients Page Styles */
.clients-page {
    position: relative;
    padding: 80px 0 120px;
    background: transparent;
}

.clients-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.client-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(214, 171, 100, 0.4);
    border-color: var(--white);
}

.client-card-image {
    width: 100%;
    height: 250px;
    background: rgba(214, 171, 100, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 2px solid var(--gold);
}

.client-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.client-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.client-card-content h3 {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.client-card-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--white);
    font-size: 20px;
}

/* Clients Page Responsive */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 35px;
    }
    
    .page-header-content h1 {
        font-size: 48px;
    }
    
    .page-header-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .page-header-content p {
        font-size: 16px;
    }
    
    .clients-page {
        padding: 60px 0 80px;
    }
    
    .clients-page-container {
        padding: 0 20px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .client-card-image {
        height: 200px;
        padding: 20px;
    }
    
    .client-card-content {
        padding: 25px;
    }
    
    .client-card-content h3 {
        font-size: 22px;
    }
    
    .client-card-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header-content h1 {
        font-size: 28px;
    }
    
    .page-header-content p {
        font-size: 14px;
    }
    
    .clients-page {
        padding: 50px 0 60px;
    }
    
    .client-card-image {
        height: 180px;
        padding: 15px;
    }
    
    .client-card-content {
        padding: 20px;
    }
    
    .client-card-content h3 {
        font-size: 20px;
    }
    
    .client-card-content p {
        font-size: 14px;
    }
}

/* RTL Support for Clients Page */
body.rtl .clients-grid {
    direction: rtl;
}

body.rtl .client-card-content {
    text-align: right;
}
