html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}
/* Menü Öğelerinin Varsayılan Stili */
.navbar-nav .nav-link {
    color: #333; /* Varsayılan metin rengi */
    position: relative; /* Çizgi için göreceli konumlandırma */
    text-decoration: none; /* Alt çizgi kaldır */
    padding: 5px 0; /* Yazının altına boşluk */
    transition: color 0.3s ease; /* Renk geçişi */
}

    /* Çizgi Efekti: Soldan Sağa */
    .navbar-nav .nav-link::after {
        content: ""; /* Pseudo-element içeriği */
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0; /* Başlangıç genişliği */
        height: 3px; /* Çizginin kalınlığı */
        background-color: #FF6600; /* Çizginin rengi */
        transition: width 0.3s ease; /* Genişlik animasyonu */
    }

    /* Hover Durumu: Çizgi Soldan Sağa */
    .navbar-nav .nav-link:hover::after {
        width: 100%; /* Çizgi tam genişler */
    }

    /* Aktif Menü Öğesi */
    .navbar-nav .nav-link.active {
        color: #FF6600; /* Aktif durumda metin rengi */
        font-weight: bold;
    }

        .navbar-nav .nav-link.active::after {
            width: 100%; /* Çizgi tamamen görünür */
        }
/* Menü Öğeleri Arasındaki Mesafe */
.navbar-nav .nav-item {
    margin: 0 0px;
}

/* Aktif Menü Öğesi Rengi */
.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #FF6600; /* Turuncu renk */
}

/* Dropdown Menüsünü Doğru Konumlandırma */
.nav-item .dropdown-menu {
    position: absolute; /* Ebeveyn öğenin altına yerleştir */
    left: 0; /* Dropdown menüsünü sağa kaydırma */
    top: 100%; /* Ebeveyn öğenin hemen altına yerleşmesi için */
    z-index: 1000; /* Menü üzerindeki diğer öğelerle çakışmaması için */
}

/* Dropdown Menü Genişliği */
.dropdown-menu {
    min-width: 200px;
    text-align: center;
}
/* Sağdaki Logo ve Yazı Arasındaki Boşluk */
.navbar .d-flex img {
    margin-right: 5px;
}

/* Navbar Menü Elemanları Arasındaki Mesafe */
.navbar-nav .nav-item {
    margin: 0 15px;
}

/* Menü Ortalama */
.navbar-collapse {
    flex-grow: 0; /* Menü sadece ortalanacak kadar genişler */
}

/* FOOTER */
footer {
    background-color: #343a40; /* Koyu gri arka plan */
}

    footer h5 {
        font-weight: bold;
    }

    footer p {
        font-size: 14px;
        line-height: 1.8;
    }

    footer a {
        text-decoration: none;
    }

    footer .btn-outline-light {
        border: 1px solid #ff6600;
        color: #ff6600;
    }

        footer .btn-outline-light:hover {
            background-color: #ff6600;
            color: white;
        }

    footer .social-icons i {
        font-size: 24px;
    }


/* Dropdown'ı Hover ile açmak için */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none; /* Başlangıçta gizli */
    position: absolute;
    will-change: transform;
}

.dropdown:hover .dropdown-toggle {
    background-color: #6c757d; /* Hover durumu için stil (isteğe bağlı) */
}


/*Hakkımızda alanı */

/* Fotoğraf üstünde yazı olacak alan */
.hero-image {
    background-image: url('your-image-url.jpg'); /* Burada fotoğrafın URL'sini kullanın */
    background-size: cover;
    background-position: center;
    height: 200%; /* Fotoğrafın yüksekliği */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    
}

.hero-text {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    padding: 40px;
}

.navbar {*
   /* position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Menü ön planda olsun */
}
.header-container {
    padding: 48px 50px 0px;
    max-width: 100%;
}

/* Hero Alanı */
.hero-area {
    position: relative;
    background: url('your-image-path.jpg') no-repeat center center;
    background-size: cover;
    height: 400px; /* Boyutu ihtiyaca göre ayarlayabilirsiniz */
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.25rem;
    margin-top: 15px;
}

/* Hakkımızda içeriği */
.about-content {
    padding: 40px 0;
}

    .about-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px; /* Görselin kenarlarını yuvarlatmak için */
    }

