/* ----------------------------------
Template Name: Boreas Technology Website
Author: Boreas Teknoloji
Version: 3.0.0
Main Font: Inter, Plus Jakarta Sans
Main Color: #1970b7
---------------------------------- */

/* ===========================================
   TABLE OF CONTENTS
   ===========================================
   1. CSS Variables
   2. General Styles
   3. Typography
   4. Buttons
   5. Navigation & Header
   5.1 Search Functionality
   5.2 Sticky Header
   6. Breadcrumb (Enhanced with Schema)
   7. Cards & Boxes
   8. Forms
   9. Blog & News
   10. Products
   11. Contact
   12. Footer
   13. Animations
   14. Loading & Skeleton States
   15. Touch-Friendly Mobile
   16. Performance Optimizations
   17. Responsive Styles
   =========================================== */

/* ===========================================
   1. CSS Variables
   =========================================== */
:root {
    /* Colors */
    --primary-color: #1970b7;
    --primary-dark: #104cba;
    --primary-light: #3d8fd4;
    --secondary-color: #5eaae1;
    --accent-color: #00D4AA;
    --text-color: #1a1a2e;
    --text-light: #333333;
    --text-muted: #666666;
    --bg-light: #f5f7fa;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --gradient: linear-gradient(135deg, #1970b7 0%, #5eaae1 100%);
    --gradient-dark: linear-gradient(135deg, #104cba 0%, #1970b7 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(25, 112, 183, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Touch Target Size (44px minimum for accessibility) */
    --touch-target: 44px;
}

/* ===========================================
   2. General Styles
   =========================================== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

p {
    text-align: left;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

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

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.btn, button {
    font-family: var(--font-heading);
    font-weight: 600;
    min-height: var(--touch-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ===========================================
   3. Typography
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

h2 a {
    color: var(--text-color);
    font-weight: 600;
}

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

/* Lead Text */
.lead {
    font-size: var(--text-lg);
    color: var(--text-light);
    font-weight: 400;
}

/* Small Text */
.text-sm {
    font-size: var(--text-sm);
}

.text-xs {
    font-size: var(--text-xs);
}

/* Text Colors */
.text-primary { color: var(--primary-color); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

/* ===========================================
   4. Buttons - GET QUOTE Style Standard
   =========================================== */

/* Primary Button - GET QUOTE Style */
.btn-gradient,
.btn-theme,
.btn.btn-gradient,
.btn.btn-theme {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: system-ui, -apple-system, sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target);
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 112, 183, 0.3);
}

.btn-gradient:hover,
.btn-theme:hover,
.btn.btn-gradient:hover,
.btn.btn-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 112, 183, 0.4);
    color: #fff !important;
}

/* Medium Button Size */
.btn-md {
    padding: 12px 28px;
    font-size: 14px;
    min-height: var(--touch-target);
}

/* Small Button Size */
.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    min-height: var(--touch-target);
}

/* Large Button Size */
.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    min-height: 48px;
}

/* Block Button */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Outline Button Variant */
.btn-outline {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none;
}

.btn-outline:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    color: #fff !important;
    border-color: transparent !important;
}

/* White Button for Dark Backgrounds */
.btn-white {
    background: #fff !important;
    color: var(--primary-color) !important;
}

.btn-white:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    color: #fff !important;
}

/* Animation Class */
.btn.animation {
    position: relative;
    overflow: hidden;
}

.btn.animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn.animation:hover::before {
    left: 100%;
}

/* Radius Class */
.btn.radius {
    border-radius: 30px;
}

/* ===========================================
   5. Navigation & Header
   =========================================== */
nav.navbar ul.nav > li > a {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600 !important;
}

.navbar .attr-right .attr-nav li.button a {
    font-family: 'Roboto', sans-serif;
}

.navbar-nav .dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar-nav .dropdown-menu li a {
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar-nav .dropdown-menu li a:hover {
    background-color: #f0f0f0;
    color: #007bff;
    border-radius: 3px;
}

/* ===========================================
   6. Breadcrumb - Full Width Banner Style
   =========================================== */
.breadcrumb-area {
    min-height: 200px;
    display: flex;
    align-items: center;
    position: relative;
    background: #31536e !important;
}

.breadcrumb-area::after,
.breadcrumb-area::before {
    display: none !important;
}

.breadcrumb-area .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.breadcrumb-area h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-area .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-area .breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-area .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-area .breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-area .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.7);
    padding: 0 10px;
}

.breadcrumb-area .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-area {
        min-height: 150px;
        padding: 20px 0;
    }

    .breadcrumb-area .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .breadcrumb-area h1 {
        font-size: 24px;
    }

    .breadcrumb-area .breadcrumb {
        justify-content: center;
    }
}

/* ===========================================
   7. Cards & Boxes
   =========================================== */

/* Choose Us Style Two - Ürün kartları */
.choose-us-style-two {
    position: relative;
}

.choose-us-style-two h4 a {
    color: #000000;
}

.choose-us-style-two .button .btn-md {
    padding: 12px 20px;
    font-size: 15px;
}

.choose-us-style-two span.new {
    position: absolute;
    right: 0;
    background-color: yellow;
    color: #000000;
    width: 50px;
    text-align: center;
    margin: auto;
    height: 50px;
    border-bottom-left-radius: 20px;
    padding-top: 12px;
    font-weight: 600;
}

.choose-us-style-two.bos-tiklama {
    pointer-events: none;
    opacity: 0.7;
}

/* Content Item - Blog/News kartları */
.bg-content {
    background-color: var(--bg-light);
    padding: 100px 0px;
}

.content-item {
    border: 5px solid var(--white);
    border-radius: 16px;
    padding: 20px;
    min-height: 300px;
    max-height: 485px;
}

.content-item h3 {
    margin-bottom: 50px;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

.content-item p {
    text-align: left;
}

.content-item p i {
    color: #1b93eb;
    font-weight: 400;
    padding-right: 6px;
}

/* Services Style */
.services-style-one .item {
    height: 820px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
}

.services-style-one .item .bottom {
    position: absolute;
    bottom: 20px;
    display: flex;
    width: 85%;
    justify-content: center;
}

.services-style-one .item .bottom a i {
    right: 10px;
}

.services-style-one p {
    letter-spacing: -1px;
    text-align: center;
}

.services-style-one .item img {
    margin: 0 auto;
}

/* Fun Fact / Counter */
.fun-fact .counter {
    justify-content: center;
    font-size: 45px;
}

.fun-fact .medium {
    font-weight: 300;
}

.fun-fact .operator {
    font-size: 40px;
}

.fun-fact-style-one .operator {
    font-size: 40px;
}

/* Achievement Style */
.achivement-style-one .item {
    width: 100%;
    height: 100%;
}

.achivement-style-one .item.bg-gradient::before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #1970b7, #5eaae1);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.8;
}

.achivement-style-one:last-child .item.bg-gradient::before {
    background: linear-gradient(135deg, #104CBA, #1970b7);
    background-size: cover;
    background-position: center;
}

/* Gallery Style */
.gallery-style-one .item .content::after {
    background: #ffffffd2;
}

.gallery-style-one .item .content span {
    text-transform: capitalize;
}

/* ===========================================
   8. Forms
   =========================================== */
.contact-form-area {
    height: 600px;
}

.contact-form-area .google-maps {
    width: 100%;
}

/* ===========================================
   9. Blog & News
   =========================================== */

/* Blog Table Styles */
#table .wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 100px auto;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
}

#table a {
    text-decoration: none;
    transition: color 0.2s ease-out;
}

#table .nfl a { color: #4fc0d2; }
#table .nfl a:hover { color: #268695; }
#table .mlb a { color: #52d29a; }
#table .mlb a:hover { color: #279766; }
#table .nhl a { color: rgba(231, 196, 104, 0.7); }
#table .nhl a:hover { color: rgba(201, 154, 32, 0.7); }
#table .pga a { color: #eb7655; }
#table .pga a:hover { color: #c33d17; }

/* Blog Single */
.blog-single-area .blog-content {
    padding: 30px;
}

.blog-single-area .blog-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.blog-single-area .blog-content p {
    line-height: 1.8;
}

/* ===========================================
   10. Products
   =========================================== */
.vt-products .product .product-image {
    padding: 0px;
}

.validtheme-shop-area h6 {
    letter-spacing: 1px;
}

/* Product Tabs */
.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--border-color);
}

.product-tabs .nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 600;
}

.product-tabs .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* ===========================================
   11. Contact
   =========================================== */
