body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

main {
    flex: 1; /* Pushes the footer to the bottom */
}


/* Header styles */
header {
    background: #f9f9f9;
    /*padding: 20px;*/
    text-align: center;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.logo img {
    height: 100px;
    background-color: #f9f9f9;
    padding: 5px;
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 10px 15px;
}

.nav-links a:hover {
    color: #0073e6;
}

.nav-links a.active {
    color: #0073e6;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 2;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 4px 0;
    transition: 0.4s;
}

.header-content {
    padding: 50px 20px;
    background-color: #004080;
    text-align: center;
}

.header-content h1,
.header-content p {
    color: #fff;
}

.header-content h1 {
    font-size: 3em;
    margin: 0;
    animation: fadeInDown 1s ease-in-out;
}

.header-content p {
    font-size: 1.2em;
    margin: 10px 0 0;
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Establishments section styles */
/* Establishments section styles */
#establishments {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

#establishments h2 {
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #004080;
    animation: fadeIn 1.5s ease-in-out;
    font-weight: 700;
}

.establishment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .establishment-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.establishment {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.establishment:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.establishment img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.establishment img:hover {
    transform: scale(1.1);
}

.establishment h3 {
    color: #004080;
    margin-bottom: 10px;
    animation: fadeInLeft 1s ease-in-out;
    font-size: 1.5em;
    font-weight: 600;
}

.establishment p {
    color: #666;
    margin-bottom: 20px;
    animation: fadeInRight 1s ease-in-out;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s, transform 0.3s;
    animation: bounceIn 1s ease-in-out;
    font-size: 1em;
    font-weight: 500;
}

.btn:hover {
    background: #005bb5;
    transform: scale(1.05);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100%;
        background: #fff;
        text-align: center;
        display: none;
        z-index: 1;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .nav-links a {
        padding: 10px 0;
    }
    .menu-toggle {
        display: flex;
    }
}

/* Menu Toggle Animation */
.menu-toggle span:nth-child(1) {
    transform-origin: 0% 0%;
}

.menu-toggle span:nth-child(2) {
    opacity: 1;
    transform-origin: 0%
}

.menu-toggle span:nth-child(3) {
    transform-origin: 0% 100%;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}




/* etablissemtn page */

.container {
    display: flex;
    padding: 20px;
}

.sidebar {
    flex: 1;
    background: #f4f4f4;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    padding: 10px 15px;
    display: block;
}

.sidebar ul li a:hover {
    color: #0073e6;
}

.content {
    flex: 3;
    padding: 20px;
    background: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

#establishment-details h2 {
    margin-bottom: 20px;
}

.establishment-details img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.establishment-details h3 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: 600;
}

.establishment-details p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s, transform 0.3s;
    font-size: 1em;
    font-weight: 500;
}

.btn:hover {
    background: #005bb5;
    transform: scale(1.05);
}

footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

footer p {
    margin: 0;
}

footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #0073e6;
}



.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, #0073e6, #00bfff);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 115, 230, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* General button styling */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
    text-align: center;
}

/* Button gradients */
.btn.master {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.btn.licence {
    background: #f97512
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 115, 230, 0.3);
}

.btn.master:hover {
    background: linear-gradient(135deg, #388E3C, #66BB6A);
}

.btn.licence:hover {
    background: linear-gradient(135deg, #FFA000, #FFCA28);
}

/* Button focus effect */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.25);
}

/* Button container styling */
.btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Button container layout adjustments */
.btn.master,
.btn.licence {
    flex: 1;
    min-width: 160px;
    max-width: 180px;
}

/* Add animations for buttons */
@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn {
    animation: buttonFadeIn 0.5s ease-in-out;
}

/* Establishment card styling */
.establishment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.establishment {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.establishment:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.establishment img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.establishment img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.establishment h3 {
    color: #004080;
    margin-bottom: 15px;
    font-size: 1.8em;
    font-weight: 700;
}

.establishment p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
    font-weight: 400;
    max-width: 240px;
}

