/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* 🔻 Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    min-width: 180px;
    z-index: 100;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #333;
}

.dropdown-menu li a:hover {
    background-color: #f7941d;
    color: white;
}

.navbar li.dropdown:hover>.dropdown-menu {
    display: block;
}

/* 🔶 About Banner */
/* 🔶 Top Banner */
.about-banner {
    background: url('b1.jpg') no-repeat center center/cover;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-banner h1 {
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 5px;
    animation: fadeDown 1s ease forwards;
}

/* 🔷 About Content */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.about-left h2 {
    text-align: center;
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* Optional right image */
.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

.about-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 🔸 Animations */
@keyframes slideInLeft {
    0% {
        transform: translateX(-60px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 🔸 Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about-right img {
        max-width: 100%;
    }

    .about-left h2 {
        font-size: 1.6rem;
    }

    .about-left p {
        font-size: 1rem;
    }
}
/* 📱 Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        padding: 30px 20px;
    }

    .about-right img {
        max-width: 100%;
    }

   
}

/* ✨ Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ✨ Animation on About Page Elements */
.about-banner h1 {
    animation: zoomIn 1s ease-out forwards;
    opacity: 0;
}

.about-left {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.about-right {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}