/********** Premium Tech Company CSS **********/
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #475569;
    --accent: #06b6d4;
    --success: #10b981;
    --light: #ffffff;
    --light-bg: #f9fafb;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    
    /* Premium Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 30px -5px rgba(37, 99, 235, 0.3);
    
    /* Premium Spacing */
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    
    /* Premium Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    font-size: 16px;
    background: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

p {
    color: var(--gray-600);
    line-height: 1.7;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

/*** Premium Back to Top Button ***/
.back-to-top {
    position: fixed !important;
    display: none;
    right: 30px !important;
    left: auto !important;
    bottom: 30px !important;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

.back-to-top i {
    color: var(--light);
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Pulse animation when button appears */
@keyframes backToTopPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.6), 0 0 0 8px rgba(37, 99, 235, 0.1);
    }
}

.back-to-top.show {
    display: flex !important;
    animation: backToTopPulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }
    
    .back-to-top i {
        font-size: 22px;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Premium Buttons ***/
.btn {
    font-weight: 600;
    transition: var(--transition);
    border-radius: var(--border-radius);
    padding: 14px 32px;
    font-size: 15px;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-primary);
}

.btn.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.4);
}

.btn.btn-primary:active {
    transform: translateY(0);
}

.btn.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.btn.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-square {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    padding: 0;
}

.btn-sm-square {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    padding: 0;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-lg);
    padding: 0;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-body {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-tag {
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
}

.btn-tag:hover {
    color: var(--primary);
    background: var(--gray-200);
}


/*** Premium Navbar ***/
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .navbar-brand {
    padding: 20px 0;
    transition: var(--transition-fast);
}

.navbar .navbar-brand img {
    height: 40px;
    transition: var(--transition-fast);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin: 0 8px;
    padding: 32px 16px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    outline: none;
    position: relative;
    transition: var(--transition-fast);
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: var(--transition);
}

.navbar.fixed-top {
    transition: var(--transition);
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid #EEEEEE;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Premium Compact Header Carousel ***/
.header-carousel {
    margin-bottom: 0 !important;
}

.header-carousel .owl-carousel-item {
    height: 550px;
    position: relative;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(37, 99, 235, 0.20) 100%);
}

.owl-carousel-item h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.owl-carousel-item p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 28px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    max-width: 550px;
    opacity: 0.95;
}

.owl-carousel-item .btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        height: 480px;
    }

    .owl-carousel-item h1 {
        font-size: 1.85rem;
        margin-bottom: 12px;
    }

    .owl-carousel-item p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Premium Dots Navigation */
.header-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    width: auto;
    height: auto;
}

.header-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: var(--light);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.header-carousel .owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

.header-carousel .owl-dots .owl-dot span,
.header-carousel .owl-dots .owl-dot img {
    display: none;
}

/* Navigation Arrows */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    pointer-events: none;
}

.header-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--light) !important;
    font-size: 18px;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

.header-carousel .owl-nav button.owl-prev {
    left: 25px;
}

.header-carousel .owl-nav button.owl-next {
    right: 25px;
}

@media (max-width: 768px) {
    .header-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .header-carousel .owl-nav {
        padding: 0 15px;
    }
    
    .header-carousel .owl-dots {
        bottom: 18px;
        gap: 6px;
    }
    
    .header-carousel .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
    }
    
    .header-carousel .owl-dots .owl-dot.active {
        width: 24px;
        height: 8px;
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .5);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Premium Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 20px;
    margin-bottom: 16px;
}

.display-5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.display-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
}


/*** Premium Facts Cards - Elevated Design ***/
.fact-item {
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    background: var(--light);
    position: relative;
    overflow: hidden;
    padding: 48px 32px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.06);
    z-index: 10;
}

/* Gradient accent on top */
.fact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fact-item:hover::before {
    transform: scaleX(1);
}

/* Subtle background gradient */
.fact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.fact-item:hover::after {
    opacity: 1;
}

.fact-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.12);
}

/* Icon styling with gradient background */
.fact-item .fact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.fact-item:hover .fact-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3);
}

.fact-item .fact-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(2270%) hue-rotate(212deg) brightness(95%) contrast(92%);
    position: relative;
    z-index: 1;
}

.fact-item:hover .fact-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.15);
}

/* Typography with better hierarchy */
.fact-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.fact-item:hover h3 {
    color: var(--primary);
}

.fact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .fact-item {
        padding: 40px 28px !important;
    }
    
    .fact-item .fact-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
    
    .fact-item .fact-icon img {
        width: 42px;
        height: 42px;
    }
    
    .fact-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .fact-item {
        padding: 36px 24px !important;
    }
    
    .fact-item:hover {
        transform: translateY(-8px);
    }
}


/*** Premium About Section ***/
.about-content {
    padding-left: 20px;
}

.about-content .section-title {
    display: inline-block;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Feature Items */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--light);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-left-color: var(--accent);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    color: var(--light);
    font-size: 20px;
}

.feature-text h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Experience Badge */
.experience-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(37, 99, 235, 0.15);
    transition: var(--transition);
}

.experience-badge:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.experience-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    transition: var(--transition);
}

.experience-badge:hover .experience-number {
    color: var(--light);
}

.experience-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    transition: var(--transition);
}

.experience-badge:hover .experience-text {
    color: var(--light);
}

/*** Premium About Visual Section ***/
.about-visual {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
}

/* Main Image with Badge */
.about-main-image {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/* Floating Badge on Image */
.image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
    z-index: 3;
}

.image-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 24px;
    color: var(--light);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.badge-text span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    line-height: 1;
}

/* Mini Stats Cards */
.stats-mini {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.stat-mini-card {
    background: var(--light);
    padding: 24px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-mini-card:hover::before {
    transform: scaleX(1);
}

.stat-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.3);
}

.stat-mini-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--border-radius);
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-mini-card:hover .stat-mini-icon {
    transform: scale(1.1) rotate(-5deg);
}

.stat-mini-icon i {
    font-size: 26px;
    color: var(--light);
}

.stat-mini-content h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px 0;
    line-height: 1;
}