.contact-bg {
    background-color: var(--bg-light);
    padding: 100px 0px;
}

.contact-style-two:nth-child(2),
.contact-style-two:nth-child(4),
.contact-style-two:nth-child(6),
.contact-style-two:nth-child(8),
.contact-style-two:nth-child(10) {
    background: transparent;
    border-left: 0px;
    border-right: 0px;
}

.contact-style-two.mobil-adress {
    background: transparent;
    border: 5px solid var(--white);
    border-left: 0px;
    border-right: 0px;
}

.contact-bg .contact-style-two:nth-child(1),
.contact-bg .contact-style-two:nth-child(3),
.contact-bg .contact-style-two:nth-child(5),
.contact-bg .contact-style-two:nth-child(7),
.contact-bg .contact-style-two:nth-child(9),
.contact-bg .contact-style-two:nth-child(11) {
    border: 5px solid var(--white);
}

.contact-bg .contact-style-two:nth-child(4),
.contact-bg .contact-style-two:nth-child(5),
.contact-bg .contact-style-two:nth-child(6),
.contact-bg .contact-style-two:nth-child(7) {
    border-top: 2px !important;
}

.contact-bg .contact-style-two:nth-child(4) {
    border: 5px solid var(--white);
}

.contact-bg .contact-style-two:nth-child(5) {
    border-left: 2px;
    border-right: 5px;
}

.contact-bg .contact-style-two:nth-child(6) {
    border: 5px solid var(--white);
}

.contact-style-two-items .contact-style-two:nth-child(1),
.contact-style-two-items .contact-style-two:nth-child(3),
.contact-style-two-items .contact-style-two:nth-child(5),
.contact-style-two-items .contact-style-two:nth-child(7),
.contact-style-two-items .contact-style-two:nth-child(9),
.contact-style-two-items .contact-style-two:nth-child(11) {
    border-right: 5px solid var(--white);
    border-left: 5px solid var(--white);
}

.phone-mail img {
    width: 80px;
    background-color: var(--white);
    border-radius: 50%;
    padding: 16px;
    position: relative;
    z-index: 999999;
    margin-bottom: 35px;
}

/* ===========================================
   12. Footer
   =========================================== */
footer .widget-title {
    font-weight: 700;
    font-size: 20px;
    font-family: system-ui;
}

footer .social {
    display: flex;
}

footer .address .social li i {
    font-size: 18px;
    color: var(--white);
    position: relative;
    margin-right: inherit;
    top: inherit;
}

footer ul {
    padding-left: 0px;
}

/* ===========================================
   13. Animations & Effects
   =========================================== */
.sub-heading::after {
    content: "";
    position: absolute;
    left: -40px;
    top: 50%;
    height: 4px;
    width: 1.4em;
    transform: translateY(-50%);
    background-image: var(--gradient);
}

.site-heading .sub-title::after {
    content: "";
    position: absolute;
    left: 13px;
    height: 4px;
    width: 1.4em;
    transform: translateY(-50%);
    background-image: var(--gradient);
}

.site-heading .sub-title.pro::after {
    left: 33px;
}

#solutions .site-heading .sub-title.pro::after {
    left: 54px;
}

/* Shape Styles */
.shape-right-top {
    position: absolute;
    right: -45px;
    top: 0;
    height: 500px;
    width: 500px;
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat;
}

/* Award Box */
.award {
    z-index: 1;
    position: absolute;
    left: auto;
    right: auto;
    bottom: 200px;
    background: inherit;
    background-size: 220% 150%;
    padding: 30px 0px;
    margin-right: 80px;
    width: 541px;
}

.award i {
    color: var(--secondary-color);
}

.award h4, .award p {
    color: #3d3d3d;
}

.award p {
    line-height: 20px;
}

/* Video Hero */
#pretzel-video {
    position: relative;
    width: 100%;
    margin: auto;
    height: -webkit-fill-available;
}

video {
    display: inline-block;
}

#hero {
    z-index: -1;
    position: relative;
    height: 600px;
    overflow: hidden;
    min-width: 100%;
    margin: auto;
}

/* Height Utilities */
.h-500 {
    min-height: 500px;
}

/* Flickity Carousel */
.flickity-prev-next-button .flickity-button-icon {
    width: 50%;
    height: 50%;
}

.flickity-button {
    color: #1e90f5;
}

.flickity-prev-next-button.previous {
    left: -10px;
}

/* Quick Contact */
.quick-contact-area .sub-heading.light::after {
    display: none;
}

/* Tanismak Section */
#tanismak .btn {
    color: var(--primary-color);
}

#tanismak .btn:hover {
    color: var(--white);
}

#four-item .fun-fact-style-one .medium {
    font-size: 19px;
}

/* ===========================================
   14. Responsive Styles
   =========================================== */

/* Extra Large Screens (1400px and up) */
@media only screen and (min-width: 1400px) {
    .about-style-one .thumb .shape:nth-child(3) {
        background: var(--white);
    }
}

/* Large Screens (1200px and up) */
@media only screen and (min-width: 1200px) {
    .services-area .col-xl-2 {
        width: 20%;
    }
    
    .navbar.brand-style-bg .navbar-header::before {
        border-bottom: 52px solid var(--white) !important;
        opacity: 0.7;
    }
    
    .navbar.brand-style-bg .navbar-header::after {
        background: var(--white) !important;
        z-index: -1;
    }
    
    .navbar.brand-style-bg .navbar-header {
        padding: 50px 0 !important;
    }
    
    .navbar.brand-style-bg.sticked .navbar-header {
        padding: 0px !important;
    }
    
    .top-bar a {
        font-weight: 300;
    }
    
    .top-bar .info i {
        font-size: 12px;
    }
}

/* Desktop to Large Desktop (1200px - 1439px) */
@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 992px;
    }
    
    .navbar-brand > img {
        width: 100% !important;
        margin-left: -70px !important;
        margin-top: 26px !important;
    }
    
    .navbar.brand-style-bg.sticked .navbar-header img.logo.logo-scrolled {
        margin-top: -26px !important;
    }
}

/* Medium to Large Desktop (992px - 1439px) */
@media only screen and (min-width: 992px) and (max-width: 1439px) {
    .navbar-brand > img {
        width: 100%;
        margin-left: -60px;
        margin-top: 26px;
    }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
    .navbar-mobile {
        display: none;
    }
}

/* Tablet and Below (991px and below) */
@media only screen and (max-width: 991px) {
    .navbar-collapse {
        display: none;
    }
    
    .navbar-header {
        width: 100%;
    }
    
    .navbar-toggle {
        display: inline-block;
    }
    
    .navbar-mobile {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .navbar-mobile ul {
        padding: 0;
        list-style: none;
    }
    
    .navbar-mobile ul li {
        margin-bottom: 10px;
    }
    
    .navbar-mobile ul li a {
        color: #333;
        font-size: 18px;
        text-decoration: none;
    }
    
    .navbar-mobile .dropdown-menu {
        display: none;
        padding-left: 20px;
    }
    
    .navbar-mobile .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .contact-style-two .item {
        background: #e4e4e4;
        border-radius: 7px;
    }
    
    .text-light h1, .text-light h2, .text-light h3, 
    .text-light h4, .text-light h5, .text-light h6, 
    .text-light p, .text-light span, .text-light a {
        color: var(--text-light);
    }
    
    .contact-bg {
        background-color: transparent;
    }
    
    footer h4 {
        color: var(--white) !important;
    }
    
    .mobil-adress {
        padding: 0px 18px;
    }
}

/* Mobile (767px and below) */
@media only screen and (max-width: 767px) {
    .banner-area div {
        height: 100vh;
    }
    
    .services-style-one .item {
        height: auto;
        min-height: 500px;
        padding-bottom: 80px;
    }
    
    .fun-factor-area.default-padding {
        padding: 50px;
    }
    
    #tanismak .fun-fact-style-one-box p {
        padding: 20px;
    }
    
    .projects-area .h-500 {
        min-height: 200px !important;
    }
    
    nav {
        display: block !important;
        padding-top: 100px;
    }
    
    a.navbar-brand {
        z-index: 999999;
    }
}

/* Phone Mail for Desktop */
@media only screen and (min-width: 768px) {
    .item.phone-mail a {
        color: var(--white);
    }
}

/* ===========================================
   Index Page Specific Styles
   =========================================== */
.fun-factor-area.default-padding {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid;
}

.about-area.default-padding-top {
    padding-bottom: 120px;
}

