.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-4709 .elementor-element.elementor-element-760b649{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:wrap;}.elementor-4709 .elementor-element.elementor-element-760b649.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-4709 .elementor-element.elementor-element-354b07e{--display:flex;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-4709 .elementor-element.elementor-element-39bf292{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-4709 .elementor-element.elementor-element-39bf292.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:1500px) and (min-width:768px){.elementor-4709 .elementor-element.elementor-element-760b649{--width:1068px;}}@media(max-width:1500px){.elementor-4709 .elementor-element.elementor-element-39bf292{width:var( --container-widget-width, 1227.67px );max-width:1227.67px;--container-widget-width:1227.67px;--container-widget-flex-grow:0;}}@media(max-width:767px){.elementor-4709 .elementor-element.elementor-element-39bf292{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-39bf292 */<style>
:root {
    --primary-color: #2563eb;  /* More vibrant blue */
    --primary-dark: #1d4ed8;
    --secondary-color: #ef4444; /* More vibrant red */
    --accent-color: #f8fafc;
    --text-color: #1e293b;
    --light-text: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Banner */
.top-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.top-banner a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-banner a:hover {
    text-decoration: none;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow-md);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
}

.hero-banner:hover .hero-image {
    transform: scale(1.02);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb */
.breadcrumb {
    padding: 18px 0;
    background-color: var(--accent-color);
    font-size: 14px;
    margin-top: -1px; /* Connects with hero */
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Main Content */
.main-content {
    display: flex;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.content-left {
    flex: 2;
    min-width: 300px;
}

.content-right {
    flex: 1;
    min-width: 300px;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    position: relative;
}

.tabs::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 100px;
    background: var(--primary-color);
    transition: var(--transition);
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    transition: var(--transition);
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

.tab:hover {
    color: var(--primary-color);
}

.tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* College Card */
.college-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.college-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.college-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--gradient-primary);
    color: white;
}

.college-title {
    font-size: 26px;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

.college-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.meta-item i {
    margin-right: 8px;
    color: white;
}

.college-body {
    padding: 24px;
}

/* Highlights */
.highlight-box {
    background: var(--accent-color);
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.highlight-item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.highlight-icon {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
    margin-top: 2px;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.courses-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.courses-table th {
    background: var(--gradient-primary);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 500;
    position: sticky;
    top: 0;
}

.courses-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.courses-table tr:last-child td {
    border-bottom: none;
}

.courses-table tr:nth-child(even) {
    background: var(--accent-color);
}

.courses-table tr:hover td {
    background: #e7f1ff;
}

.course-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.course-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.gallery-item {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--text-color);
    transition: var(--transition);
    border-radius: 6px;
}

.quick-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
    background: rgba(37, 99, 235, 0.05);
}

.quick-links a::before {
    content: '→';
    margin-right: 10px;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.quick-links a:hover::before {
    opacity: 1;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.contact-info i {
    margin-right: 12px;
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Campus Section */
.campus-section {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.campus-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.campus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.campus-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.campus-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.campus-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.campus-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.campus-button i {
    margin-left: 8px;
    transition: var(--transition);
}

.campus-button:hover i {
    transform: translateX(3px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 10px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #fff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer p {
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links a::before {
    content: '•';
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 14px;
}

.footer-bottom a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .content-left {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        scrollbar-width: none;
    }
    
    .tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab {
        padding: 10px 20px;
        flex-shrink: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 350px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .college-title {
        font-size: 22px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .campus-gallery {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
</style>/* End custom CSS */