* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica,Roboto', sans-serif;
}

:root {
    --primary-color: #4287f5;
    --primary-hover: #3b7ae0;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-color: #1f2937;
    --nav-bg: rgba(255, 255, 255);
}

 :root {
    --primary: #2563eb;
    --navbar-bg: #181f2b;
    --menu-bg: #fff;
    --menu-shadow: 0 4px 24px rgba(37, 99, 235, 0.10);
    --transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
}

body {
    background-color: #ffffff;
}

.navbar {
    background: var(--navbar-bg);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--menu-shadow);
    min-height: 64px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 1.2rem 0;
    border: none;
    background: none;
    font-size: 1.08rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 200%;
}

.nav-menu>li>a::after {
    content: '';
    display: block;
    height: 2.5px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), #47B5FF);
    border-radius: 2px;
    transition: width 0.25s;
    margin-top: 4px;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a {
    color: var(--primary);
}

.nav-menu>li:hover>a::after,
.nav-menu>li.active>a::after {
    width: 100%;
}

.dropdown>a i.fa-chevron-down {
    font-size: 0.9rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 110%;
    min-width: 200px;
    background: var(--menu-bg);
    box-shadow: var(--menu-shadow);
    border-radius: 10px;
    padding: 0.5rem 0;
    z-index: 999;
    animation: fadeIn 0.2s;
    border: 1px solid #e5e7eb;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: #222;
    background: none;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 1rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}


/* FULL WIDTH DROPDOWN */

.navbar .dropdown-menu {
    left: 0;
    right: 0;
    min-width: 100vw;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0 0 12px 12px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.navbar .dropdown {
    position: static;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--navbar-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
        overflow-y: auto;
        z-index: 1100;
        box-sizing: border-box;
        transform: translateX(100vw);
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    body.overflow-hidden {
        overflow: hidden !important;
    }
    .nav-menu::before {
        display: none;
    }
    .mobile-close-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        color: #fff;
        font-size: 1.5rem;
        font-weight: bold;
        cursor: pointer;
        z-index: 1101;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        border: none;
    }
    .mobile-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        min-width: 90%;
        border: none;
        width: 90%!important;
        padding-left: 0;
        padding-right: 0;
    }
    .nav-menu>li>a::after {
        display: none;
    }
    .navbar .dropdown {
        position: relative;
    }
    .dropdown-mega,
    .dropdown-mega-content {
        width: 80vw;
        max-width: 80vw;
        margin: 0 auto;
        border-radius: 1.2rem;
        background: #fff;
    }
    .dropdown-mega-content {
        width: 90%!important;
    }
    .dropdown-mega {
        margin-top: 1.2rem !important;
        width: 90%!important;
    }
    .dropdown-mega-left {
        border: none;
        padding-right: 0;
        align-items: stretch;
    }
    .dropdown-mega-left ul {
        width: 90%;
    }
    .dropdown-mega-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .dropdown-mega-right img {
        display: none;
    }
    .software-cards {
        flex-direction: column;
        gap: 1rem;
    }
    .software-card {
        flex-direction: column;
        text-align: center;
    }
    .software-card-image {
        display: none;
    }
    .software-card-content {
        padding: 1rem;
    }
    .software-card-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .software-card-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .software-features {
        justify-content: center;
        gap: 0.5rem;
    }
    .feature-badge {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
    .sektorler-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    .sektorler-badges {
        gap: 0.6rem;
    }
    .sektor-badge {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }
    .dropdown-mega-right h5 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .dropdown-mega-right p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    .nav-menu>li {
        width: 90%;
        margin-bottom: 0.7rem;
    }
    .nav-menu>li>a {
        display: block;
        width: 90%;
        font-size: 1.15rem;
        padding: 1rem 0.7rem;
        border-radius: 10px;
        margin-bottom: 0.2rem;
        letter-spacing: 0.2px;
    }
    .dropdown-mega-content {
        flex-direction: column !important;
        gap: 1.2rem;
        padding: 1.2rem 0.2rem;
    }
    .dropdown-mega-left {
        width: 90%;
        padding: 0;
        margin-bottom: 1rem;
    }
    .dropdown-mega-left ul {
        width: 90%;
    }
    .dropdown-mega-left ul li a {
        font-size: 1.08rem;
        padding: 0.9rem 1.1rem;
        border-radius: 8px;
        margin-bottom: 0.3rem;
    }
    .dropdown-mega-right {
        width: 90%;
        padding: 0;
    }
    .software-cards {
        flex-direction: column;
        gap: 1.2rem;
        width: 90%;
    }
    .software-card {
        width: 90%;
        padding: 1.2rem 0.7rem;
        font-size: 1.08rem;
        border-radius: 12px;
    }
    .sektor-badge {
        font-size: 1.05rem;
        padding: 0.4rem 1.1rem;
        border-radius: 10px;
    }
    .dropdown-mega-right p,
    .dropdown-mega-right .sektorler-title+.sektorler-badges+p,
    .software-card-content p {
        display: none !important;
    }
    .dropdown-mega-right {
        display: none !important;
    }
    .dropdown-mega-left {
        width: 90%;
        padding: 0;
        margin-bottom: 0;
    }
    .dropdown-mega-left ul {
        width: 90%;
        padding: 0;
    }
    .dropdown-mega-left ul li a {
        display: block;
        width: 90%;
        font-size: 1.15rem;
        padding: 1rem 0.7rem;
        border-radius: 10px;
        margin-bottom: 0.2rem;
        letter-spacing: 0.2px;
        color: #222;
        background: #fff;
        text-align: left;
        font-weight: 500;
    }
    .dropdown-mega-left ul li a:active,
    .dropdown-mega-left ul li a:focus {
        background: #e0e7ff;
        color: #2563eb;
    }
}

