:root {
    /* Color Palette - Matching CollegeVidya */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #1a73e8;
    --accent-color: #ffa500;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f2f5;
    --bg-purple: #6366f1;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.top-bar-link {
    color: var(--bg-white);
    text-decoration: none;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.badge-ai {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Header Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.arrow {
    font-size: 10px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-compare {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}

.btn-compare:hover {
    transform: translateY(-2px);
}

.badge-ai-small {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

.badge-icon {
    font-size: 18px;
}



.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0 0 80px;
    color: var(--bg-white);
    
}










.hero-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    /* background-image: url("../images/bg-img.png") !important;
    background-position: center center;
    background-size: cover;
    width:100%;
    min-height:550px; */
}
.btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

.main-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Stats Inline */
.stats-inline {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-inline-item {
    text-align: center;
}

.stat-inline-item h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-inline-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Course Tabs */
.course-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    background-color: var(--bg-white);
    color: var(--bg-purple);
    border-color: var(--bg-white);
}

/* Course Cards */
.course-cards-container {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.course-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.course-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.course-info {
    flex: 1;
}

.course-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.course-spec {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.course-compare {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
}

.badge-normal {
    display: inline-block;
    background-color: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}


.badge-trending,
.badge-global {
    display: inline-block;
   background-color: rgb(202, 244, 222);
 color: #0e9211f2;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Platform Section */
.platform-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.platform-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.platform-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.platform-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.platform-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.platform-card h3 span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
}

/* Experts Section */
.experts-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.expert-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.expert-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.expert-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
}

.counselling-count {
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.counselling-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.expert-rating {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.expert-info {
    margin-bottom: 16px;
}

.expert-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.expert-role {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.expert-degree {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.expert-exp {
    font-size: 13px;
    color: var(--text-light);
}

.btn-consult {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-consult:hover {
    transform: translateY(-2px);
}

/* Universities Section */
.universities-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.university-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.university-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.university-logo-placeholder {
    font-size: 60px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.university-info {
    text-align: center;
}

.university-courses {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.university-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
}

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        transition: left 0.3s;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 16px 0;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
    }

    .btn-compare,
    .btn-signin {
        width: 100%;
        justify-content: center;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .main-title {
        font-size: 40px;
    }

    .stats-inline {
        flex-direction: column;
        gap: 20px;
    }

    .course-tabs {
        flex-wrap: wrap;
    }

    .course-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .top-bar-content {
        justify-content: center;
    }

    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

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

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

    .universities-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   Chatbot Widget
   ============================================ */
.chatbot-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cv-gradient-accent);
  color: white;
  border: none;
  box-shadow: var(--cv-shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--cv-transition);
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--cv-shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  background: var(--cv-gradient-primary);
  color: white;
  padding: 1rem;
  font-weight: 600;
}

.chatbot-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.chatbot-footer {
  padding: 1rem;
  border-top: 1px solid var(--cv-light-gray);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-gradient-primary {
  background: var(--cv-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--cv-gradient-primary);
}

.bg-gradient-accent {
  background: var(--cv-gradient-accent);
}

/* ============================================
   Animations
   ============================================ */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .chatbot-window {
    width: calc(100vw - 2rem);
    right: 1rem;
  }
}


/*contact form*/
/* Contact Enquiry Section Styles */
.contact-enquiry-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-enquiry-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-enquiry-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Information Side */
.contact-info-side {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-group h3,
.office-info-group h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 8px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.office-info-group {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.office-item {
    margin-bottom: 20px;
}

.office-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.office-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.visit-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.visit-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Contact Form Side */
.contact-form-side {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.enquiry-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-links {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-links a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-links a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.btn-submit-enquiry {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-submit-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-submit-enquiry:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-enquiry-section {
        padding: 40px 20px;
    }
    
    .contact-enquiry-section .section-title {
        font-size: 2rem;
    }
    
    .contact-info-side,
    .contact-form-side {
        padding: 25px;
    }
    
    .enquiry-form h3 {
        font-size: 1.5rem;
    }
}
 .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        /* V2 Design Styles */
        .modal-container.design-v2 {
            background: white;
            padding: 0;
            border-radius: 12px;
            width: 95%;
            max-width: 500px; /* Narrower width for popup feel */
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            max-height: 95vh;
            overflow-y: auto;
            text-align: center;
        }

        .modal-content-wrapper {
            padding: 25px;
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            border: none;
            background: none;
            cursor: pointer;
            color: #999;
            z-index: 10;
        }

        .modal-header-v2 {
            margin-bottom: 20px;
        }

        .modal-title-v2 {
            color: #007bff; /* Bright Blue */
            font-size: 24px;
            font-weight: 800;
            margin: 0;
            margin-top: 15px;
        }

        .modal-subtitle-v2 {
            color: #444;
            font-size: 14px;
            margin: 5px 0 0;
            font-weight: 500;
        }

        /* Logos Strip */
        .university-logos-strip {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .logo-item {
            font-size: 10px;
            color: #ccc;
            border: 1px solid #eee;
            padding: 5px;
            width: 23%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            height: 40px;
        }

        /* Badges */
        .features-badges {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            font-size: 12px;
            color: #1ab69d; /* Greenish/Teal */
            font-weight: 600;
        }

        .badge-item i {
            margin-right: 4px;
        }
        
        .badge-item strong {
            color: #1ab69d;
        }

        /* Form V2 */
        .apply-form-v2 .form-group-v2 {
            margin-bottom: 12px;
            position: relative;
        }

        .input-v2, .select-v2 {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px; /* Rounded corners */
            font-size: 15px;
            color: #333;
            outline: none;
            transition: border-color 0.3s;
        }

        .input-v2:focus, .select-v2:focus {
            border-color: #007bff;
        }
        
        .input-icon-group {
             position: relative;
        }
        
        .spam-badge {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: #e0f7fa;
            color: #006064;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            pointer-events: none;
        }
        
        .spam-badge i {
             margin-right: 3px;
        }

        .btn-submit-v2 {
            width: 100%;
            padding: 14px;
            background: #007bff; /* Bright Blue */
            color: white;
            border: none;
            border-radius: 30px; /* Fully rounded button */
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
        }

        .btn-submit-v2:hover {
            background: #0069d9;
        }

        .security-badge {
            background: #e9f7ef;
            color: #27ae60;
            font-size: 12px;
            padding: 8px;
            border-radius: 4px;
            margin: 15px 0;
            font-weight: 500;
        }

        .experts-avatar-section {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
        }

        .avatars {
            display: flex;
            margin-right: 10px;
        }

        .avatar-circle {
            width: 30px;
            height: 30px;
            background: #ddd;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
        }
        
        .avatar-circle:first-child {
            margin-left: 0;
        }

        .experts-text {
            font-size: 12px;
            color: #555;
            text-align: left;
            line-height: 1.2;
        }

        .stars {
            display: block;
            margin-top: 2px;
            font-size: 10px;
            letter-spacing: -2px;
        }
        
        .btn-apply-now {
            background-color: #1ab69d;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            cursor: pointer;
            border: none;
            transition: background 0.3s;
            margin-top: 10px;
        }
        
        .btn-apply-now:hover {
             background-color: #159f8a;
             color: white;
        }



          /* Search Page Styles */
.search-hero {
    padding: 60px 0;
    background-color: #f9fbfd; 
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    
}


.search-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.badge-pill {
    background: #fff8e1; /* Light yellow */
    color: #b78900;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.highlight-text {
    color: #1ab69d; /* Brand color */
}

.search-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

.search-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.search-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 1;
    position: relative;
    min-width: 250px;
}

.search-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #555;
    appearance: none;
    -webkit-appearance: none;
    background: white;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.btn-find-colleges {
    background: #1ab69d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-find-colleges:hover {
    background: #159f8a;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.icon-cap { top: 20%; left: 10%; animation-delay: 0s; color: #1ab69d; }
.icon-scroll { bottom: 20%; right: 10%; animation-delay: 2s; color: #8e56ff; font-size: 50px; }
.icon-star { top: 30%; right: 20%; animation-delay: 1s; font-size: 20px; color: #f1c40f; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Dynamic Results Styles */
.search-results-section {
    padding: 40px 0;
    background-color: #f6f7f9;
    min-height: 200px;
}

.university-result-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.2s;
    border: 1px solid #eee;
}

.university-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.uni-card-header {
    margin-bottom: 15px;
}

.uni-logo {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.uni-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.uni-course-name {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.uni-approvals {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.approval-label {
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 5px;
}

.uni-card-footer {
    text-align: right;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.btn-know-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-know-more:hover {
    text-decoration: underline;
}

.loading-spinner, .no-results, .error-msg {
    text-align: center;
    color: #666;
    padding: 20px;
}

@media (max-width: 768px) {
    .search-title { font-size: 32px; }
    .search-form { flex-direction: column; }
    .btn-find-colleges { width: 100%; }
}

.btn-signin {
     background-color: #1ab69d;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            cursor: pointer;
            border: none;
            transition: background 0.3s;
            margin-top: 10px;
}

.btn-signin:hover {
   background-color: #159f8a;
             color: white;
}


 