#establishments h2 {
    margin-bottom: 50px;
    font-size: 2.5em;
    color: #004080;
    font-weight: 700;
    animation: fadeIn 1.5s ease-in-out;
}

@media (min-width: 768px) {
    .establishment-list {
        grid-template-columns: repeat(3, 1fr);
    }

    
}




/* start blogs*/

        /* Base Section */
        .slider-section {
            padding: 50px 20px;
            text-align: center;
            background-color: #f7f9fc;
        }

        .slider-header h2 {
            font-size: 2.5rem;
            color: #004080;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            max-width: 1200px;
            height: 500px;
            margin: auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            background-color: #fff;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
        }

        /* Slide Content Wrapper */
        .slide-content-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            background-color: #f0f4f8;
            border-radius: 20px;
            overflow: hidden;
            flex-direction: row;
        }

        /* Image */
        .slide-image-wrapper {
            width: 50%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .slide-image:hover {
            transform: scale(1.05);
        }

        /* Text Section */
        .slide-text {
            width: 50%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            background-color: #fff;
            box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.08);
        }

        .slide-text h3 {
            font-size: 1.8rem;
            color: #004080;
            margin-bottom: 15px;
        }

        .slide-text p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .btn-read-more {
            display: inline-block;
            padding: 10px 20px;
            color: #fff;
            background-color: #004080;
            border-radius: 5px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }

        .btn-read-more:hover {
            background-color: #003366;
        }

        /* Navigation Buttons */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.6);
            color: #fff;
            border: none;
            padding: 15px 20px;
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            z-index: 2;
        }

        .slider-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .prev {
            left: 15px;
        }

        .next {
            right: 15px;
        }

        /* Dots */
        .slider-dots {
            margin-top: 15px;
            display: flex;
            justify-content: center;
        }

        .slider-dots span {
            width: 12px;
            height: 12px;
            margin: 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dots span.active {
            background-color: #004080;
        }

        /* RESPONSIVE DESIGN */
        @media screen and (max-width: 1024px) {
            .slide-text h3 {
                font-size: 1.5rem;
            }

            .slide-text p {
                font-size: 0.95rem;
            }

            .slider-container {
                height: 450px;
            }
        }

        @media screen and (max-width: 768px) {
            .slider-container {
                height: auto;
            }

            .slide-content-wrapper {
                flex-direction: column;
                height: auto;
            }

            .slide-image-wrapper,
            .slide-text {
                width: 100%;
                height: 250px;
            }

            .slide-text {
                height: auto;
                padding: 20px;
                text-align: center;
            }

            .slide-text h3 {
                font-size: 1.4rem;
            }

            .slide-text p {
                font-size: 0.9rem;
            }
        }

        @media screen and (max-width: 480px) {
            .slider-section {
                padding: 30px 10px;
            }

            .slider-header h2 {
                font-size: 1.8rem;
            }

            .slide-text h3 {
                font-size: 1.2rem;
            }

            .slide-text p {
                font-size: 0.85rem;
            }

            .btn-read-more {
                font-size: 0.8rem;
                padding: 8px 16px;
            }

            .slider-btn {
                padding: 10px 14px;
                font-size: 1.2rem;
            }
        }



/* end blogs*/





/* start google maps */


/* Section Styling */
#university-location {
    background-color: #ffffff; /* Clean white background */
    padding: 40px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333333; /* Dark color for readability */
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Map Wrapper Styling */
.map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.map-container {
    width: 100%;
    max-width: 1200px; /* Ensure it looks good on large screens */
    height: 500px;
    border-radius: 20px; /* Modern rounded corners */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Interactivity */
.map-container:hover {
    transform: scale(1.02); /* Slight zoom effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Darker shadow */
}

/* Iframe Styling */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0; /* Remove iframe border */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }
}



/* google maps */
