.stat-mini-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

/* Decorative Elements */
.about-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.decoration-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    top: 20px;
    left: -150px;
}

.decoration-circle-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    bottom: 20px;
    right: -150px;
}

/* About Content */
.about-content {
    padding-left: 20px;
}

.about-content .section-title {
    display: inline-block;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Feature Items */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--light);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-left-color: var(--accent);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    color: var(--light);
    font-size: 20px;
}

.feature-text h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Buttons */
.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    color: var(--light);
    background: var(--primary);
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-visual {
        min-height: 450px;
    }
    
    .stats-grid {
        gap: 16px;
    }
    
    .stat-card {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .about-visual {
        min-height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .about-main-image {
        margin-bottom: 0;
    }
    
    .image-badge {
        bottom: 16px;
        right: 16px;
        padding: 16px 20px;
        gap: 12px;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
    }
    
    .badge-icon i {
        font-size: 20px;
    }
    
    .badge-text strong {
        font-size: 24px;
    }
    
    .badge-text span {
        font-size: 12px;
    }
    
    .stats-mini {
        gap: 12px;
        margin-top: 16px;
    }
    
    .stat-mini-card {
        padding: 20px 16px;
        gap: 12px;
    }
    
    .stat-mini-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-mini-icon i {
        font-size: 22px;
    }
    
    .stat-mini-content h4 {
        font-size: 28px;
    }
    
    .stat-mini-content p {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .decoration-circle-1,
    .decoration-circle-2 {
        display: none;
    }
}


/*** Premium Service Cards ***/
.service-card {
    position: relative;
    background: var(--light);
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    height: 100%;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Gradient border on top */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Background gradient overlay */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-icon i {
    font-size: 36px;
    color: var(--light);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Individual card colors */
.service-card-1 .service-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.service-card-2 .service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.service-card-3 .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-card-4 .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-card-5 .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-card-6 .service-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Service Content */
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-link i {
    font-size: 18px;
    transition: var(--transition);
}

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

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 32px 24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card:hover {
        transform: translateY(-8px);
    }
}

.service-list a {
    margin-bottom: 7px;
    padding: 12px 15px;
    transition: .5s;
}

.service-list a:last-child {
    margin-bottom: 0;
}

.service-list a:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}

.service-list a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0;
    transition: .5s;
    opacity: 0;
}

.service-list a:hover::before {
    opacity: 1;
    margin-right: 10px;
}

.list-note {
    padding: 0;
    list-style: none;
}

.list-note li {
    position: relative;
    display: flex;
    padding-bottom: 25px;
}

.list-note li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 20px;
    background: var(--dark);
    z-index: -1;
}

.list-note li:last-child {
    padding-bottom: 0;
}

.list-note li:last-child:after {
    display: none;
}

.list-note li span {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark);
    font-weight: 500;
    border: 1px solid var(--dark);
    background: #FFFFFF;
}

.list-note li p {
    margin: 0;
}


/*** Premium Project Cards ***/
.project-card {
    position: relative;
    background: var(--light);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Project Image */
.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img,
.project-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img,
.project-card:hover .project-image video {
    transform: scale(1.1);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(6, 182, 212, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    color: var(--primary);
    font-size: 24px;
    text-decoration: none;
    transform: scale(0.8);
    transition: var(--transition);
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: scale(1.1) rotate(45deg);
}

/* Project Content */
.project-content {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.project-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: var(--transition);
}

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

.project-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .project-image {
        height: 240px;
    }
    
    .project-content {
        padding: 24px 20px;
    }
    
    .project-content h4 {
        font-size: 18px;
    }
    
    .project-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.project-detail div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    padding: 12px 15px;
    transition: .5s;
}

.project-detail div:last-child {
    margin-bottom: 0;
}

.project-detail div:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.skill .progress {
    padding: 5px;
}

.skill .progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Blog ***/
.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: blur(1px);
}

.blog-meta {
    text-transform: uppercase;
}

.blog-meta a {
    color: var(--secondary);
}

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

.category-list a {
    margin-bottom: 7px;
    padding: 12px 15px;
    transition: .5s;
}

.category-list a:last-child {
    margin-bottom: 0;
}

.category-list a:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}

.category-list a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0;
    transition: .5s;
    opacity: 0;
}

.category-list a:hover::before {
    opacity: 1;
    margin-right: 10px;
}

.blog-tab .nav-pills .nav-item .active {
    border-bottom: 5px solid var(--dark);
}

.blog-tab .tab-content img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.related-carousel .owl-nav {
    position: absolute;
    width: 76px;
    top: -52px;
    right: 0;
    display: flex;
}

.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--secondary);
    font-size: 14px;
    transition: .3s;
}