/* Slide Parent - Flickity */
.slide--parent {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

.slide--parent small {
    font-style: italic;
    font-weight: 700;
    margin-bottom: 0.5em;
    display: inline-block;
    color: var(--text-muted);
    position: relative;
    padding-left: 3em;
}

.slide--parent small:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    height: 4px;
    width: 1.4em;
    transform: translateY(-50%);
    background-image: var(--gradient);
}

.parent--el {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.parent--el .two--col {
    display: flex;
    align-items: center;
}

.parent--el figure {
    margin: 0;
}

.is-item {
    width: 60%;
}

.is-item.has--img {
    width: 40%;
}

.the-img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.the-img img {
    width: 100%;
}

.is-item--inner {
    padding: 0em 3em;
}

/* Parent Element Animation States */
.parent--el .is-item--inner small,
.parent--el .is-item--inner p,
.parent--el h1 span {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.parent--el.is-selected .is-item--inner small {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 400ms;
}

.parent--el.is-selected .is-item--inner p {
    transform: translateY(0px);
    position: relative;
    opacity: 1;
    transition-delay: 500ms;
}

.parent--el.is-selected .is-item--inner p:nth-of-type(2) {
    color: var(--primary-color);
    transition-delay: 700ms;
}

.parent--el.is-selected .is-item--inner p:nth-of-type(3) {
    transition-delay: 900ms;
}

.parent--el.is-selected h1 {
    overflow: hidden;
}

.parent--el.is-selected h1 span {
    transform: translateY(0%);
    position: relative;
    transition-delay: 400ms;
    display: inline-block;
}

.parent--el.is-selected hr {
    width: 100%;
    max-width: 8em;
    transition-delay: 500ms;
}

.parent--el.is-selected small:after {
    width: 100%;
    transition-delay: 600ms;
    max-width: 2.4em;
}

/* ===========================================
   Utility Classes
   =========================================== */
.text-justify {
    text-align: left;
}

.border-top-light {
    border-top: 1px solid var(--border-color);
}

.pb-50 {
    padding-bottom: 50px;
}

/* ===========================================
   MEGA MENU STYLES
   =========================================== */

/* Header Base */
.mega-header {
    position: relative;
    z-index: 9999;
    background: var(--white);
    transition: all 0.3s ease;
}

.mega-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navigation */
.mega-nav {
    padding: 0;
}

.mega-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

/* Logo */
.mega-logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.mega-header.sticky .mega-logo img {
    max-height: 50px;
}

/* Main Menu */
.mega-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

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

.mega-menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 28px 18px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mega-menu-item > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

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

.mega-menu-item:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Base */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.mega-menu-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Sizes */
.dropdown-sm {
    min-width: 250px;
}

.dropdown-md {
    min-width: 380px;
}

.dropdown-lg {
    min-width: 800px;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-full {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 60px);
    max-width: 1200px;
}

.mega-menu-item:hover .dropdown-lg,
.mega-menu-item:hover .dropdown-full {
    transform: translateX(-50%);
}

/* Dropdown Inner */
.mega-dropdown-inner {
    padding: 25px;
}

.mega-row {
    display: flex;
    gap: 30px;
}

/* 5 Column Mega Menu */
.mega-row-5cols {
    display: flex;
    gap: 20px;
}

.mega-row-5cols .mega-col {
    flex: 1;
    min-width: 0;
}

/* Mega Column */
.mega-col {
    flex: 1;
    min-width: 200px;
}

.mega-col-wide {
    flex: 1.3;
    min-width: 280px;
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.mega-col-header i {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
}

.mega-col-header h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Mega Subtitle */
.mega-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mega-col-header + .mega-subtitle {
    margin-top: 0;
}

/* Mega Links */
.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin-bottom: 2px;
}

.mega-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mega-links li a:hover {
    background: #f5f8fa;
    color: var(--primary-color);
    padding-left: 16px;
}

.mega-links li a i {
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0.7;
    width: 18px;
}

/* Bold Links (for main category items) */
.mega-links-bold {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.mega-links-bold li a {
    font-weight: 600;
    color: var(--text-color);
}

/* Links with Description */
.mega-links.with-desc li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px;
}

/* Minimal Style Links (for category dropdowns) */
.mega-links-minimal li {
    margin-bottom: 4px;
}

.mega-links-minimal li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.mega-links-minimal li a:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--primary-color);
    padding-left: 20px;
    border-color: rgba(0, 123, 255, 0.1);
}

.mega-links-minimal li a i {
    font-size: 18px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    opacity: 0.8;
    transition: all 0.25s ease;
}

.mega-links-minimal li a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.mega-links-minimal li a span {
    flex: 1;
}

/* Sidebar Style Mega Menu */
.dropdown-sidebar {
    min-width: 1000px;
    left: 50%;
    transform: translateX(-50%);
}

.mega-menu-item:hover .dropdown-sidebar {
    transform: translateX(-50%);
}

.mega-sidebar-wrapper {
    display: flex;
    min-height: 420px;
    height: 420px;
}

