/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #222222;
    background-color: #ffffff;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #222222;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 0.9375rem;
}

a {
    color: #fb2056;
    text-decoration: none;
}

a:hover {
    color: #fb2056;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 17px 40px;
    border-radius: 30px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fb2056;
    color: #ffffff;
    border: 2px solid #fb2056;
}

.btn-primary:hover {
    background-color: #e01d4f;
    border-color: #e01d4f;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #fb2056;
    border: 2px solid #fb2056;
}

.btn-secondary:hover {
    background-color: #fb2056;
    color: #ffffff;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 15px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #222222;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #fb2056;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #222222;
    cursor: pointer;
}

/* Hero Banner Section */
.hero-banner {
    padding: 0;
    background: #ffffff;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.welcome-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: flex-start;
}

.quote-icon img {
    width: 120px;
    height: auto;
}

.welcome-text h2 {
    margin-bottom: 20px;
    color: #222222;
    font-size: 2rem;
}

.welcome-text blockquote {
    margin: 20px 0;
    padding: 20px;
    background: rgba(251, 32, 86, 0.1);
    border-left: 4px solid #fb2056;
    font-style: italic;
}

.welcome-text p {
    color: #666666;
    line-height: 1.8;
    text-align: justify;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: #ffffff;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.events-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #222222;
    position: relative;
}

.events-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #fb2056;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

.event-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    margin-bottom: 15px;
    color: #222222;
    font-size: 1.5rem;
}

.event-content p {
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.helpline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fb2056;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.helpline-btn:hover {
    background-color: #e01d4f;
    color: #ffffff;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.featured-text h3 {
    margin-bottom: 20px;
    color: #222222;
}

.featured-text p {
    color: #666666;
    margin-bottom: 30px;
}

.helpline {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fb2056;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
}

/* Footer */
.site-footer {
    background-color: #191919;
    color: #d3d3d3;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d3d3d3;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fb2056;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vision-text h2 {
    margin-bottom: 20px;
    color: #222222;
    font-size: 2rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: #fb2056;
    margin: 20px 0 30px 0;
}

.vision-text p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Chairman and Director Messages */
.chairman-message,
.director-message {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.chairman-message h4,
.director-message h4 {
    text-align: center;
    margin-bottom: 10px;
    color: #222222;
    font-size: 1.5rem;
}

.chairman-message .divider,
.director-message .divider {
    margin: 0 auto 40px;
}

.message-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.chairman-photo,
.director-photo {
    width: 200px;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
}

.director-photo {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

.message-content p {
    color: #666666;
    line-height: 1.7;
    text-align: justify;
    flex: 1;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #222222;
}

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

.value-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: #fb2056;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #222222;
}

.value-card p {
    color: #666666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #222222 0%, #333333 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 30px;
    color: #222222;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    background-color: #fb2056;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: #222222;
}

.contact-details p {
    color: #666666;
    margin-bottom: 5px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #222222;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fb2056;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.emergency-icon {
    font-size: 3rem;
    color: #fb2056;
}

.emergency-text h3 {
    margin-bottom: 10px;
    color: #222222;
}

.emergency-text p {
    color: #666666;
}

.emergency-number .btn {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Service Content Pages */
.service-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-text h2 {
    margin-bottom: 20px;
    color: #222222;
}

.service-text h3 {
    margin: 30px 0 15px;
    color: #222222;
}

.service-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-text ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #666666;
}

.service-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fb2056;
    font-weight: bold;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Exam Categories */
.exam-category {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #fb2056;
}

.exam-category h4 {
    margin-bottom: 10px;
    color: #222222;
}

.exam-category p {
    color: #666666;
    margin: 0;
}

/* Admission Process Steps */
.admission-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #fb2056;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: #222222;
}

.step-content p {
    color: #666666;
    line-height: 1.6;
}

/* Admission Services */
.admission-services {
    padding: 80px 0;
    background-color: #ffffff;
}

.admission-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item .service-icon {
    font-size: 3rem;
    color: #fb2056;
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    color: #222222;
}

.service-item p {
    color: #666666;
    line-height: 1.6;
}

/* Admission Stats */
.admission-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
    color: #ffffff;
}

.admission-stats h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

/* College Pages Styles */
.colleges-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-text {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
}

.category-section {
    margin-bottom: 60px;
}

.category-section h2 {
    margin-bottom: 30px;
    color: #222222;
    border-bottom: 3px solid #fb2056;
    padding-bottom: 10px;
}

.college-list {
    display: grid;
    gap: 30px;
}

.college-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #fb2056;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.college-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.college-item h3 {
    margin-bottom: 15px;
    color: #222222;
}

.college-item p {
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.college-details {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
}

.college-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
}

.college-details i {
    color: #fb2056;
}

/* Engineering College Tiers */
.engineering-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-content h2 {
    margin-bottom: 20px;
    color: #222222;
}

.intro-content p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.admission-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid #fb2056;
}

.admission-info h3 {
    margin-bottom: 15px;
    color: #222222;
}

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

.admission-info ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #666666;
}

.admission-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fb2056;
    font-weight: bold;
}

/* College Tiers */
.college-tiers {
    padding: 80px 0;
    background-color: #ffffff;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tier-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.tier-header {
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
    color: #ffffff;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tier-header h3 {
    color: #ffffff;
    margin: 0;
}