@media (min-width: 992px) {
    .mobile-close-btn {
        display: none !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* mega dropdown */

.dropdown-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    /*width: 100vw;
    min-width: 100vw;
    max-width: 100vw;*/
    background: #fff;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10);
    border-radius: 0 0 18px 18px;
    padding: 0;
    display: none;
    z-index: 999;
    border: 1px solid #e5e7eb;
    justify-content: center;
}

.dropdown:hover .dropdown-mega,
.dropdown:focus-within .dropdown-mega {
    display: flex;
}

.dropdown-mega-content {
    display: flex;
    width: 900px;
    max-width: 95vw;
    margin: 0 auto;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: none;
    padding: 2.2rem 2.5rem;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

.dropdown-mega-left {
    min-width: 200px;
    border-right: 1px solid #e2e8f0;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dropdown-mega-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 180px;
}

.dropdown-mega-left ul li a {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    color: #222;
    font-weight: 500;
    border-radius: 7px;
    margin-bottom: 0.2rem;
    background: none;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.dropdown-mega-left ul li a.active,
.dropdown-mega-left ul li a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.dropdown-mega-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: flex-start;
}

.dropdown-mega-right img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    border-radius: 20px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.10);
}

.dropdown-mega-right h5 {
    margin: 0 0 0.5rem 0;
    color: #2563eb;
    font-size: 1.25rem;
    font-weight: 700;
}

.dropdown-mega-right p {
    margin: 0 0 1.1rem 0;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.sektorler-title {
    margin: 0 0 0.4rem 0;
    color: #222;
    font-size: 1.05rem;
    font-weight: 600;
}

.sektorler-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.sektor-badge {
    background: #e0e7ff;
    color: #2563eb;
    font-size: 0.93rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.25rem 0.9rem;
    display: inline-block;
    letter-spacing: 0.2px;
}


/* Software cards mega menu styles */

.software-cards {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.software-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.software-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.software-card-image {
    margin-bottom: 1rem;
}

.software-card-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
}

.software-card-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 700;
}

.software-card-content p {
    margin: 0 0 1rem 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.software-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.feature-badge {
    background: #e0e7ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.2rem 0.6rem;
    display: inline-block;
}


/* Hero Section */

.hero-section {
    padding: 120px 0 80px;
    background-size: cover;
    background-attachment: fixed;
    
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100vh;
    padding: 0 30px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5em;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: #000000 0px 0px 10px;
}

.hero-subtitle {
    font-size: 1.40em;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: #000000 0px 0px 10px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-viewer {
    flex: 1;
    max-width: 600px;
}

.iframe-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
    background: white;
}


/* Services Section */

.services-section {
    background-color: #ffffff;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--text-color);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    min-width: 0;
    /* Prevents overflow */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}


/* How It Works Section Styles */

.how-it-works {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, hsl(205, 69%, 50%) 50%, hsl(208, 77%, 50%) 100%);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step {
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .step-content {
        padding: 20px;
    }
    .step-icon {
        font-size: 2rem;
    }
    .step h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .step-content {
        padding: 15px;
    }
}


/* Footer Styles */

.site-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 30px;
    text-align: center;
    /* border-top: 1px solid #2d3748; /* Subtle top border */
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 180px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section h4 {
    color: #ffffff;
    /* White color for headings */
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: #ffffff;
    /* White line under headings */
    border-radius: 2px;
}

.footer-section p,
.footer-section ul li a {
    font-size: 1rem;
    color: #ffffff;
    /* White text for paragraphs and links */
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: #2b2b2b;
    /* Hover color using theme variable */
    text-decoration: underline;
}

.footer-section.contact-info i {
    margin-right: 10px;
    color: #ffffff;
    /* White color for icons */
}

.social-icons a {
    display: inline-block;
    font-size: 1.8rem;
    color: #ffffff;
    /* White color for social icons */
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #1f2937;
    /* Hover color using theme variable */
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255);
    /* Slightly more visible lighter border */
}

.footer-bottom p {
    font-size: 0.95em;
    color: #ffffff;
    /* Lighter gray color for copyright */
}


/* Responsive adjustments for Footer */

@media (max-width: 992px) {
    .footer-section {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    .footer-section {
        min-width: 100%;
        text-align: center;
    }
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section.contact-info p,
    .footer-section ul li {
        text-align: center;
    }
    .social-icons a {
        margin: 0 15px;
    }
    .social-icons {
        text-align: center;
    }
}


/* About Section Styles */

.about-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.about-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}


/* Responsive adjustments for About Section */

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    .about-section h2 {
        font-size: 1.8em;
    }
    .about-section p {
        font-size: 1em;
    }
}


/* Contact Section Styles */

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h4,
.contact-form h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #ffffff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-map {
    width: 100%;
    margin-top: 20px;
}

.contact-map h4 {
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Responsive adjustments for Contact Section */

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    .contact-info,
    .contact-form {
        min-width: 100%;
    }
    .contact-map {
        margin-top: 30px;
    }
}


/* Services Section Styles */

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

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

.services-section h2 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Responsive adjustments for Services Section */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* Hakkımızda Mega Menü Stilleri */

.about-mega-menu .mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.about-mega-menu .mega-menu-section {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mega-menu .mega-menu-section i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-mega-menu .mega-menu-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
}

.about-mega-menu .mega-menu-section p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.about-mega-menu .mega-menu-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
    cursor: pointer;
}


/* Responsive adjustments for Hakkımızda Mega Menu */