/* Left Sidebar Navigation */
.mega-sidebar-nav {
    width: 300px;
    background: #f8f9fa;
    border-right: 1px solid #eee;
    padding: 10px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-cat-item:hover,
.sidebar-cat-item.active {
    background: #fff;
    border-left-color: var(--primary-color);
}

.sidebar-cat-item.active {
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}

.sidebar-cat-item > i:first-child {
    font-size: 18px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-cat-item span {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.sidebar-cat-item .arrow {
    font-size: 10px;
    color: #ccc;
    transition: all 0.2s ease;
}

.sidebar-cat-item:hover .arrow,
.sidebar-cat-item.active .arrow {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Right Content Panel */
.mega-sidebar-content {
    flex: 1;
    padding: 20px 25px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-panel {
    display: none;
    animation: panelFadeIn 0.25s ease;
    flex: 1;
    height: 100%;
}

.sidebar-panel.active {
    display: flex;
}

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

.panel-columns {
    display: flex;
    gap: 40px;
}

.panel-col {
    flex: 1;
    min-width: 200px;
}

.panel-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    min-height: 36px;
    display: flex;
    align-items: flex-start;
}

.panel-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-links li {
    margin-bottom: 2px;
}

.panel-links li a {
    display: block;
    padding: 8px 12px;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.panel-links li a:hover {
    background: #f0f7ff;
    color: var(--primary-color);
    padding-left: 16px;
}

/* Bold links style */
.panel-links-bold {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.panel-links-bold li a {
    font-weight: 600;
    color: #333;
}

.panel-links-bold li a:hover {
    color: var(--primary-color);
}

/* No header links */
.panel-links-noheader {
    padding-top: 0;
}

.panel-links-noheader li a {
    font-size: 14px;
}

/* Panel Inner with Image */
.panel-inner {
    display: flex;
    height: 100%;
    gap: 20px;
    flex: 1;
}

.panel-inner .panel-columns {
    flex: 1;
    overflow-y: auto;
}

.panel-image {
    width: 200px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    align-self: stretch;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
}

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

.panel-image:hover img {
    transform: scale(1.08);
}

/* Image overlay effect */
.panel-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(25, 112, 183, 0.15) 100%);
    pointer-events: none;
}

.sidebar-panel.active {
    display: flex;
    flex: 1;
}

.sidebar-panel .panel-inner {
    flex: 1;
}

/* Monitoring panel: 3 columns layout - hide image, reduce min-width */
#panel-monitoring .panel-columns {
    gap: 25px;
}

#panel-monitoring .panel-col {
    min-width: 150px;
}

#panel-monitoring .panel-image {
    display: none;
}

.accordion-links li a:hover {
    background: #e8f4fd;
    color: var(--primary-color);
    padding-left: 14px;
}

.mega-links.with-desc li a strong {
    font-weight: 600;
    color: var(--text-color);
}

.mega-links.with-desc li a span {
    font-size: 12px;
    color: #888;
}

.mega-links.with-desc li a:hover strong {
    color: var(--primary-color);
}

/* Featured Box */
.mega-featured {
    flex: 0 0 280px;
    max-width: 280px;
}

.mega-featured-box {
    background: linear-gradient(135deg, #1970b7 0%, #5eaae1 100%);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.mega-featured-box img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.mega-featured-content {
    padding: 20px;
    color: var(--white);
}

.mega-featured-content h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mega-featured-content p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mega-featured-content .btn {
    background: var(--white);
    color: var(--primary-color);
    font-size: 12px;
    padding: 8px 16px;
}

.mega-featured-content .btn:hover {
    background: rgba(255,255,255,0.9);
}

/* CTA Button */
.mega-cta .btn {
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Toggle */
.mega-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.mega-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mega-mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: calc(100vw - 50px);
    height: 100vh;
    max-height: 100vh;
    background: var(--white);
    z-index: 10001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mega-mobile-menu.active {
    right: 0;
}

.mega-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mega-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mega-mobile-logo img {
    max-height: 45px;
}

.mega-mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.2s ease;
}

.mega-mobile-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mega-mobile-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile Nav */
.mega-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-mobile-nav > li {
    border-bottom: 1px solid #eee;
}

.mega-mobile-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.mega-mobile-nav > li > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mega-mobile-nav > li.active > a i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mega-mobile-submenu {
    list-style: none;
    padding: 0 0 15px 15px;
    margin: 0;
    display: none;
}

.mega-mobile-nav > li.active .mega-mobile-submenu {
    display: block;
}

.mega-mobile-submenu li a {
    display: block;
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.mega-mobile-submenu li a:hover {
    color: var(--primary-color);
}

.mega-mobile-submenu .submenu-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 0 5px;
    margin-top: 5px;
    border-top: 1px solid #f0f0f0;
}

.mega-mobile-submenu .submenu-title:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 5px;
}

/* Mobile Accordion */
.mobile-accordion {
    border-bottom: 1px solid #eee;
}

.mobile-accordion-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.mobile-accordion-header i:first-child {
    color: var(--primary-color);
    width: 20px;
}

.mobile-accordion-header i:last-child {
    margin-left: auto;
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
}

.mobile-accordion.active .mobile-accordion-header i:last-child {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    display: none;
    padding-left: 30px;
    padding-bottom: 10px;
}

.mobile-accordion.active .mobile-accordion-content {
    display: block;
}

.mobile-accordion-content li a {
    display: block;
    padding: 8px 0;
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

.mobile-accordion-content li a:hover {
    color: var(--primary-color);
}

/* Mobile CTA */
.mega-mobile-cta {
    margin: 25px 0;
}

.mega-mobile-cta .btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
}

/* Mobile Contact */
.mega-mobile-contact {
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.mega-mobile-contact p {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.mega-mobile-contact i {
    width: 20px;
    color: var(--primary-color);
}

.mega-mobile-contact a {
    color: var(--text-color);
    text-decoration: none;
}

/* Mobile Social */
.mega-mobile-social {
    display: flex;
    gap: 15px;
    padding-top: 20px;
}

.mega-mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: var(--text-color);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.2s ease;
}

.mega-mobile-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1199px) {
    .mega-menu {
        gap: 0;
    }
    
    .mega-menu-item > a {
        padding: 28px 12px;
        font-size: 13px;
    }
    
    .dropdown-full {
        width: calc(100vw - 40px);
    }
}

@media (max-width: 991px) {
    .mega-menu,
    .mega-cta {
        display: none;
    }
    
    .mega-mobile-toggle {
        display: flex;
    }
    
    .mega-nav-wrapper {
        min-height: 70px;
    }
}

/* Top Bar Styles */
.top-bar-area {
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-area .info ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-bar-area .info ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-area .info ul li i {
    font-size: 12px;
    opacity: 0.8;
}

.top-bar-area .info ul li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.top-bar-area .info ul li a:hover {
    color: var(--white);
}

.top-bar-area .social ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-bar-area .social ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: all 0.2s ease;
}

.top-bar-area .social ul li a:hover {
    color: var(--white);
}

@media (max-width: 991px) {
    .top-bar-area {
        display: none;
    }
}

/* ===========================================
   Product Detail Page Styles
   =========================================== */
#urun-detay-nav .nav {
    display: flex;
    padding: 30px 0px 0px;
    margin-top: 50px;
}

.table-bg {
    background-color: #f0f8ff;
}

#urun-detay-nav .nav .nav-link.active {
    color: var(--white);
    background-color: var(--primary-dark);
}

.services-more .item {
    min-height: 540px;
}

/* Smart DC Pages */
.smart-dc-features {
    background-color: var(--bg-light);
    padding: 60px 0;
}

/* Coming Soon Page */
.coming-soon-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Manual & Guides Page */
.manual-list .item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.manual-list .item:last-child {
    border-bottom: none;
}

/* ===========================================
   FOOTER STYLES
   =========================================== */

/* Footer Subtitle */
.footer-subtitle {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.f-item.link ul {
    margin-bottom: 0;
}

.f-item.link ul li {
    margin-bottom: 2px;
}

.f-item.link ul li a {
    font-size: 13px;
    padding: 4px 0;
}

footer .border-top {
    border-color: rgba(255,255,255,0.1) !important;
}

/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

/* Timeline */
.timeline-area {
    padding: 80px 0;
}

.timeline-wrapper {
    position: relative;
}

.timeline-item {
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.timeline-year::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Feature Box */
.feature-box {
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

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

.feature-box .icon {
    color: var(--primary-color);
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Mission Area */
.mission-area {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.mission-area h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-area p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Breadcrumb About Page */
.breadcrumb-area {
    padding: 120px 0 80px;
}

.breadcrumb-area h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-items li {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-items li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-items li a:hover {
    color: var(--primary-color);
}

.breadcrumb-items li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.5);
}

/* About Content */
.about-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .timeline-item {
        padding: 20px 15px;
    }
    
    .timeline-year {
        font-size: 26px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .breadcrumb-area {
        padding: 100px 0 60px;
    }
    
    .breadcrumb-area h1 {
        font-size: 32px;
    }
}

/* Timeline Box - About Page */
.timeline-box {
    padding: 25px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.timeline-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   TIMELINE CAROUSEL - ANIMATED
   =========================================== */

.timeline-carousel-area {
    padding: 80px 0;
}

.timeline-carousel {
    position: relative;
    padding: 0 60px;
    overflow: visible;
}

/* Timeline Horizontal Line - Pseudo Element */
.timeline-carousel::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #d0d0d0 5%, 
        #d0d0d0 95%, 
        transparent 100%);
    z-index: 0;
}

.timeline-swiper {
    position: relative;
    padding-bottom: 60px;
    overflow: visible;
}

.timeline-swiper .swiper-wrapper {
    overflow: visible;
}

.timeline-swiper .swiper-slide {
    overflow: visible;
}

/* Timeline Card */
.timeline-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    overflow: visible;
}

/* Year Circle */
.timeline-year-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(25, 112, 183, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-year-circle span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.swiper-slide:hover .timeline-year-circle {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(25, 112, 183, 0.4);
}

.swiper-slide-active .timeline-year-circle {
    width: 90px;
    height: 90px;
    box-shadow: 0 15px 40px rgba(25, 112, 183, 0.5);
}

.swiper-slide-active .timeline-year-circle span {
    font-size: 20px;
}

/* Connector Line */
.timeline-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), #e0e0e0);
    margin: 0;
}

/* Content Box */
.timeline-content-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 250px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.swiper-slide:hover .timeline-content-box {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.timeline-content-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Swiper slide z-index fix */
.timeline-swiper .swiper-slide {
    z-index: 1;
}

.timeline-swiper .swiper-wrapper {
    z-index: 1;
}

/* Navigation Arrows */
.timeline-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
    z-index: 10;
}

.timeline-prev,
.timeline-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.timeline-prev:hover,
.timeline-next:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Disabled state - sona veya başa gelince */
.timeline-prev.swiper-button-disabled,
.timeline-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.timeline-prev.swiper-button-disabled:hover,
.timeline-next.swiper-button-disabled:hover {
    background: #fff;
    color: var(--primary-color);
    transform: none;
}

/* Pagination */
.timeline-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.timeline-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.timeline-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 991px) {
    .timeline-carousel {
        padding: 0 40px;
    }
    
    .timeline-carousel::before {
        left: 40px;
        right: 40px;
        top: 35px;
    }
    
    .timeline-year-circle {
        width: 70px;
        height: 70px;
    }
    
    .timeline-year-circle span {
        font-size: 16px;
    }
    
    .timeline-content-box {
        padding: 20px 15px;
        min-height: 100px;
    }
    
    .timeline-content-box p {
        font-size: 13px;
    }
    
    .timeline-prev,
    .timeline-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .timeline-carousel {
        padding: 0 20px;
    }
    
    .timeline-carousel::before {
        left: 20px;
        right: 20px;
        top: 30px;
    }
    
    .timeline-carousel-area {
        padding: 60px 0;
    }
    
    .timeline-nav {
        display: none;
    }
    
    .timeline-year-circle {
        width: 60px;
        height: 60px;
    }
    
    .timeline-year-circle span {
        font-size: 14px;
    }
    
    .timeline-connector {
        height: 30px;
    }
}

