@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

body {
    font-family: "Nunito", sans-serif !important;
    background: #fff;
    margin: 0;
    color: #222;
    outline: none !important;
}


.header_tag {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header_tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
}

.header_tag .container {
    position: relative;
    z-index: 2;
}

.logo-img {
    max-height: 70px;
    filter: brightness(1.2);
}

.header-tags {
    gap: 25px;
}

.header-item .nav-link {
    color: black;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
}

.header-item .nav-link:hover {
    color: #2053AD;
    transform: translateY(-1px);
}

.header-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: linear-gradient(90deg, #2053AD, #009ff4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-item .nav-link:hover::after {
    width: 100%;
}

.custom-login-btn {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    padding: 12px 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.custom-login-text {
    font-size: 15px;
    font-weight: 700;
    color: black;
    font-family: 'Nunito', sans-serif;
}

/* Navbar toggler özelleştirmesi - Desktop için gizle */
.navbar-toggler {
    border: 2px solid #00d4aa;
    padding: 8px 12px;
    border-radius: 8px;
    display: none;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 170, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2800, 212, 170, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega Menü Container */
.megamenu-container {
    position: relative;
}

/* Desktop Mega Menü */
.mega-overlay {
    position: fixed;
    top: 7%;
    left: 0;
    width: 100vw;
    height: auto;
    min-height: 440px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Desktop hover */
@media (min-width: 992px) {
    .megamenu-container:hover .mega-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .megamenu-container::before {
        content: '';
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        height: 20px;
        background: transparent;
        z-index: 998;
    }
}

.mega-content {
    width: 90%;
    max-width: 1200px;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.megamenu-container:hover .mega-content {
    transform: translateY(0);
}

.mega-title {
    font-size: 20px;
    font-weight: 700;
    color: #2053AD;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-overlay ul li a {
    position: relative;
    color: #333;
    transition: color 0.2s ease;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: block;
    padding: 8px 0;
}

.mega-overlay ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2053AD, #009ff4);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.mega-overlay ul li a:hover::after {
    width: 55%;
}

.mega-overlay ul li {
    margin-bottom: 12px;
}

.mega-overlay ul li a:hover {
    color: #2053AD;
    text-decoration: none;
}

.mega-overlay ul li label {
    font-size: 12px;
    user-select: none;
    color: #666;
    margin-top: 3px;
    display: block;
    line-height: 1.3;
}

/* MOBIL SIDEBAR MENU - Sadece mobilde aktif */
.mobile-menu-toggle {
    background: linear-gradient(135deg, #2053AD, #009ff4);
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 83, 173, 0.3);
    display: none;
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 83, 173, 0.4);
}

/* Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    z-index: 1600;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-sidebar.active {
    left: 0;
}

/* Sidebar Header */
.mobile-sidebar-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff, #2053ad);
    color: white;
    position: relative;
    overflow: hidden;
}

.mobile-sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
    );
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(0) translateY(0); }
}

.mobile-sidebar-header .logo {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.mobile-sidebar-header .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.mobile-sidebar-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Login Section in Sidebar */
.mobile-login-section {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 212, 170, 0.05);
}