.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Pricing ***/
.pricing .nav-link {
    padding: 10px 25px;
    font-weight: 500;
    color: var(--secondary);
    border: 1px solid var(--primary)
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Coming Soon ***/
.coming-soon {
    position: relative;
    padding: 0;
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.coming-soon .col-lg-6:first-child {
    background: rgba(0, 0, 0, .7);
}

.coming-soon .cdt span {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.coming-soon .form-control {
    border-color: var(--secondary);
}


/*** Client Carousel ***/
.client-carousel img {
    opacity: .7;
    transition: .5s;
}

.client-carousel img:hover {
    opacity: 1;
}


/*** Contact ***/
.contact-form .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*** Premium Footer ***/
.footer {
    background: var(--dark);
    position: relative;
    padding-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer h3 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 12px;
    padding: 0;
    text-align: left;
    color: var(--gray-400);
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize;
    transition: var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    padding-left: 8px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--primary);
}

.footer .btn.btn-link:hover::before {
    left: -12px;
    opacity: 1;
}

.footer p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

.footer .form-control {
    border-color: var(--gray-700);
    background: var(--dark-light);
    color: var(--light);
    border-radius: var(--border-radius);
    padding: 12px 16px;
}

.footer .form-control:focus {
    border-color: var(--primary);
    background: var(--dark-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.footer .copyright {
    padding: 30px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer .copyright a {
    color: var(--primary);
    font-weight: 600;
}

.footer .copyright a:hover {
    color: var(--primary-light);
}

.footer .btn-square {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
}

.footer .btn-square:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}


.page-header1 {
    background-image: url( "../img/coursel_1.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height:auto; /* Varsayılan yükseklik */
}

@media (max-width: 768px) {
    .page-header {
        height: 300px; /* Daha küçük cihazlarda yükseklik */
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 200px; /* Daha küçük cihazlar için yükseklik */
    }
}


/*** Premium Animations ***/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/*** Premium Utility Classes ***/
.bg-light-gradient {
    background: var(--gradient-light);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--gray-600) !important;
}

.shadow-premium {
    box-shadow: var(--shadow-xl);
}

.rounded-premium {
    border-radius: var(--border-radius-lg);
}

/*** Premium Spacing ***/
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

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

/*** Premium Divider ***/
.divider-premium {
    height: 1px;
    background: var(--gray-200);
    border: none;
    margin: 60px 0;
}

/*** Smooth Scrollbar ***/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

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

::-moz-selection {
    background: var(--primary);
    color: var(--light);
}

/*** Responsive Improvements ***/
@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid var(--gray-200);
        padding-top: 10px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 0;
    }
    
    .navbar .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: var(--transition);
        opacity: 0;
        border-radius: 12px;
        border: none;
        box-shadow: var(--shadow-xl);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: var(--transition);
        opacity: 1;
    }
}

/*** Modern About Section ***/
.about-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-img::before {
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    opacity: 0.1;
}

/*** Enhanced Typography ***/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
}

