body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
}

header {
    background: #0044cc;
    color: white;
}

header h1 {
    margin: 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 10px 0 0 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: #e0f7fa;
    text-align: center;
    padding: 50px 0;
}

.hero h2 {
    margin: 0;
    font-size: 2.5rem;
    color: #0044cc;
}

.hero p {
    font-size: 1.2rem;
    color: #333;
}

.hero button {
    background: #0044cc;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.hero button:hover {
    background: #002a80;
}

#about {
    padding: 30px 0;
    background: #f5f5f5;
}

#about h2 {
    text-align: center;
    color: #333;
}

#about p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}
footer {
    background-color: #111;
    color: #ddd;
    padding: 40px 20px;
    font-size: 14px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Adds spacing between sections */
}

/* Footer Sections */
.footer-left,
.footer-center,
.footer-right {
    flex: 1 1 300px; /* Flexible and responsive */
    min-width: 250px; /* Minimum width for smaller screens */
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

/* Footer Headings */
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

/* Footer Links */
.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00aaff; /* Hover effect */
}

/* Social Media Icons */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px; /* Even spacing between icons */
    margin-top: 10px;
}

.social-media li {
    list-style: none;
}

.social-media img {
    width: 30px;
    height: 30px;
    filter: grayscale(100%); /* Initial gray effect */
    transition: filter 0.3s, transform 0.3s;
}

.social-media img:hover {
    filter: grayscale(0); /* Colored on hover */
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Copyright and Motto */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }
}

.navigation span {
    cursor: pointer;
    font-size: 2rem;
    color: white;
    padding: 0 1rem;
    
    
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}


.slide h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide p {
    font-size: 1.5rem;
}

.slide {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 300%;
    animation: slide 15s infinite;
}


.logo-image {
    width: 80px !important;
    padding: auto;
    border-radius: 550px;
    margin-left: 0;
  }

  .incM{
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    float: left;
  }
  .heroM {
    position: relative;
    height: 100vh;
    overflow: hidden;

    }

    .hero-sliderM {
        position: relative;
        height: 100%;
    }

    .slideM {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease, transform 1.5s ease;
    }

    .slideM.active {
        opacity: 1;
        transform: scale(1.05); 
    }

    .contentM {
        text-align: center;
        color: white;
        background: rgba(0, 0, 0, 0.5);
        padding: 12px;
        border-radius: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    h1 {
        font-size: 3rem;
        margin: 0;
    }

    p {
        font-size: 1.5rem;
    }

    
    .navigationM {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .prevM, .nextM {
        cursor: pointer;
        color: white;
        font-size: 2rem;
        padding: 10px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        
    }

    .prevM:hover, .nextM:hover {
        background: rgba(255, 255, 255, 0.7);
        color: black;
    }




    
    header {
        background-color: #1e1e1e;
        color: white;
        padding: 10px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .containerM {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        padding: 0 20px;
    }

    .logo-imageM {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .logoM {
        font-size: 1.5rem;
        font-weight: bold;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 8px;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        position: relative;
    }

    nav ul li a {
        text-decoration: none;
        color: white;
        font-size: 1rem;
        padding: 10px 15px;
        transition: background 0.3s, color 0.3s;
    }

    nav ul li a:hover {
        background: #4CAF50;
        border-radius: 5px;
        color: white;
    }
    

    
    .menu-toggle {
        display: none;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }

    nav ul {
        display: flex;
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
            flex-direction: column;
            background-color: #1e1e1e;
            position: absolute;
            top: 60px;
            right: 20px;
            width: 200px;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        nav ul li {
            margin: 0;
            width: 100%;
        }

        nav ul li a {
            display: block;
            width: 100%;
            padding: 15px;
        }

        .menu-toggle {
            display: block;
        }

        .menu-toggle.active + nav ul {
            display: flex;
        }
    }


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.content {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    text-align: center;
    position: relative;
    padding: 0 20px;
}


.title {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    align-items: center;
    justify-content: center; 
    margin-top: 20px;
    overflow: hidden;
}


#imag1 {
    display: block;
    margin: 10px auto;
    padding: 2px;
    box-shadow: 6px 6px 10px #98918b;
    transition: all 0.3s ease;
    width: 100%; 
    max-width: 450px; 
}
#imag1 {
    transition: all 0.3s ease; 
}

#imag1:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
    transform: scale(1.05); 
    background-color: transparent; 
}



h2 {
    text-decoration: none;
    color: black;
    text-align: center;
}


button {
    background-color: #4CAF50;
    color: white; 
    border: 2px solid gray;
    border-radius: 8px; 
    padding: 12px 30px;
    font-size: 1rem; 
    margin: 16px auto;
    width: fit-content; 
    cursor: pointer; 
}
button:hover {
    background-color: green;


}
.title button{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin: 20px auto; 
    width: fit-content; 
    cursor: pointer; 
}


.title p {
    color: #1e1e1e;
    margin: 16px auto;
    width: 100%; 
    max-width: 400px; 
    text-align: center;
}
.title p:hover {
    color: #666;
    text-decoration: underline;
}


a {
    text-decoration: none;
}
a:hover, a:active {
    text-decoration: none;
}

.con h1 {
    text-align: center;
    margin-top: 29px;
}

.con .comment {
    text-align: center;
    margin-top: 20px;
}

.con label {
    margin-top: 20px;
    font-family: sans-serif;
    text-align: center;
    display: block; 
    width: 100%;
}


@media (max-width: 768px) {
    .title {
        flex-direction: column; 
    }

    #imag1 {
        width: 100%; 
    }

    button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .title p {
        width: 100%; 
        font-size: 0.9rem; 
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem; 
    }

    .title p {
        font-size: 0.8rem; 
    }

    button {
        font-size: 0.8rem; 
        padding: 8px 16px; 
    }
}