/* ===========================================
   DATASHEETS PAGE FIX - First Child Override
   =========================================== */

/* Remove first-child active state - all items should start in default state */
.services-style-four:first-child .item .thumb {
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.services-style-four:first-child .bottom a {
    left: -100%;
    opacity: 0;
    visibility: hidden;
}

.services-style-four:first-child .item > i {
    color: var(--primary-color);
}

.services-style-four:first-child a {
    color: #232323;
}

.services-style-four:first-child p {
    color: #666666;
    opacity: 1;
}

.services-style-four:first-child span {
    color: #232323;
    opacity: 1;
}

/* Hover states for all items including first-child */
.services-style-four:hover .item .thumb {
    visibility: visible;
    opacity: 1;
    height: 100%;
}

.services-style-four:hover .bottom a {
    left: 0;
    opacity: 1;
    visibility: visible;
    color: #232323;
}

.services-style-four:hover .item > i {
    color: #ffffff;
}

.services-style-four:hover a {
    color: #ffffff;
}

.services-style-four:hover p {
    color: #ffffff;
    opacity: 0.9;
}

.services-style-four:hover span {
    color: #ffffff;
    opacity: 0.4;
}

/* ===========================================
   SUPPORT PAGE STYLES
   =========================================== */

.page-title-area {
    padding: 60px 0 40px;
}

.page-title-area .sub-title {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-title-area .title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
}

/* Support Cards */
.support-resources-area {
    padding: 60px 0 80px;
}

.support-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.support-card .support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.support-card .support-icon i {
    font-size: 32px;
    color: #fff;
}

.support-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.support-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.support-card .support-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.support-card .support-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Contact Support Section */
.contact-support-area {
    padding: 80px 0;
}

.contact-support-content .sub-title {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-support-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-support-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.support-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.support-features .feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.support-features .feature-item span {
    font-size: 15px;
    color: #555;
}

.contact-support-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-method .contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(25, 112, 183, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method .contact-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-method .contact-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 5px;
}

.contact-method .contact-info a,
.contact-method .contact-info span {
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
}

.contact-method .contact-info a:hover {
    color: var(--primary-color);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ===========================================
   DOCUMENT CARDS (Manuals Page)
   =========================================== */

.documents-area {
    padding: 60px 0 80px;
}

.document-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.document-card .document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.document-card .document-icon i {
    font-size: 28px;
    color: #fff;
}

.document-card .document-content {
    flex: 1;
}

.document-card .document-category {
    display: inline-block;
    background: rgba(25, 112, 183, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.document-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.document-card .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.document-card .btn-download:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ===========================================
   QUALITY POLICY PAGE STYLES
   =========================================== */

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

.quality-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Quality Value Cards (Icon + Text) */
.quality-values-area {
    padding: 80px 0;
}

.quality-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.quality-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(25, 112, 183, 0.15);
}

.quality-value-card .quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.quality-value-card:hover .quality-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(25, 112, 183, 0.3);
}

.quality-value-card .quality-icon i {
    font-size: 32px;
    color: #fff;
}

.quality-value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.quality-value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .quality-value-card {
        padding: 30px 20px;
    }

    .quality-value-card .quality-icon {
        width: 70px;
        height: 70px;
    }

    .quality-value-card .quality-icon i {
        font-size: 28px;
    }

    .quality-value-card h4 {
        font-size: 18px;
    }

    .quality-value-card p {
        font-size: 14px;
    }
}

/* ===========================================
   POLICY PAGES (Privacy, Cookie, etc.)
   =========================================== */

.policy-content-area {
    padding: 80px 0;
}

.policy-content-box {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-content-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-content-box .policy-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    font-style: italic;
}

.policy-content-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-content-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.policy-content-box ul {
    margin: 15px 0 25px 20px;
    padding: 0;
}

.policy-content-box ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.policy-content-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.policy-content-box table {
    width: 100%;
    margin: 20px 0 30px;
    border-collapse: collapse;
}

.policy-content-box .policy-table {
    background: #fff;
}

.policy-content-box .policy-table thead {
    background: var(--primary-color);
}

.policy-content-box .policy-table thead th {
    color: #fff;
    font-weight: 600;
    padding: 15px;
    font-size: 14px;
    border: none;
}

.policy-content-box .policy-table tbody td {
    padding: 15px;
    font-size: 14px;
    color: #555;
    border: 1px solid #e0e0e0;
    vertical-align: top;
}

.policy-content-box .policy-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.policy-content-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content-box a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .policy-content-box {
        padding: 30px 20px;
    }

    .policy-content-box h2 {
        font-size: 24px;
    }

    .policy-content-box h3 {
        font-size: 18px;
    }
}

/* ===========================================
   MOBILE SLIDER TEXT STYLES
   =========================================== */

@media (max-width: 991px) {
    /* Banner/Slider Text - Mobile */
    .banner-area .content h2,
    .banner-style-one .content h2 {
        color: #ffffff !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .banner-area .content p,
    .banner-style-one .content p {
        color: #ffffff !important;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* Slider arka plan karartma - mobilde daha güçlü */
    .banner-thumb.shadow.dark::after {
        background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%) !important;
    }
    
    .banner-area .content .button .btn {
        color: #ffffff !important;
    }
}

@media (max-width: 767px) {
    .banner-area .content h2,
    .banner-style-one .content h2 {
        font-size: 24px !important;
    }
    
    .banner-area .content p,
    .banner-style-one .content p {
        font-size: 13px !important;
    }
}

/* ===========================================
   WHAT WE DELIVER - PROFESSIONAL GRID DESIGN
   =========================================== */

.solutions-section {
    padding: 100px 0 0 0;
    background: #f8fafc;
}

.solutions-section .site-heading {
    margin-bottom: 60px;
}

.solutions-section .site-heading .title {
    font-size: 28px;
    line-height: 1.5;
    color: #1a1a2e;
}

/* Solutions Grid - Full Width */
.solutions-grid {
    display: flex;
    width: 100%;
}

/* Solution Item */
.solution-item {
    flex: 1;
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
}

/* Overlay */
.solution-item .solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(10, 35, 66, 0.3) 0%, 
        rgba(10, 35, 66, 0.7) 50%,
        rgba(10, 35, 66, 0.95) 100%);
    transition: all 0.5s ease;
}

.solution-item:hover .solution-overlay {
    background: linear-gradient(180deg, 
        rgba(25, 112, 183, 0.4) 0%, 
        rgba(25, 112, 183, 0.8) 50%,
        rgba(10, 35, 66, 0.98) 100%);
}

/* Content */
.solution-item .solution-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
    transition: all 0.5s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.solution-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    margin-left: auto;
    margin-right: auto;
}

.solution-icon-wrap i {
    font-size: 24px;
    color: #fff;
    transition: all 0.4s ease;
}

.solution-item:hover .solution-icon-wrap {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Title */
.solution-item h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.solution-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.solution-item:hover .solution-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Description - Hidden by default */
.solution-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    margin-top: 0;
}

.solution-item:hover .solution-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.solution-description p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

/* Solution content text alignment - ALL CENTER */
.solution-content {
    text-align: center;
}

.solution-content h3,
.solution-content .solution-subtitle,
.solution-content .solution-icon-wrap,
.solution-content .solution-description,
.solution-content p {
    text-align: center;
}

/* Icon wrapper centered */
.solution-item .solution-icon-wrap {
    margin-left: auto;
    margin-right: auto;
}

/* Link */
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-link:hover {
    background: #fff;
    color: var(--primary-color);
}

.solution-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(5px);
}

/* Separator Lines Between Items */
.solution-item::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
}

.solution-item:last-child::after {
    display: none;
}

/* Responsive - Tablet */
@media (max-width: 1199px) {
    .solution-item {
        min-height: 450px;
    }
    
    .solution-item .solution-content {
        padding: 30px 20px;
    }
    
    .solution-item h3 {
        font-size: 18px;
    }
    
    .solution-icon-wrap {
        width: 50px;
        height: 50px;
    }
    
    .solution-icon-wrap i {
        font-size: 20px;
    }
}

