/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    font-size: 14px; 
}

.header-section {
    background-image: url('../../images/slide1.jpg'); /* Arka plan resmi */
    background-size: cover; /* Resmi tamamen kaplar */
    background-position: center; /* Resmi ortalar */
    background-repeat: no-repeat; /* Resmin tekrar etmesini engeller */
    background-color: #333338; /* Yedek arka plan rengi */
    padding: 20px 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
   
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    margin: 20px auto;
    width: 85%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2), inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.header-section .logo {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    
}

.header-section .logo img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffae00;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {
  
    /* Header */
    .header-section {
        position: relative;
        padding: 60px 0;
    }

    .header {
        background-color: transparent; /* Beyaz arka planı kaldırıyoruz */
        box-shadow: none; /* Gölgeyi de kaldırıyoruz */
        padding: 0; /* Padding'i sıfırlıyoruz */
        margin: 0; /* Margin'i sıfırlıyoruz */
        border-radius: 0; /* Border-radius'u sıfırlıyoruz */
    }
    
    .header-section .logo {
        position: absolute;
        left: 50%;
        top: 45px; /* Logonun konteynırdan dışarı taşması için yukarı çıkartıyoruz */
        transform: translateX(-50%);
        z-index: 2; /* Logoyu beyaz konteynırın üstüne çıkartıyoruz */
    }

    .header-section .logo img {
        width: 130px; /* Logonun boyutunu ayarlıyoruz */
        height: auto;
        border-radius: 50%; /* Yuvarlak formu koruyoruz */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Hafif bir gölge ekleyerek logoyu belirgin yapıyoruz */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}


/* General Footer Styles */
/* Footer Genel Ayarları */
.footer {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #123456, #091e42);
    color: #ffffff;
    padding: 20px 0;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
}

/* Footer container */
.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Öğeleri yatayda aralarında boşluk bırakır */
    align-items: center;
    width: 100%; /* Footer genişliğini tamamen kaplar */
    max-width: 1100px; /* Maksimum genişlik ayarlanır */
    margin: 0 auto; /* Ortalamak için margin ayarı */
}

/* Footer logo */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.footer-logo img {
    width: 110px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

/* Footer Links */
.footer-links,
.footer-contact {
    flex: 1;
    text-align: center; /* Metinlerin ortalanması */
}

/* Footer başlıkları */
.footer-links h3,
.footer-contact h3 {
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffab00;
}

/* Footer linkler */
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin: 4px 0;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: #f0f4f8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #ffab00;
}

/* Footer alt kısmı */
.footer-bottom {
    padding-top: 20px;
    font-size: 12px;
    text-align: center;
    width: 100%;
}

/* Mobil görünüm ayarları */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Mobilde dikey hizalama */
    }
    .footer-links, .footer-contact {
        text-align: center; /* Mobilde ortalanmış metin */
    }
}


/* WhatsApp ve Mail Sabit İkonları */
.whatsapp-icon,
.mail-icon {
    position: fixed;
    width: 70px; /* İkon boyutunu dengede tuttum */
    height: 70px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    animation: pulse 1.5s infinite;
    right: 20px;
  
}

.whatsapp-icon {
    bottom: 40px; /* Alttan daha fazla boşluk bırak */
}

.mail-icon {
    bottom: 120px; /* Mail ikonu WhatsApp'ın üstünde ve daha yukarıda */
}

.whatsapp-icon img,
.mail-icon img {
    width: 100%; /* Beyaz çemberi daha da daraltmak için genişliği %96 yaptım */
    height: auto;
    display: block;
    margin: 0%; /* Etrafındaki boşluğu daha ince yapmak için */
    border-radius: 50%;
    
}

.whatsapp-icon:hover,
.mail-icon:hover {
    transform: scale(1.1); /* Hover'da ikonlar hafif büyür */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Animasyon: İkonlar dikkat çekici bir şekilde büyüyüp küçülür */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); /* Büyüme */
    }
    100% {
        transform: scale(1); /* Küçülme */
    }
}

/* Mobil görünüm için medya sorgusu */
@media screen and (max-width: 768px) {
    .whatsapp-icon,
    .mail-icon {
        width: 55px;
        height: 55px;
    }
    .mail-icon {
        bottom: 100px;
    }
    .whatsapp-icon {
        bottom: 30px; /* Mobilde de alttan biraz boşluk bırak */
    }
}