@media (max-width: 1024px) {
    .about-mega-menu .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-mega-menu .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    .about-mega-menu .mega-menu-section {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
    .about-mega-menu .mega-menu-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .about-mega-menu .mega-menu-section i {
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    .about-mega-menu .mega-menu-section h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    .about-mega-menu .mega-menu-section p {
        font-size: 0.95em;
    }
}


/* Yazılım Mega Menü Stilleri */

.software-mega-menu .mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.software-mega-menu .mega-menu-section {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-mega-menu .mega-menu-section i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.software-mega-menu .mega-menu-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
}

.software-mega-menu .mega-menu-section p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.software-mega-menu .mega-menu-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
    cursor: pointer;
}


/* Responsive adjustments for Yazılım Mega Menü */

@media (max-width: 1024px) {
    .software-mega-menu .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .software-mega-menu .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    .software-mega-menu .mega-menu-section {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
    .software-mega-menu .mega-menu-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .software-mega-menu .mega-menu-section i {
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    .software-mega-menu .mega-menu-section h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    .software-mega-menu .mega-menu-section p {
        font-size: 0.95em;
    }
}


/* Homepage Intro Section */

.homepage-intro {
    padding: 120px 0;
    background-color: #ffffff;
    text-align: center;
}

.homepage-intro .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    flex-wrap: wrap;
    gap: 60px;
}

.intro-quote {
    flex: 1;
    min-width: 320px;
    text-align: left;
}

.intro-quote h2 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-quote p {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}


/* iframe Container Styles */

.iframe-container {
    flex: 1;
    min-width: 400px;
    position: relative;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}


/* Responsive adjustments for Homepage Intro */

@media (max-width: 992px) {
    .homepage-intro {
        padding: 80px 0;
    }
    .homepage-intro .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .intro-quote,
    .iframe-container {
        min-width: 100%;
        text-align: center;
    }
    .intro-quote h2 {
        font-size: 2.5em;
    }
    .intro-quote p {
        font-size: 1.1em;
    }
    .iframe-container {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 576px) {
    .homepage-intro {
        padding: 60px 0;
    }
    .intro-quote h2 {
        font-size: 2em;
    }
    .intro-quote p {
        font-size: 1em;
    }
    .homepage-intro .container {
        padding: 0 20px;
    }
}


/* Fotoğraf Kabinlerimiz */

.photo-booths {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}


/* Arka plan pattern ve efektler */

.photo-booths::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    background-size: 100px 100px, 150px 150px;
    animation: backgroundFloat 20s ease-in-out infinite;
}


/* Floating particles effect */

.photo-booths::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(59, 130, 246, 0.1), transparent), radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.08), transparent), radial-gradient(1px 1px at 90px 40px, rgba(59, 130, 246, 0.12), transparent), radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.1), transparent), radial-gradient(2px 2px at 160px 30px, rgba(59, 130, 246, 0.08), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 15s linear infinite;
}

@keyframes backgroundFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateX(-200px);
    }
    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

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

.photo-booths h2 {
    color: #1e293b;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wide-services .intro-centered {
    color: #475569;
    text-shadow: none;
}


/* Booth cards - eski tasarıma dönüş */

.booth-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 350px;
    justify-content: center;
    align-items: center;
}

.booth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.booth-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    background-color: #ffffff;
}

.booth-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.booth-info {
    padding: 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.booth-info h3 {
    margin: 0 0 20px;
    color: #333;
    font-size: 1rem;
    text-align: center;
}

.booth-card .detail-button {
    display: inline-block;
    padding: 5px 25px;
    width: 150px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 10px;
}

.booth-card .detail-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.specs {
    color: #666;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specs p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.specs i {
    color: #007bff;
    width: 24px;
    font-size: 1.2rem;
}


/* Owl Carousel Custom Navigation */

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-prev:hover,
.owl-next:hover {
    background: #007bff !important;
    color: #fff !important;
}

.owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-dot {
    width: 10px;
    height: 10px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #007bff !important;
    transform: scale(1.2);
}


/* Owl Carousel Center Mode Styles */

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

@media (max-width: 1400px) {
    .booths-carousel {
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .booths-carousel {
        max-width: 900px;
    }
    .booth-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .photo-booths {
        padding: 40px 0;
    }
    .photo-booths h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .booths-carousel {
        padding: 0 30px;
    }
    .booth-image {
        height: 250px;
    }
    .booth-info h3 {
        font-size: 1.3rem;
    }
    .specs p {
        font-size: 1rem;
    }
    .badge {
        font-size: 0.85rem;
        padding: 5px 14px;
    }
}


/* Sector Badges */

.sector-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.badge {
    background-color: #e9ecef;
    color: #495057;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
}


/* Makine Detayları */

.machine-details {
    padding: 80px 0;
    background-color: #ffffff;
}

.machine-details h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.detail-video {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.detail-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.detail-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.detail-specs {
    color: #666;
}

.detail-specs p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.detail-specs i {
    color: #007bff;
    width: 24px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .machine-details {
        padding: 40px 0;
    }
    .machine-details h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .detail-card {
        padding: 20px;
    }
    .detail-video {
        margin-bottom: 15px;
    }
    .detail-card h3 {
        font-size: 1.3rem;
    }
    .detail-specs p {
        font-size: 1rem;
    }
}


/* Section Wave Decorations */


/* Add wave to sections */

.hero-section,
.services-section,
.how-it-works,
.photo-booths,
.machine-details {
    position: relative;
    overflow: hidden;
}

.hero-section .section-wave {
    bottom: 0;
}

.services-section .section-wave {
    top: 0;
}

.how-it-works .section-wave {
    bottom: 0;
}

.photo-booths .section-wave {
    top: 0;
}

.machine-details .section-wave {
    bottom: 0;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .section-wave {
        height: 100px;
    }
}

.shape-divider {
    position: relative;
    width: 100vw;
    height: 100px;
    overflow: visible;
    margin: -50px 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.shape-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 2400px;
    transform: scale(1.2);
    transform-origin: center bottom;
    background-repeat: repeat-x;
    background-size: 2400px 100%;
}

.shape-divider svg path {
    animation: wave 20s linear infinite;
}

.shape-divider svg path:nth-child(2) {
    animation-delay: -5s;
}

.shape-divider svg path:nth-child(3) {
    animation-delay: -10s;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2400px);
    }
}

.shape-divider.reverse {
    transform: rotate(180deg);
}

.shape-divider.top {
    top: 0;
}

.shape-divider.bottom {
    bottom: 0;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .shape-divider {
        height: 80px;
        margin: -40px 0;
    }
    .shape-divider svg {
        transform: scale(1);
    }
}

.section-wave-bottom {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url(images/hero/surf2.svg);
    z-index: 0;
}

.section-wave-top {
    position: absolute;
    transform: rotate(180deg);
    height: 100%;
    width: 100%;
    top: -30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(images/hero/surf2.svg);
    z-index: 0;
}


/* Why Us Section Styles */

.why-us-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #2777f8, #95beff, #2777f8);
    background-size: 200% 200%;
    color: #fff;
    overflow: hidden;
    animation: gradientBG 5s ease infinite;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

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

.why-us-section .section-wave-top {
    top: -1px;
    transform: rotate(180deg);
    opacity: 0.15;
}

.why-us-section .section-wave-bottom {
    bottom: -1px;
    opacity: 0.15;
}

.why-us-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-headers {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-headers h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.why-us-headers .subtitle {
    font-size: 1.5rem;
    color: var(--primary-hover);
    font-weight: 300;
}

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

.why-us-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.why-us-header .subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: var(--primary-hover);
}

.feature-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}