/* Responsive - Small Tablet */
@media (max-width: 991px) {
    .solutions-section {
        padding: 60px 0 0 0;
    }
    
    .solutions-grid {
        flex-wrap: wrap;
    }
    
    .solution-item {
        flex: 0 0 50%;
        min-height: 400px;
    }
    
    .solution-item:nth-child(2)::after,
    .solution-item:nth-child(4)::after {
        display: none;
    }
    
    .solution-item:nth-child(5) {
        flex: 0 0 100%;
    }
    
    /* Show description on mobile always */
    .solution-description {
        max-height: none;
        opacity: 1;
        margin-top: 15px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .solutions-section .site-heading .title {
        font-size: 22px;
        padding: 0 15px;
    }
    
    .solution-item {
        flex: 0 0 100%;
        min-height: 350px;
    }
    
    .solution-item::after {
        display: none;
    }
    
    .solution-item .solution-content {
        padding: 30px 25px;
    }
    
    .solution-item h3 {
        font-size: 20px;
    }
    
    .solution-description p {
        font-size: 13px;
    }
}

/* ===========================================
   STANDARDIZED PRODUCT PAGE STYLES
   =========================================== */

/* Product Title Standardization */
.product-title,
.benifits-style-one h2,
.single-product-contents h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Product Subtitle (Overview, Features, etc.) */
.single-product-contents h4,
.benifits-style-one h3,
.choose-us-area h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Product Main Section Heading */
.choose-us-area h1,
.smar-mini-dc h1,
.top-info h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.choose-us-area h1::after,
.smar-mini-dc h1::after,
.top-info h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Product Feature List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    margin-bottom: 15px;
}

/* Only add checkmark icon when explicitly using .check-list-icons class */
.check-list-icons li {
    padding-left: 35px;
}

.check-list-icons li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-size: 14px;
}

.check-list li h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.check-list li h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.check-list li p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
    line-height: 1.6;
}

/* Download/Brochure Button Standardization */
.widget-brochure {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.widget-brochure:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.widget-brochure .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.widget-brochure ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-brochure ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-brochure ul li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25, 112, 183, 0.4);
}

.widget-brochure ul li a i {
    font-size: 18px;
}

/* Product Card Standardization */
.choose-us-style-two {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.choose-us-style-two:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.choose-us-style-two img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.choose-us-style-two h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.choose-us-style-two h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.choose-us-style-two h4 a:hover {
    color: var(--primary-color);
}

.choose-us-style-two p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.choose-us-style-two .button {
    margin-top: auto;
}

/* Standard "Learn More" Button */
.btn-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 112, 183, 0.4);
    color: #fff;
}

/* Product Specs Card */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

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

.card .card-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.card .card-body {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Tab Navigation Standardization */
#urun-detay-nav .nav-tabs {
    border: none;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 8px;
    flex-wrap: wrap;
    gap: 5px;
}

#urun-detay-nav .nav-tabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    background: transparent;
    transition: all 0.3s ease;
}

#urun-detay-nav .nav-tabs .nav-link:hover {
    background: rgba(25, 112, 183, 0.1);
    color: var(--primary-color);
}

#urun-detay-nav .nav-tabs .nav-link.active {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 12px rgba(25, 112, 183, 0.3);
}

#urun-detay-nav .nav-tabs .nav-link i {
    font-size: 13px;
}

/* Mobile Responsive Tabs */
@media (max-width: 768px) {
    #urun-detay-nav .nav-tabs {
        flex-direction: column;
        gap: 4px;
    }
    #urun-detay-nav .nav-tabs .nav-link {
        padding: 10px 16px;
        font-size: 13px;
        text-align: left;
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    #urun-detay-nav .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Tab Content Table */
.tab-content-info .table {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.tab-content-info .table td {
    padding: 15px 20px;
    font-size: 14px;
    vertical-align: middle;
    border-color: #eee;
}

.tab-content-info .table tr:first-child td {
    border-top: none;
}

/* Accordion Standardization */
.accordion-item {
    border: 1px solid #eee;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    padding: 18px 25px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 14px;
    color: #666;
}

.accordion-body p {
    margin: 8px 0;
    line-height: 1.6;
}

/* Inventory/Product List Table */
#table .row {
    display: flex;
    border-bottom: 1px solid #eee;
}

#table .row.title {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px 10px 0 0;
}

#table .row.title ul li {
    color: #fff;
    font-weight: 600;
}

#table .row ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

#table .row ul li {
    flex: 1;
    padding: 15px 20px;
    font-size: 14px;
}

#table .row ul li:first-child {
    flex: 0 0 150px;
    font-weight: 600;
}

#table article.row:nth-child(odd) {
    background: #f8f9fa;
}

/* First Text/Intro Paragraph */
.firt-text h3 {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
}

/* Product Image Styling */
.product-thumb img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Adjustments for Product Pages */
@media (max-width: 991px) {
    .product-title,
    .benifits-style-one h2,
    .single-product-contents h2 {
        font-size: 26px;
    }

    .choose-us-area h1,
    .smar-mini-dc h1,
    .top-info h1 {
        font-size: 24px;
    }

    #urun-detay-nav .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }

    .widget-brochure {
        padding: 20px;
    }

    .widget-brochure ul li a {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .product-title,
    .benifits-style-one h2,
    .single-product-contents h2 {
        font-size: 22px;
    }

    .choose-us-area h1,
    .smar-mini-dc h1,
    .top-info h1 {
        font-size: 20px;
    }

    #urun-detay-nav .nav-tabs {
        flex-direction: column;
    }

    #urun-detay-nav .nav-tabs .nav-link {
        text-align: center;
    }

    #table .row ul {
        flex-direction: column;
    }

    #table .row ul li:first-child {
        flex: none;
        background: rgba(25, 112, 183, 0.1);
    }
}


/* ===========================================
   PRODUCT PAGE TEMPLATE - NEW STRUCTURE
   =========================================== */

/* Product Section Layout */
.product-section {
    padding: 80px 0;
}

.product-section .container {
    max-width: 1200px;
}

/* Product Title */
.product-section .product-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.product-section .product-title i {
    font-style: italic;
    color: var(--primary-color);
}

/* Text Highlight - Italic and Blue */
.text-highlight,
.product-title .text-highlight {
    font-style: italic;
    color: var(--primary-color);
}

/* Product Description */
.product-section .product-description {
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

/* TwentyTwenty Before/After Container */
.twentytwenty-container {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.twentytwenty-container img {
    width: 100%;
    display: block;
}

/* GET OFFER Button */
.product-cta-btn {
    text-align: center;
    margin-top: 30px;
}

.product-cta-btn .btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Features List */
.product-features {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.product-features h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 25px;
}

.product-features .list-group {
    border: none;
}

.product-features .list-group-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
    font-size: 15px;
    color: #555;
    background: transparent;
}

.product-features .list-group-item:last-child {
    border-bottom: none;
}

/* Application Areas - Colored Table Style */
.application-areas {
    margin-top: 0;
    padding: 0;
}

.application-areas h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.application-areas h3::before {
    content: '\f085';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 24px;
    color: var(--primary-color);
}

.application-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.application-area-item {
    background: var(--white);
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 112, 183, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.application-area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 112, 183, 0.15);
    border-color: var(--primary-color);
}

.application-area-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.application-area-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Alternative: Horizontal Pills Style */
.application-areas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.application-pill {
    background: var(--white);
    border: 1px solid rgba(25, 112, 183, 0.15);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.application-pill:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 112, 183, 0.25);
}

.application-pill:hover i {
    color: var(--white);
}

