﻿




.bg-primary {
    background-color: #0066cc !important;  Main blue color 
}

.text-primary {
    color: #0066cc !important;  Main blue color 
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;  White color for links 
    transition: color 0.3s ease;
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: #ffcc00;  Bright color on hover 
    }

.jumbotron {
    background-color: #e9f4ff;  Light blue background 
    padding: 4rem 2rem;
}

.card {
    border: none;
    margin-bottom: 1.5rem;
}

    .card .card-body {
        background-color: #ffffff;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .card:hover .card-body {
        transform: scale(1.05);
    }

html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.content-wrapper {
    flex: 1;
}

footer {
    background-color: #004c99;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 100%;
}

/* Carousel İçin Ayarlar */
#homeCarousel {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #004c99, #ffffff);
}

.carousel-item img {
    max-height: 70vh;
    object-fit: contain;
    width: auto;
    margin: auto;
}

/* Yeni Bölüm Stilleri */
.info-section {
    padding: 50px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.info-card {
    background-color: #004c99;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .carousel-item img {
        max-height: 80vh;
    }
}

@media (min-width: 992px) {
    .carousel-item img {
        max-height: 85vh;
    }
}

.fixed-pagination {
    position: fixed;
    bottom: 60px; /* Footerın hemen üstünde olacak şekilde */
    width: 100%;
    background-color: #f8f9fa; /* Arka plan rengi */
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* Menü Linkleri */
.menu-container a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

    .menu-container a:hover {
        background-color: #007bff;
        color: white;
        border-radius: 5px;
    }

/* Custom Buton */
.custom-button {
    background-color: #007bff; /* Mavi buton */
    color: white; /* Yazı rengi */
    font-weight: bold;
    padding: 10px 20px; /* Daha geniş */
    border: none;
    border-radius: 25px; /* Yuvarlak kenarlar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Hafif gölge */
    transition: all 0.3s ease;
    font-size: 16px; /* Daha büyük yazı */
}

    .custom-button:hover {
        background-color: #0056b3; /* Daha koyu mavi hover */
        transform: scale(1.05); /* Hafif büyüme efekti */
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Hover gölgesi */
    }



/* Ana Menü Başlıkları */
.menu-title {
    color: white;
    font-weight: bold;
    margin-right: 2rem;
    text-decoration: none;
    position: relative;
}

/* Dropdown İçeriği (Gizli Başlangıçta) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #343a40; /* Navbar'ın rengiyle uyumlu */
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    top: 100%; /* Ana menünün hemen altında */
    left: 0;
    white-space: nowrap;
}

    /* Alt Menü İçeriği */
    .dropdown-content a {
        color: white;
        text-decoration: none;
        display: block;
        padding: 0.2rem 0;
    }

/* Hover Durumu: Dropdown Açılır */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Hover ile Bağlantı Efekti */
.dropdown-content a:hover {
    color: #ffc107; /* Sarı renge dönüyor */
}



.form-group {
    margin-bottom: 18px !important; /* Alanlar arası boşluk */
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 6px; /* Label ile input arası boşluk */
        display: inline-block;
    }

.input-group .form-control {
    border-right: 0;
}

.input-group-text {
    background-color: #f8f9fa;
    font-weight: 600;
}



