/* Responsive Styles for Why Us Section */

@media (max-width: 992px) {
    .why-us-header h2 {
        font-size: 2.4rem;
    }
    .why-us-header .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    .why-us-header h2 {
        font-size: 2rem;
    }
    .why-us-header .subtitle {
        font-size: 1.1rem;
    }
    .features-grid {
        gap: 20px;
    }
    .feature-card {
        padding: 20px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    .feature-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .why-us-section {
        padding: 40px 0;
    }
    .why-us-header h2 {
        font-size: 1.8rem;
    }
    .feature-card h3 {
        font-size: 1.2rem;
    }
}


/* References Section Styles */

.references-section {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

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

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

.references-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.references-header .subtitle {
    font-size: 1.2rem;
    color: #666;
}

.references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-basis: 150px;
    flex-grow: 1;
    max-width: 200px;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    /* Renkli yapıldı */
    opacity: 1;
    /* Tam opaklık */
    transition: all 0.3s ease;
}

.reference-item:hover img {
    transform: scale(1.05);
    /* Hafif büyüme efekti eklendi */
}


/* Slider ile ilgili eski stilleri kaldır */


/* .custom-slider-container, .slider-track, .slider-arrow, .slider-dots, .dot stilleri kaldırıldı */


/* Responsive Styles for References Section */

@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }
    .references-header h2 {
        font-size: 2rem;
    }
    .references-grid {
        gap: 15px;
    }
    .reference-item {
        flex-basis: 120px;
        max-width: 180px;
        height: 100px;
    }
    .reference-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .references-grid {
        gap: 10px;
    }
    .reference-item {
        flex-basis: 100px;
        max-width: 150px;
        height: 80px;
    }
    .reference-item img {
        max-height: 50px;
    }
}


/* FAQ Section Styles */

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-header .section-title {
    margin-bottom: 15px;
}

.faq-header .subtitle {
    font-size: 1.2rem;
    color: #666;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item .faq-question {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item .faq-question i {
    font-size: 1rem;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.faq-item .faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Responsive Styles for FAQ Section */

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-header {
        margin-bottom: 40px;
    }
    .faq-header .section-title {
        font-size: 2rem;
    }
    .faq-list {
        gap: 15px;
    }
    .faq-item {
        padding: 15px;
    }
    .faq-item .faq-question {
        font-size: 1.2rem;
    }
    .faq-item .faq-answer {
        margin-top: 10px;
        padding-top: 10px;
    }
}


/* CTA Section Styles */

.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-header {
    margin-bottom: 40px;
}

.cta-header .section-title {
    margin-bottom: 15px;
}

.cta-header .subtitle {
    font-size: 1.2rem;
    color: #666;
}

.cta-form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cta-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.cta-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
}

.cta-form .form-group input[type="text"],
.cta-form .form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.cta-form .form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* Buton stilleri zaten mevcut, burada sadece düzenleme gerekirse */


/* .btn-primary, .btn-secondary stilleri kullanılıyor */


/* Responsive Styles for CTA Section */

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    .cta-header {
        margin-bottom: 30px;
    }
    .cta-header .section-title {
        font-size: 2rem;
    }
    .cta-form-container {
        padding: 20px;
    }
    .cta-form .form-group {
        margin-bottom: 15px;
    }
    .cta-form .form-group input[type="text"],
    .cta-form .form-group input[type="email"] {
        padding: 10px;
        font-size: 0.95rem;
    }
    .cta-form .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    .cta-form .form-actions .btn {
        width: 100%;
    }
}


/* Scroll to Top Button with Progress */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    /* Adjust as needed */
    right: 30px;
    /* Adjust as needed */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(66, 135, 245, 0.8);
    /* Primary color with some opacity */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 999;
    opacity: 0;
    /* Başlangıçta gizli */
    visibility: hidden;
    pointer-events: none;
    /* Gizliyken tıklamayı engelle */
}

.scroll-to-top.visible {
    opacity: 1;
    /* Görünür olduğunda */
    visibility: visible;
    pointer-events: auto;
    /* Görünürken tıklamaya izin ver */
}

.scroll-to-top:hover {
    background-color: var(--primary-hover);
    /* Hover effect */
    transform: scale(1.1);
    /* Subtle scale effect on hover */
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    /* Başlangıcı üste al */
    overflow: visible;
    /* Stroke'un tamamı görünsün */
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    /* White background circle with opacity */
}