/*** Premium Minimal Page Header ***/
.page-header {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.page-header-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 1.5rem;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.page-header .breadcrumb-item:hover {
    color: var(--light);
}

.page-header .breadcrumb-item.active {
    color: var(--accent);
    font-weight: 600;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "/";
    padding: 0 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        min-height: 280px;
    }
    
    .page-header-inner {
        padding: 60px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        min-height: 240px;
    }
    
    .page-header-inner {
        padding: 50px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/*** Modern Blog Cards ***/
.blog-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-item .overflow-hidden {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.blog-item img {
    transition: var(--transition);
}

.blog-item:hover img {
    transform: scale(1.1);
}

/*** Modern Counter ***/
.border-primary {
    border-color: var(--primary) !important;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.border-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
}


/*** Modern Utility Classes ***/
.shadow-soft {
    box-shadow: 0 2px 20px rgba(14, 165, 233, 0.1);
}

.shadow-hover:hover {
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
}

.rounded-modern {
    border-radius: var(--border-radius);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*** Modern Badge ***/
.badge-modern {
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
}

/*** Modern Alert ***/
.alert-modern {
    border-radius: var(--border-radius);
    border: none;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.alert-modern.alert-info {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-left: 4px solid var(--primary);
}

/*** Modern Form Elements ***/
.form-control-modern {
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    padding: 12px 20px;
    transition: var(--transition);
}

.form-control-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
    outline: none;
}

.form-label-modern {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

/*** Modern Table ***/
.table-modern {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table-modern thead {
    background: var(--gradient-primary);
    color: #FFFFFF;
}

.table-modern tbody tr {
    transition: var(--transition);
}

.table-modern tbody tr:hover {
    background: var(--gray-50);
    transform: scale(1.01);
}

/*** Modern Pagination ***/
.pagination-modern .page-link {
    border-radius: 10px;
    margin: 0 4px;
    border: 2px solid var(--gray-200);
    color: var(--dark);
    transition: var(--transition);
}

.pagination-modern .page-link:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination-modern .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: transparent;
}

/*** Modern Modal ***/
.modal-content-modern {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header-modern {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border: none;
}

/*** Modern Breadcrumb ***/
.breadcrumb-modern {
    background: transparent;
    padding: 0;
}

.breadcrumb-modern .breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-modern .breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
    content: "→";
    color: var(--primary);
}

/*** Modern Progress Bar ***/
.progress-modern {
    height: 12px;
    border-radius: 10px;
    background: var(--gray-200);
    overflow: hidden;
}

.progress-modern .progress-bar {
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
}

/*** Modern Tooltip ***/
.tooltip-modern {
    position: relative;
    cursor: help;
}

.tooltip-modern::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 12px;
    background: var(--dark);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.tooltip-modern:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/*** Modern Divider ***/
.divider-modern {
    height: 2px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 2px;
    margin: 40px 0;
    opacity: 0.3;
}

/*** Accessibility Improvements ***/
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: #FFFFFF;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/*** Print Styles ***/
@media print {
    .navbar,
    .footer,
    .back-to-top,
    #spinner {
        display: none !important;
    }
    
    body {
        background: #FFFFFF;
        color: #000000;
    }
}

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

/*** Dark Mode Support (Optional) ***/
@media (prefers-color-scheme: dark) {
    /* Dark mode stilleri buraya eklenebilir */
}

/*** High Contrast Mode ***/
@media (prefers-contrast: high) {
    .btn,
    .card,
    .navbar {
        border: 2px solid currentColor;
    }
}


/*** Premium Carousel Enhancements ***/
.header-carousel .container {
    position: relative;
    z-index: 2;
}

.header-carousel .owl-carousel-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
    z-index: 1;
}

/* Smooth fade animation for slides */
.header-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.header-carousel .owl-item.active {
    opacity: 1;
}

/* Content animation delays */
.header-carousel .animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.header-carousel .slideInDown {
    animation-name: slideInDown;
    animation-delay: 0.3s;
}

.header-carousel .slideInLeft {
    animation-name: slideInLeft;
    animation-delay: 0.6s;
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Premium button in carousel */
.owl-carousel-inner .btn-primary {
    background: var(--light);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.owl-carousel-inner .btn-primary:hover {
    background: var(--primary);
    color: var(--light);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    transform: translateY(-3px);
}

/* Responsive text sizing */
@media (max-width: 576px) {
    .header-carousel .owl-carousel-item {
        height: 450px;
    }
    
    .owl-carousel-item h1 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .owl-carousel-item p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .owl-carousel-item .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Loading state */
.header-carousel.owl-loading {
    opacity: 0;
}

.header-carousel.owl-loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}


/*** Premium Facts Section Positioning ***/
/* Slider'a yakın konumlandırma */
.container-xxl:has(.fact-item) {
    margin-top: -80px !important;
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .container-xxl:has(.fact-item) {
        margin-top: -60px !important;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .container-xxl:has(.fact-item) {
        margin-top: -50px !important;
        padding-bottom: 50px;
    }
}

/* Facts cards stagger animation */
.fact-item.wow {
    visibility: hidden;
}

.fact-item.wow.fadeInUp {
    animation-name: factFadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

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

/* Premium shine effect on icon */
.fact-item .fact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.fact-item:hover .fact-icon::before {
    left: 100%;
    opacity: 1;
}


/*** Premium About Animations ***/
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

/* Feature item stagger animation */
.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Decorative elements */
.about-content::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    z-index: -1;
}

/* Counter animation */
.experience-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/*** Premium Feature Section ***/
.feature-content {
    padding-right: 20px;
}

.feature-content .section-title {
    display: inline-block;
    margin-bottom: 16px;
}

.feature-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Feature Cards */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    background: var(--light);
    border-radius: var(--border-radius-lg);
    padding: 28px 24px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Gradient border on top */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Feature Card Icon */
.feature-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    overflow: visible;
}

.feature-card-icon i {
    font-size: 32px !important;
    color: var(--light) !important;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Individual feature card colors */
.feature-card-1 .feature-card-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.feature-card-2 .feature-card-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-card-3 .feature-card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-card-4 .feature-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Feature Card Content */
.feature-card-content {
    position: relative;
    z-index: 5;
}

.feature-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.feature-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

/*** Premium Feature Visual Section ***/
.feature-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.achievement-card {
    background: var(--light);
    border-radius: var(--border-radius-xl);
    padding: 36px 28px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Gradient background overlay */
.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.achievement-card-1::after {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
}

.achievement-card-2::after {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0.02) 100%);
}

.achievement-card-3::after {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.achievement-card-4::after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.achievement-card:hover::after {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Achievement Icon */
.achievement-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.achievement-icon i {
    font-size: 36px;
    color: var(--light);
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.15) rotate(-10deg);
}

/* Individual achievement card icon colors */
.achievement-card-1 .achievement-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.achievement-card-2 .achievement-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.achievement-card-3 .achievement-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.achievement-card-4 .achievement-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Achievement Content */
.achievement-content {
    position: relative;
    z-index: 1;
}

.achievement-content h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1;
    transition: var(--transition);
}

.achievement-card:hover .achievement-content h3 {
    color: var(--primary);
    transform: scale(1.05);
}

.achievement-content p {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.3;
}

/* Decorative Elements for Feature */
.feature-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.decoration-circle-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    top: 20px;
    right: -150px;
}

.decoration-circle-4 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    bottom: 20px;
    left: -150px;
}

/* Responsive Styles for Feature Section */

/*** Overflow Fix ***/
html,
body {
    overflow-x: hidden;
    width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}


/*** Service Card Animations ***/
@keyframes servicePulse {
    0%, 100% {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 25px 35px -5px rgba(37, 99, 235, 0.15), 0 10px 15px -6px rgba(37, 99, 235, 0.1);
    }
}

/* Stagger animation for service cards */
.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

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


/* Responsive Styles for Feature Section */
@media (max-width: 991px) {
    .feature-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .achievement-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .feature-visual {
        min-height: auto;
        padding: 20px 0;
    }
    
    .feature-list {
        gap: 12px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card-icon i {
        font-size: 28px;
    }
    
    .feature-card-content h4 {
        font-size: 16px;
    }
    
    .feature-card-content p {
        font-size: 13px;
    }
    
    .achievement-grid {
        gap: 12px;
    }
    
    .achievement-card {
        padding: 28px 20px;
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
    }
    
    .achievement-icon i {
        font-size: 32px;
    }
    
    .achievement-content h3 {
        font-size: 36px;
    }
    
    .achievement-content p {
        font-size: 13px;
    }
    
    .achievement-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .decoration-circle-3,
    .decoration-circle-4 {
        display: none;
    }
}


/*** Premium Modern Footer ***/
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

/* Footer About */
.footer-about {
    padding-right: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Logo Image */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 1;
    transform: scale(1.03);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    color: var(--light);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: transparent;
    color: var(--light);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Footer Links */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

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

/* Footer Contact */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact ul li i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact ul li span {
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.copyright-text strong {
    color: var(--light);
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        padding: 60px 0 30px;
    }
    
    .footer-about {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .footer-links,
    .footer-contact {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        padding: 24px 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 16px;
        gap: 20px;
    }
    
    .copyright-text {
        text-align: center;
        font-size: 14px;
    }
}


/*** Premium Contact Section ***/
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--gray-200);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.contact-info-item:hover::before {
    opacity: 1;
}

.contact-info-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--border-radius);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-info-item:hover .contact-info-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-info-icon-box i {
    font-size: 1.75rem;
    color: var(--light);
}

.contact-info-text {
    position: relative;
    z-index: 1;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .contact-info-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-icon-box i {
        font-size: 1.5rem;
    }
    
    .contact-value {
        font-size: 1.1rem;
    }
}

/* Modern Contact Form */
.contact-form-modern {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.form-group-modern {
    position: relative;
    margin-bottom: 0;
}

.form-group-modern label {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition);
    background: var(--light);
    padding: 0 0.5rem;
}

.form-group-modern textarea + label {
    top: 1.5rem;
    transform: translateY(0);
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    background: var(--light);
    color: var(--dark);
    transition: var(--transition);
    outline: none;
}

.form-control-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-control-modern:focus + label,
.form-control-modern:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.form-control-modern::placeholder {
    color: transparent;
}

.form-control-modern:focus::placeholder {
    color: var(--gray-400);
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 140px;
    padding-top: 1rem;
}

.btn-modern {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-modern span,
.btn-modern i {
    position: relative;
    z-index: 1;
}

/* Responsive Form */
@media (max-width: 768px) {
    .contact-form-modern {
        padding: 1.5rem;
    }
}

.contact-info-wrapper {
    height: 100%;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--light);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleY(0);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-info-card:hover::before {
    transform: scaleY(1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--border-radius);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--light);
}

.contact-info-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* Contact Social */
.contact-social h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    color: var(--gray-600);
    transition: var(--transition);
    font-size: 1.25rem;
}

.social-link-item:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--primary);
    color: var(--light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    background: var(--light);
    color: var(--dark);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: var(--light);
}

.contact-form .form-control::placeholder {
    color: var(--gray-400);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-info-icon i {
        font-size: 1.25rem;
    }
}


/*** Service Detail Page ***/
.service-detail-content {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.service-detail-content img {
    border-radius: var(--border-radius);
}

.service-detail-content h2 {
    color: var(--dark);
    font-weight: 700;
}

.service-detail-content h3 {
    color: var(--dark);
    font-weight: 600;
    margin-top: 2rem;
}

.service-feature-box {
    display: flex;
    align-items-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-feature-box i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-feature-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.service-feature-box p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.process-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--gray-600);
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 2rem;
}

.cta-box h4 {
    color: var(--light);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    background: var(--light);
    color: var(--primary);
    font-weight: 600;
}

.cta-box .btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--gray-200);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

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

.service-list li {
    margin-bottom: 0.75rem;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.service-list a i {
    font-size: 1.25rem;
    color: var(--primary);
}

.service-list a:hover,
.service-list a.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--light);
    transform: translateX(8px);
}