/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {

    /* Hamburger Menu */
    .hamburger {
        position: absolute;
        right: 60px; /* Hamburger menüyü sağa daha yakın bir konuma taşır */
        top: 50%;
        transform: translateY(-50%); /* Ortalamak için translate kullanılır */
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 35px;
        height: 30px;
        cursor: pointer;
        z-index: 200;
        transition: transform 0.3s ease; /* Hover ve tıklamada şık bir geçiş */
    }

    
    .hamburger .bar {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
   /* Çarpı işareti için */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px); /* Çarpının birinci çubuğunu döndürüyoruz */
    background-color: #fff;
    width: 30px; /* Çubuk genişliği sabit */
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Orta çubuğu gizliyoruz */
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px); /* Çarpının üçüncü çubuğunu döndürüyoruz */
    background-color: #fff;
    width: 30px; /* Çubuk genişliği sabit */
}

    /* Sağdan Kaydırmalı Mobil Menü */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;  /* Menüyü başlangıçta ekranın solundan gizle */
        width: 50%; /* Menünün genişliğini 50% yaptım */
        height: 100vh;
        background-color: rgba(51, 51, 51, 0.9);  /* Arka plan %90 opak (biraz transparan) */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease, background-color 0.3s ease; /* Menüyü açarken geçiş efekti */
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2); /* Sol kenar için gölge */
        z-index: 150;
        text-align: left;
    }
    /* Menü aktif olduğunda transparan arka plan */
    .nav-links.active {
        left: 0;
        background-color: rgba(51, 51, 51, 0.9);  /* %90 opaklık ile transparan arka plan */
    }

/* Menüdeki linkler ve yazılar */
.nav-links li {
    margin: 15px 0;
}

.nav-links a {
    color: #ffffff;  /* Yazılar beyaz */
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fcd00c;  /* Menüdeki linklerin hover rengi */
}

/* Sayfa kaymasını engelle */
body.nav-open {
    overflow: hidden;
}
}


/* Overlay ayarları */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Arka plan hafif opak */
    z-index: 100; /* Hamburger menünün altına yerleştirilecek */
    display: none; /* Başlangıçta gizli */
}

/* Menü açık olduğunda overlay'i göster */
#overlay.active {
    display: block;
}

/* Tablet ekranlar için düzenlemeler (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Header Section */
    .header-section {
        padding: 30px 0;  /* Daha fazla dikey boşluk ekleyelim */
    }

    .header {
        padding: 15px 30px;  /* Tablet ekranında header padding’i küçültelim */
        margin: 15px auto;    /* Margin ayarını optimize edelim */
        width: 90%;  /* Header genişliğini biraz arttıralım */
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2), inset 0px 0px 8px rgba(0, 0, 0, 0.4);
    }

    /* Logo */
    .header-section .logo {
        left: 5%;  /* Logo biraz daha sola yaklaştırıldı */
        top: 50%;  
        transform: translateY(-50%);
    }

    .header-section .logo img {
        width: 100px;  /* Logo boyutunu biraz küçültelim */
    }

    /* Navigasyon linkleri */
    .nav-links {
        justify-content: flex-end;  /* Linkleri sağa hizalayalım */
        flex: 1;  /* Logo ve linkler arasında esneklik sağlayalım */
    }

    .nav-links li {
        margin-left: 10px;  /* Linkler arasındaki boşluğu azaltalım */
    }

    .nav-links a {
        font-size: 14px;  /* Link metin boyutunu küçültelim */
        padding-bottom: 3px;  /* Alt kısımda daha az boşluk bırakalım */
    }

    .nav-links a::after {
        height: 2px;  /* Hover efekti için çizgiyi daha ince yapalım */
    }

    /* Hamburger menü */
    .hamburger {
        right: 50px;  /* Hamburger menünün konumunu sağa yaklaştıralım */
        top: 50%;  
        transform: translateY(-50%);
    }

    /* Overlay ayarları */
    #overlay {
        background-color: rgba(0, 0, 0, 0.5); /* Tablet ekranlarda overlay daha şeffaf olsun */
    }
    .text-content{
        font-size: smaller;
    }

   
}













/* Video Section */
.video-section {
    padding: 50px 0;
    background-color: #f0f0f0;
    text-align: center;
    
}
.video-content {
    padding-top: 20px; /* Üstten iç boşluk ekliyoruz */
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 2%;
}

.video-wrapper {
    flex: 1;
    max-width: 500px;
}

.video-wrapper video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-description {
    flex: 1;
    max-width: 500px;
    text-align: left;
    padding: 2%;
}

.video-description h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.video-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Announcements Section */
.announcements-section {
    padding: 50px 0;
    background-color: #ffffff;
    color: #333333;
}

.announcements-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
}



/* Announcement Slider */
.announcement-slider-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.announcement-info {
    flex: 1;
    max-height: 50%;
}

.announcement-caption {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    display: none;
}

.announcement-caption.active {
    display: block;
}