.progress-circle-progress {
    fill: none;
    stroke: #ffffff;
    /* White progress circle */
    stroke-linecap: round;
    /* Yuvarlak çizgi ucu */
    transition: stroke-dashoffset 0.3s ease-out;
}

.scroll-to-top i {
    position: relative;
    /* SVG'nin üzerinde olmasını sağlar */
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

html {
    scroll-behavior: smooth;
}

.navbar .dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* Center the mega menu */
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
    /* Adjust border radius for aesthetics */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Enhance box shadow */
    padding: 20px;
    /* Adjust padding */
    background-color: var(--background-color);
    /* Use theme background color */
    display: flex;
    gap: 30px;
    /* Adjust gap between sections */
}

.navbar .mega-menu-product-list,
.navbar .mega-menu-product-details {
    padding: 15px;
    /* Adjust padding within sections */
    border-radius: 5px;
    background-color: var(--card-background);
    /* Use a slightly different background for sections */
}

.navbar .mega-menu-product-list {
    flex: 1;
    /* Allow product list to take up available space */
    min-width: 200px;
    /* Ensure a minimum width */
}

.navbar .mega-menu-product-details {
    flex: 2;
    /* Allow product details to take up more space */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content */
    justify-content: center;
    text-align: center;
}

.navbar .mega-menu-product-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar .mega-menu-product-list ul li {
    padding: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth transition */
    border-bottom: 1px solid var(--border-color);
    /* Add subtle border */
}

.navbar .mega-menu-product-list ul li:last-child {
    border-bottom: none;
    /* Remove border for last item */
}

.navbar .mega-menu-product-list ul li a {
    text-decoration: none;
    color: var(--text-color);
    /* Use theme text color */
    display: block;
    padding: 5px 10px;
}

.navbar .mega-menu-product-list ul li:hover,
.navbar .mega-menu-product-list ul li.active {
    background-color: var(--primary-hover);
    /* Highlight on hover/active */
    color: var(--white);
    /* White text on hover/active */
}

.navbar .mega-menu-product-list ul li:hover a,
.navbar .mega-menu-product-list ul li.active a {
    color: var(--white);
    /* White link text on hover/active */
}

.navbar .mega-menu-product-details h4 {
    margin-top: 0;
    color: var(--primary-color);
    /* Use primary color for heading */
}

.navbar .mega-menu-product-details p {
    color: var(--text-color);
    /* Use theme text color */
    margin-bottom: 15px;
}

.navbar .mega-menu-product-details img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    /* Add space between image and button */
}

.navbar .mega-menu-product-details .detail-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.navbar .mega-menu-product-details .detail-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .navbar .mega-menu-product-details .detail-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}


/* Responsive adjustments for mega menu */

@media (max-width: 992px) {
    .navbar .dropdown-menu.mega-menu {
        flex-direction: column;
        /* Stack content vertically on smaller screens */
        gap: 20px;
        padding: 15px;
    }
    .navbar .mega-menu-product-list,
    .navbar .mega-menu-product-details {
        width: 100%;
        /* Full width on smaller screens */
    }
}


/* Sector Showcase Section */

.sector-showcase {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.sector-showcase-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sector-info {
    flex: 1;
    max-width: 500px;
}

.sector-info .section-title {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.sector-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.sector-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.sector-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sector-features .feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.sector-features .feature span {
    color: var(--text-color);
    font-size: 1rem;
}

.sector-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sector-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sector-preview {
    flex: 1;
    min-width: 500px;
}

.sector-preview .iframe-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.sector-preview .iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .sector-showcase-content {
        flex-direction: column;
        gap: 40px;
    }
    .sector-info {
        max-width: 100%;
        text-align: center;
    }
    .sector-info .section-title {
        text-align: center;
    }
    .sector-features {
        justify-content: center;
    }
    .sector-preview {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .sector-showcase {
        padding: 60px 0;
    }
    .sector-info .section-title {
        font-size: 2rem;
    }
    .sector-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .sector-preview .iframe-container {
        aspect-ratio: 4/3;
    }
}

.sector-showcase-content.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    .sector-showcase-content {
        flex-direction: column;
        gap: 40px;
    }
    .sector-info {
        max-width: 100%;
        text-align: center;
    }
    .sector-info .section-title {
        text-align: center;
    }
    .sector-features {
        justify-content: center;
    }
    .sector-preview {
        min-width: 100%;
    }
}


/* New Sektörler Grid Section */

.sectors-grid-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
}

.sectors-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sectors-grid-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-grid-item {
    position: relative;
}

.sector-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sector-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sector-card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ecedf0 0%, #dfdfdf 100%);
}

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

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

.sector-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.45);
    padding: 1.25rem 1rem 1rem;
    color: #fff;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.sector-grid-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.sector-card-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.sector-card-icon i {
    color: white;
}


/* Responsive düzenlemeler */

@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
    }
    .sectors-grid-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .sectors-grid-section .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 900px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 700px;
    }
    .sectors-grid-section {
        padding: 4rem 0;
    }
    .sectors-grid-section .container {
        padding: 0 1rem;
    }
    .sectors-grid-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .sector-card {
        aspect-ratio: 1;
    }
    .sector-grid-title {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
    }
    .sectors-grid-section {
        padding: 3rem 0;
    }
    .sectors-grid-section .container {
        padding: 0 0.75rem;
    }
    .sectors-grid-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    .sector-card {
        aspect-ratio: 1;
        border-radius: 15px;
    }
    .sector-card-overlay {
        padding: 1rem 0.75rem 0.75rem;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    .sector-grid-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        max-width: 300px;
        gap: 0.75rem;
    }
    .sectors-grid-section {
        padding: 2.5rem 0;
    }
    .sectors-grid-section .container {
        padding: 0 0.5rem;
    }
    .sectors-grid-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
        padding: 0 0.75rem;
    }
    .sector-card {
        border-radius: 12px;
    }
    .sector-card-overlay {
        padding: 0.75rem 0.5rem 0.5rem;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    .sector-grid-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .sectors-grid {
        max-width: 280px;
        gap: 0.5rem;
    }
    .sectors-grid-section .container {
        padding: 0 0.25rem;
    }
    .sectors-grid-section .section-title {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }
    .sector-grid-title {
        font-size: 0.85rem;
    }
}