.mobile-login-btn {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    padding: 12px 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: black;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.mobile-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

/* Sidebar Menu */
.mobile-sidebar-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-sidebar-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-sidebar-menu-item:last-child {
    border-bottom: none;
}

/* Menu Link */
.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 83, 173, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

.mobile-menu-link:hover {
    color: #2053AD;
    background: rgba(32, 83, 173, 0.05);
    transform: translateX(10px);
}

.mobile-menu-link .icon {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.mobile-menu-link .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-menu-link.expanded .arrow {
    transform: rotate(180deg);
}

/* Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(32, 83, 173, 0.02);
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-submenu.expanded {
    max-height: 500px;
}

.mobile-submenu-item {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 55px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-submenu-link::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #2053AD;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: #2053AD;
    background: rgba(32, 83, 173, 0.08);
    padding-left: 60px;
}

.mobile-submenu-link:hover::before {
    opacity: 1;
}

.mobile-submenu-description {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 3px;
    font-weight: 400;
}

/* Büyük ekranlar için optimizasyon */
@media (min-width: 1400px) {
    .mega-content {
        max-width: 1400px;
    }

    .mega-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .mega-overlay ul li a {
        font-size: 16px;
        padding: 10px 0;
    }

    .mega-overlay ul li {
        margin-bottom: 15px;
    }

    .mega-overlay ul li label {
        font-size: 13px;
        margin-top: 5px;
    }
}

/* MOBIL AYARLAR - Sadece 991px altında aktif */
@media (max-width: 991.98px) {
    /* Desktop menüyü gizle */
    .navbar-collapse {
        display: none !important;
    }

    /* Mobil menü butonunu göster */
    .mobile-menu-toggle {
        display: block;
    }

    /* Mega menüyü gizle */
    .mega-overlay {
        display: none !important;
    }

    .logo-img {
        max-height: 50px;
    }

    .header_tag {
        padding: 15px 0;
    }
}

/* Küçük mobil ekranlar */
@media (max-width: 576px) {
    .mobile-sidebar {
        width: 100vw;
    }

    .mobile-menu-link {
        font-size: 15px;
        padding: 16px 18px;
    }

    .mobile-submenu-link {
        padding: 12px 18px 12px 45px;
        font-size: 14px;
    }

    .mobile-submenu-link:hover {
        padding-left: 50px;
    }
}

/* Scrollbar Styling */
.mobile-sidebar::-webkit-scrollbar {
    width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2053AD, #009ff4);
    border-radius: 3px;
}

.mobile-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1a4691, #0088cc);
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header_tag {
    animation: fadeInDown 0.6s ease-out;
}

/* Yatay kaydırma önleme */
body {
    overflow-x: hidden;
}

/* Focus states for accessibility */
.mega-overlay ul li a:focus {
    outline: 2px solid #2053AD;
    outline-offset: 2px;
}

.custom-login-btn:focus,
.mobile-login-btn:focus {
    outline: 2px solid #00d4aa;
    outline-offset: 2px;
}
/* HERO */
.hero-section {
    width: 100%;
    min-height: 700px; /* Eskisi 600'dü */
    background: linear-gradient(to bottom, #e3edf7 0%, white 85%); /* Beyaza geçiş daha geç başlasın */
    position: relative;
    overflow: visible;
    z-index: 1;
    padding-bottom: 100px; /* Ek olarak alt boşluk bırak ki carousel yukarıda kalmasın */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 540px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    margin-left: 40px;
    margin-top: 40px;
}

.hero-title-top {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 8px;
    color: #1a237e;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

.hero-title-main {
    font-size: 48px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

.hero-title-blue {
    color: #00b0ff;
    font-size: 48px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    margin-bottom: 0;
    margin-left: 80px;
}

.hero-desc {
    font-size: 14px;
    color: #222;
    margin-top: 32px;
    margin-bottom: 32px;
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #1a237e 0%, #00b0ff 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 38px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.16);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: box-shadow 0.2s, background 0.2s;
}

.hero-btn:hover {
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.24);
    background: linear-gradient(90deg, #1769aa 0%, #00b0ff 100%);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.hero-image img {
    max-height: 480px;
    object-fit: contain;
    margin-right: 40px;
    margin-bottom: 0;
    filter: drop-shadow(0 8px 32px rgba(33, 150, 243, 0.10));
}

/* Brand Carousel Styles */
.brand-carousel-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    overflow: hidden;
}

.brand-carousel-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.brand-carousel .owl-stage-outer {
    overflow: hidden;
}

.brand-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
    cursor: pointer;
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-item img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* Owl Carousel Özelleştirme */
.brand-carousel .owl-dots,
.brand-carousel .owl-nav {
    display: none !important;
}

.brand-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
        order: 2;
    }

    .hero-title-main {
        font-size: 36px;
    }

    .hero-title-blue {
        font-size: 36px;
        margin-left: 0;
    }

    .hero-title-top {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .hero-image {
        order: 1;
        justify-content: center;
    }

    .hero-image img {
        max-height: 300px;
        margin-right: 0;
    }

    .brand-item {
        height: 50px;
    }

    .brand-item img {
        max-height: 30px;
        max-width: 100px;
    }

    .brand-carousel .owl-item {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 28px;
    }

    .hero-title-blue {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 12px;
    }

    .brand-item {
        height: 40px;
    }

    .brand-item img {
        max-height: 25px;
        max-width: 80px;
    }

    .brand-carousel .owl-item {
        padding: 0 5px;
    }
}
/* ABOUT */
.about-section {
    background: #fff;
    padding: 0 0 45px 0;
}

.about-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-image img.about-img-shadow {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.10);
}

.about-title-top {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 0;
    margin-top: 0;
}

.about-title-main {
    font-size: 28px;
    font-weight: 700;
    color: #00b0ff;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 8px;
}

.about-desc {
    font-size: 16px;
    color: #222;
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

.about-features {
    margin-top: 18px;
}

.about-feature-card {
    background: #fff;
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #21368D, #0399D9) border-box;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
    padding: 10px 10px 10px 10px;
    margin-bottom: 20px;
    position: relative;
    transition: border-color 0.2s;
    font-family: 'Nunito', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-right: 15px;
}

.about-feature-title {
    position: absolute;
    top: -18px;
    left: 0;
    background: #fff;
    padding: 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #21368D;
    font-family: 'Nunito', sans-serif;
    z-index: 2;
    border-radius: 6px 6px 0 0;
    line-height: 1.2;
}

.about-feature-desc {
    font-size: 15px;
    color: #222;
    font-family: 'Nunito', sans-serif;
    margin-top: 18px;
}

@media (max-width: 992px) {
    .about-section {
        padding: 24px 0 24px 0;
    }

    .about-title-main {
        font-size: 20px;
    }

    .about-title-top {
        font-size: 16px;
    }

    .about-feature-title {
        font-size: 16px;
        top: -14px;
        left: 12px;
        padding: 0 6px;
    }

    .about-feature-desc {
        font-size: 13px;
        margin-top: 14px;
    }

    .about-feature-card {
        padding: 20px 10px 10px 10px;
        min-height: 80px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 8px;
    }

    .about-image {
        margin-bottom: 18px;
    }

    .about-title-main {
        font-size: 17px;
    }

    .about-title-top {
        font-size: 14px;
    }

    .about-feature-title {
        font-size: 14px;
        top: -10px;
        left: 28%;
        padding: 0 4px;
    }

    .about-feature-desc {
        font-size: 15px;
        margin-top: 10px;
    }

    .about-feature-card {
        padding: 14px 6px 8px 6px;
        min-height: 60px;
        margin-right: 0;
    }
}

/* SERVICES */
.services-section {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.services-title-top {
    font-size: 20px;
    font-weight: 700;
    color: #21368D;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 8px;
    text-align: center;
}

.services-title-main {
    font-size: 36px;
    font-weight: 700;
    color: #00b0ff;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 60px;
    text-align: center;
}

.services-zigzag {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.services-row {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
}

.services-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    max-width: 500px;
}

.service-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.service-card {
    padding: 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.service-card-content {
    padding: 24px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #21368D;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.service-card-desc {
    font-size: 15px;
    color: #666;
    font-family: 'Nunito', sans-serif;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-card-btn {
    display: inline-block;
    border: 2px solid #0399D9;
    color: #21368D;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    padding: 8px 24px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card-btn:hover {
    background: #0399D9;
    color: #fff;
    transform: translateX(5px);
}

.service-card img{
    width: 100%;
}

.service-info {
    padding-left: 20px;
}

.services-row.reverse .service-info {
    padding-left: 0;
    padding-right: 20px;
}

.service-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #21368D;
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
}

.service-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    color: #00b0ff;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00b0ff, #0399D9);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 32px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 176, 255, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 255, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-row,
    .services-row.reverse {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .service-info,
    .services-row.reverse .service-info {
        padding: 0;
    }

    .services-zigzag {
        gap: 60px;
    }

    .service-info h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title-main {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-card {
        height: auto;
    }

    .service-card-content {
        height: auto;
    }

    .services-zigzag {
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .services-title-main {
        font-size: 24px;
    }

    .service-info h3 {
        font-size: 24px;
    }
}
/* FOOTER */
.farazi-footer {
    border-top: 1px solid #e5eaf3;
    color: #222;
    font-family: 'Nunito', sans-serif;
    padding: 40px 0 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1 1 150px;
    min-width: 150px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 16px;
    color: #222;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.footer-column ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: 'Nunito', sans-serif;

}

.footer-column ul li a{
    color: inherit;
    text-decoration: none;
}

.footer-column ul li:hover {
    color: #2053AD;
}

.badge-new {
    background: #d9f99d;
    color: #365314;
    font-weight: 600;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
}

.badge-popular {
    background: #e6f4a3;
    color: #687510;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid #dce6f1;
    background: rgb(248, 250, 252);
}

.footer-logo-desc h2 {
    font-weight: 900;
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #222;
}

.footer-logo-desc p {
    font-size: 16px;
    color: #222;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.footer-sponsors img:hover {
    filter: brightness(1);
}

.footer-certified img {
    max-height: 110px;
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-desc h2 {
        font-size: 24px;
    }
}

.footer-bottom-two {
    display: flex;
    justify-content: space-between;
}

/* REFERENCES */
.references-section {
    width: 100%;
    background: #fff;
}

.references-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.references-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #21368D;
    letter-spacing: 1px;
    margin-bottom: 18px;
    margin-top: 18px;
    font-family: 'Nunito', sans-serif;
}

.references-bg {
    position: relative;
    height: 550px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.08);
}

.references-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #48647099;
    z-index: 1;
    pointer-events: none;
}

.references-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    padding: 0 32px;
}

.references-play {
    width: 64px;
    height: 64px;
    background: #1769aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.18);
}

.references-main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 32px;
    line-height: 1.2;
}

.references-list {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.references-item {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: #fff;
    text-shadow: 0 2px 8px rgba(33, 150, 243, 0.18);
    padding: 0 18px;
    position: relative;
}

/* Her yazının arasına dikey çizgi */
.references-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 28px;
    background: #fff;
    opacity: 0.5;
    border-radius: 2px;
    margin-left: 18px;
    margin-right: -8px;
}
.desktop-only {
    display: flex; /* referansların mevcut display özelliğine göre */
}

.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }

    .references-item {
        font-size: 19px;
        text-align: center;
        padding: 0;
    }

    .owl-stage {
        text-align: center;
    }
}


