
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* :root {
    --primary-color: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);;
    --primary-dark: #2563eb;
    --primary-light: #93c5fd;
    --secondary-color: #ffd700;
    --text-color: #1e293b;
    --text-color-secondary:#ffffff;
    --text-color-main: #360383;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #f1f5f9;
    --accent-color: #8b5cf6;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  } */

  :root {
    --primary-color: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --secondary-color: #ffd700;

  }

body {
    font-family: Inter, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Course Finder Section */
.course-finder {
    background: white;
    margin: -40px auto 0;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    z-index: 10;
}

.finder-header {
    text-align: center;
    margin-bottom: 40px;
}

.finder-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.finder-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-button.active {
    background: #1e3a8a;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.tab-button:hover:not(.active) {
    background: #e2e8f0;
    color: #475569;
}

/* Search Form */
.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input, .form-select {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.search-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.search-button:active {
    transform: translateY(0);
}

/* Quick Suggestions */
.quick-suggestions {
    margin-top: 30px;
    text-align: center;
}

.suggestions-title {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.suggestion-tag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

/* Support Section */
.support-section {
    background: #fef3c7;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.support-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 10px;
}

.support-text {
    color: #a16207;
    margin-bottom: 20px;
}

.support-button {
    background: #d97706;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: #b45309;
    transform: translateY(-1px);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Animation for tab switching */
.tab-content.active {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Destinations Section */
.destinations {
    background: white;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.destination-card {
    min-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.destination-image {
    height: 200px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.destination-overlay {
    text-align: center;
    z-index: 2;
    position: relative;
}

.destination-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.destination-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.destination-info {
    padding: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.info-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e3a8a;
}

.info-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.explore-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.explore-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Remove carousel navigation buttons */

/* Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Events Section */
.events-section {
    background: white;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-badge {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 2px;
}

.event-type {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-content {
    padding: 30px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.event-meta i {
    margin-right: 6px;
    color: #3b82f6;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
    line-height: 1.3;
}

.event-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefits-section {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #3b82f6;
}

.benefits-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 0.95rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 4px 0;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefits-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    margin-right: 8px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.spots-remaining {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 4px;
}

.register-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.register-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e3a8a;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.view-all-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* How It Works Section */
.how-it-works {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.process-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #f59e0b 50%, #10b981 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: 3px solid white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 80px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #3b82f6;
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-content h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-content span {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
}

/* Top Universities Section */
.universities-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.universities-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 50px;
}

.universities-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.universities-carousel::-webkit-scrollbar {
    display: none;
}

.university-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    min-width: 350px;
    flex-shrink: 0;
}

.university-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.university-logo {
    text-align: center;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 20px;
}

.university-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.university-content {
    text-align: left;
}

.university-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
    line-height: 1.3;
}

.university-location {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.university-location i {
    margin-right: 6px;
    color: #3b82f6;
}

.university-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1.1rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #1e3a8a;
    margin-top: 2px;
}

.university-programs {
    margin-bottom: 20px;
}

.programs-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
    font-size: 0.95rem;
}

.programs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.program-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.university-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.university-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.apply-btn {
    background: #1e3a8a;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

/* Blog Section */
.blog-section {
    background: white;
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-category {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date i {
    color: #3b82f6;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
    line-height: 1.3;
}

.blog-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.blog-author span {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.9rem;
}

.read-more-btn {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    color: #1e40af;
    transform: translateX(3px);
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.contact-form p {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.info-box i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-box h3 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
    font-size: 1.1rem;
}

.info-box p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Alert Styles */
.alert-success {
    background: #d1fae5;
    color: #065f46;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #10b981;
}

.error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Footer Section */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-contact {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-contact i {
    margin-right: 8px;
    color: #3b82f6;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fbbf24;
}

/* Remove universities carousel navigation buttons */

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .course-finder {
        margin: -20px 20px 0;
        padding: 30px 20px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .tab-navigation {
        max-width: 100%;
    }

    .suggestion-tags {
        justify-content: flex-start;
    }

    .carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-btn {
        display: none;
    }

    .destination-card {
        min-width: 280px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-width: auto;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .event-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding-top: 4rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 2rem;
  }
  
  .footer-logo h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 300px;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .link-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .link-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
  }
  
  .link-column ul {
    list-style: none;
  }
  
  .link-column ul li {
    margin-bottom: 10px;
  }
  
  .link-column ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: var(--transition);
  }
  
  .link-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
  }
  
  .footer-bottom {
    border-top: 1px solid #334155;
    padding: 20px 5%;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    color: #cbd5e1;
  }
  
  .footer-policies {
    display: flex;
    gap: 20px;
  }
  
  .footer-policies a {
    color: #cbd5e1;
    font-size: 0.9rem;
  }
  
  .footer-policies a:hover {
    color: var(--primary-light);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links ul li {
        padding: 0.5rem 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .process-step::after {
        display: none;
    }
  }
  
  @media (max-width: 576px) {
    .nav-links {
        position: fixed;
        background: var(--bg-color);
        height: 100vh;
        width: 200px;
        color:var(--text-color);
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links ul {
        padding: 30px;
    }
    
    .nav-links ul li {
        display: block;
        margin: 25px 0;
    }
    
    nav .fas {
        display: block;
        color: var(--text-color-secondary);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    .nav-links ul {
        padding-top: 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-policies {
        margin-top: 10px;
        justify-content: center;
    }
  }
/* Modern Navigation */
/* ==================== NAVIGATION ==================== */
/* Navigation Styles */
.educare-nav {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo img {
    height: 60px;
    width: 180px;
    background: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color-secondary);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--secondary-color);
}

/* Dropdown Styles */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    color: var(--text-color-secondary);
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-weight: 500;
    line-height: 1.5;
    font-size: 1rem;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown.show .dropdown-toggle span {
    transform: rotate(180deg);
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 200px;
    margin: 0;
    z-index: 1001;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.cta-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    color: white;
}

.arrow {
    transition: transform 0.3s ease;
}

.cta-btn:hover .arrow {
    transform: translateX(3px);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: none;
    border: none;
}

.mobile-cta {
    display: none;
}

/* Responsive Fixes */
@media (min-width: 768px) {
    .nav-links {
        display: flex !important; /* Override Bootstrap's collapse */
    }
    .nav-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none; /* Ensure collapse works on mobile */
    }
    .nav-links.show {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--primary-color);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .nav-toggle {
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .mobile-cta {
        display: block;
    }
}
/***FOOTER**/


  footer {
    background: var(--primary-color); 
    color: var(--text-color-secondary);
    padding: 3rem 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

  
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 2rem;
  }
  
  .footer-logo h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .footer-logo p {
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 300px;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .link-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .link-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
  }
  
  .link-column ul {
    list-style: none;
  }
  
  .link-column ul li {
    margin-bottom: 10px;
  }
  
  .link-column ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: var(--transition);
  }
  
  .link-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
  }
  
  .footer-bottom {
    border-top: 1px solid #334155;
    padding: 20px 5%;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    color: #cbd5e1;
  }
  
  .footer-policies {
    display: flex;
    gap: 20px;
  }
  
  .footer-policies a {
    color: #cbd5e1;
    font-size: 0.9rem;
  }
  
  .footer-policies a:hover {
    color: var(--primary-light);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .nav-links ul li {
        padding: 0.5rem 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .process-step::after {
        display: none;
    }
  }
  
  @media (max-width: 576px) {
    .nav-links {
        position: fixed;
        background: var(--bg-color);
        height: 100vh;
        width: 200px;
        color:var(--text-color);
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links ul {
        padding: 30px;
    }
    
    .nav-links ul li {
        display: block;
        margin: 25px 0;
    }
    
    nav .fas {
        display: block;
        color: var(--text-color-secondary);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    .nav-links ul {
        padding-top: 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-policies {
        margin-top: 10px;
        justify-content: center;
    }
  }

  /***TEAM SECTION***/
  .team-section {
    background: #f8f9ff;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.team-card:hover::before {
    height: 10px;
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 40px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    /* color: white; */
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    /* background: rgba(255,255,255,0.2); */
}

.social-links a:hover {
    background: #667eea;
    transform: scale(1.2);
}

.team-content {
    padding: 30px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.team-position {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-details {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.detail-item i {
    color: #667eea;
    margin-right: 10px;
    width: 16px;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.specialty-tag {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: #f8f9ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.team-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.team-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Destinations Section */
.destinations {
    background-color: var(--bg-light);
  }
  
  .destinations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }
  
  .destination-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
  }
  
  .destination-info {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  
  .info-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .info-label {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .explore-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  
  .explore-btn:hover {
    background-color: var(--primary-dark);
    color: white;
  }

    /**IELTS***/

    .ielts-page {
        padding: 2rem;
        color: #333;
    }
    
    .ielts-content-wrapper {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 100px;
    }
    
    .main-content {
        flex: 2;
        min-width: 300px;
    }
    
    .inquire-form {
        flex: 1;
        min-width: 280px;
        max-width: 400px;
    }
    
    .section {
        /* border: 2px solid #360383; */
        border-radius: 12px;
        padding: 1.5rem;
    }
    
    h3 {
        margin-top: 1.5rem;
        font-size: 1.25rem;
        border-left: 4px solid #360383;
        padding-left: 0.5rem;
    }
    
    .date {
        font-size: 0.9rem;
        color: #555;
    }
    
    ul li, ol li {
        margin-bottom: 0.5rem;
    }
    
    form input,
    form textarea {
        width: 100%;
        padding: 0.75rem;
        margin-bottom: 1rem;
        border: 2px solid #360383;
        border-radius: 8px;
        outline: none;
        font-size: 1rem;
    }
    
    form button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border: 2px solid ;
        border-radius: 12px;
        background: transparent;
        color: var(--primary-color);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    form button:hover {
        color: white;
        background-color: var(--primary-color);
    }
    
    /* Responsive stacking on small screens */
    @media (max-width: 768px) {
        .ielts-content-wrapper {
            flex-direction: column;
        }
    }
    
    /**Page Not Found**/
      /* Animated background particles */
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .particle:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
    .particle:nth-child(2) { width: 15px; height: 15px; left: 20%; animation-delay: 2s; }
    .particle:nth-child(3) { width: 25px; height: 25px; left: 30%; animation-delay: 4s; }
    .particle:nth-child(4) { width: 18px; height: 18px; left: 40%; animation-delay: 1s; }
    .particle:nth-child(5) { width: 22px; height: 22px; left: 50%; animation-delay: 3s; }
    .particle:nth-child(6) { width: 16px; height: 16px; left: 60%; animation-delay: 5s; }
    .particle:nth-child(7) { width: 24px; height: 24px; left: 70%; animation-delay: 2.5s; }
    .particle:nth-child(8) { width: 19px; height: 19px; left: 80%; animation-delay: 4.5s; }
    .particle:nth-child(9) { width: 21px; height: 21px; left: 90%; animation-delay: 1.5s; }

    @keyframes float {
        0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
        10%, 90% { opacity: 1; }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    .container {
        text-align: center;
        z-index: 2;
        position: relative;
        max-width: 600px;
        padding: 2rem;
    }

    .error-code {
        font-size: clamp(8rem, 15vw, 12rem);
        font-weight: 900;
        background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 3s ease-in-out infinite;
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
        margin-bottom: 1rem;
        line-height: 1;
    }

    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .error-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        /* color: white; */
        margin-bottom: 1rem;
        font-weight: 600;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .error-message {
        font-size: clamp(1rem, 2vw, 1.2rem);
        /* color: rgba(255, 255, 255, 0.8); */
        margin-bottom: 2rem;
        line-height: 1.6;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }

    .btn-container {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 12px 24px;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: linear-gradient(45deg, #ff6b6b, #feca57);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .btn:hover::before {
        left: 100%;
    }

    .icon {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .container {
            padding: 1rem;
        }
        
        .btn-container {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            width: 200px;
            justify-content: center;
        }
    }

    /* Glass morphism effect */
    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 3rem 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* Pulse animation for 404 */
    .pulse {
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    /* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .search-form {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
    }
    
    .form-control {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }
  }
  
  .events-section {
    padding: 4rem 1rem;
    background-color: #f8fafc;
  }
  
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  /* For exactly 3 columns on larger screens */
  @media (min-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .event-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .event-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  
  .event-header {
    position: relative;
    background: var(--primary-color);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
  }
  
  .date-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 60px;
  }
  
  .date-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
  }
  
  .date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #4a5568;
    letter-spacing: 0.5px;
  }
  
  .event-type {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .event-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .events-section-wrapper{
    margin-top: 100px;
    padding: 4rem 1rem;
    background-color: #f8fafc;
  }
  
  .event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .event-time, .event-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
  }
  
  .event-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .benefits-section {
    margin-bottom: 1.5rem;
  }
  
  .benefits-title {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
  }
  
  .benefits-list {
    list-style: none;
    padding-left: 0;
  }
  
  .benefits-list li {
    color: #4a5568;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
  }
  
  .benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
  }
  
  .event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
  }
  
  .price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #059669;
  }
  
  .spots-remaining {
    font-size: 0.875rem;
    color: #dc2626;
  }
  
  .register-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  }
  
  .view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .view-all-btn:hover {
    background: var(--primary-color);
    color: white;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .event-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
  }

  /* Google Reviews Section Styles */
.google-reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.google-business-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.business-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.business-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
}

.total-reviews {
    opacity: 0.9;
}

.google-logo {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.business-address {
    font-size: 0.95rem;
    opacity: 0.9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    overflow: hidden;
}

.reviewer-info h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-date {
    color: #718096;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-rating .stars {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-text {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.google-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}
  