/*
Created At: December-31-2024
Created By: Dalia Akter

*/





body {
    font-family: 'Arial', sans-serif;
}
.top-bar a {
    transition: color 0.3s ease-in-out;
}
.top-bar a:hover {
    color: #212121;
}
.top-bar i:hover {
    color: #FFD700;
}
.btn:hover{
  background-color: #be8d0a !important;
  border-color:  #be8d0a !important;
  color: #000000;
}

a.nav-link, .list-unstyled  {
    text-transform: uppercase;
}

.nav-bar {
    background: linear-gradient(90deg, #FFD700, #B8860B); /* Gold and dark gold gradient */
    color: white; /* Optional: Set text color to contrast the background */
    padding: 15px; /* Adjust padding as needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for depth */
}


.logo {
    position: absolute;
    top: 0;
    left: auto; /* Adjust if needed to center or align differently */
    z-index: 1000; /* Ensure it overlays other elements */
    width: 120px; /* Adjust size if necessary */
    height: auto; /* Maintain aspect ratio */
    background-color: #212529; /* Optional: add a background to make it more visible */
    padding: 10px; /* Optional: add some padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: add shadow for better visibility */
}

#slider p{
	color: #c7c1c1;
}

/* Section 2 */
/* Section Styling */
#student-of-life-section {
    background: url('assets/images/text-bg.jpg') center center / cover no-repeat;
    color: #ffffff;
    min-height: 600px; /* Adjust as needed */
    position: relative;
    overflow: hidden;
}

/* Overlay Styling */
#student-of-life-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1;
}

/* Content Styling */
#student-of-life-section .container {
    z-index: 2;
}

/* Heading Styling */
.heading-title {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Button Styling */
#student-of-life-section .btn {
    background-color: #ff5722;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Icon Styling */
#student-of-life-section i {
    color: #ffffff;
}

.directory {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px; /* Optional, to give rounded corners */
    overflow: hidden; /* Optional, to ensure shadow doesn't go inside content */
}

p.mt-4.lead.sakib {
    color: #ccc !important;
}



/* Section 3 */
#growth-healing-section {
    background-color: #f8f9fa; /* Light background */
    color: #333333;
}

/* Divider Styling */
#growth-healing-section .divider {
    border: 0;
    height: 1px;
    background: #cccccc;
    width: 50%;
    margin: 0 auto;
}

/* Heading Styling */
#growth-healing-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

/* Paragraph Styling */
#growth-healing-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* Image Styling */
#growth-healing-section img {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Section 3.2 */

.section-book {
	background:#e2e2e2cc !important;
}


/* Section 4 */
/* Add fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Style for the gallery images */
.gallery-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    height: 0;
    padding-bottom: 66.84210526315789%; /* 570x381px Aspect Ratio */
    position: relative;
}

/* Adjusting the second image size (669x504px) */
.gallery-image:nth-child(2) {
    padding-bottom: 75.33632286995515%; /* 669x504px Aspect Ratio */
}

/* Optional: Add padding and margins for responsiveness */
@media (max-width: 768px) {
    .gallery-image {
        margin-bottom: 15px;
    }
}

/* Section 5 */
/* Fade-in animation for the inner section */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease-out;
}

/* Styling for the section title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* Divider style */
.divider {
    border-top: 2px solid #ccc;
    margin: 20px 0;
}

/* Adjust spacing in the text */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Adjust for responsive design on smaller screens */
@media (max-width: 768px) {
    .inner-section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .divider {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    p {
        font-size: 1rem;
    }
}


/* Section 6 */
/* Fade-in Animation */
.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in to the section */
.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}


/* Footer section */
.footer-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer ul li {
    list-style: none;
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer ul li a:hover {
    color: #fff;
}

.footer form input[type="email"] {
    border-radius: 20px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.footer form button {
    width: 100%;
    border-radius: 20px;
    padding: 10px;
}

.footer form input {
    border-radius: 20px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}


.footer p{
	color: #fff;
}
