/* Main Styles - Premium White/Grey Theme */
:root {
    --bg-color: #ffffff;
    --text-color: #212529;
    --primary-color: #D4AF37;
    /* Gold */
    --secondary-color: #f8f9fa;
    --accent-color: #0056b3;
    --border-color: #dee2e6;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin-top: 0;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Top Bar */
.top-bar {
    background: #f8f9fa;
    color: #666;
    font-size: 11px;
    font-weight: 500;
    height: 40px;
    position: relative;
    width: 100%;
    z-index: 1001;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar i {
    color: var(--primary-color);
    margin-right: 5px;
    opacity: 0.8;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.sticky {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 5px 0;
}

header.sticky .header-content {
    height: 70px;
}

header.sticky .logo h2 {
    font-size: 22px;
}

/* News Ticker */
.news-ticker {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 40px;
    background: #fdfdfd;
    border-bottom: 1px solid #f0f0f0;
    z-index: 10;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 20px;
}

.ticker-label {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #fff;
    padding: 5px 20px;
    height: auto;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 15;
    position: relative;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
    margin-right: 20px;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    animation: ticker-scroll 40s linear infinite;
    padding-left: 20px;
}

.news-ticker:hover .ticker-text {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Laser Light Effect */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -30%;
    width: 30%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: laserMove 4s ease-in-out infinite alternate;
    z-index: 10;
}

@keyframes laserMove {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

.header-content {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    font-size: 26px;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    color: #1a1a1a;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 35px;
    position: relative;
}

nav ul li a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #444;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
    border: 1px solid #f0f0f0;
    padding: 10px 0;
    border-radius: 12px;
    animation: fadeInDown 0.3s ease;
    z-index: 2000;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: #444 !important;
    padding: 12px 25px;
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: var(--primary-color) !important;
    padding-left: 30px;
}

.dropdown-content a:hover {
    background: #111;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Slider */
.hero-slider-container {
    width: 100%;
    height: 92vh;
    overflow: hidden;
    margin-top: 0;
    background: #000;
}

.hero-wrapper {
    display: flex;
    height: 100%;
}

.hero-big {
    flex: 2.5;
    position: relative;
    overflow: hidden;
}

.hero-big img,
.hero-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15) translateY(-2%);
    }
}

.hero-big::after,
.hero-small::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-small-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-small {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    max-width: 80%;
}

.hero-caption h1 {
    font-size: 56px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.small-caption {
    bottom: 30px;
    left: 30px;
}

.small-caption h3 {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Page */
.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-text {
    flex: 1.2;
    color: #555;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    white-space: pre-wrap;
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    color: #888;
    letter-spacing: 1px;
    margin-top: 15px;
}

/* Grid Cards */
.services-grid,
.portfolio-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 48px;
    margin: 40px auto 20px;
    color: var(--primary-color);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #000;
}

.card-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.card-content {
    padding: 30px 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-item {
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.9;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 35px;
    opacity: 0;
    transition: 0.4s;
    z-index: 5;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 5px;
    transform: translateY(20px);
    transition: 0.4s 0.1s;
}

.portfolio-overlay span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: 0.4s 0.2s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* Contact Form */
.video-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    transition: 0.3s;
}

.video-item:hover iframe {
    opacity: 1;
}

.video-item h3 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #222;
}

.teaser-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    cursor: pointer;
}

.teaser-item:hover {
    transform: translateX(10px);
    background: #fdfdfd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-color: #eee;
}

.teaser-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s;
}

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

.teaser-info h5 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.teaser-info small {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.media-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.media-card i {
    font-size: 20px;
    color: #000;
    margin-right: 20px;
    transition: 0.3s;
}

.media-card:hover i {
    transform: rotate(10deg) scale(1.2);
}

.media-card span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.info-item i {
    font-size: 20px;
    margin-right: 20px;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    background: #fff;
    outline: none;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #000;
}

.btn-primary {
    background: linear-gradient(45deg, #B8860B, #D4AF37, #FFD700);
    background-size: 200% auto;
    color: #fff;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

/* Shimmer Effect for Primary Buttons */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: #0a1118;
    /* Deep Navy */
    color: #eee;
    padding: 100px 0 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
}

/* Subtle Glass Refraction Sweep */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-20deg);
    animation: refraction 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes refraction {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 150%;
    }
}

