/* Reset and General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: #1cb5e0;
    color: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-width: 150px;
}

header nav {
    position: relative;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

header nav ul li a:hover,
header nav ul li .admission-button {
    background: #005a9a;
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    header nav ul {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background: #1CB5E0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: flex;
        transition: right 0.3s ease;
    }

    header nav ul.show {
        right: 0;
    }

    header nav ul li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('images/student3.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 20px;
}

.hero-section h1 {
    font-size: 3rem;
    color: #fff;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: #e68a00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #005b9a;
    transform: scale(1.05);
}

/* Section Styles */
.section {
    padding: 60px 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: #e68a00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section p {
margin-top: 0px;
margin-bottom: 10px;
}

.features,
.services-grid,
.testimonials,
.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature,
.service-card,
.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover,
.service-card:hover,
.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature img,
.service-card img,
.testimonial img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}


h4 {
    color: #000;
}

p {
    color: #666;
}

.phone-container {
    display: flex;
    gap: 10px;
}

.phone-container select,
.phone-container input {
    flex: 1;
}

.form-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 40px;
    flex-wrap: wrap;
}

.form-container .form-image {
    flex: 1 1 40%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.enquiry-form {
    flex: 1 1 55%;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enquiry-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #1CB5E0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.submit-button {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background: #005b9a;
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section .hero-content {
        max-width: 90%;
    }

    .feature,
    .service-card,
    .testimonial,
    .form-container .form-image,
    .enquiry-form {
        flex: 1 1 100%;
    }

    .form-container {
        flex-direction: column;
        align-items: center;
    }

    .form-container .form-image {
        margin-bottom: 20px;
    }

    .enquiry-form {
        max-width: 90%;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

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

/* Footer Styles */
footer {
    background: #1CB5E0;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1000;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    margin: 5px 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.footer-description {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 20px; /* Added padding for more spacing */
}

.footer-description h5 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-description p {
    margin: 5px 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.footer-social {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 20px; /* Added padding for more spacing */
}

.footer-social h5 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
}

.social-links img {
    width: 100%;
    height: auto;
}

.footer-bottom {
    background: #005b9a;
    padding: 20px;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 212px;
    height: 48px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-description,
    .footer-social {
        text-align: center;
        padding-left: 0; /* Remove padding for mobile */
    }

    .footer-logo img {
        margin: 0 auto 10px;
    }

    .footer-bottom {
        position: relative;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-description,
    .footer-social {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 10px;
    }

    .footer-bottom {
        position: relative;
    }
}


/* Sticky Bar */
.sticky-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2em;
    z-index: 1000;
    animation: glow 1.5s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px #ffcc00, 0 0 10px #ffcc00, 0 0 20px #ffcc00, 0 0 40px #ffcc00;
    }
    50% {
        box-shadow: 0 0 20px #ff9900, 0 0 30px #ff9900, 0 0 40px #ff9900, 0 0 60px #ff9900;
    }
}

/* Navigation */
nav ul li a:hover, .inquiry-btn:hover {
    background-color: #005b9a;
}

.inquiry-btn {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.inquiry-btn:hover {
    background-color: #e68a00;
}

/* Trusted Partners Section */
#trusted-partners {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;
}

.partners-container {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

#trusted-partners h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partner img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.partner h3 {
    font-size: 1.2em;
    color: #555;
    margin: 10px 0 0;
    text-transform: uppercase;
}

/* Blog Section */
.blog-section {
    padding: 50px 0;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-post {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: auto;
    display: block;
}

.blog-title {
    font-size: 1.5em;
    margin: 15px;
}

.blog-excerpt {
    font-size: 1em;
    margin: 15px;
    color: #555;
}

.read-more {
    display: block;
    text-align: center;
    background: #1CB5E0;
    color: white;
    padding: 10px;
    text-decoration: none;
    margin: 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.read-more:hover {
    background: #005b9a;
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
        align-items: center;
    }

    .blog-post {
        width: 100%;
        max-width: none;
    }
}

/* College Showcase Section */
.colleges-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.college-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.college-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.college-image {
    width: 100%;
    height: auto;
    display: block;
}

.college-name {
    font-size: 1.5em;
    margin: 15px;
}

.college-location, .college-description {
    font-size: 1em;
    margin: 0 15px 15px;
    color: #555;
}

.more-details {
    display: block;
    text-align: center;
    background: #1CB5E0;
    color: white;
    padding: 10px;
    text-decoration: none;
    margin: 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.more-details:hover {
    background: #005b9a;
}

@media (max-width: 768px) {
    .college-container {
        flex-direction: column;
        align-items: center;
    }

    .college-card {
        width: 100%;
        max-width: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 70s linear infinite;
}

.testimonial {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 300px;
    margin: 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    height: auto;
    overflow: hidden;
    white-space: normal;
}

.testimonial-author {
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

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

@media (max-width: 768px) {
    .testimonials-container {
        animation: scroll-mobile 60s linear infinite;
    }
    .partners-container {
        animation: scroll-mobile 60s linear infinite;
    }
}

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

/* Font Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Roboto+Slab:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    margin: 20px 0;
    text-align: center;

    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #1cb5e0c6;
    border-radius: 8px;
    transition: transform 0.3s;
}

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
    transform: scale(1.05);
}

p, li {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.2;
    margin: 10px 0;


}

/* Unique Highlighted Text */
.unique-text {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1CB5E0;
    text-align: center;
    position: relative;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.3s;
    display: inline-block;
}

.unique-text:hover {
    transform: scale(1.05);
}

/* Admission Requirments list */
section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
}

.requirements-list,
.process-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}

.requirements-list li,
.process-list li {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirements-list li:hover,
.process-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.admission-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admission-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1CB5E0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

button[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: #1CB5E0;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

button[type="submit"]:hover {
    background: #005b9a;
    transform: scale(1.05);
}

#contact-info .container {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#contact-info .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #1CB5E0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

#contact-info .cta-button:hover {
    background: #005b9a;
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .requirements-list,
    .process-list,
    .admission-form {
        width: 100%;
        padding: 15px;
    }
}



/* DESIGN FOR Embend Video */
.video-container {
    width: 100%;
    max-width: 100%; /* Full width for small devices */
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000; /* Fallback background color */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
}