.announcement-caption p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.see-details-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.see-details-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.announcement-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.announcement-slider .announcement-slides {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.announcement-slider .announcement-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.announcement-slider .announcement-slide.active {
    opacity: 1;
    object-fit: fill;
}

.announcement-slider .announcement-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.announcement-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.announcement-nav-btn {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.announcement-nav-btn.active,
.announcement-nav-btn:hover {
    background-color: #007bff;
    transform: scale(1.2);
}


/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {
    /* Announcements Section */
    .announcements-section .container {
        padding: 0 10px;
        
    }

    .announcement-slider-container {
        flex-direction: column;
        align-items: center;
        display: table;
    }

    .announcement-info {
        margin-bottom: 20px;
        text-align: center;
    }

    .announcement-slider {
        max-width: 100%;
    }
}

/* Books Section */
.books-section {
    padding: 37.5px 15px;
    background-color: #f1f1f1;
    text-align: center;
}

.books-section h2 {
    font-size: 28px;
    color: #1f1f1f;
    margin-bottom: 30px;
}

.books-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.books-description {
    font-size: 16px;
    color: #333333;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.book {
    display: flex;
    background-color: #e3d8f1;
    width: 33.75%;
    max-width: 450px;
    margin-bottom: 22.5px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    padding: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: left;
}

.book:hover {
    transform: translateY(-7.5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.918);
}

.book img {
    width: 30%;
    height: auto;
    border-radius: 7.5px;
    object-fit: contain;
    margin-right: 15px;
}

.book .book-details {
    flex: 1;
}

.book .book-details h3 {
    margin-top: 0;
    font-size: 18px;
    color: #272626;
}

.book .book-details p {
    font-size: 14px;
    color: #272626;
    margin: 7.5px 0;
}

.book .see-book-button {
    display: inline-block;
    padding: 7.5px 15px;
    background-color: #1a3b62;
    color: white;
    font-weight: bold;
    border-radius: 7.5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.book .see-book-button:hover {
    background-color: #f0a500;
}

.book:nth-child(1),
.book:nth-child(2),
.book:nth-child(3),
.book:nth-child(4),
.book:nth-child(5),
.book:nth-child(6) {
    background-color: #ffffff;
}

/* See the Other Books Button */
.see-other-books-container {
    text-align: center;
    margin-top: 30px;
}

.see-other-books-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.see-other-books-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}


/* About Section */
.about-section {
    position: relative;
    width: auto;
    height: 375px;
    overflow: hidden;
    border: 3.75px solid orange;
    border-radius: 11.25px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.658);
}

.about-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Team Section */
.team-section-circle {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.team-section-circle h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.team-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.team-circle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-bottom: 50px;
}

.team-circle-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
    
}

.team-circle-member-link h3,
.team-circle-member-link h4,
.team-circle-member-link p {
    text-decoration: none;
}

.team-circle-member {
    background-color: #f1f1f1;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.274);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 250px;
    text-align: center;
    
}

.team-circle-member-large {
    grid-column: span 2;
    max-width: 400px;
}

.team-circle-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.671);
}

.team-circle-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-circle-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    display: block;
}

.team-circle-member:hover .team-circle-img img {
    transform: scale(1.1);
}