.service-list a:hover i,
.service-list a.active i {
    color: var(--light);
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-color: var(--dark);
}

.contact-widget .widget-title {
    color: var(--light);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info i {
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Responsive */
@media (max-width: 991px) {
    .service-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .service-detail-content {
        padding: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
}


/* Modern Service Detail Styles */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15) !important;
}

.icon-box {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.75rem !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-lift:hover .icon-box {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%) !important;
    border-color: rgba(37, 99, 235, 0.2);
}

.icon-box-large {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0 !important;
}

.icon-box-large i {
    font-size: 2.5rem !important;
    color: #2563eb !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hover-lift:hover .icon-box-large {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%) !important;
    border-color: rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.process-number-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
}


/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Tüm Cihazlar İçin Optimize Edilmiş
======================================== */

/* Extra Large Devices (Large Desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Devices (Desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .display-1 {
        font-size: 4rem;
    }
    
    .display-5 {
        font-size: 2.5rem;
    }
}

/* Medium Devices (Tablets Landscape, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .display-1 {
        font-size: 3.5rem;
    }
    
    .display-5 {
        font-size: 2.25rem;
    }
    
    /* Navbar adjustments */
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Service cards */
    .service-item {
        padding: 1.75rem;
    }
}

/* Small-Medium Devices (Tablets Portrait, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .display-1 {
        font-size: 3rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    /* Navbar mobile */
    .navbar-collapse {
        background: var(--light);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hero section */
    .owl-carousel-item h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .owl-carousel-item p {
        font-size: 1rem;
    }
    
    /* Service detail sidebar */
    .service-sidebar {
        margin-top: 3rem;
    }
    
    /* Footer columns */
    .footer-content .col-lg-4,
    .footer-content .col-lg-3,
    .footer-content .col-lg-2 {
        margin-bottom: 2rem;
    }
    
    /* Icon boxes */
    .icon-box-large {
        width: 70px !important;
        height: 70px !important;
    }
    
    .icon-box-large i {
        font-size: 2rem !important;
    }
}

/* Small Devices (Phones Landscape, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .display-1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    /* Navbar */
    .navbar-brand img {
        max-height: 50px;
    }
    
    .navbar-collapse {
        background: var(--light);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    /* Hero carousel */
    .owl-carousel-item h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .owl-carousel-item p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .owl-carousel-item .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Cards */
    .card-body {
        padding: 1.5rem;
    }
    
    /* Service items */
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item h5 {
        font-size: 1.1rem;
    }
    
    /* Icon boxes */
    .icon-box {
        width: 55px !important;
        height: 55px !important;
    }
    
    .icon-box i {
        font-size: 1.5rem !important;
    }
    
    .icon-box-large {
        width: 65px !important;
        height: 65px !important;
    }
    
    .icon-box-large i {
        font-size: 1.85rem !important;
    }
    
    /* Page header */
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    /* Footer */
    .footer-content {
        padding: 3rem 0;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }
}