/* Alt kısmı ikiye ayırma */
.about-section {
    display: flex;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-image {
    flex: 1;
    padding: 20px;
}

    .about-image img {
        width: 100%;
        height: auto;
    }

/* Turuncu kutu için özelleştirilmiş stil */
.alert {
    background-color: #ec7e1b !important; /* Yeni turuncu renk */
    color: white; /* Beyaz metin */
    font-size: 18px;
    padding: 20px;
    font-weight: bold;
}


.section-title {
    font-size: 3rem;
    font-weight: normal;
    color: #8B0000;
    text-align: center;
}
.section-title2 {
    font-size: 3rem;
    font-weight: normal;
    color: #625ce0;
    text-align: center;
}
.section-title3 {
    font-size: 3rem;
    font-weight: normal;
    color: #942582;
    text-align: center;
}
.section-title4 {
    font-size: 3rem;
    font-weight: normal;
    color: #2daae2;
    text-align: center;
}
.section-title5 {
    font-size: 3rem;
    font-weight: normal;
    color: #134a6d;
    text-align: center;
}

.custom-shadow-box {
    position: relative;
    display: inline-block;
}

    .custom-shadow-box img {
        position: relative;
        z-index: 3;
        display: block;
    }

    .custom-shadow-box::before {
        content: '';
        position: absolute;
        top: -15px; /* Gölgenin üst kaydırması */
        right: 0px; /* Gölgenin sol kaydırması */
        width: 90%;
        height: 90%;
        background-color: #ff6600; /* Turuncu renk */
        z-index: 1;
        border-radius: 7px; /* Kenarları yuvarlatmak için */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    }
.custom-shadow-box-2 {
    position: relative;
    display: inline-block;
}

    .custom-shadow-box-2 img {
        position: relative;
        z-index: 3;
        display: block;
    }

    .custom-shadow-box-2::before {
        content: '';
        position: absolute;
        top: 90px; /* Gölgenin üst kaydırması */
        left: -10px; /* Gölgenin sol kaydırması */
        width: 90%;
        height: 50%;
        background-color: #ff6600; /* Turuncu renk */
        z-index: 1;
        border-radius: 7px; /* Kenarları yuvarlatmak için */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    }

.custom-shadow-box-3 {
    position: relative;
    display: inline-block;
}

    .custom-shadow-box-3 img {
        position: relative;
        z-index: 3;
        display: block;
    }

    .custom-shadow-box-3::before {
        content: '';
        position: absolute;
        top: -8px; /* Gölgenin üst kaydırması */
        left: -10px; /* Gölgenin sol kaydırması */
        width: 90%;
        height: 80%;
        background-color: #ff6600; /* Turuncu renk */
        z-index: 1;
        border-radius: 7px; /* Kenarları yuvarlatmak için */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    }

.custom-shadow-box-4 {
    position: relative;
    display: inline-block;
}

    .custom-shadow-box-4 img {
        position: relative;
        z-index: 3;
        display: block;
    }

    .custom-shadow-box-4::before {
        content: '';
        position: absolute;
        top: 75px; /* Gölgenin üst kaydırması */
        left: -5px; /* Gölgenin sol kaydırması */
        width: 90%;
        height: 30%;
        background-color: #36b1dd; /* Mavi renk */
        z-index: 1;
        border-radius: 7px; /* Kenarları yuvarlatmak için */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    }

.img-right {
    display: block;
    margin-left: auto;
    margin-right: 0;
}

ul {
    list-style-type: none; /* Nokta veya başka bir liste işaret stili */
    margin-left: 20px; /* Soldan boşluk */
    line-height: 1.8; /* Satır aralığı */
}

/* Kutulara turuncu çerçeve */
.border-orange {
    border: 2px solid orange;
    border-radius: 5px;
}

/* Resmin kutu içinde düzgün hizalanmasını sağlar */
.img-fit {
    max-width: 100%;
    max-height: 120px; /* Resim yüksekliğini artırdık */
    object-fit: contain;
    padding: 10px;
}
    /* Kartın genel boyut ve görünümü */
    .card {
    height: 150px; /* Sabit yükseklik (isteğe göre ayarlayabilirsiniz) */
    width:150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icon-large {
    font-size: 2.5rem;
    color: #5a5a5a;
}

hr {
    border-top: 2px solid #ccc;
}

p {
    margin: 0;
    line-height: 1.6;
}

.product-card h5 {
    font-weight: bold;
}

.product-card {
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

.product-title {
    margin-bottom: 15px;
}

.mikro-run {
    color: #d32f2f;
}

.mikro-jump-basic {
    color: #3949ab;
}

.mikro-jump {
    color: #8e24aa;
}

.mikro-fly {
    color: #039be5;
}

.mikro-musavir {
    color: #1e88e5;
}


/* Tab Sekme Tasarımı */
.tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}

.tab {
    padding: 10px 20px;
    font-weight: bold;
    color: #ffc107;
    border-bottom: 2px solid transparent;
}

    .tab:hover {
        color: #000;
    }

    .tab.active {
        border-bottom: 2px solid #ffc107; /* Turuncu */
        color: #000;
    }