body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.documentation {
    width: 90%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
}

.section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 20px;
    max-width: 60%; /* Limit the width of the paragraph content */
}

.section h2 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 10px;
}

.section p {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.section img {
    width: 150px;
    height: auto;
    margin-left: 20px;
    border-left: 1px solid #ddd;
    padding-left: 10px;
    align-self: flex-end; /* Align image to the right */
}

.section a {
    /* color: #0056b3; */
    text-decoration: none;
}

.section a:hover {
    text-decoration: underline;
}

.section button {
    align-self: center; /* Center the button horizontally */
    background: rgb(red, green, blue);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.section button:hover {
    background: #33c73d;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
    }

    .section img {
        margin: 10px auto;
        padding-left: 0;
        border-left: none;
    }

    .section-content {
        padding-right: 0;
    }
}




/* about page css */
.about-content {
    margin: 25px auto;
    padding: 25px;
    max-width: 800px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content section {
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    padding-bottom: 5px;
}

.about-content p {
    margin: 10px 0;
    font-size: 16px;
}

.about-content .team {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.about-content .team-member {
    text-align: center;
    max-width: 200px;
}

.team-photo {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content ul {
    list-style: disc;
    padding-left: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
}


/* admission stuff css */


/* General Section Styling */
.admissions-note-one {
    margin: 80px auto;
    padding: 20px;
    max-width: 90%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
}

/* Headings Styling */
.admissions-note-one h1 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.admissions-note-one h4 {
    font-size: 20px;
    margin-top: 20px;
    color: #34495e;
    border-bottom: 1px solid #95a5a6;
    padding-bottom: 5px;
}

/* Paragraph and Text Styling */
.admissions-note-one p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Lists Styling */
.admissions-note-one ol, 
.admissions-note-one ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.admissions-note-one ol li,
.admissions-note-one ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.admissions-note-one ul li {
    list-style-type: disc;
}

.admissions-note-one ul ul li {
    list-style-type: circle;
    margin-left: 20px;
}

/* Links Styling */
.admissions-note-one a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.admissions-note-one a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .admissions-note-one h1 {
        font-size: 24px;
    }

    .admissions-note-one h4 {
        font-size: 18px;
    }

    .admissions-note-one p,
    .admissions-note-one ol li,
    .admissions-note-one ul li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .admissions-note-one {
        padding: 15px;
    }

    .admissions-note-one h1 {
        font-size: 22px;
    }

    .admissions-note-one h4 {
        font-size: 16px;
    }

    .admissions-note-one p,
    .admissions-note-one ol li,
    .admissions-note-one ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .admissions-note-one {
        padding: 10px;
    }

    .admissions-note-one h1 {
        font-size: 20px;
    }

    .admissions-note-one h4 {
        font-size: 14px;
    }

    .admissions-note-one p,
    .admissions-note-one ol li,
    .admissions-note-one ul li {
        font-size: 13px;
    }
}


/* academic css */



/* General Reset */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/kab2.jpg') no-repeat center center/cover; 

    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #2980b9;
}

/* Section Styling */
section {
    padding: 40px 20px;
}

.class-container-two {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #23272a;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

#p1 {
    margin-bottom: 15px;
    color: rgb(226, 218, 218) !important;
    
}

ul, ol {
    padding-left: 20px;
}

ul li, ol li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, ul li {
        font-size: 0.9rem;
    }

    .class-container-two {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p, ul li {
        font-size: 0.85rem;
    }
}