/* Sector Showcase Section */

.sectors-mega-menu .mega-menu-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.sectors-mega-menu .mega-menu-section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sectors-mega-menu .mega-menu-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.sectors-mega-menu .mega-menu-section i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.sectors-mega-menu .mega-menu-section:hover i {
    transform: scale(1.1);
}

.sectors-mega-menu .mega-menu-section h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.sector-iframe-container {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.sector-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1400px) {
    .sectors-mega-menu .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .sectors-mega-menu .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-mega-menu .mega-menu-content {
        grid-template-columns: 1fr;
    }
    .sector-iframe-container {
        height: 200px;
    }
}


/* Hero Section Styles */

.hero-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
    max-width: 1200px;
}

.hero-button {
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.hero-button i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.9em;
}

.hero-button:hover i {
    transform: translateX(5px);
}

.hero-button-primary {
    background: linear-gradient(135deg, #47B5FF 0%, #3490dc 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(71, 181, 255, 0.3);
    grid-column: 1 / -1;
}

.hero-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(71, 181, 255, 0.4);
}

.hero-button-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #1a202c;
    border: 2px solid rgba(71, 181, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #47B5FF;
    transform: translateY(-2px);
    border-color: #47B5FF;
    box-shadow: 0 10px 20px rgba(71, 181, 255, 0.1);
}

@media (max-width: 768px) {
    .hero-buttons {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .hero-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .mega-menu,
.mega-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Mega Menu Container */

.mega-menu-container {
    position: relative;
}


/* Add padding to create hover space */

.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.mega-menu-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}


/* Categories Section */

.mega-menu-categories {
    flex: 0 0 250px;
    padding-right: 30px;
    border-right: 1px solid #eee;
}

.mega-menu-categories h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.mega-menu-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-categories li {
    margin: 8px 0;
}

.mega-menu-categories a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

.mega-menu-categories a:hover {
    color: #007bff;
    background: #f8f9fa;
    transform: translateX(5px);
}


/* Featured Section */

.mega-menu-featured {
    flex: 1;
    padding-left: 30px;
}

.featured-product {
    display: none;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
}

.featured-product.active {
    display: grid;
}

.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.featured-content {
    padding: 20px;
}

.featured-content h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px;
}

.featured-content p {
    color: #666;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
}

.featured-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.featured-specs li {
    color: #666;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.featured-specs i {
    color: #28a745;
    margin-right: 10px;
}

.featured-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.featured-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}


/* Show featured product on category hover */

.mega-menu-categories a[data-product="xs"]:hover~.mega-menu-featured #product-xs,
.mega-menu-categories a[data-product="s"]:hover~.mega-menu-featured #product-s,
.mega-menu-categories a[data-product="m"]:hover~.mega-menu-featured #product-m,
.mega-menu-categories a[data-product="xm"]:hover~.mega-menu-featured #product-xm,
.mega-menu-categories a[data-product="xxm"]:hover~.mega-menu-featured #product-xxm,
.mega-menu-categories a[data-product="qube"]:hover~.mega-menu-featured #product-qube,
.mega-menu-categories a[data-product="hyper"]:hover~.mega-menu-featured #product-hyper {
    display: grid;
}


/* Default active product */

#product-xs {
    display: grid;
}


/* Mobile Responsive Styles */

@media (max-width: 992px) {
    .mega-menu-content {
        flex-direction: column;
        padding: 15px;
    }
    .mega-menu-categories {
        flex: none;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .mega-menu-featured {
        padding-left: 0;
    }
    .featured-product {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .featured-image {
        padding: 10px;
    }
    .featured-content {
        padding: 15px;
    }
}


/* Popup Modal Styles */

.popup-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 41, 59, 0.65);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}

.popup-modal.active {
    display: flex;
    animation: popupFadeIn 0.3s;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
    background: #fff;
    border-radius: 18px;
    max-width: 900px;
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    padding: 32px 24px 24px 24px;
    position: relative;
    animation: popupScaleIn 0.3s;
}

@keyframes popupScaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.popup-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #2563eb);
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #222;
    cursor: pointer;
    transition: color 0.2s;
}

.popup-close:hover {
    color: var(--primary-color, #2563eb);
}

.popup-tables {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.popup-table {
    flex: 1 1 320px;
    min-width: 0;
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 14px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.04);
    margin-bottom: 12px;
}

.popup-table h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color, #2563eb);
}

.popup-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
}

.popup-table th,
.popup-table td {
    border: 1px solid #e5e7eb;
    padding: 6px 8px;
    text-align: left;
}

.popup-table th {
    background: #e0e7ff;
    font-weight: 600;
}

.popup-table ul.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-table .requirement-label {
    font-weight: 500;
    color: #1e293b;
}

.popup-table .requirement-value {
    float: right;
    color: #334155;
    font-weight: 400;
}

.motorized-stand-info {
    margin-top: 18px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.97rem;
}

.motorized-stand-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2563eb;
}

.notes-list {
    margin: 0;
    padding-left: 18px;
}

.notes-list li {
    margin-bottom: 4px;
}

@media (max-width: 700px) {
    .popup-tables {
        flex-direction: column;
        gap: 12px;
    }
    .popup-content {
        padding: 16px 4vw 16px 4vw;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 8px 2vw 8px 2vw;
    }
    .popup-header h2 {
        font-size: 1.1rem;
    }
}


