* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 12px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Contact Bar */
.contact-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    font-weight: 500;
}

.enquire-btn {
    background: #dc3545;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.enquire-btn:hover {
    background: #c82333;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 200px;
    height: 200px;
    margin-right: 15px;
}

.logo-text strong {
    font-size: 24px;
    color: #2c5aa0;
}

.conference-info {
    display: flex;
    margin-left: 3px;
    align-items: center;
    gap: 50px;
    /* spacing between logo and title */
}

.conference-logo {
    height: 100px;
    /* adjust as needed */
    width: auto;

}


.logo-text {
    font-size: 14px;
    color: #666;
}

.conference-info {
    text-align: center;
    flex-grow: 1;
}

.conference-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 11px 20px;
    border-radius: 5px;
    margin-left: 508px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.admissions-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 12px 25px;
    margin-right: -100px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
    transition: transform 0.3s;
}

.admissions-btn:hover {
    transform: translateY(-2px);
}

/* Navigation */
.navigation {
    background: #fff;
    border-bottom: 1.5px solid #eee;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: block;
    padding: 10px 12px;
    color: #212020a4;
    text-decoration: none;
    transition: color 0.2s;
    border-radius: 6px 6px 0 0;
    font-size: 1rem;
    z-index: 5;
}

.nav-menu>li>a:hover,
.nav-menu>li:hover>a {
    color: #8e4d8e;
    background: #f7effb;
}

/* DROPDOWN STYLES */
.has-dropdown .dropdown {
    display: none;
    position: absolute;
    left: 50%;
    /* <== Center below parent */
    top: 100%;
    transform: translateX(-50%);
    /* <== Ensure perfect horizontal centering */
    min-width: 210px;
    max-width: 260px;
    width: max-content;
    /* Grows but not too much */
    background: #fff;
    box-shadow: 0 6px 22px -5px rgba(0, 0, 0, 0.13), 0 1.5px 0 #a767be;
    border-radius: 0 0 10px 10px;
    padding: 4px 0;
    z-index: 99;
    text-align: left;
    animation: fadeIn 0.15s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* For wide menu screens, left-align but only for small width screens */
@media (max-width: 900px) {
    .has-dropdown .dropdown {
        left: 0;
        transform: none;
        min-width: 180px;
        max-width: 260px;
    }
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: block;
}

/* Dropdown ITEM alignment improvements */
.dropdown {
    /* Ensuring no floating or out-of-bounds items */
    box-sizing: border-box;
}

.dropdown li {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.dropdown a {
    display: block;
    width: 100%;
    /* Full width for click/tap */
    padding: 11px 28px 11px 18px;
    color: #333;
    text-decoration: none;
    font-weight: normal;
    font-size: 0.97rem;
    border-left: 3px solid transparent;
    transition: all 0.18s;
    box-sizing: border-box;
    /* Vertically aligns text no matter content length! */
    white-space: nowrap;
}

.dropdown a:hover {
    color: #8e4d8e;
    background: #f7effb;
    border-left: 3px solid #8e4d8e;
    padding-left: 23px;
}

.dropdown a::before {
    content: '\25B6';
    font-size: 10px;
    color: #d9d9d9;
    margin-right: 10px;
    opacity: 0.75;
    transition: color 0.18s;
    display: inline-block;
    width: 15px;
    text-align: center;
}

.dropdown a:hover::before {
    color: #8e4d8e;
}

/* Extra: Prevent dropdown overflow on edge of screen */
.has-dropdown .dropdown {
    /* Don't let dropdown go off the edge */
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 800px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .has-dropdown .dropdown {
        min-width: 155px;
        max-width: 200px;
    }
}

/* Add this for crisp alignment especially if you have a dark background/nav */
.dropdown {
    border-top: 2px solid #8e4d8e;
}


/* NEW BANNER SECTION */
.hero-banner {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(80, 144, 240, 0.8), rgba(0, 0, 0, 0.6)),
        url('../images/cutm_lib.png')
center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Floating elements animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Banner Buttons Section */
.banner-buttons {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn.learn {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: #333;
}

.btn.experience {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

.btn.change {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #333;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c5aa0;
    font-weight: bold;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: white;
    height: 195px;
    width: auto;
    padding: 15px 15px;
    /* margin: auto auto; */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box img {
    width: 40px;
    height: 40px;
    /* margin-bottom: 20px; */
    margin-top: 6px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: -10px;
    font-weight: bold;
}

.stat-box p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: none;
}

.chat-popup.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.chat-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-info h4 {
    margin: 0;
    color: #333;
}

.chat-info span {
    font-size: 12px;
    color: #25d366;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .conference-info {
        order: -1;
    }

    .conference-title {
        font-size: 16px;
        padding: 10px 20px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .stats-section h2 {
        font-size: 2rem;
    }


}

.explore-schools {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8e4d8e;
    margin-bottom: 40px;
    font-weight: 600;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Career Path Finder Styles */
.career-path-finder {
    flex: 0 0 300px;
    background: linear-gradient(135deg, #fff5e6, #ffe0b3);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.career-path-finder h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 15px;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffd699;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #8e4d8e;
    background-color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #8e4d8e, #a566a5);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 77, 142, 0.4);
}

.illustration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
}

.graduate-figure {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 30px 30px 10px 10px;
    position: relative;
    z-index: 2;
}

.graduate-figure::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: #d4a574;
    border-radius: 50%;
}

.geometric-bg {
    position: absolute;
    top: 20px;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-radius: 10px;
    transform: rotate(45deg);
    z-index: 1;
}

/* Schools Grid Styles */
.schools-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 0.7fr));
    gap: 20px;
}

.school-card {
    background: white;
    padding: 20px 17px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #8e4d8e;
}

.school-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.school-card h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .career-path-finder {
        flex: none;
        width: 100%;
    }

    .schools-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .schools-grid {
        grid-template-columns: 1fr;
    }

    .career-path-finder {
        padding: 20px 15px;
    }
}