/* ========================= TESTIMONIALS ========================= */
.testimonials-section {
    padding: 80px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-item {
    background: white;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    border-radius: 20px;
    box-shadow: 1px 20px 60px 0px rgb(0 0 0 / 25%);
    margin: 0 100px;
    height: 400px;
    margin-bottom: 70px;
    margin-top: 50px;
}

.logo-section {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.company-logo {
    width: 120px;
    height: 120px;
    background: #2c3e50;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid white;
    border-radius: 12px;
}

.house-icon {
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.company-name {
    font-size: 32px;
    font-weight: 900;
    color: #2c3e50;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.company-tagline {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-content {
    flex: 1;
    padding-left: 40px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: justify;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-details p {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 500;
}

.rating {
    display: flex;
    gap: 5px;
}

.star {
    color: yellow;
    font-size: 24px;
    animation: sparkle 2s ease-in-out infinite;
}

.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.owl-carousel .owl-nav {
    margin-top: unset;
    text-align: center;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #2c3e50 !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    margin: 0 15px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    outline: none !important;
    width: 10%;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.3);
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #e74c3c;
    transform: scale(1.3);
}

/* Fade In/Out Animation */
.owl-carousel .owl-item {
    opacity: 0;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-item {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        text-align: center;
        margin: unset;
    }

    .logo-section {
        flex: none;
    }

    .testimonial-content {
        padding-left: 0;
    }

    .author-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .company-name {
        font-size: 28px;
    }
}
/* STATS */
.stats-section {
    width: 100%;
    background: #fff;
}

.stats-bg {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.stats-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #48647099;
    z-index: 1;
    pointer-events: none;
}

.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-title-top {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: white;
}

.stats-title-main {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    color: white;
    margin-bottom: 32px;
}

.stats-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stats-card {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 24px 32px 18px 32px;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-number {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(33, 150, 243, 0.18);
}

.stats-desc {
    font-size: 16px;
    font-style: italic;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-bg {
        height: 400px;
    }

    .stats-title-main {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .stats-list {
        gap: 12px;
    }

    .stats-card {
        min-width: 120px;
        padding: 14px 10px 10px 10px;
    }

    .stats-number {
        font-size: 24px;
    }

    .stats-desc {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .stats-bg {
        height: 425px;
        border-radius: 0;
    }

    .stats-overlay {
        padding: 0 8px;
    }

    .stats-list {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .stats-card {
        width: 90vw;
        min-width: unset;
        padding: 12px 0 8px 0;
    }
}

/* RESPONSIVE TASARIM */
@media (max-width: 1200px) {



    .about-container {
        gap: 24px;
    }

    .services-list {
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .header_tag .container .row>div {
        flex: 1 1 100%;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-image img {
        width: 100%;
        max-width: 340px;
        height: auto;
        margin-bottom: 18px;
    }

    .about-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .about-features {
        gap: 18px;
        justify-content: center;
    }
    .about-desc {
        font-size: 15px;
    }
    .services-list {
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
    }

    .service-card {
        min-width: 220px;
        max-width: 320px;
        margin: 0 auto;
    }

    .references-bg {
        height: 220px;
    }

    .references-main-title {
        font-size: 20px;
    }

    .references-list {
        gap: 18px;
        font-size: 15px;
    }

    .testimonials-carousel .testimonials-row {
        gap: 18px;
    }

    .testimonial-card {
        width: 90vw;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .header_tag .container .row {
        flex-direction: column;
        gap: 12px;
    }

    .header-tags {
        flex-direction: column;
        align-items: center;
    }

    .header-item {
        margin: 8px 0;
    }

    .custom-login-btn,
    .custom-cart-btn {
        padding: 8px 12px;
        font-size: 15px;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        min-height: unset;
    }

    .hero-content {
        margin: 24px 0 0 0;
        max-width: 100%;
        text-align: center;
    }

    .hero-title-main,
    .hero-title-blue {
        font-size: 32px;
        margin-left: 0;
    }

    .hero-image img {
        margin: 0 auto;
        max-width: 220px;
        max-height: 260px;
    }

    .about-section {
        padding: 32px 0 0 0;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-title-main {
        font-size: 20px;
    }

    .services-section {
        padding: 32px 0 24px 0;
    }

    .services-title-main {
        font-size: 20px;
    }

    .services-list {
        flex-direction: column;
        gap: 12px;
    }

    .service-card {
        max-width: 100%;
        min-width: unset;
        margin-bottom: 12px;
    }

    .references-bg {
        height: 300px;
    }

    .references-main-title {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .references-list {
        gap: 8px;
        font-size: 13px;
    }

    .testimonials-section {
        padding: 32px 0 24px 0;
    }

    .testimonials-title-main {
        font-size: 16px;
    }

    .testimonials-carousel .testimonials-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
    }

    .footer-section {
        padding: 18px 0;
    }
}

.hero-transition {
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(227, 237, 247, 1) 0%, #fff 100%);
    margin-top: -55px;
    z-index: 10;
    position: relative;
}

.custom-login-border {
    display: inline-block;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(90deg, #1a237e 0%, #00b0ff 100%);
}

.custom-login-btn {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.08);
    padding: 8px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    transition: box-shadow 0.2s;
}

.hero-title-underline {
    position: relative;
    font-weight: 700;
    color: #1a237e;
    z-index: 1;
    display: inline-block;
}

.hero-title-underline::after {
    content: "";
    position: absolute;
    left: 45px;
    top: 26px;
    width: 92%;
    height: 22px;
    background: #0399D9;
    opacity: 0.85;
    z-index: -1;
}

/* Hero/Banner */
.about-hero-section {
    position: relative;
    width: 100%;
    height: 315px;
    background: #f7f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #ffffff70;
    z-index: 2;
}
.about-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-left: 48px;
}
.about-hero-title {
    font-size: 32px;
    font-weight: 800;
    color: #21368D;
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: 1px;
}
.about-hero-breadcrumb {
    font-size: 16px;
    color: #21368D;
    opacity: 0.95;
}

/* Tabs */
.about-tabs {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.06);
    padding: 32px 24px 24px 24px;
    margin-bottom: 48px;
}
.about-tab-buttons {
    display: flex;
    margin-bottom: 24px;
    justify-content: center;
}
.about-tab-btn {
    background: #f3f6fa;
    border: none;
    color: #21368D;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 32px;
    transition: background 0.2s, color 0.2s;
    outline: none;
    width: 489px;
    height: 64px;
    border-radius: 5px;

}
.about-tab-btn.active {
    background: #21368D;
    color: #fff;
    border-radius: 5px;
}
.about-tab-content {
    display: none;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    min-height: 80px;
    animation: fadein 0.3s;
    text-align: center;
}
.about-tab-content.active {
    display: block;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 700px) {
    .about-hero-section {
        height: 140px;
    }
    .about-hero-content {
        padding-left: 16px;
    }
    .about-hero-title {
        font-size: 20px;
        width: 100% !important;
    }
    .about-tabs {
        padding: 18px 8px 12px 8px;
    }
    .about-tab-btn {
        font-size: 15px;
        padding: 8px 16px;
    }
}

.custom-tabs {
    border: none;
    margin-bottom: 30px;
}

.custom-tabs .nav-link {
    background: none;
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 15px 25px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 0;
    position: relative;
}


.custom-tabs .nav-link.active {
    color: #21368D;
    background: none;
    border: none;
}

.custom-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #21368D;
}

.digital-card {
    background-image: url('images/blog-icerik.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    height: 200px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-info {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 95%;
    border: 1px solid #00000066;
}

.card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-date {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.date-icon {
    display: flex;
    align-items: center;
    gap: 7px;
}

.takvim-tarih {
    font-size: 13px;
    color: black;
    margin-top: 5px;
}

.card-title {
    color: #21368D;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    width: 80%;
}

.btn-continue {
    background: linear-gradient(90deg, #1a237e 0%, #00b0ff 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}


.blog-image {
    width: 100%;
    height: 500px;
    background-image: url('images/blog-icerik.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.blog-meta {
    color: #666;
    font-size: 14px;
    margin: 15px 0;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-category {
    background: #e8f4fd;
    color: #1976d2;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 15px;
}

.blog-title {
    color: #0399D9;
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.blog-subtitle {
    color: #0399D9;
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.search-container {
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
}

.search-input-group input {
    flex: 1;
    border: 2px solid #ddd;
    border-bottom: 2px solid #03a9f4;
    padding: 10px 12px;
    border-radius: 0;
    font-size: 14px;
    outline: none;
    border-top: 0;
    border-left: 0;

}

.search-input-group button {
    background: #03a9f4;
    border: 2px solid #03a9f4;
    color: white;
    padding: 10px 15px;
    border-radius: 0;
    cursor: pointer;
}

.categories-container {
    margin-bottom: 20px;
}

.categories-header {
    color: #2196f3;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.category-item:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.category-item:last-child {

}

.category-count {
    color: black;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 15px;
}

.other-blogs-container {

}

.other-blogs-header {
    color: #2196f3;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-item:last-child {
    border-bottom: none;
}

.blog-item-content {
    flex: 1;
}

.blog-item-image {
    width: 80px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 4px;
    flex-shrink: 0;
}

.blog-item-date {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.blog-item-date i {
    margin-right: 5px;
}

.blog-item-title {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.main-content {
    background: white;
    border-radius: 5px;
    padding: 20px;
}

.contact-info-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
}

.contact-icon {
    font-size: 3rem;
    color: #666;
    margin-bottom: 20px;
}

.contact-title {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-link {
    color: #666;
    text-decoration: none;
}

.contact-link:hover {
    color: #333;
    text-decoration: underline;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}

.contact-form-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-title {
    color: #0399D9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-label {
    color: #21368D;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 17px;
}

.form-control {
    border: 1px solid #00000080;
    border-radius: 15px;
    padding: 12px 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #2196f3;
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

.captcha-container {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.captcha-code {
    border: 1px solid #00000080;
    padding: 12px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    min-width: 50%;
    margin-top: 12px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(90deg, #1a237e 0%, #00b0ff 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.row-gap {
    margin-bottom: 40px;
}

.sidebar {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: fit-content;
}

.sidebar-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
}

.sidebar-header h5 {
    color: #495057;
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.sidebar-menu {
    padding: 0;
}

.sidebar .nav-link {
    color: #6c757d;
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: block;
    background: white;
    text-align: left;
}

.sidebar .nav-link:last-child {
    border-bottom: none;
    border-radius: 0 0 7px 7px;
}

.sidebar .nav-link:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.sidebar .nav-link.active {
    background-color: #e7f3ff;
    color: #0066cc;
    font-weight: 600;
}

.main-content {
    padding: 20px 40px 20px 0;
}

.section-title {
    color: #00b8d4;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #00b8d4;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px 0;
}

.description-text {
    color: #495057;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #00b8d4;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.feature-title {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 16px;
}

.feature-description {
    color: #495057;
    line-height: 1.5;
    font-size: 14px;
    text-align: justify;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 20px;
    }

    .sidebar {
        margin: 10px;
    }

    .hero-title-underline::after {
        left: unset;
        right: 8px;
        top: 15px;
    }

    .hero-transition {
        background: linear-gradient(180deg, rgb(237 246 255) 0%, #d7e2fbf5 100%);
    }

    .about-desc {
        font-size: 18px;
    }

    .references-item:not(:last-child)::after {
        display: none;
    }

    .blog-image {
        height: 300px;
    }

    .custom-tabs{
        justify-content: center;
    }

    .card-container {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-transition {
        margin-top: 0px;
    }
}