.team-circle-member h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.team-circle-member h4 {
    margin: 5px 0 15px;
    font-size: 16px;
    color: #df9711;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-circle-member p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Test Comprehension Section */
.test-comprehension-section {
    background-color: #0a0a0a;
    padding: 50px 0;
    color: #ffffff;
    position: relative;
}

.test-comprehension-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.test-comprehension-section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.test-comprehension-section .text-content {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.test-comprehension-section .text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.test-comprehension-section .text-content h2::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #007bff;
    top: -10px;
    left: 0;
}

.test-comprehension-section .text-content p {
    font-size: 20px;
    line-height: 1.6;
}

.test-comprehension-section .image-content {
    flex: 1;
    max-width: 45%;
    text-align: right;
}

.test-comprehension-section .image-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Mobil İçin Özel Düzenleme */
@media screen and (max-width: 768px) {

    .test-comprehension-section .content {
        flex-direction: column;
    }

    .test-comprehension-section .text-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .test-comprehension-section .image-content {
        max-width: 100%;
        text-align: center;
    }
    .test-comprehension-section .text-content p {
        font-size: 16px;
        line-height: 1.6;
    }






    
/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {
/* Video Section */
.video-section {
    padding: 30px 0;
   
}

.video-wrapper {
    max-width: 85%; /* Videonun genişliğini biraz azalt */
    margin: 0 auto; /* Videoyu ortalar */
    padding: 0 10px; /* Sağ ve sol taraflara boşluk ekler */
}

.video-description {
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
}
.video-content {
    flex-direction: column-reverse; /* This will place the video first */
}



/* Announcements Section */
.announcements-section .container {
padding: 0 10px;
}

/* Ensure Flex Layout for the Announcement Slider Container */
.announcement-slider-container {
display: flex;
flex-direction: column; /* Vertical alignment */
align-items: center;
justify-content: center;
}

/* Style for the Announcement Image */
.announcement-slider .announcement-slide img {
width: 100%;
height: auto;
max-width: 400px; /* You can adjust this for larger screens */
object-fit: contain; /* Ensures the image scales properly */
border-radius: 10px;
margin-bottom: 20px; /* Add margin below the image */
}

/* Align Caption and Button Below the Image */
.announcement-info {
text-align: center; /* Centers the text */
padding: 0 15px; /* Slight padding for mobile */
margin-top: 20px; /* Space between image and text */
order: 2; /* Ensure it appears below the slider */
}

/* Adjust the Caption Font and Line Height for Readability */
.announcement-caption p {
font-size: 16px;
line-height: 1.6;
color: #333;
}

/* Style for the 'See Details' Button */
.see-details-button {
display: inline-block;
width: 200px; /* Adjust this size as needed */
margin: 0 auto; /* Center the button */
margin-top: 15px; /* Space between text and button */
padding: 12px 25px;
background-color: #007bff;
color: white;
font-weight: bold;
border-radius: 50px;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Hover Effect for Button */
.see-details-button:hover {
background-color: #0056b3;
transform: translateY(-3px);
}

/* Flex Layout for the Slider */
.announcement-slider {
display: flex;
justify-content: center;
align-items: center;
width: 100%;  /* Ensure it takes the full width */
max-width: 100%; /* No restriction on width */
margin-bottom: 20px; /* Space below the slider */
height: auto;
overflow: hidden;
order: 1; /* Ensure slider appears first */
}

/* Each Slide Takes Full Width */
.announcement-slide {
flex: 0 0 100%;
width: 100%;
max-width: 400px;
height: auto;
display: block;
}

/* Align Caption Text */
.announcement-caption {
text-align: center;
padding: 0 10px; /* Padding for caption */
}

/* Navigation Buttons */
.announcement-navigation {
display: flex;
justify-content: center;
}

.announcement-nav-btn {
margin-top: 20px;
cursor: pointer;
}

/* Books Section */
.books-section {
padding: 30px 10px;
}

.books-container {
display: flex;
flex-direction: column; /* Stack books vertically on smaller screens */
align-items: center;
}

.book {
width: 90%; /* Responsive width for books on smaller screens */
}

/* Media Queries for Smaller Devices (Mobile) */
@media screen and (max-width: 768px) {

/* Announcement Slider Container */
.announcement-slider-container {
display: flex;
flex-direction: column; /* Dikey sıralama */
align-items: center; /* Ortalamak için */
justify-content: center;
padding: 0 15px; /* Yanlarda biraz boşluk */
}

/* Görsel için ayarlar */
.announcement-slider .announcement-slide img {
width: 95%;
height: auto;
max-width: 400px;
object-fit: contain;
border-radius: 10px;
margin-bottom: 20px;

/* Sağ ve üstten boşluk bırakmak için */
margin-left: 25px; /* Sağdan boşluk */
margin-top: 10px; /* Üstten boşluk */

/* Metin için ayarlar */
.announcement-info {
text-align: center; /* Metni ortalar */
padding: 10 15px;
margin-top: 20px; /* Görsel ile metin arasında boşluk */
}

.announcement-caption p {
font-size: 16px;
line-height: 1.6;
color: #333;
}

/* Buton için ayarlar */
.see-details-button {
display: inline-block;
width: 200px;
margin: 0 auto;
margin-top: 15px;
padding: 12px 25px;
background-color: #007bff;
color: white;
font-weight: bold;
border-radius: 50px;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.see-details-button:hover {
background-color: #0056b3;
transform: translateY(-3px);
}

/* Slider Görünümü */
.announcement-slider {
width: 100%;
max-width: 100%; 
margin-bottom: 20px;
height: auto;
overflow: hidden;
}

.announcement-slide {
width: 100%;
height: auto;
display: block;
margin-bottom: 20px;
}

/* Navigasyon Düğmeleri */
.announcement-navigation {
display: flex;
justify-content: center;
margin-top: 20px;
}

.announcement-nav-btn {
margin: 0 5px;
cursor: pointer;
}

/* About Section */
.about-section {
    height: auto;
    padding: 20px;
    border: 2px solid orange;
    border-radius: 10px;
}

/* Team Section */
.team-section-circle {
    padding: 40px 10px;
}

.team-circle-grid {
    gap: 20px;
}

.team-circle-member {
    max-width: 90%;
}





}}}}