.application-pill i {
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Video Section */
.product-video-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-video-section video {
    width: 100%;
    display: block;
}

.product-video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Leaflet/Catalog Button Section */
.product-leaflet-section {
    padding: 60px 0;
    text-align: center;
    background: #f8f9fa;
}

.product-leaflet-section .btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.product-leaflet-section .btn i {
    font-size: 22px;
}

/* Page Title Mini */
.page-title-mini {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 30px 0;
    color: #fff;
}

.page-title-mini h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.page-title-mini .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-title-mini .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.page-title-mini .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-title-mini .breadcrumb-item a:hover {
    color: #fff;
}

.page-title-mini .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.page-title-mini .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/* Responsive */
@media (max-width: 991px) {
    .product-section .product-title {
        font-size: 28px;
    }
    
    .product-section {
        padding: 50px 0;
    }
    
    .twentytwenty-container {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .product-section .product-title {
        font-size: 24px;
    }
    
    .product-leaflet-section .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ===========================================
   13.5 LANGUAGE TOGGLE
   =========================================== */
.lang-switch {
    display: flex;
    align-items: center;
    margin-right: 10px;
    gap: 2px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--primary-color, #0066cc);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color, #0066cc);
}

.lang-btn:hover {
    background: transparent;
    color: var(--primary-color, #0066cc);
    text-decoration: none;
}

.lang-divider {
    color: #ccc;
    font-size: 13px;
    font-weight: 300;
    margin: 0 1px;
}

/* Mobile Language Toggle */
.mega-mobile-lang {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color, #0066cc);
    text-decoration: none;
    border: 2px solid var(--primary-color, #0066cc);
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.mobile-lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.mobile-lang-btn.active:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .lang-switch {
        margin-right: 5px;
    }
}

/* ===========================================
   14. SEARCH FUNCTIONALITY
   =========================================== */
.header-search {
    position: relative;
    margin-right: 15px;
}

.search-toggle {
    width: var(--touch-target);
    height: var(--touch-target);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.search-toggle:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.search-toggle i {
    font-size: 18px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 700px;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    font-size: var(--text-xl);
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--text-color);
    box-shadow: var(--shadow-lg);
    outline: none;
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--touch-target);
    height: var(--touch-target);
    background: var(--gradient);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.search-form button i {
    font-size: 18px;
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 10px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
    color: var(--text-color);
    text-decoration: none;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}

.search-result-item span {
    font-weight: 500;
}

.search-popular {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.search-popular h6 {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-popular-tags a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: var(--text-sm);
    transition: var(--transition);
}

.search-popular-tags a:hover {
    background: var(--primary-color);
}

/* ===========================================
   15. ENHANCED BREADCRUMB WITH SCHEMA
   =========================================== */
.breadcrumb-area {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8eff7 100%);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: var(--text-sm);
}

.breadcrumb-modern li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-modern li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: var(--touch-target);
}

.breadcrumb-modern li a:hover {
    color: var(--primary-color);
    background: var(--white);
}

.breadcrumb-modern li a i {
    font-size: 14px;
}

.breadcrumb-modern li .separator {
    color: var(--text-muted);
    font-size: 12px;
}

.breadcrumb-modern li.active span {
    color: var(--primary-color);
    font-weight: 600;
    padding: 6px 12px;
}

/* Breadcrumb with background image */
.breadcrumb-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.breadcrumb-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 112, 183, 0.9) 0%, rgba(16, 76, 186, 0.85) 100%);
}

.breadcrumb-banner .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-banner h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: var(--text-3xl);
}

.breadcrumb-banner .breadcrumb-modern li a,
.breadcrumb-banner .breadcrumb-modern li .separator {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-banner .breadcrumb-modern li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.breadcrumb-banner .breadcrumb-modern li.active span {
    color: #fff;
}

/* ===========================================
   16. LOADING & SKELETON STATES
   =========================================== */

/* Page Loading Overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Logo Loader */
.logo-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-loader img {
    width: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; transform: translateX(0); }
    50% { width: 70%; }
    100% { width: 100%; transform: translateX(0); }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-title {
    height: 28px;
    width: 80%;
    margin-bottom: 15px;
}

.skeleton-image {
    width: 100%;
    padding-bottom: 60%;
}

.skeleton-card {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
}

/* Content Loading State */
.content-loading {
    position: relative;
    min-height: 200px;
}

.content-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Lazy Load Image Placeholder */
.lazy-image {
    background: var(--bg-light);
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    background: transparent;
}

/* ===========================================
   17. STICKY HEADER ENHANCED
   =========================================== */
.mega-header {
    position: relative;
    z-index: 1000;
    transition: var(--transition);
}

.mega-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mega-header.sticky .mega-nav {
    padding: 10px 0;
}

.mega-header.sticky .mega-logo img {
    height: 40px;
    transition: var(--transition);
}

.mega-header.sticky + .top-bar-area {
    margin-top: 70px;
}

/* Hide top bar when sticky */
body.header-sticky .top-bar-area {
    display: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient);
    z-index: 10001;
    transition: width 0.1s linear;
}

/* ===========================================
   18. TOUCH-FRIENDLY MOBILE DESIGN
   =========================================== */