/* Dinamik Kartlar Video Düzeltmeleri */

.dyn-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dyn-media {
    position: relative;
    overflow: hidden;
    flex: 0 0 50%;
    /* Video tarafı sabit genişlik */
    max-width: 50%;
    height: 400px;
    /* Sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Video container için aspect ratio koruması */

.dyn-media::before {
    content: '';
    display: block;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    position: relative;
}

.dyn-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Responsive düzenlemeler */

@media (max-width: 991px) {
    .dyn-card {
        flex-direction: column;
    }
    .dyn-media {
        flex: 0 0 auto;
        max-width: 100%;
        height: 300px;
    }
    .dyn-media::before {
        padding-top: 66.67%;
        /* 3:2 aspect ratio for tablets */
    }
}

@media (max-width: 767px) {
    .dyn-media {
        height: 250px;
    }
    .dyn-media::before {
        padding-top: 75%;
        /* 4:3 aspect ratio for mobile */
    }
}

.booths-carousel {
    position: relative;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
}


/* Carousel navigation buttons için güzelleştirme */

.owl-nav button {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.owl-nav button:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1);
}


/* Dots için güzelleştirme */

.owl-dots .owl-dot {
    background: rgba(255, 255, 255, 0.5) !important;
}

.owl-dots .owl-dot.active {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Industry Showcase Section - Modern QR Card Design */

.industry-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-container .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-container .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-container .section-title p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.showcase-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.showcase-card-header {
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.showcase-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.showcase-card-body {
    padding: 1.5rem;
}

.showcase-iframe-container {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.showcase-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.showcase-qr-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.qr-code-container {
    flex-shrink: 0;
}

.qr-code-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.qr-code-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.qr-code-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.qr-code-placeholder:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
}

.qr-code-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.showcase-description {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.showcase-card-footer {
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
}

.showcase-button {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.showcase-button-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.showcase-button-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.showcase-button-secondary {
    background: white;
    color: #64748b;
    border-color: #cbd5e1;
}

.showcase-button-secondary:hover {
    background: #f8fafc;
    color: #2563eb;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.showcase-button i {
    font-size: 0.9rem;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .industry-showcase {
        padding: 3rem 0;
    }
    .showcase-container .section-title h2 {
        font-size: 2rem;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .showcase-card-header {
        padding: 1.25rem 1.25rem 1rem;
    }
    .showcase-card-body {
        padding: 1.25rem;
    }
    .showcase-card-footer {
        padding: 1.25rem;
        flex-direction: column;
    }
    .showcase-qr-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .qr-code-placeholder {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .showcase-container {
        padding: 0 1rem;
    }
    .showcase-container .section-title h2 {
        font-size: 1.75rem;
    }
    .showcase-container .section-title p {
        font-size: 1rem;
    }
    .showcase-card-header {
        padding: 1rem 1rem 0.75rem;
    }
    .showcase-card-body {
        padding: 1rem;
    }
    .showcase-card-footer {
        padding: 1rem;
    }
    .showcase-iframe-container {
        height: 200px;
    }
}


/* QR Modal Styles */

.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-modal.active {
    opacity: 1;
    visibility: visible;
}

.qr-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-modal.active .qr-modal-content {
    transform: scale(1);
}

.qr-modal-header {
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.qr-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.qr-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.qr-modal-close:hover {
    background: #f1f5f9;
    color: #ef4444;
    transform: scale(1.1);
}

.qr-modal-body {
    padding: 2rem;
    text-align: center;
}

.qr-modal-image {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1.5rem auto;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    display: block;
}

.qr-modal-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.qr-modal-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
    margin: 0 auto;
}


/* Responsive QR Modal */

@media (max-width: 768px) {
    .qr-modal-content {
        width: 95%;
        max-width: 400px;
    }
    .qr-modal-header {
        padding: 1.25rem 1.5rem 1rem;
    }
    .qr-modal-header h3 {
        font-size: 1.25rem;
    }
    .qr-modal-body {
        padding: 1.5rem;
    }
    .qr-modal-image {
        width: 250px;
        height: 250px;
    }
    .qr-modal-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .qr-modal-content {
        width: 98%;
        max-width: 350px;
    }
    .qr-modal-header {
        padding: 1rem 1.25rem 0.75rem;
    }
    .qr-modal-header h3 {
        font-size: 1.1rem;
    }
    .qr-modal-body {
        padding: 1.25rem;
    }
    .qr-modal-image {
        width: 200px;
        height: 200px;
    }
    .qr-modal-description {
        font-size: 0.85rem;
    }
}












/* References Slider Styles                  index.html*/
.references-slider {
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    padding: 5px;
}

.reference-logo-container {
    width: 180px;
    height: 100px;
    border-radius: 12px;
    padding: 12px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

    .reference-logo-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

.swiper-pagination-bullet {
    background: #333;
}

.swiper-pagination-bullet-active {
    background: #007aff;
}
/* Modern Mega Menu Styles */

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

    .dropdown:hover .mega-menu,
    .mega-menu:hover {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
/* Mega Menu Container */

.mega-menu-container {
    position: relative;
}
/* Add padding to create hover space */

.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.mega-menu-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}
/* Categories Section */

.mega-menu-categories {
    flex: 0 0 250px;
    padding-right: 30px;
    border-right: 1px solid #eee;
}

    .mega-menu-categories h3 {
        font-size: 18px;
        color: #333;
        margin: 0 0 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #007bff;
    }

    .mega-menu-categories ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu-categories li {
        margin: 8px 0;
    }

    .mega-menu-categories a {
        color: #666;
        text-decoration: none;
        font-size: 15px;
        padding: 8px 15px;
        border-radius: 8px;
        display: block;
        transition: all 0.3s ease;
    }

        .mega-menu-categories a:hover {
            color: #007bff;
            background: #f8f9fa;
            transform: translateX(5px);
        }
/* Featured Section */

.mega-menu-featured {
    flex: 1;
    padding-left: 30px;
}

.featured-product {
    display: none;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
}

    .featured-product.active {
        display: grid;
    }

.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .featured-image img {
        max-width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

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

.featured-content {
    padding: 20px;
}

    .featured-content h3 {
        font-size: 24px;
        color: #333;
        margin: 0 0 10px;
    }

    .featured-content p {
        color: #666;
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 1.6;
    }

.featured-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .featured-specs li {
        color: #666;
        margin: 10px 0;
        display: flex;
        align-items: center;
    }

    .featured-specs i {
        color: #28a745;
        margin-right: 10px;
    }

.featured-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .featured-button:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    }
/* Show featured product on category hover */

.mega-menu-categories a[data-product="xs"]:hover ~ .mega-menu-featured #product-xs,
.mega-menu-categories a[data-product="s"]:hover ~ .mega-menu-featured #product-s,
.mega-menu-categories a[data-product="m"]:hover ~ .mega-menu-featured #product-m,
.mega-menu-categories a[data-product="xm"]:hover ~ .mega-menu-featured #product-xm,
.mega-menu-categories a[data-product="xxm"]:hover ~ .mega-menu-featured #product-xxm,
.mega-menu-categories a[data-product="qube"]:hover ~ .mega-menu-featured #product-qube,
.mega-menu-categories a[data-product="hyper"]:hover ~ .mega-menu-featured #product-hyper {
    display: grid;
}
/* Default active product */

#product-xs {
    display: grid;
}
/* Mobile Responsive Styles */

@media (max-width: 992px) {
    .mega-menu-content {
        flex-direction: column;
        padding: 15px;
    }

    .mega-menu-categories {
        flex: none;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .mega-menu-featured {
        padding-left: 0;
    }

    .featured-product {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .featured-image {
        padding: 10px;
    }

    .featured-content {
        padding: 15px;
    }
}

.hero-section {
    background-size: cover;
    /*background-image: url(assets/media/images/hero/bg.png);*/
    background-position: center;
    background-attachment: fixed;
    min-height: 75vh;
    height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Video Background Styles */

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

    .hero-video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    /* Overlay to ensure text readability */

    .hero-video-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-video-background iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border: none;
        pointer-events: none;
        /* Hide YouTube suggestions and UI */
        filter: brightness(1.1) contrast(1.1);
    }
        /* Additional CSS to hide YouTube elements */

        .hero-video-background iframe::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 10;
            pointer-events: none;
        }




.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 4;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 30px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.8s ease-out;
    }

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

    .hero-cta .btn {
        padding: 18px 36px;
        font-size: 1.2rem;
        font-weight: 500;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .hero-cta .btn-primary {
        background: #ffffff;
        color: #0284C7;
        border: none;
    }

        .hero-cta .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }

    .hero-cta .btn-secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
    }

        .hero-cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }


}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 80px 0;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .hero-cta {
        flex-direction: column;
        padding: 0 20px;
    }

        .hero-cta .btn {
            width: 100%;
            padding: 16px 24px;
        }
}





















.pb-dynamic {
    padding: 6rem 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.dyn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.dyn-row {
    margin-bottom: 4rem;
}

    .dyn-row:last-child {
        margin-bottom: 0;
    }

.dyn-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(66, 135, 245, 0.08);
    transition: all 0.3s ease;
    display: flex;
    border: 1px solid rgba(66, 135, 245, 0.1);
}

    .dyn-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(66, 135, 245, 0.12);
    }