.why-centurion {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8e4d8e;
    margin-bottom: 40px;
    font-weight: 600;
}

.cards-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.info-card {
    flex: 1;
    background: linear-gradient(135deg, #2c3e7a, #1e2a5c);
    border-radius: 15px;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    min-height: 400px;
    position: relative;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* Left Card - Welcome to Parlakhemundi Campus */
.card-left {
    display: flex;
    flex-direction: column;
}

.card-left .card-content {
    padding: 30px 25px 20px;
    flex-grow: 1;
}

.card-left .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.card-left .card-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
}

.card-left .card-image {
    height: 150px;
    overflow: hidden;
}

.card-left .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center Card - India's First and Best Skill University */
.card-center {
    display: flex;
    flex-direction: column;
    flex: 1.2;
}

.card-center .card-header {
    padding: 20px 25px 15px;
    text-align: center;
}

.card-center .card-title-center {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.3;
}

.card-center .location {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 400;
}

.card-center .card-image-center {
    height: 200px;
    overflow: hidden;
    margin: 0 15px;
    border-radius: 8px;
}

.card-center .card-image-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-center .card-footer {
    padding: 20px 25px 30px;
    text-align: center;
    margin-top: auto;
}

.card-center .card-description {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Right Card - Industry Connects */
.card-right {
    display: flex;
    flex-direction: column;
}

.card-right .card-content {
    padding: 30px 25px 20px;
    flex-grow: 1;
}

.card-right .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.card-right .card-text {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.card-right .card-image {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Learn More Button Styles */
.learn-more-btn {
    background-color: #ffd700;
    color: #2c3e7a;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-more-btn:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .cards-container {
        flex-direction: column;
        gap: 30px;
    }

    .info-card {
        min-height: 350px;
    }

    .card-left,
    .card-right {
        flex-direction: row;
        min-height: 250px;
    }

    .card-left .card-content,
    .card-right .card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .card-left .card-image,
    .card-right .card-image {
        flex: 1;
        height: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .card-left,
    .card-right {
        flex-direction: column;
        min-height: 300px;
    }

    .card-left .card-image,
    .card-right .card-image {
        height: 150px;
    }

    .card-center .card-image-center {
        height: 180px;
        margin: 0 10px;
    }

    .info-card {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .cards-container {
        gap: 20px;
    }

    .card-left .card-content,
    .card-right .card-content,
    .card-center .card-header,
    .card-center .card-footer {
        padding: 20px;
    }

    .card-left .card-title,
    .card-right .card-title {
        font-size: 1.2rem;
    }

    .card-center .card-title-center {
        font-size: 1.1rem;
    }
}

/* Additional styling for better visual appeal */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 122, 0.9), rgba(30, 42, 92, 0.9));
    z-index: 1;
}

.info-card>* {
    position: relative;
    z-index: 2;
}

/* Gradient overlay for images */
.card-image::after,
.card-image-center::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 62, 122, 0.3), transparent);
    z-index: 1;
}