/* Ensure minimum touch target sizes */
@media (max-width: 991px) {
    /* All clickable elements */
    a, button, .btn,
    input[type="submit"],
    input[type="button"],
    .mega-mobile-nav a,
    .mobile-accordion-header {
        min-height: var(--touch-target);
        display: inline-flex;
        align-items: center;
    }

    /* Navigation items */
    .mega-mobile-nav > li > a {
        padding: 14px 20px;
        font-size: 16px;
    }

    .mega-mobile-submenu li a {
        padding: 12px 20px 12px 35px;
        min-height: var(--touch-target);
    }

    /* Form inputs */
    input, select, textarea {
        min-height: var(--touch-target);
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Cards tap area */
    .feature-card,
    .service-card,
    .product-card {
        cursor: pointer;
    }

    /* Adequate spacing between touch targets */
    .mega-mobile-nav > li {
        border-bottom: 1px solid var(--border-color);
    }

    /* Larger icons on mobile */
    .mega-mobile-nav i {
        font-size: 18px;
        width: 24px;
    }
}

/* Touch feedback */
@media (hover: none) {
    .btn:active,
    a:active,
    .feature-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* Swipe indicators - REMOVED */

/* Mobile Bottom Navigation (optional enhancement) */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 11px;
        min-height: var(--touch-target);
        transition: var(--transition-fast);
    }

    .mobile-bottom-nav a i {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:hover {
        color: var(--primary-color);
    }

    /* Add padding to body for bottom nav */
    body.has-bottom-nav {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }
}

/* ===========================================
   19. PERFORMANCE OPTIMIZATIONS
   =========================================== */

/* GPU acceleration for animations */
.mega-header,
.mega-dropdown,
.mega-mobile-menu,
.search-overlay,
.page-loader {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Lazy load images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img.lazyloaded {
    opacity: 1;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .page-loader {
        display: none !important;
    }
}

/* Content visibility for off-screen content */
.product-section:not(:first-child),
.footer-area,
section:nth-child(n+4) {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Optimize font rendering */
.font-display-swap {
    font-display: swap;
}

/* Image optimization classes */
.img-responsive {
    max-width: 100%;
    height: auto;
}

.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.img-contain {
    object-fit: contain;
}

/* Optimize scroll performance */
.smooth-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Prevent layout shift */
.aspect-ratio-16-9 {
    aspect-ratio: 16/9;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4/3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1/1;
}

/* Image placeholder to prevent CLS */
.img-placeholder {
    background: var(--bg-light);
    position: relative;
}

.img-placeholder::before {
    content: '';
    display: block;
    padding-bottom: 60%;
}

.img-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   20. SCROLL TO TOP BUTTON
   =========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(25, 112, 183, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(25, 112, 183, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Mobile adjustment */
@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 80px; /* Above mobile bottom nav if present */
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ===========================================
   21. ADDITIONAL RESPONSIVE FIXES
   =========================================== */

/* Mobile Menu Improvements */
@media (max-width: 991px) {
    .mega-mobile-menu {
        width: 320px;
        max-width: 85vw;
    }

    .mega-mobile-nav > li > a {
        font-family: var(--font-heading);
        font-weight: 600;
    }

    /* Better spacing for touch */
    .mega-mobile-submenu li a {
        padding: 14px 20px 14px 40px;
    }

    /* Search toggle on mobile */
    .header-search {
        margin-right: 10px;
    }

    .search-toggle {
        width: 40px;
        height: 40px;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-banner h1 {
        font-size: var(--text-2xl);
    }
}

/* Mobile search */
@media (max-width: 768px) {
    .search-overlay {
        align-items: center;
        padding-top: 0;
        padding: 20px;
    }

    .search-overlay-content {
        width: 100%;
        max-width: 100%;
    }

    .search-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .search-form input {
        font-size: 16px;
        padding: 16px 55px 16px 18px;
    }

    .search-results {
        max-height: 50vh;
        overflow-y: auto;
    }

    .search-popular-tags {
        justify-content: center;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .search-overlay-content {
        width: 100%;
        padding: 0;
    }

    .search-form input {
        font-size: 16px;
        padding: 14px 50px 14px 16px;
    }

    .search-popular-tags {
        justify-content: center;
    }

    .breadcrumb-banner {
        padding: 50px 0;
    }

    .breadcrumb-banner h1 {
        font-size: var(--text-xl);
    }

    .breadcrumb-modern {
        font-size: var(--text-xs);
    }
}

/* Print styles */
@media print {
    .page-loader,
    .scroll-to-top,
    .search-overlay,
    .mega-mobile-menu,
    .mega-mobile-overlay {
        display: none !important;
    }
}

/* ===========================================
   22. CATEGORY & PRODUCT CARDS
   =========================================== */

/* Category Introduction */
.category-intro {
    background: var(--white);
}

.category-intro .lead {
    font-size: var(--text-lg);
    color: var(--text-light);
    line-height: 1.8;
}

/* Section Title */
.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: var(--text-base);
    margin: 0;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

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

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-content {
    padding: 20px;
    text-align: center;
}

.product-card-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.product-card:hover .product-card-content h4 {
    color: var(--primary-color);
}

/* Category Products Section */
.category-products {
    padding: 60px 0;
}

.category-products.bg-light {
    background: var(--bg-light);
}

/* CTA Section in Categories */
.cta-section {
    background: var(--gradient-dark);
}

.cta-section h3 {
    font-size: var(--text-2xl);
    margin-bottom: 15px;
    color: #fff;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
}

.btn-white {
    background: #fff !important;
    color: var(--primary-color) !important;
    border: none;
}

.btn-white:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Feature Cards in Category Pages */
.features-section .feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.features-section .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.features-section .feature-icon i {
    font-size: 32px;
    color: #fff;
}

.features-section .feature-card h4 {
    font-size: var(--text-lg);
    margin-bottom: 12px;
}

.features-section .feature-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--text-sm);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .category-intro .text-end {
        text-align: left !important;
        margin-top: 20px;
    }

    .category-products {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .product-card-content {
        padding: 15px;
    }

    .product-card-content h4 {
        font-size: var(--text-sm);
    }

    .section-title h2 {
        font-size: var(--text-xl);
    }
}

/* Sidebar Category Links */
.sidebar-cat-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    color: inherit;
    text-decoration: none;
    background: transparent;
}

.sidebar-cat-link:hover {
    color: inherit;
}

.sidebar-cat-item .sidebar-cat-link i:first-child {
    margin-right: 12px;
}

.sidebar-cat-item .sidebar-cat-link span {
    flex: 1;
}

.sidebar-cat-item .sidebar-cat-link .arrow {
    margin-left: auto;
}

/* ===========================================
   21. ACCESSIBILITY & MOBILE ENHANCEMENTS
   =========================================== */

/* Focus Visibility for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 99999;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.skip-to-main:focus {
    left: 0;
    top: 0;
}

/* Sticky CTA Button for Mobile */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 15px;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sticky-cta .btn {
    width: 100%;
    min-height: 48px;
}

@media (max-width: 991px) {
    .sticky-cta {
        display: block;
    }
    
    /* Add padding to body to prevent content overlap */
    body {
        padding-bottom: 72px;
    }
    
    /* Hide sticky CTA when footer is visible */
    footer ~ .sticky-cta {
        display: block;
    }
}

/* Responsive Padding Enhancements */
@media (max-width: 991px) {
    .default-padding {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .default-padding-top {
        padding-top: 60px !important;
    }
    
    .default-padding-bottom {
        padding-bottom: 60px !important;
    }
}

@media (max-width: 767px) {
    .default-padding {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .default-padding-top {
        padding-top: 40px !important;
    }
    
    .default-padding-bottom {
        padding-bottom: 40px !important;
    }
    
    /* Mobile button full width */
    .btn-gradient,
    .btn-theme {
        width: 100%;
        text-align: center;
    }
    
    /* Better touch feedback */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

@media (max-width: 576px) {
    .default-padding {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .btn:active,
    a:active {
        opacity: 0.8;
    }
}

/* Image lazy loading fade effect */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded,
img.lazyloaded,
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* Prevent body scroll when mobile menu open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ===========================================
   22. MOBILE TEXT COLOR FIXES
   =========================================== */

/* Mobile breadcrumb title white */
@media (max-width: 991px) {
    .breadcrumb-area h1 {
        color: #fff !important;
    }
    
    .breadcrumb-area .breadcrumb-item,
    .breadcrumb-area .breadcrumb-item a,
    .breadcrumb-area .breadcrumb-item.active {
        color: #fff !important;
    }
    
    .breadcrumb-area .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.7) !important;
    }
}

/* Contact Now section - white text on mobile */
@media (max-width: 991px) {
    #tanismak .fun-fact-style-one h4,
    #tanismak .fun-fact-style-one p,
    .fun-fact-style-one-box h4,
    .fun-fact-style-one-box p {
        color: #fff !important;
    }
    
    .fun-fact-style-one.text-center h4,
    .fun-fact-style-one.text-center p {
        color: #fff !important;
    }
}

/* "Let's shape the future" section - white text on mobile */
@media (max-width: 991px) {
    #four-item h1,
    #four-item p,
    .fun-factor-area.shadow.dark-small h1,
    .fun-factor-area.shadow.dark-small p {
        color: #fff !important;
    }
}

/* Loading logo centered on mobile */
@media (max-width: 767px) {
    .page-loader {
        justify-content: center;
        align-items: center;
    }
    
    .logo-loader {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .logo-loader img {
        max-width: 180px;
        height: auto;
        margin: 0 auto;
    }
    
    .preloader-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .preloader-inner img {
        margin: 0 auto;
    }
}

/* ===========================================
   23. BROCHURES PAGE STYLES
   =========================================== */

.brochures-section {
    background-color: #f8f9fa;
}

.brochure-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.brochure-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.brochure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.brochure-title {
    padding: 15px;
    text-align: left;
}

.brochure-title h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Brochure card responsive */
@media (max-width: 767px) {
    .brochure-title {
        padding: 12px;
    }
    
    .brochure-title h5 {
        font-size: 0.9rem;
    }
}

/* ===========================================
   24. RESPONSIVE TABLE STYLES
   =========================================== */

/* Policy page tables responsive */
.benifits-style-one table {
    width: 100%;
    border-collapse: collapse;
}

.benifits-style-one table td {
    padding: 10px 5px;
    vertical-align: top;
}

@media (max-width: 767px) {
    .benifits-style-one table,
    .benifits-style-one table tbody,
    .benifits-style-one table tr,
    .benifits-style-one table td {
        display: block;
        width: 100% !important;
    }
    
    .benifits-style-one table tr {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    
    .benifits-style-one table td {
        padding: 5px 0;
    }
    
    .benifits-style-one table td:nth-child(2) {
        display: none; /* Hide the colon column */
    }
    
    .benifits-style-one table td:first-child {
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 5px;
    }
    
    .benifits-style-one table td:last-child {
        padding-left: 0;
    }
}

/* ===========================================
   25. FOOTER MOBILE TEXT CENTER
   =========================================== */

@media (max-width: 991px) {
    footer .f-item {
        text-align: center;
    }
    
    footer .f-item ul {
        display: inline-block;
        text-align: center;
    }
    
    footer .f-item ul li {
        text-align: center;
    }
    
    footer .f-item h4,
    footer .f-item .widget-title {
        text-align: center;
    }
    
    footer .footer-bottom {
        text-align: center;
    }
    
    footer .footer-bottom p {
        text-align: center;
    }
    
    footer .social ul {
        justify-content: center;
    }
}

/* ===========================================
   26. CTA SECTION TEXT CENTERING
   =========================================== */

.cta-section {
    text-align: center;
}

.cta-section h3,
.cta-section p,
.cta-section .btn {
    text-align: center;
}

.cta-section .container {
    text-align: center;
}

@media (max-width: 991px) {
    .cta-section h3,
    .cta-section p {
        text-align: center !important;
    }

    .cta-section .btn {
        display: inline-block;
        margin: 0 auto;
    }
}

/* ===========================================
   27. NESTED SUBMENU STYLES (Resources > Documents)
   =========================================== */

.mega-links .has-submenu {
    position: relative;
}

.mega-links .has-submenu > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mega-links .has-submenu > a .fa-chevron-right {
    font-size: 10px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mega-links .has-submenu:hover > a .fa-chevron-right {
    transform: translateX(3px);
}

.mega-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    z-index: 1000;
}

.mega-links .has-submenu:hover .mega-submenu {
    display: block;
}

.mega-submenu li {
    padding: 0;
}

.mega-submenu li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.mega-submenu li a:hover {
    background: #f5f5f5;
    color: #1970b7;
}

.mega-submenu li a i {
    margin-right: 10px;
    width: 16px;
    color: #1970b7;
}

/* CTA sections: center text override */
.text-center .product-description,
.text-center.product-description {
    text-align: center !important;
}
