.container {
    width: 100%;
    margin: 0 auto;

}

* {
    padding: 0;
    margin: 0;
}


a {
    text-decoration: none;
}


.header {
    height: 30px;
    border-bottom: 1px solid #ededed;
}

.header p,
.header ul li {
    margin: 0 20px;
    font-size: 12px;
}

.header p {
    line-height: 30px;
    float: left;
    color: #7d7d7d;
}

.header p a {
    color: #7d7d7d;
    margin-left: 12px;
}

.header p a:hover,
.header li a:hover,
.foot-top dd a:hover,
.foot-bottom span a:hover {
    color: #008cd6;
}

.header ul {
    float: right;
    list-style: none;
}

.header ul li {
    margin-right: 20px;

    margin-top: 8px;
    float: left;
}

.header ul li a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: bold;
}

.header ul li:last-child {
    border: none;
}



.header-down {
    height: 120px;
}

.header-down img {
    float: left;
    margin-top: 12px;
}

.search {
    margin-top: 44px;
    margin-right: 12px;
    float: right;
    width: 528px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search>form {
    display: flex;
    width: 100%;
}

.search>form>input {
    font-size: 14px;
    padding-left: 10px;
    color: #333;
    border: none;
    outline: none;
    flex-grow: 1;
    border-radius: 5px 0 0 5px;
}

.search select {
    border: none;
    color: #65696b;
    font-size: 14px;
    padding-left: 10px;
    background-color: #e9ecef;
    width: 100px;
    height: 40px;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-text {
    flex-grow: 1;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 10px;
    border-radius: 0 5px 5px 0;
}

.header-button {
    width: 93px;
    height: 40px;
}

.header-button input {
    padding-left: 8px;
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 100%;
    border: none;
    background: url(../images/search_03.gif) no-repeat center left 10px;
    background-color: #007bff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    outline: none;
}




.navigation-module {
    height:50px;
}

.nav {
    height: 44px;
    background-color: #31a6ff;
}

.nav ul {
    margin-left: 100px;
    list-style: none;
}

.nav li {
    text-align: center;
    float: left;
    width: 100px;
    line-height: 44px;

}

.nav li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.nav li:hover {
    background-color: #f58a25;
}





footer {
    background-color: #a3a3a3;
    padding: 20px 0;
}

footer a {
    text-decoration: none;
    color: white;
}



.foot-bottom {
    text-align: center;
    padding: 10px 0;

}

.hr {
    border: 0;
    border-top: 1px solid #dee2e6;
    margin: 20px 0;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.content1 {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h1 {
    color: #c62828;
    font-size: 2.5em;
    margin-bottom: 0.2em;
    text-align: center;
}

h2 {
    color: #e53935;
    font-size: 1.5em;
    margin-bottom: 1.5em;
    font-weight: normal;
}

.toc {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #c62828;
}

.toc h3 {
    margin-top: 0;
    color: #c62828;
}

.toc ul {
    padding-left: 20px;
}

.toc li {
    margin-bottom: 8px;
    list-style: none;
}

.toc a {
    color: #e53935;
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    color: #c62828;
    text-decoration: underline;
}
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    height: 450px;
}

.carousel-slide {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 12s infinite;
}

.carousel-item {
    width: 33.33%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
}


@keyframes slide {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-33.33%); }
    66%, 94% { transform: translateX(-66.66%); }
    100% { transform: translateX(0); }
}


.carousel-container:hover .carousel-slide {
    animation-play-state: paused;
}


.carousel-dot:nth-of-type(1):target ~ .carousel-slide {
    animation: none;
    transform: translateX(0);
}

.carousel-dot:nth-of-type(2):target ~ .carousel-slide {
    animation: none;
    transform: translateX(-33.33%);
}

.carousel-dot:nth-of-type(3):target ~ .carousel-slide {
    animation: none;
    transform: translateX(-66.66%);
}

.carousel-dot:target {
    background: white;
}

.section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.section h3 {
    color: #c62828;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.section p {
    text-align: justify;
}


.content1::after {
    content: "";
    display: table;
    clear: both;
}


@media (max-width: 768px) {
    .video {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
    }
    
    .content {
        padding: 10px;
    }
}


.food-slider {
    width: 100%;
    height: 400px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-container {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 12s infinite;
}

.slider-item {
    width: 33.33%;
    height: 100%;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0%, 25% {
        transform: translateX(0);
    }
    33%, 58% {
        transform: translateX(-33.33%);
    }
    66%, 91% {
        transform: translateX(-66.66%);
    }
    100% {
        transform: translateX(0);
    }
}

.food-slider:hover .slider-container {
    animation-play-state: paused;
}

.highlight {
    background-color: #fff9f2;
    padding: 20px;
    border-left: 4px solid #e67e22;
    margin: 20px 0;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 10px;
}


.project-ayaana {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.project-ayaana h1, 
.project-ayaana h2, 
.project-ayaana h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.project-ayaana h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.project-ayaana h1:after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #e74c3c;
    margin: 10px auto;
}

.project-ayaana h2 {
    font-size: 2rem;
    margin-top: 40px;
}

.project-ayaana h3 {
    font-size: 1.5rem;
    color: #e74c3c;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.initiative-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-10px);
}

.initiative-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.initiative-card h3 {
    padding: 0 20px;
    margin-top: 15px;
}

.initiative-card p {
    padding: 0 20px 20px;
    color: #666;
}

.vision-mission {
    margin-top: 60px;
}

.vision-content, 
.mission-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.vision-content img, 
.mission-content img {
    flex: 1;
    min-width: 300px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vision-text, 
.mission-text {
    flex: 2;
    min-width: 300px;
}

.mission-content {
    flex-direction: row-reverse;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #e74c3c;
    padding: 20px;
    border-left: 4px solid #e74c3c;
    background: #f9f9f9;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .vision-content, 
    .mission-content {
        flex-direction: column;
    }
    
    .vision-content img, 
    .mission-content img {
        width: 100%;
    }
}