@keyframes smoothGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes extremeFooterMove {
    0% {
        background-position: 0% 0%;
        filter: hue-rotate(0deg);
    }

    100% {
        background-position: 100% 100%;
        filter: hue-rotate(15deg);
    }
}

/* Footer Wave Animation */
.footer-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('https://i.ibb.co/3s6qM0J/wave.png');
    /* Generic wave pattern url */
    background-size: 50% 100px;
    animation: waveMove 15s linear infinite;
    opacity: 0.05;
}

.wave:nth-child(2) {
    animation: waveMove 10s linear infinite reverse;
    opacity: 0.03;
    height: 80%;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

footer .container {
    position: relative;
    z-index: 5;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 20%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    box-shadow: 0 0 15px #fff, 0 0 30px rgba(255, 255, 255, 0.5);
    animation: laserMoveFooter 4s ease-in-out infinite alternate;
    z-index: 10;
}

@keyframes laserMoveFooter {
    0% {
        left: -20%;
    }

    100% {
        left: 100%;
    }
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

#subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

#subscribe-form input {
    flex: 1;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    outline: none;
}

#subscribe-form button {
    padding: 10px 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 30px 0;
    color: #fff;
    font-size: 13px;
    text-align: center;
}

/* Layout Helpers */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    transition: 0.3s;
    border: 1px solid #222;
}

.social-links a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Interactive Buttons */
.btn-outline {
    padding: 12px 35px;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    color: #000;
    letter-spacing: 2px;
    border-bottom-color: var(--primary-color);
    transform: translateX(5px);
}

.btn-link {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-link:hover {
    color: #000;
}

.btn-white-sm {
    background: #fff;
    color: #000;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: 15px;
    transform: translateY(20px);
    transition: 0.4s 0.2s;
    display: inline-block;
    opacity: 0;
}

.portfolio-item:hover .btn-white-sm {
    transform: translateY(0);
    opacity: 1;
}

/* Marquee Animation */
.marquee-outer {
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.marquee-outer::before,
.marquee-outer::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-outer::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee-outer::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    gap: 120px;
    width: max-content;
    padding: 20px 0;
}

.marquee-item {
    flex-shrink: 0;
    height: 45px;
    /* Standart hündürlük */
    width: 150px;
    /* Standart en */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.marquee-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    opacity: 0.7;
    filter: grayscale(1);
    transition: 0.4s;
    object-fit: contain;
}

.marquee-item:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.section-title p {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 8px;
    font-weight: 600;
}

.track-ltr {
    animation: scroll-ltr 40s linear infinite;
}

.track-rtl {
    animation: scroll-rtl 40s linear infinite;
}

@keyframes scroll-ltr {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes scroll-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Partners Page Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    padding: 20px 0;
}

.partner-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #eee;
}

.partner-item:active {
    transform: translateY(-2px) scale(0.98);
}

.partner-item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.partner-name {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    transition: 0.3s;
}

.partner-item:hover .partner-name {
    color: #000;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    z-index: 1100;
}

.mobile-toggle.active {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 900px) {

    /* Layout Adjustments */
    .top-bar-content {
        justify-content: center;
        flex-direction: column;
        height: auto;
        padding: 5px 0;
    }

    .top-left,
    .top-right {
        display: none;
        /* Hide non-essential info on small mobile */
    }

    .header-content {
        height: 70px;
    }

    .mobile-toggle {
        display: block;
    }

    /* Side Navigation Menu */
    nav#main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 1050;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding-top: 100px;
    }

    nav#main-nav.active {
        right: 0;
    }

    nav#main-nav ul {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    nav#main-nav ul li {
        margin: 15px 0;
    }

    nav#main-nav ul li a {
        font-size: 16px;
    }

    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background: #f9f9f9;
        text-align: center;
        margin-top: 10px;
        opacity: 1;
        transform: none;
    }

    /* Hero Slider */
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-big {
        height: 40vh;
    }

    .hero-small-list {
        flex-direction: row;
        height: auto;
    }

    .hero-small {
        height: 15vh;
    }

    /* Grids */
    .services-grid,
    .portfolio-grid,
    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr !important;
    }

    .twocol-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Footer */
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #subscribe-form {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-big h1 {
        font-size: 2rem;
    }

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

    .ticker-label {
        padding: 5px 10px;
        font-size: 8px;
        margin-right: 10px;
    }
}