*{  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
nav{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #065F46;
    padding: 10px 20px;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo h1{
    color: #fff;
    
}
nav ul{
    list-style: none;
    display: flex;
    gap: 15px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover{
    color: #C09852;
}

nav {
    opacity: 0;
    transform: translateX(-100%);
    animation: navEnter 0.8s ease-out 0.2s forwards;
}

nav .logo {
    opacity: 0;
    transform: translateX(-50px);
    animation: logoEnter 0.8s ease-out 0.5s forwards;
}

nav ul {
    opacity: 0;
    transform: translateX(50px);
    animation: menuEnter 0.8s ease-out 0.6s forwards;
}

nav ul li {
    opacity: 0;
    transform: translateX(30px);
    animation: itemEnter 0.6s ease-out forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.8s; }
nav ul li:nth-child(2) { animation-delay: 0.9s; }
nav ul li:nth-child(3) { animation-delay: 1s; }
nav ul li:nth-child(4) { animation-delay: 1.1s; }
nav ul li:nth-child(5) { animation-delay: 1.2s; }

@keyframes navEnter {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoEnter {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes menuEnter {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes itemEnter {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 25px;
    }
    .logo h1{
        font-size: 1.5rem;
    }
    nav ul {
        gap: 14px;
    }
    nav ul li a {
        font-size: 0.7rem;
    }
    nav .logo {
        border-bottom: 2px solid #fff;
        padding-bottom: 5px;
    }
}
/* Hero Container */
.hero {
    position: relative;
    height: 100vh; /* Full screen height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

/* Background Video Styling */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* The "Low Opacity" Effect (Dark Overlay) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Adjust 0.5 to make it darker or lighter */
    z-index: -1;
}

/* Text Content Styling */
.hero-content {
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeIn 1s ease-out 1.5s forwards;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 0.8s ease-out 1.7s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 0.8s ease-out 1.9s forwards;
}

/* Button Styling */
.btn-inquiry {
    display: inline-block;
    padding: 15px 40px;
    background-color: #065F46; /* Sophisticated Gold color */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 0.8s ease-out 2.1s forwards;
}

.btn-inquiry:hover {
    background-color: transparent;
    border: 2px solid #065F46;
    transform: scale(1.05);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
.welcome{
    padding: 50px 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #065F46;
}
.welcome-image{
    width: 50%;
    margin: 10px;
    opacity: 0;
    transform: translateX(-80px);
}
.welcome-image.show {
    animation: slideInLeft 0.8s ease-out forwards;
}
.welcome-image img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;

}
.welcome-content{
    width: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    opacity: 0;
    transform: translateX(80px);
}
.welcome-content.show {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.welcome-content h2{
    font-size: 1.7em;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.7;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}
.welcome-content p{
    font-size: 1.1em;
    line-height: 1.6;
    font-weight: 300;
}
.btn{
    align-self: flex-start;
    background-color: white;
    padding: 10px 30px;
    color: #065F46;
    border-radius: 10px;
    border: 0;
}
.btn:hover{
    background-color: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}
@media (max-width: 768px) {
    .welcome {
        flex-direction: column;
    }
    .welcome-content h2 {
        font-size: 1.2em;

    }
    .welcome-image, .welcome-content {
        width: 100%;
    }
}
/* Announcement Section Container */
.announcement-section {
    padding: 60px 0;
    background-color:#065F46;
}

.container {
    width: 100%;
    
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color:white; /* Deep Navy */
    margin-bottom: 40px;
    position: relative;

    transform: translateY(-30px);
}
.section-title.show {
    animation: fadeInUp 0.8s ease-out forwards;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: white; /* Sophisticated Gold */
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Ticker Styles */
.ticker-wrapper {
    display: flex;
    background: white;
    color:#065F46;
    overflow: hidden;
    font-size: larger;
    font-weight: 400;
    width: 100%;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}
.ticker-wrapper.show {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.ticker-content {
    padding: 20px 0;
    white-space: nowrap;
    animation: scroll-ticker 25s linear infinite;
}

@keyframes scroll-ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Announcement Cards Grid */
.announcement-grid {
    display: grid;
    width: 90%;
    margin: 10px auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.announcement-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}
.announcement-card.show {
    animation: fadeInUp 0.8s ease-out forwards;
}

.announcement-card:nth-child(1).show { animation-delay: 0.1s; }
.announcement-card:nth-child(2).show { animation-delay: 0.2s; }
.announcement-card:nth-child(3).show { animation-delay: 0.3s; }

.announcement-card:hover {
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-card:hover {
    transform: translateY(-5px);
}



.date-badge {
    display: inline-block;
    background: #eee;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.announcement-card h3 {
    color: #002147;
    margin-bottom: 15px;
}

.announcement-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .ticker-label { font-size: 0.8rem; padding: 10px; }
}
.manage-desk{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #065F46;
}
.principal-desk , .chairman-desk{
    width: 40%;
    background-color: #fff;
    padding: 20px;
    height: 550px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 35px;
    opacity: 0;
    transform: translateY(50px);
}
.principal-desk.show {
    animation: fadeInUp 0.8s ease-out forwards;
}
.chairman-desk.show {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
.principal-desk img, .chairman-desk img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    align-self: center;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.principal-desk h3, .chairman-desk h3{
    text-align: center;
    color: #065F46;
    font-size: larger;
    font-weight: 700;
    padding-bottom: 10px;
}
.principal-desk p, .chairman-desk p{
    color: #333;
    line-height: 1.6;
    font-weight: 300;
}
.principal-desk h3::after , .chairman-desk h3::after{
    content: '';
    width: 60px;
    height: 4px;
    background-color: #065F46;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
@media (max-width: 768px) {
    .manage-desk {
        flex-direction: column;
        gap: 30px;
    }
    .principal-desk, .chairman-desk {
        width: 100%;
        height: 580px;
    }
}
/* --- RESET & GLOBAL (Ensure consistency) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base fonts to match your theme */
html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', sans-serif; /* or swap to your main sans-serif */
}

h2, h3 {
    font-family: 'Times New Roman', Times, serif; /* or swap to your main theme serif */
    font-weight: bold;
}

/* --- WHY CHOOSE US SECTION STYLES --- */

.why-choose-us {
    /* Uses the light sage background color from image_0.png footer */
    background-color:#065F46; 
    color: white; /* Core forest green */
    padding: 80px 20px;
    width: 100%;
}

.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Header --- */
.wcu-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
}
.wcu-header.show {
    animation: fadeInUp 0.8s ease-out forwards;
}

.wcu-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    line-height: 1.1;
}

/* Optional gold accent for the specific phrase 'Ashi International' */
.wcu-title .highlight-text {
    color: #C09852; /* Complementary heritage gold */
}

.wcu-subtitle {
    font-size: 1.2rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Main Content Grid (Reason + Collage) --- */
.wcu-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal split on desktop */
    gap: 50px;
    align-items: flex-start; /* Keeps text aligned to top */
}

/* --- Left Side: Reasons List --- */
.wcu-text-content {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between items */
}

.wcu-item {
    display: flex;
    align-items: center; /* V-center icons and text */
    opacity: 0;
    transform: translateX(-50px);
}
.wcu-item.show {
    animation: fadeInUp 0.8s ease-out forwards;
}
.wcu-item:nth-child(1).show { animation-delay: 0.1s; }
.wcu-item:nth-child(2).show { animation-delay: 0.2s; }
.wcu-item:nth-child(3).show { animation-delay: 0.3s; }

/* Icon (Matches the rounded button style of image_0.png) */
.wcu-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white; /* Matches main theme green */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 25px;
}

.wcu-icon {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
}

/* Text next to icons */
.wcu-text h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
}

.wcu-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}

/* --- Right Side: Image Collage --- */
.wcu-image-collage {
    display: grid;
    /* This creates the intricate layout */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto; 
    gap: 15px;
    opacity: 0;
    transform: translateY(40px);
}
.wcu-image-collage.show {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.collage-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Large image dominates the left grid side */
.large-image {
    grid-row: 1 / span 2; /* Spans two rows */
    height: 100%; /* Important for fit */
}

/* Small images stack on the right */
.small-top,
.small-bottom {
    grid-row: auto;
}

/* Example Image Placeholder sizing (ensure your images match well) */
.small-top img {
    height: 180px;
}

.small-bottom img {
    height: 180px;
}

/* Interaction: Zoom effect */
.collage-item:hover img {
    transform: scale(1.05);
}

/* --- RESPONSIVE OPTIMIZATION (Mobile) --- */

/* Tablet & Mobile (Standard Portrait) */
@media (max-width: 991px) {
    .wcu-container {
        max-width: 95%;
    }
    
    .wcu-title {
        font-size: 2.8rem;
    }
    
    /* Content: Stack reasons, then collage */
    .wcu-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* Reasons List */
    .wcu-text-content {
        gap: 30px;
    }
    
    .wcu-item {
        flex-direction: row; /* Keep icon left, text right on tablet */
        text-align: left;
    }
    
    /* Collage: Keep grid structure on tablet */
    .wcu-image-collage {
       display: none;
    }
}

/* Mobile Phones (Portrait) */
@media (max-width: 767px) {
    .why-choose-us {
        padding: 60px 15px;
    }
    
    .wcu-title {
        font-size: 2.2rem;
    }
    
    /* Reasons: Move Icon ABOVE text, stack text content */
    .wcu-item {
        flex-direction: column; 
        text-align: center;
        gap: 15px;
    }
    
    .wcu-icon-wrapper {
        margin-right: 0;
        width: 70px;
        height: 70px;
    }
    
    .wcu-icon {
        font-size: 2rem;
    }
    
    .wcu-text h3 {
        font-size: 1.6rem;
    }
    
    .wcu-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Collage: Dissolve the complex grid into simple stacked images on phones */
    .wcu-image-collage {
       display: none;
    }   
}
.facilities{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #065F46;
}
.facilities-grid{
    display: grid;
    width: 90%;
    margin: 10px auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.facility-item{
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(40px);
}
.facility-item.show {
    animation: fadeInUp 0.8s ease-out forwards;
}
.facility-item:nth-child(1).show { animation-delay: 0.1s; }
.facility-item:nth-child(2).show { animation-delay: 0.2s; }
.facility-item:nth-child(3).show { animation-delay: 0.3s; }
.facility-item img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.facility-item h3{
    font-size: larger;
    font-weight: 800;
    margin-bottom: 10px;
}
.contactus{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #065F46;
    
}
.contact-us-form-detail{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
}
.contact-detail , .contact-form{
    width: 40%;
    background-color: #fff;
    padding: 20px;
    height: 600px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 35px;
    opacity: 0;
    transform: translateY(40px);
    margin-bottom: 20px;
}
.contact-detail.show,
.contact-form.show {
    animation: fadeInUp 0.8s ease-out forwards;
}
.contact-detail.show { animation-delay: 0.1s; }
.contact-form.show { animation-delay: 0.2s; }
.contact-detail h3 , .contact-form h3{
    text-align: center;
    color: #065F46;
    font-size: larger;
    font-weight: 700;
    padding-bottom: 10px;
}
.contact-detail p {
    color: black;
    line-height: 1.6;
    font-weight: 300;
}
.contact-detail iframe{
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}
.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-form input, .contact-form textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #065F46;
    border-radius: 5px;
    font-size: 1rem;
}
textarea{
    height: 150px;
    resize: none;
}
.contact-form button{
    background-color: #065F46;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    width: 80%;
    font-weight: bold;
    margin: 25px auto;
}
.contact-form button:hover{
    background-color: transparent;
    border: 2px solid #065F46;
    color: #065F46;
    transition: all 0.3s ease;
    cursor: pointer;
}
.social-link{
    display: flex;
    justify-content: space-around;
    font-size: larger;
    border: 3px solid #065F46;
    padding: 10px;
    border-radius: 15px;
}
@media (max-width: 768px) {
    .contact-us-form-detail {
        flex-direction: column;
        gap: 30px;
    }
    .contact-detail, .contact-form {
        width: 100%;
        height: auto;
    }
}
footer{
    border-top: 3px solid white;
    background-color: #065F46;
    color: white;
    text-align: center;
    padding: 20px;
}
.missviss{
     background-color: #065F46;
}
.our-vission{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 30px;
}
.our-vission img{
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.gallery{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 30px;
    background-color: #065F46;
}
.gallery-item{
    display: grid;
    width: 90%;
    margin: 10px auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.gallery-item img{
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.our-vission p{
    color: white;
    line-height: 1.6;
    font-weight: 300;
}
@media (max-width: 768px) {
    .our-vission {
        flex-direction: column;
    }
    .our-vission img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 768px) {
    .gallery-item {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        width: 100%;
        height: auto;
    }
}
.gallery-item img:hover{
    transform: scale(1.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.testinomial{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 30px;
    background-color: #065F46;
}
.testinomial-daa{
    display: grid;
    width: 90%;
    margin: 10px auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testinomial-item{
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    width: 300px;
    display: flex;
    flex-direction: column;

    align-items: center;
    gap: 25px;
}
.testinomial-data{
    display: flex;
    flex-direction: column;
    font-size: larger;
    gap: 10px;
}
.testinomial-item h3{
    color: #065F46;
    font-size: larger;
    font-weight: 700;
}
.testinomial-item img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
    .testinomial-daa {
        grid-template-columns: 1fr;
    }
    .testinomial-item {
        width: 100%;
    }
}
/* Modal Popup Styles */
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 16px;
    z-index: 2000;
    box-sizing: border-box;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    animation: slideIn 0.4s ease-out;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px;
    gap: 24px;
}

.modal-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.modal-text {
    flex: 1;
}

.modal-text h2 {
    color: #065F46;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-btn {
    display: inline-block;
    background: #065F46;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #054a38;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 95, 70, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    color: #000;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .modal {
        padding: 12px;
    }
    .modal-content {
        max-width: 100%;
        width: min(100%, 420px);
        margin: 0 auto;
    }
    .modal-body {
        flex-direction: column;
        padding: 24px 18px;
        gap: 18px;
        width: 100%;
    }
    
    .modal-image {
        width: 140px;
        height: 140px;
    }
    
    .modal-text h2 {
        font-size: 1.4rem;
    }
    
    .modal-text p {
        font-size: 0.95rem;
    }
    
    .modal-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
        width: fit-content;
    }
}
.dropdown {
    position: relative;
}
.dropdown .dropbtn {
    background: none;
    border: none;
    color: #fff;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-decoration: none;
}

.dropdown .dropbtn:hover,
.dropdown .dropbtn:focus {
    color: #C09852;
    outline: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 5px;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  list-style: none;
  z-index: 1;
}
.dropdown-content li a {
  color: #065F46;
  font-size: larger;
  font-weight: 700;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content li a:hover {
  background-color: white;
    color: #065F46;
}
.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: block;
}
.dropdown-content li a:hover {
    background-color: #065F46;
    color: white;
    transition: all 0.3s ease;
}
.admission-procedure{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #065F46;
    padding-top: 20px;
}
.admission-procedure p{
    color: white;
    line-height: 1.6;
    font-weight: 300;
    width: 90%;
    
    text-align: center;
    }
.how-to-apply{
    background-color: #065F46;
    padding: 30px;
}
.how-to-apply-item p{
    color: #065F46;
    line-height: 1.6;
    font-weight: 700;
    text-align: center;
}
.how-to-apply-item{
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    width: 80%px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.apply-data{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 20px;
}
.apply-data img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.apply-data ol{
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    width: 50%;
    margin:  0 auto;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.how-to-apply-item h2{
    font-size:2.2rem;
}
@media (max-width:678px){
    .apply-data{
        flex-direction: column;
        gap: 30px;
    }
    .apply-data ol{
        width: 95%;
    }
}
.document-entrance{
    background-color: #065F46;
    display: flex;
    justify-content: space-around;
    padding: 20px;

}
.entrance , .document-needed{
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 40%;
    padding: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.entrance h1, .document-needed h1{
    color: #065F46;
    text-align: center;
    
}
.document-needed ol{
    list-style: none;
}
/* .document-needed ol li{
    background-color: #065F46;
    color: white;
    padding: 10px;
    border-radius: 10px;
} */
.entrance .test-details, .document-needed ol{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: #065F46;
    color: white;
    padding: 20px;
    border-radius: 10px;
}
.send-btn{
    width: 70%;
    margin: 0 auto;
    background-color: white;
    color: #065F46;
    padding: 10px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5)   ;
    text-align: center;
    margin-top: 10px;
}
.send-btn:hover{
    background-color: #065f46;
    border: 2px solid white;
    color: white;
}
@media (max-width:768px){
    .document-entrance{
        flex-direction: column;
        gap: 25px;
    }
    .entrance , .document-needed{
        width: 100%;
        margin: 10px auto   ;
        gap: 45px;
        height: 400px;
    }
    .entrance h1, .document-needed h1{
        font-size: 1.4rem;
        font-weight: 700;
    }
}
.progress p{
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    text-align: center;
    padding: 20px;
    background-color: white;
    color: #065F46;
    width: 70%;
    margin: 0 auto;
    font-size: larger;
    font-weight: 700;
}
.admission-page{
    background-color: #065F46;
    padding: 20px;
}
.form-section{
    margin: 20px auto;
    max-width: 1120px;
    padding: 36px 30px;
    background: #f8faf8;
    border-radius: 28px;
    border: 1px solid rgba(6, 95, 70, 0.16);
    box-shadow: 0 24px 60px rgba(6, 95, 70, 0.09);
}
.styled-form{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.styled-form fieldset{
    border: 1px solid rgba(6, 95, 70, 0.18);
    border-radius: 20px;
    padding: 24px 22px;
    background: #ffffff;
}
.styled-form legend{
    font-size: 1.05rem;
    font-weight: 700;
    color: #065F46;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(6, 95, 70, 0.08);
}
.form-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.input-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-group label{
    color: #0f3f2b;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.input-group input,
.input-group select,
.input-group textarea{
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d8d4;
    border-radius: 16px;
    background: #fefefe;
    color: #1f2937;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    outline: none;
    border-color: #065F46;
    box-shadow: 0 0 0 6px rgba(6, 95, 70, 0.10);
    background: #ffffff;
}
.input-group textarea{
    min-height: 140px;
    resize: vertical;
}
.input-group.full-width{
    grid-column: 1 / -1;
}
.radio-group{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.radio-group label{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #13322b;
    font-weight: 500;
}
.radio-group input{
    accent-color: #065F46;
}
.form-footer{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(6, 95, 70, 0.12);
}
.form-footer p{
    color: #294141;
    font-size: 0.96rem;
    line-height: 1.6;
}
.form-feedback{
    min-height: 1.6rem;
    color: #b91c1c;
    font-size: 0.98rem;
    font-weight: 600;
}
.form-feedback.success{
    color: #064e3b;
}
.form-feedback a{
    color: #065F46;
    text-decoration: underline;
}
.form-footer input[type="checkbox"]{
    accent-color: #065F46;
}
.submit-btn{
    width: max-content;
    background-color: #065F46;
    color: #ffffff;
    padding: 14px 34px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 16px 28px rgba(6, 95, 70, 0.18);
}
.submit-btn:hover{
    transform: translateY(-1px);
    background-color: #054f3a;
}
@media (max-width: 900px) {
    .form-section{
        padding: 24px 18px;
    }
    .form-grid{
        grid-template-columns: 1fr;
    }
}
.fee-image{
    width: 100%;
    height: 700px;
    background-color: #065F46;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.fee-image img{
    width: 60%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.fee-image button{
    background-color: white;
    color: #065F46;
    padding: 20px;
    font-weight: 700;
    font-size: larger;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
}
.fee-image button:hover{
    background-color: #065F46;
    color: white;
    border: 2px solid white;
}
.fee-data{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: 20px auto;
}
@media (max-width: 768px) {
    .fee-image img {
        width: 100%;
    }
    .fee-data {
        flex-direction: column;
        gap: 30px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #065F46, #047857);
    color: white;
    border-radius: 20px 20px 0 0;
}
.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}
.close-btn {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: color 0.2s;
}
.close-btn:hover {
    color: #d1d5db;
}
.modal-body {
    padding: 30px;
    text-align: center;
}
.modal-body p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }}
.academics{
    background-color: #065F46;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 30px;
}
.academic-data p{
    color: white;
    font-weight: 700;
    text-align: center;
}
.Academic-item{
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.Academic-item img{
    width: 90%;
    
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.Academic-item h3{
    color: #065F46;
    font-size: larger;
    font-weight: 700;
}
.Academic-item button{
    background-color: #065F46;
    color: white;
    padding: 20px;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
}
.Academic-item button:hover{
    background-color: transparent;
    border: 2px solid #065F46;
    color: #065F46;
    transition: all 0.3s ease;
}