:root{
    overflow-x: hidden;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

h1 {
    color: #003366;
    text-align: center;
    margin-top: 50px;
}

/* Header */
.site-header {
    background: #003366;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    display: none;
}

/* Logo */
.logo img {
    height: 50px;
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #ffcc00;
}

/* CTA Button */
.btn {
    background: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        /* hide menu on mobile */
        flex-direction: column;
        background: #003366;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 5px;
        padding: 15px;
    }

    .nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: white;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('./LIBA-building-new-220610-copy-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* overlay */
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
    color: #fff;
}

.hero-left h1 {
    color: white;
    text-align: start;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.hero-left .btn {
    background: #ffcc00;
    color: #000;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.hero-left .btn:hover {
    background: #e6b800;
}

/* Right Side Form */
.hero-right {
    flex: 1;
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.apply-form h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
    color: #002244;
}

.apply-form input,
.apply-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.apply-form button {
    width: 100%;
    padding: 12px;
    background: #002244;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.apply-form button:hover {
    background: #004488;
}

/* Mobile Responsive */
@media (max-width: 900px) {
.hero {
    position: relative;
    background-image: url(./LIBA-building-new-220610-copy-scaled.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 23px 20px !important;
}
.callnow{
display:none;
}
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        margin-top: 20px;
    }
    input{
        width: 88% !important;
    }
}

/* Error message styling */
.error-text {
    color: #d9534f;
    /* Bootstrap red */
    font-size: 0.85rem;
    margin-top: -5px;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

.d-none {
    display: none !important;
}

/* Select dropdown styling */
.apply-form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
    color: #333;
}

/* Highlight error field */
.apply-form input.border-danger,
.apply-form select.border-danger {
    border: 1px solid #d9534f !important;
    background: #fff5f5;
}

/* Loader styling */
#loader {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

#loader img {
    width: 40px;
    height: 40px;
}

/* Contact Form Wrapper */
.contact-wrapper {
    max-width: 500px;
    margin: 50px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form Styles */
.contact-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Input, Select, Textarea */
.contact-wrapper input,
.contact-wrapper select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

/* Focus State */
.contact-wrapper input:focus,
.contact-wrapper select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Error Message */
.contact-wrapper .error {
    font-size: 13px;
    color: #e74c3c;
    margin-top: -10px;
    margin-bottom: 5px;
    display: block;
}

.d-none {
    display: none;
}

/* Submit Button */
.contact-wrapper button {
    padding: 14px;
    background: #007bff;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-wrapper button:hover {
    background: #0056b3;
    transform: scale(1.02);
}

.contact-wrapper button:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 600px) {
    .contact-wrapper {
        margin: 20px;
        padding: 20px;
    }
}


/* Section Base */
.section {
    padding: 80px 20px;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #003366;
}

.section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.overview-card img {
    width: 60px;
    margin-bottom: 15px;
}

.overview-card h3 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 10px;
}

.overview-card p {
    color: #666;
    font-size: 0.95rem;
}

#highlights {
    background-color: #002244;
}

/* Highlights Section */
.highlights-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;

}

.highlights-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.5;
}

.highlights-list i {
    font-size: 28px;
    color: white;
    /* Brand color */
    margin-right: 15px;
    flex-shrink: 0;
}

.highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.about-section {
    padding: 80px 20px;
    background: #f9fafc;
    text-align: center;
    color: #333;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003366;
}

.about-section .intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.about-item {
    padding: 20px;
}

.about-item i {
    font-size: 40px;
    color: #003366;
    margin-bottom: 15px;
}

.about-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #003366;
}

.curriculum {
    padding: 80px 20px;
    background: #f4f7fb;
    text-align: center;
}

.curriculum h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003366;
}

.curriculum .intro {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 50px;
}

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

.curriculum-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.curriculum-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #003366;
}

.curriculum-item ul {
    list-style: none;
    padding: 0;
}

.curriculum-item ul li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.curriculum-item ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffcc00;
}

.admission {
    padding: 70px 20px;
    background: #fff;
    text-align: center;
}

.admission h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #003366;
}

.admission .intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-flow .step {
    text-align: center;
}

.process-flow .step i {
    font-size: 2rem;
    color: #ffcc00;
    display: block;
    margin-bottom: 8px;
}

.process-flow .step p {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.process-flow .arrow {
    font-size: 1.8rem;
    color: #003366;
}

.about-liba {
    padding: 80px 20px;
    background: #f4f7fb;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-text ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text ul li i {
    color: #ffcc00;
    font-size: 1.2rem;
}

.faculty {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.faculty h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.faculty .intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.faculty-member {
    background: #f4f7fb;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faculty-member:hover {
    transform: translateY(-8px);
}

.faculty-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.faculty-member h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 5px;
}

.faculty-member p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.faculty-member a i {
    font-size: 1.4rem;
    color: #0077b5;
    /* LinkedIn blue */
    transition: color 0.3s ease;
}

.faculty-member a i:hover {
    color: #005582;
}

.contact {
    padding: 80px 20px;
    background: #f4f7fb;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.contact .intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form button {
    background: #003366;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0055aa;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    text-align: left;
    font-size: 1rem;
}

.contact-info h3 {
    color: #003366;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 10px 0;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
    color: #003366;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: #003366;
    margin-right: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffcc00;
}

.site-footer {
    background: #002244;
    color: #f0f0f0;
    padding: 40px 20px;
}

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

.footer-contact,
.footer-links {
    flex: 1;
    min-width: 220px;
}

.footer-contact h3,
.footer-links h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ffcc00;
}

.footer-contact p,
.footer-links ul li {
    font-size: 1rem;
    margin: 8px 0;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffcc00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffcc00;
}

.footer-note {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

.footer-note p {
    margin: 0;
    color: #ccc;
}

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

    .footer-links ul {
        display: inline-block;
    }
}