.sustainable-section {
    padding: 60px 20px;
    background-color: #fff;
}

.sustainable-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sustainable-image {
    flex: 1 1 40%;
}

.sustainable-image img {
    width: 100%;
    height: auto;
}

.sustainable-content {
    flex: 1 1 50%;
}

.sustainable-content h2 {
    font-size: 32px;
    color: #6A1B9A;
    /* Purple title */
    margin-bottom: 20px;
    font-weight: bold;
}

.sustainable-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.sdg-dedication {
    background-color: #844E94;
    /* Purple background */
    color: white;
    padding: 60px 20px;
}

.dedication-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.dedication-left {
    flex: 1 1 45%;
}

.dedication-left h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.dedication-left p {
    font-size: 16px;
    line-height: 1.7;
}

.dedication-right {
    flex: 1 1 50%;
    text-align: center;
}

.centurion-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cares-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.care-box {
    padding: 20px 15px;
    text-align: center;
    border-radius: 4px;
    color: white;
    width: 100px;
}

.care-box .letter {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.care-box .desc {
    font-size: 12px;
}

.pink {
    background-color: #D42A7D;
}

.red {
    background-color: #D32F2F;
}

.orange {
    background-color: #F57C00;
}

.dark-orange {
    background-color: #EF6C00;
}

.green {
    background-color: #7CB342;
}

.learn-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD600;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}

.media-coverage {
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
}

.section-header .highlight {
    color: #9c27b0;
    /* Purple highlight */
}

.view-more {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.coverage-item {
    position: relative;
    border: 1px solid #131313;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coverage-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.source {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #802f94;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 13px;
}

.caption {
    background-color: #fcd900;
    padding: 10px;
    min-height: 100px;
}

.caption h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px;
}

.caption p {
    font-size: 12px;
    color: #333;
    margin: 0;
}



.highlight-section {
    background: linear-gradient(135deg, #9b5ba5, #7a4a84);
    padding: 60px 0;
    min-height: 400px;
}

.highlight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    font-weight: 700;
}

.highlight-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.highlight-stats {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.highlight-stat-card {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 15px 30px;
    color: white;
    position: relative;
}

.highlight-stat-card.highlight-package {
    border-radius: 12px 12px 0 0;
}

.highlight-stat-card.highlight-candidates {
    border-radius: 0 0 12px 12px;
}

.highlight-stat-card.highlight-companies {
    border-radius: 0;
    border-top: 3px solid #8e4d8e;
    border-bottom: 3px solid #8e4d8e;
}

.highlight-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.95;
}

.highlight-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-logos {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 240px;
}

.highlight-logo {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #9b5ba5;
}

