/* Bennett University International Admissions Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #1e3a8a;
}

.apply-btn {
    background: #1e3a8a;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); */
    /* color: white; */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.apply-now-btn {
    background: orange;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.apply-now-btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e3a8a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #1e3a8a;
    border-radius: 2px;
}

/* Apply Section */
.apply-section {
    background: #fff;
}

.apply-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #f44336;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    background: #1e3a8a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.step-content .btn {
    margin-top: 1rem;
}

/* Why Study Section */
.why-study-section {
    background: #f8fafc;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #1e3a8a;
}

.feature-icon {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Programs Section */
.programs-section {
    background: white;
}

.program-tabs {
    justify-content: center;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 3rem;
}

.program-tabs .nav-link {
    color: #64748b;
    border: none;
    background: transparent;
    padding: 1rem 1rem;
    font-weight: 500;
    border-radius: 0;
    position: relative;
    font-size: 18px;
    transition: all 0.3s ease;
}

.program-tabs .nav-link:hover {
    color: #1e3a8a;
    background: transparent;
}

.program-tabs .nav-link.active {
    color: #f44336;
    background: transparent;
    border: none;
    font-size: 18px;
}

.program-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1e3a8a;
}

.program-list h4,
.eligibility-info h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.program-list li {
    background: #f8fafc;
    margin-bottom: 0.5rem;
    padding: 1rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    transition: all 0.3s ease;
}

.program-list li:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.eligibility-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #2563eb;
}

.eligibility-item strong {
    color: #1e3a8a;
}

.eligibility-item p {
    margin-bottom: 0.5rem;
}

.fee-info h4,
.program-info h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.scholarship-highlights {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
}

.scholarship-highlights h5 {
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.scholarship-highlights ul {
    margin-bottom: 0;
}

/* Support Section */
.support-section {
    background: #f8fafc;
}

.support-nav {
    background: white;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.support-menu {
    border-radius: 10px;
    overflow: hidden;
}

.support-menu .nav-link {
    width: 100%;
    background: #e3f2fd;
    color: #1976d2;
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #bbdefb;
}

.support-menu .nav-link:last-child {
    border-bottom: none;
}

.support-menu .nav-link:hover {
    background: #bbdefb;
    color: #1565c0;
    transform: translateX(5px);
}

.support-menu .nav-link.active {
    background: #1976d2;
    color: white;
}

.support-menu .nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.support-menu .nav-link:hover i {
    transform: translateX(3px);
}

.support-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    min-height: 400px;
}

.support-content h3 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.support-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.support-list li {
    /* background: #f8fafc; */
    /* margin-bottom: 0.8rem; */
    /* padding: 1rem 0.7rem; */
    /* border-radius: 8px; */
    /* border-left: 4px solid #1976d2; */
    /* position: relative; */
    /* transition: all 0.3s ease; */
}

.support-list li:before {
    content: '•';
    color: #1976d2;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.support-list li:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.support-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.support-disclaimer p {
    color: #856404;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.download-brochure-btn {
    background: #1976d2;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.download-brochure-btn:hover {
    background: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.3);
    color: white;
}

/* Support card styles for other sections */
.support-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.support-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

.support-card h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.support-card p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #1e3a8a;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: #334155;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1e3a8a;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .apply-steps {
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .program-tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .support-card {
        padding: 1.5rem;
    }
    
    .feature-icon,
    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1e3a8a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

footer {
    background: #333333;
    width: 100%;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 30px;
}
footer .impotant-links ul li {
  border-bottom: 0px dotted #fff;
   padding-top: 8px;
}
ul li a:hover{
text-decoration:underline;

}
footer ul li a, footer p{
  font-size: 15px;
 font-family: "Arial Narrow", Arial, sans-serif;

}
.footer-container .impotant-links {
    border-right: 1px solid #555;
}
footer ul {
    padding-left: 0px !important;
    list-style: none;
}
.theme-color {
    color: #fdc11e !important;
}
/* International Admission Officers Section */
.admission-officers-section {
    background: #1976d2;
    color: white;
}

.admission-officers-section h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.admission-officers-section p {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.admission-officers-section .text-white {
    color: white !important;
}

.admission-officers-section i {
    color: white;
    font-size: 1rem;
}
/* NRI Conditions Section */
.nri-conditions-section {
    background: #f8fafc;
}

.nri-conditions-title-box {
    background: #dc3545;
    border-radius: 8px;
}

.nri-conditions-title-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.nri-conditions-list {
    padding-left: 0;
}

.nri-conditions-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.nri-conditions-list i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.nri-conditions-section h4 {
    color: #333;
    font-weight: 600;
}