.tier-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tier-badge.premium {
    background-color: #ffd700;
    color: #333333;
}

.tier-badge.excellent {
    background-color: #28a745;
    color: #ffffff;
}

.tier-badge.good {
    background-color: #17a2b8;
    color: #ffffff;
}

.tier-content {
    padding: 30px;
}

.tier-content h4 {
    margin-bottom: 20px;
    color: #222222;
}

.tier-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tier-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #666666;
}

.tier-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fb2056;
    font-weight: bold;
}

.tier-content p {
    color: #666666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Popular Branches */
.popular-branches {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.branch-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.branch-item:hover {
    transform: translateY(-5px);
}

.branch-icon {
    font-size: 3rem;
    color: #fb2056;
    margin-bottom: 20px;
}

.branch-item h3 {
    margin-bottom: 15px;
    color: #222222;
}

.branch-item p {
    color: #666666;
    line-height: 1.6;
}

/* Study Abroad Styles */
.study-abroad-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: #fb2056;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: #222222;
}

.benefit-item p {
    color: #666666;
}

/* Popular Destinations */
.popular-destinations {
    padding: 80px 0;
    background-color: #ffffff;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.destination-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.destination-flag {
    margin-bottom: 20px;
}

.destination-flag img {
    width: 60px;
    height: auto;
    border-radius: 5px;
}

.destination-card h3 {
    margin-bottom: 20px;
    color: #222222;
}

.destination-info p {
    color: #666666;
    margin-bottom: 10px;
    text-align: left;
    font-size: 0.9rem;
}

.destination-info strong {
    color: #222222;
}

/* Services Process */
.our-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #fb2056;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step .step-content {
    padding-top: 15px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #222222;
}

.process-step p {
    color: #666666;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Online Courses Styles */
.online-courses-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #fb2056;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #222222;
}

.feature-item p {
    color: #666666;
}

/* Course Categories */
.course-categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
}

.category-icon {
    font-size: 3rem;
    color: #fb2056;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 20px;
    color: #222222;
}

.course-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.course-list ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #666666;
}

.course-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fb2056;
    font-weight: bold;
}

.category-price {
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

/* Learning Platform */
.learning-platform {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.platform-feature {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.platform-feature:hover {
    transform: translateY(-3px);
}

.platform-icon {
    font-size: 2.5rem;
    color: #fb2056;
    margin-bottom: 20px;
}

.platform-feature h3 {
    margin-bottom: 15px;
    color: #222222;
}

.platform-feature p {
    color: #666666;
    line-height: 1.6;
}

/* Online Coaching Styles */
.coaching-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.coaching-benefits {
    margin-top: 50px;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.coaching-benefits .benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.coaching-benefits .benefit-icon {
    font-size: 2.5rem;
    color: #fb2056;
    flex-shrink: 0;
}

.coaching-benefits .benefit-item h3 {
    margin-bottom: 10px;
    color: #222222;
}

.coaching-benefits .benefit-item p {
    color: #666666;
    margin: 0;
}

/* Coaching Programs */
.coaching-programs {
    padding: 80px 0;
    background-color: #ffffff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

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

.program-card.featured {
    border: 2px solid #fb2056;
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.program-header {
    background: linear-gradient(135deg, #222222 0%, #333333 100%);
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.program-header h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.program-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fb2056;
}

.program-content {
    padding: 30px;
}

.program-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.program-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #666666;
}

.program-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fb2056;
    font-weight: bold;
}

.program-duration {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #222222;
}

/* Coaching Features */
.coaching-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.coaching-features .feature-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-check {
    font-size: 1.5rem;
    color: #28a745;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 8px;
    color: #222222;
}

.feature-text p {
    color: #666666;
    margin: 0;
    font-size: 0.9rem;
}

/* Top Colleges Ranking Styles */
.top-colleges-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.colleges-ranking {
    margin-top: 60px;
}

.college-rank-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #fb2056;
}

.college-rank-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rank-number {
    background: linear-gradient(135deg, #fb2056 0%, #e01d4f 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.college-info {
    flex: 1;
}

.college-info h3 {
    margin-bottom: 8px;
    color: #222222;
    font-size: 1.3rem;
}

.college-type {
    color: #fb2056;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.college-info > p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.college-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.highlight {
    background-color: #ffffff;
    color: #222222;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

/* Institution Categories */
.institution-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category h3 {
    color: #222222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fb2056;
}

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

.category ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #666666;
}

.category ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fb2056;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content,
    .featured-content,
    .about-grid,
    .vision-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid,
    .values-grid,
    .events-grid,
    .stats-grid,
    .tier-grid,
    .branches-grid,
    .benefits-grid,
    .destinations-grid,
    .services-process {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 40px 0;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .message-content {
        flex-direction: column;
        text-align: center;
    }

    .chairman-photo,
    .director-photo {
        width: 150px;
        margin: 0 auto 20px;
        float: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .college-details {
        flex-direction: column;
        gap: 10px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .admission-services .services-grid {
        grid-template-columns: 1fr;
    }

    .benefit-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coaching-benefits .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card.featured {
        transform: none;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .coaching-features .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .categories-grid,
    .features-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .college-rank-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .rank-number {
        margin: 0 auto;
    }

    .college-highlights {
        justify-content: center;
    }
}