.highlight-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.highlight-logo:nth-child(1) {
    background: linear-gradient(135deg, #1db954, #1ed760);
}

.highlight-logo:nth-child(1) img {
    filter: brightness(0) invert(1);
}

.highlight-logo:nth-child(6) {
    background: linear-gradient(135deg, #0078d4, #106ebe);
}

.highlight-logo:nth-child(6) img {
    filter: brightness(0) invert(1);
}

@media (max-width: 968px) {
    .highlight-content {
        flex-direction: column;
        gap: 30px;
    }

    .highlight-stats {
        flex: none;
        width: 100%;
        flex-direction: row;
        gap: 15px;
    }

    .highlight-stat-card {
        flex: 1;
        text-align: center;
        padding: 20px 15px;
    }

    .highlight-stat-card.highlight-package {
        border-radius: 12px 0 0 12px;
    }

    .highlight-stat-card.highlight-candidates {
        border-radius: 0 12px 12px 0;
    }

    .highlight-stat-card.highlight-companies {
        border-radius: 0;
        border-top: none;
        border-bottom: none;
        border-left: 3px solid #8e4d8e;
        border-right: 3px solid #8e4d8e;
    }

    .highlight-value {
        font-size: 2.2rem;
    }

    .highlight-logos {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .highlight-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .highlight-stats {
        flex-direction: column;
        gap: 0;
    }

    .highlight-stat-card.highlight-package {
        border-radius: 12px 12px 0 0;
    }

    .highlight-stat-card.highlight-candidates {
        border-radius: 0 0 12px 12px;
    }

    .highlight-stat-card.highlight-companies {
        border-left: none;
        border-right: none;
        border-top: 3px solid #8e4d8e;
        border-bottom: 3px solid #8e4d8e;
    }

    .highlight-logos {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 12px;
        padding: 20px;
    }

    .highlight-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .highlight-container {
        padding: 0 15px;
    }

    .highlight-logos {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .highlight-stat-card {
        padding: 15px;
    }

    .highlight-value {
        font-size: 2rem;
    }

    .highlight-label {
        font-size: 0.9rem;
    }
}

/* Animation Effects */
.highlight-stat-card {
    animation: slideInLeft 0.6s ease-out;
}

.highlight-stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight-stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight-logos {
    animation: slideInRight 0.6s ease-out 0.3s both;
}

.campus-media {
    background-color: #884995;
    /* Purple background */
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.campus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.categories span {
    font-size: 20px;
    font-weight: bold;
    margin-right: 25px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.categories .active {
    color: #fcd900;
    /* Yellow color for active tab */

}


.view-more {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.campus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.campus-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 3px solid white;
}



.learn-by-doing {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: right;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #8e4d8e;
    margin-bottom: 50px;
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.activity-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.activity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-item:hover img {
    transform: scale(1.05);
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-description p {
    font-size: 1.3rem;
    color: #8e4d8e;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.5;
}

.learn-more-btn {
    background: linear-gradient(135deg, #8e4d8e, #a566a5);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 77, 142, 0.4);
    background: linear-gradient(135deg, #a566a5, #8e4d8e);
}

/* Responsive Design */
@media (max-width: 968px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .activity-item {
        height: 220px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .learn-by-doing {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .activities-grid {
        margin-bottom: 30px;
    }

    .activity-item {
        height: 200px;
    }

    .section-description p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .learn-more-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .activity-item {
        height: 180px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Animation effects */
.section-title {
    animation: fadeInUp 0.6s ease-out;
}

.activity-item {
    animation: fadeInUp 0.6s ease-out;
}

.activity-item:nth-child(1) {
    animation-delay: 0.1s;
}

.activity-item:nth-child(2) {
    animation-delay: 0.2s;
}

.activity-item:nth-child(3) {
    animation-delay: 0.3s;
}

.activity-item:nth-child(4) {
    animation-delay: 0.4s;
}

.section-description {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add overlay effect on images */
.activity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(142, 77, 142, 0.1), rgba(165, 102, 165, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.activity-item:hover::before {
    opacity: 1;
}


* Hover Effect */ .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

hr.animated-line {
    border: none;
    /* Remove default border */
    border-top: 5px solid #333;
    /* Bold border */
    width: 0;
    /* Start at 0 width */
    margin: 20px auto;
    /* Center it and add space above and below */
    animation: expandLine 2s ease-in-out forwards;
    /* Animation */
}

/* Keyframes for animation */
@keyframes expandLine {
    0% {
        width: 0;
    }

    50% {
        width: 50%;
        /* The line expands to 50% */
    }

    100% {
        width: 80%;
        /* The line reaches 80% width */
    }
}




.site-footer {
    background-color: #1e1e25;
    color: white;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fcd900;
}

.contact-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 28px;
    height: 28px;
}

.footer-bottom {
    background-color: #9b59b6;
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    margin: 0 5px;
}


.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

.chat-popup {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #128C7E;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-avatar {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-info h4 {
    margin: 0;
    font-size: 16px;
}

.chat-info span {
    font-size: 12px;
    color: #e0e0e0;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.chat-input button {
    margin-left: 5px;
    padding: 5px 10px;
    background-color: #128C7E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.whatsapp-btn {
    display: block;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
}


/* Enhanced Chat Styles */
.chat-popup {
    width: 350px;
    height: 500px;
    background-color: #fff;
    border-radius: 15px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.chat-popup.active {
    display: flex;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.user-message {
    margin-left: auto;
    text-align: right;
}

.user-message p {
    background: #2c5aa0;
    color: white;
    padding: 10px 15px;
    border-radius: 18px 18px 5px 18px;
    display: inline-block;
}

.bot-message p {
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 18px 18px 18px 5px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.typing-indicator {
    display: none;
    padding: 10px;
}

.typing-dots {
    display: inline-block;
    width: 40px;
    height: 20px;
    background: white;
    border-radius: 10px;
    position: relative;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
}