.dyn-media {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-height: 500px;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(66, 135, 245, 0.1) 0%, rgba(66, 135, 245, 0.2) 100%);
    z-index: 1;
}

.dyn-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dyn-card:hover .dyn-media img {
    transform: scale(1.05);
}

.dyn-content {
    flex: 1;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(66, 135, 245, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.h4-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.dyn-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

    .btn-detail:hover {
        background: var(--primary-hover);
        transform: translateX(5px);
    }

    .btn-detail svg {
        transition: transform 0.3s ease;
    }

    .btn-detail:hover svg {
        transform: translateX(5px);
    }

@media (max-width: 991px) {
    .dyn-card {
        flex-direction: column;
    }

    .dyn-media {
        min-height: 300px;
    }

    .dyn-content {
        padding: 2rem;
    }

    .h4-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pb-dynamic {
        padding: 4rem 0;
    }

    .dyn-content {
        padding: 1.5rem;
    }

    .h4-title {
        font-size: 1.35rem;
    }

    .dyn-content p {
        font-size: 1rem;
    }

    .dyn-media {
        min-height: 250px;
    }
}









:root {
    --benefit-accent: #4287f5;
    --benefit-bg: #f4fbff;
}

.benefits-360 {
    padding: 90px 0;
    background: var(--benefit-bg);
    position: relative;
}

.benefit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Başlık */

.benefit-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    position: relative;
}

    .benefit-title::after {
        content: '';
        width: 90px;
        height: 4px;
        background: var(--benefit-accent);
        display: block;
        margin: 0.7rem auto 0;
        border-radius: 2px;
    }
/* Izgara */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
/* Kart */

.benefit-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transition: transform .35s ease;
}

    .benefit-card:hover {
        transform: translateY(-6px);
    }

    .benefit-card i {
        font-size: 2.4rem;
        color: var(--benefit-accent);
        margin-bottom: .8rem;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
        margin: .6rem 0;
    }

    .benefit-card p {
        font-size: .95rem;
        line-height: 1.5;
        color: #555;
    }
/* Dalga alt tasarım (isteğe bağlı) */

.section-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('assets/media/wave-bottom.svg') no-repeat center/cover;
}