/* Extra Small Devices (Phones Portrait, up to 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Typography */
    .display-1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.35rem;
    }
    
    h4 {
        font-size: 1.15rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        margin-left: 0.5rem !important;
    }
    
    .navbar-brand img {
        max-height: 45px;
    }
    
    .navbar-toggler {
        margin-right: 0.5rem !important;
        padding: 0.5rem;
    }
    
    .navbar-collapse {
        background: var(--light);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin: 1rem 0.5rem;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hero carousel */
    .header-carousel .owl-carousel-item {
        height: 420px;
    }
    
    .owl-carousel-item h1 {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }
    
    .owl-carousel-item p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .owl-carousel-item .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .owl-carousel-inner {
        padding: 2rem 1rem;
    }
    
    /* Page header */
    .page-header {
        padding: 3rem 0 !important;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header-inner {
        padding: 2rem 0 !important;
    }
    
    /* Sections */
    .container-xxl {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2.5rem !important;
    }
    
    /* Cards */
    .card {
        margin-bottom: 1.25rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-body h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-body p {
        font-size: 0.9rem;
    }
    
    /* Service items */
    .service-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-item h5 {
        font-size: 1rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
    
    /* Icon boxes */
    .icon-box {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
    }
    
    .icon-box i {
        font-size: 1.35rem !important;
    }
    
    .icon-box-large {
        width: 60px !important;
        height: 60px !important;
    }
    
    .icon-box-large i {
        font-size: 1.75rem !important;
    }
    
    /* Buttons */
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Service detail content */
    .service-detail-content img {
        margin-bottom: 1.5rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    
    .service-detail-content .lead {
        font-size: 1.05rem;
    }
    
    /* Sidebar */
    .service-sidebar {
        margin-top: 2.5rem;
    }
    
    .sidebar-widget {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .widget-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .service-list li a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        padding: 2.5rem 0;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links ul li,
    .footer-contact ul li {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
    
    .copyright-text {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
    
    /* Contact page */
    .contact-info-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-icon-box {
        width: 55px;
        height: 55px;
    }
    
    .contact-info-icon-box i {
        font-size: 1.35rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .contact-form-modern {
        padding: 1.5rem;
    }
    
    /* About page */
    .about-img {
        margin-bottom: 2rem;
    }
    
    /* Process numbers */
    .process-number-modern {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    /* Spacing utilities */
    .g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
    
    .g-5 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .gap-3 {
        gap: 0.75rem !important;
    }
    
    /* Text alignment on mobile */
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Very Small Devices (Small Phones, up to 375px) */
@media (max-width: 375px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .display-1 {
        font-size: 1.75rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .header-carousel .owl-carousel-item {
        height: 380px;
    }
    
    .owl-carousel-item h1 {
        font-size: 1.5rem;
    }
    
    .owl-carousel-item p {
        font-size: 0.85rem;
    }
    
    .owl-carousel-item .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .icon-box {
        width: 45px !important;
        height: 45px !important;
    }
    
    .icon-box i {
        font-size: 1.2rem !important;
    }
    
    .icon-box-large {
        width: 55px !important;
        height: 55px !important;
    }
    
    .icon-box-large i {
        font-size: 1.6rem !important;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .header-carousel .owl-carousel-item {
        height: 380px;
    }
    
    .owl-carousel-inner {
        padding: 1.5rem 1rem;
    }
    
    .owl-carousel-item h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .owl-carousel-item p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .page-header {
        padding: 2rem 0 !important;
    }
}

/* High DPI screens (Retina displays) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header-carousel .owl-carousel-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .navbar,
    .header-carousel,
    .footer-modern,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
    }
    
    a {
        text-decoration: underline;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Accessibility improvements */
@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;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Bu bölüm isteğe bağlı olarak dark mode desteği için kullanılabilir */
}


/* ========================================
   ADDITIONAL RESPONSIVE UTILITIES
======================================== */

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive tables */
@media (max-width: 767px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 0.9rem;
    }
}

/* Responsive embeds (videos, iframes) */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive text utilities */
@media (max-width: 767px) {
    .text-sm-center {
        text-align: center !important;
    }
    
    .text-sm-left {
        text-align: left !important;
    }
    
    .text-sm-right {
        text-align: right !important;
    }
}

/* Hide/Show utilities for different screen sizes */
@media (max-width: 575px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 576px) {
    .show-mobile-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .show-tablet-only {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hide-desktop {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .show-desktop-only {
        display: none !important;
    }
}

/* Responsive spacing helpers */
@media (max-width: 767px) {
    .py-mobile-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .py-mobile-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .py-mobile-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mt-mobile-3 {
        margin-top: 1rem !important;
    }
    
    .mt-mobile-4 {
        margin-top: 1.5rem !important;
    }
    
    .mt-mobile-5 {
        margin-top: 2rem !important;
    }
    
    .mb-mobile-3 {
        margin-bottom: 1rem !important;
    }
    
    .mb-mobile-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-mobile-5 {
        margin-bottom: 2rem !important;
    }
}

/* Responsive grid adjustments */
@media (max-width: 767px) {
    .row.g-4 > * {
        margin-bottom: 1rem;
    }
    
    .row.g-5 > * {
        margin-bottom: 1.5rem;
    }
    
    /* Make all columns full width on mobile */
    .col-mobile-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Touch-friendly buttons and links */
@media (max-width: 767px) {
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link {
        min-height: 48px;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

.container,
.container-fluid,
.container-xxl {
    overflow-x: hidden;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari bottom bar */
    .header-carousel .owl-carousel-item {
        min-height: -webkit-fill-available;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}

/* Tablet specific optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    /* iPad and similar tablets */
    .container {
        max-width: 90%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .service-item,
    .card-body {
        padding: 1.75rem;
    }
}

/* Large tablet landscape (iPad Pro, etc.) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .container {
        max-width: 95%;
    }
}

/* Foldable phones and unusual aspect ratios */
@media (max-width: 280px) {
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    h1 {
        font-size: 1.35rem;
    }
    
    .icon-box {
        width: 40px !important;
        height: 40px !important;
    }
    
    .icon-box i {
        font-size: 1rem !important;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .display-1 {
        font-size: 5rem;
    }
}

/* Ensure proper spacing on all devices */
* {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent text overflow */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Word wrap for long text */
.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}

/* Responsive font sizing with clamp */
.responsive-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.responsive-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* Safe area for notched devices (iPhone X, etc.) */
@supports (padding: max(0px)) {
    .navbar,
    .footer-modern {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}


/*** Software Solutions Page Styles ***/

/* Software Image Wrapper */
.software-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.software-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
}

.software-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/* Software Badge */
.software-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.software-badge.badge-new {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--light);
}

.software-badge i {
    font-size: 16px;
}

/* Software Content */
.software-content {
    position: relative;
    padding: 20px 0;
}

.software-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.05);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.software-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.software-content .badge {
    font-size: 13px;
    padding: 8px 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Software Features */
.software-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--gray-100);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-badge:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .software-number {
        font-size: 80px;
        top: -10px;
        left: -10px;
    }
    
    .software-content h2 {
        font-size: 1.75rem;
    }
    
    .software-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .software-number {
        font-size: 60px;
        top: 0;
        left: 0;
    }
    
    .software-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .feature-badge {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .software-features {
        gap: 8px;
    }
}

/* Page Header Enhancement */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(37, 99, 235, 0.85) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* CTA Section Enhancements */
.container-xxl[style*="background: linear-gradient(135deg, #2563eb"] {
    position: relative;
    overflow: hidden;
}

.container-xxl[style*="background: linear-gradient(135deg, #2563eb"]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container-xxl[style*="background: linear-gradient(135deg, #2563eb"]::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Animation for Software Items */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.wow.fadeInUp {
    animation-name: fadeInUp;
}

.wow.fadeInLeft {
    animation-name: slideInFromLeft;
}

.wow.fadeInRight {
    animation-name: slideInFromRight;
}


/*** Mobile Menu Fix ***/
@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        background: var(--light);
        box-shadow: var(--shadow-lg);
        border-radius: var(--border-radius);
        margin-top: 15px;
        padding: 20px !important;
    }
    
    .navbar .navbar-nav {
        margin-top: 0;
        border-top: none;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 12px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid var(--gray-200);
        font-size: 15px;
        transition: var(--transition-fast);
    }
    
    .navbar .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
        padding-left: 10px !important;
        background: rgba(37, 99, 235, 0.05);
        border-radius: var(--border-radius-sm);
    }
    
    .navbar-toggler {
        border: 2px solid var(--primary);
        padding: 8px 12px;
        border-radius: var(--border-radius-sm);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(37, 99, 235, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Mobile Menu Animation */
@media (max-width: 991.98px) {
    .navbar-collapse.collapsing {
        transition: height 0.3s ease;
    }
    
    .navbar-collapse.show {
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Navbar Brand Mobile Fix */
@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        padding: 15px 0;
    }
    
    .navbar .navbar-brand img {
        max-height: 40px;
    }
}

/* Page Header Responsive Fix */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .page-header .breadcrumb {
        font-size: 14px;
    }
}


/*** Professional Clean Pricing Cards ***/
.pricing-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    border-color: var(--primary);
}

.pricing-card-popular {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.pricing-card-popular:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 10;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-header {
    background: var(--gray-50);
    padding: 28px 24px;
    text-align: center;
    border-bottom: 2px solid var(--gray-100);
}

.pricing-card-popular .pricing-header {
    background: var(--primary);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.pricing-card-popular .pricing-header h3 {
    color: white;
}

.pricing-header p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
}

.pricing-card-popular .pricing-header p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-price {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
}

.pricing-card-popular .pricing-price {
    background: rgba(37, 99, 235, 0.05);
}

.price-tl {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.price-tl .currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-right: 4px;
}

.price-tl .amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-tl .period {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
    margin-left: 4px;
}

.price-monthly {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.pricing-features > li {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features > li:last-child {
    border-bottom: none;
}

.pricing-features > li i {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary);
}

.pricing-features > li.text-muted {
    opacity: 0.5;
}

.pricing-features > li.text-muted i {
    color: var(--gray-400);
}

.pricing-card .btn {
    font-size: 14px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background: var(--primary);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.pricing-card .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.pricing-card .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.pricing-card .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Comparison Table Styles */
.table-responsive {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.table {
    margin: 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    padding: 20px;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: var(--transition-fast);
}

.table tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

.table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    border-color: var(--gray-200);
    font-size: 15px;
}

.table tbody td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.table tbody td i {
    font-size: 22px;
}

/* Alert Styles */
.alert-info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.alert-info .alert-heading {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.alert-info ul {
    margin-bottom: 0;
}

.alert-info ul li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Modern FAQ Accordion Styles */
.accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark);
    background: white;
    padding: 20px 24px;
    font-size: 16px;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button::after {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    content: '+';
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: rotate(0deg);
}

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

.accordion-button:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(30, 64, 175, 0.03) 100%);
}

.accordion-body {
    padding: 20px 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    background: white;
    border-top: 1px solid var(--gray-100);
}

/* Pricing Responsive */
@media (max-width: 991px) {
    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .price-tl .amount {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pricing-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .pricing-header {
        padding: 24px 20px;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }

    .pricing-body {
        padding: 24px 20px;
    }
    
    .pricing-price {
        padding: 16px;
    }

    .price-tl .amount {
        font-size: 32px;
    }

    .pricing-features > li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .pricing-features > li i {
        font-size: 16px;
    }
    
    .pricing-card .btn {
        font-size: 13px;
        padding: 12px 20px;
    }
}


/* Pricing Section Overflow Fix */
#pricing {
    overflow: visible;
    width: 100%;
}

#pricing .container {
    overflow: visible;
}

#pricing .row {
    overflow: visible;
}

#pricing .col-lg-4,
#pricing .col-md-6 {
    overflow: visible;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Global Overflow Prevention */
html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Negatif margin taşmalarını önle */
.container,
.container-xxl,
.container-fluid {
    overflow-x: clip;
}

/* WOW animasyonlarının sağa taşmasını önle */
[class*="wow"] {
    overflow: hidden;
}


/* Demo Form Styles */
.demo-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.demo-form-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 32px 28px;
    text-align: center;
    color: white;
}

.demo-form-header i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.9;
}

.demo-form-header h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.demo-form-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.demo-form-body {
    padding: 32px 28px;
}

.demo-form-body .form-floating {
    position: relative;
}

.demo-form-body .form-control,
.demo-form-body .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.demo-form-body .form-control:focus,
.demo-form-body .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: white;
}

.demo-form-body .form-floating > label {
    padding: 16px 16px;
    font-size: 14px;
    color: var(--gray-600);
}

.demo-form-body .form-floating > label i {
    opacity: 0.6;
}

.demo-submit-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.demo-submit-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.demo-submit-btn i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .demo-form-header {
        padding: 28px 24px;
    }
    
    .demo-form-header i {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .demo-form-header h4 {
        font-size: 22px;
    }
    
    .demo-form-body {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .demo-form-header {
        padding: 24px 20px;
    }
    
    .demo-form-header i {
        font-size: 36px;
    }
    
    .demo-form-header h4 {
        font-size: 20px;
    }
    
    .demo-form-body {
        padding: 24px 20px;
    }
    
    .demo-submit-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}


/* Demo Info Card Styles */
.demo-info-card {
    padding: 20px 0;
}

.demo-features {
    margin-bottom: 32px;
}

.demo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.demo-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.demo-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.demo-feature-icon i {
    font-size: 24px;
    color: white;
}

.demo-feature-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.demo-feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.demo-stats {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-stat-item {
    flex: 1;
    text-align: center;
}

.demo-stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    line-height: 1;
}

.demo-stat-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .demo-info-card {
        margin-bottom: 32px;
    }
    
    .demo-feature-item {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .demo-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .demo-feature-icon i {
        font-size: 20px;
    }
    
    .demo-stats {
        gap: 16px;
        padding: 20px;
    }
    
    .demo-stat-item h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .demo-feature-item {
        padding: 14px;
        gap: 12px;
    }
    
    .demo-feature-text h5 {
        font-size: 15px;
    }
    
    .demo-feature-text p {
        font-size: 13px;
    }
    
    .demo-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .demo-stat-item h3 {
        font-size: 24px;
    }
}


/* ============================================
   MacBook Mockup Styles
   ============================================ */

.macbook-mockup {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1500px;
}

/* Project card içindeki MacBook'lar için küçük boyut */
.project-card .macbook-mockup {
    max-width: 100%;
    transform: scale(0.85);
    transform-origin: top center;
}

/* Screenshot item içindeki MacBook'lar için tam boyut */
.screenshot-item .macbook-mockup {
    max-width: 100%;
}

.macbook-screen {
    position: relative;
    width: 100%;
    padding-bottom: 62.5%; /* 16:10 aspect ratio */
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 
        0 0 0 2px #2a2a2a,
        0 0 0 6px #1a1a1a,
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotateX(5deg) rotateY(-2deg);
    transition: transform 0.3s ease;
}

.macbook-mockup:hover .macbook-screen {
    transform: rotateX(0deg) rotateY(0deg);
}

.macbook-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.macbook-screen img {
    position: absolute;
    top: 4%;
    left: 4%;
    width: 92%;
    height: 92%;
    object-fit: cover;
    border-radius: 4px;
}

.macbook-screen > div {
    position: absolute !important;
    top: 4% !important;
    left: 4% !important;
    width: 92% !important;
    height: 92% !important;
    border-radius: 4px !important;
}

.macbook-base {
    position: relative;
    width: 110%;
    height: 20px;
    margin: 0 -5%;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.macbook-base::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

/* MacBook Carousel */
.macbook-carousel {
    position: relative;
    padding: 60px 0;
}

.macbook-carousel .owl-carousel {
    padding: 20px 0;
}

.macbook-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.macbook-carousel .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.9) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.macbook-carousel .owl-nav button:hover {
    background: rgba(37, 99, 235, 1) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

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

.macbook-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.macbook-carousel .owl-dot.active {
    background: rgba(37, 99, 235, 1);
    width: 30px;
    border-radius: 6px;
}

/* Screenshot Gallery */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.screenshot-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
    font-size: 14px;
}

/* Lightbox for screenshots */
.screenshot-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.screenshot-lightbox.active {
    display: flex;
}

.screenshot-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .macbook-mockup {
        max-width: 100%;
    }
    
    .macbook-screen {
        transform: rotateX(2deg) rotateY(-1deg);
    }
    
    .screenshot-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .macbook-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}


/* ============================================
   Application Placeholder Screens
   ============================================ */

.app-placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.app-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.app-placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.app-placeholder-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.app-placeholder-icon i {
    font-size: 24px;
    color: white;
}

.app-placeholder h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.app-placeholder p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    max-width: 200px;
    line-height: 1.3;
}

.app-placeholder-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Different color schemes for each app */
.app-placeholder.ikpro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.app-placeholder.formpro {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.app-placeholder.bookpro {
    background: linear-gradient(135deg, #0dcaf0 0%, #0891b2 100%);
}

.app-placeholder.exampro {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.app-placeholder.clinicpro {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Dashboard Placeholder */
.dashboard-placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    box-sizing: border-box;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.dashboard-title {
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    flex-shrink: 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 24px;
    height: 24px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.stat-icon i {
    font-size: 12px;
    color: #667eea;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    line-height: 1;
}

.stat-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.dashboard-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 5px;
    gap: 3px;
    min-height: 50px;
}

.chart-bar {
    flex: 1;
    max-width: 30px;
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1.5s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
}

.chart-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 55%; animation-delay: 0.6s; }
.chart-bar:nth-child(7) { height: 85%; animation-delay: 0.7s; }

/* Login Placeholder */
.login-placeholder {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    width: 100%;
}

.login-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.login-logo i {
    font-size: 30px;
    color: white;
}

.login-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 25px;
    font-size: 13px;
}

.login-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .dashboard-placeholder {
        padding: 6px;
        gap: 4px;
    }
    
    .dashboard-title {
        font-size: 9px;
    }
    
    .stat-card {
        padding: 6px;
    }
    
    .stat-value {
        font-size: 12px;
    }
    
    .stat-label {
        font-size: 7px;
    }
    
    .stat-icon {
        width: 20px;
        height: 20px;
    }
    
    .stat-icon i {
        font-size: 10px;
    }
    
    .dashboard-chart {
        min-height: 40px;
        padding: 6px;
    }
    
    .chart-placeholder {
        min-height: 30px;
        padding: 3px;
        gap: 2px;
    }
    
    .app-placeholder {
        padding: 10px;
    }
    
    .app-placeholder-icon {
        width: 40px;
        height: 40px;
    }
    
    .app-placeholder-icon i {
        font-size: 20px;
    }
    
    .app-placeholder h3 {
        font-size: 12px;
    }
    
    .app-placeholder p {
        font-size: 9px;
    }
    
    .app-placeholder-badge {
        font-size: 8px;
        padding: 3px 10px;
    }
    
    .login-card {
        padding: 20px;
    }
    
    .login-title {
        font-size: 18px;
    }
    
    .login-logo {
        width: 50px;
        height: 50px;
    }
    
    .login-logo i {
        font-size: 25px;
    }
}
