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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6A00, #E55A00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Needed for Chrome/Safari */
    color: #FF6A00; /* Fallback for browsers that don’t support text fill */
}

.gradient-text.cyan {
    background: linear-gradient(135deg, #00C7BE, #0891B2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #00C7BE;
}

.gradient-text.purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #8B5CF6;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: rgba(255, 106, 0, 0.1);
    color: #FF6A00;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.badge.badge-cyan {
    background-color: rgba(0, 199, 190, 0.1);
    color: #00C7BE;
    border: 1px solid rgba(0, 199, 190, 0.2);
}

.badge.badge-purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge.badge-yellow {
    background-color: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3); /* Added focus style for accessibility */
}

.btn-primary {
    background: linear-gradient(135deg, #FF6A00, #E55A00);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #FF6A00;
    border: 2px solid #FF6A00;
}

.btn-outline:hover {
    background: #FF6A00;
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #ffffff; /* Added fallback for browsers without backdrop-filter */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-icon {
    position: relative;
    margin-right: 0.75rem;
}

.logo-circle {
    width: 4rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    object-position: center;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-item {
    padding: 0.85rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    border-radius: 9999px;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background: #FF6A00;
    color: white;
    box-shadow: 0 4px 6px rgba(255, 106, 0, 0.3);
}

.nav-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3); /* Added focus style for accessibility */
}

/* CTA Buttons */
.cta-buttons {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .cta-buttons {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: #f3f4f6;
    border: none;
    border-radius: 9999px;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: #FF6A00;
}

.mobile-menu-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3); /* Added focus style for accessibility */
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    background-color: #ffffff; /* Added fallback for browsers without backdrop-filter */
}

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

.mobile-nav {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-item {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 500;
    background: none;
    border: none;
    border-radius: 0.75rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: #FF6A00;
    color: white;
}

.mobile-nav-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3); /* Added focus style for accessibility */
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
}

/* Pages */
.page {
    min-height: 100vh;
    padding-top: 5rem;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, rgba(255, 106, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 106, 0, 0.05) 0%, transparent 50%, rgba(0, 199, 190, 0.05) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1f2937;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-subtitle h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
}

@media (min-width: 768px) {
    .hero-subtitle h2 {
        font-size: 1.875rem;
    }
}

.hero-description {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-description h3 {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 400;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description h3 {
        font-size: 1.5rem;
    }
}

.highlight {
    color: #FF6A00;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.target-areas {
    padding-top: 2rem;
}

.target-areas p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.area-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.area-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 199, 190, 0.1);
    color: #00C7BE;
    border: 1px solid rgba(0, 199, 190, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF6A00;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4b5563;
}

/* Video Profile Section */
.video-profile {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .video-content {
        grid-template-columns: 1fr 1fr;
    }
}

.video-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-text p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
}

.highlight-text {
    font-weight: 600;
    color: #FF6A00 !important;
}

.quote {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: #FF6A00 !important;
    font-style: italic;
}

.bold {
    font-weight: 600 !important;
}

.video-placeholder {
    position: relative;
}

.video-container {
    position: relative;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    will-change: transform, box-shadow; /* Added for performance optimization */
}

.video-container:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.play-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #FF6A00, #E55A00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

.play-button .icon {
    color: white;
    width: 2rem;
    height: 2rem;
    margin-left: 0.25rem;
}

.video-container p {
    color: #4b5563;
    font-weight: 500;
    text-align: center;
    position: relative;
}

/* Core Values Section */
.core-values {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb, white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.5s ease;
    will-change: transform, box-shadow; /* Added for performance optimization */
}

.value-card:hover,
.value-card.active {
    transform: scale(1.05);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #FF6A00;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card.active .value-icon {
    transform: scale(1.1);
}

.value-icon.orange {
    background: rgba(255, 106, 0, 0.2);
}

.value-icon.orange .icon {
    color: #FF6A00;
    width: 2rem;
    height: 2rem;
}

.value-icon.cyan {
    background: rgba(0, 199, 190, 0.2);
}

.value-icon.cyan .icon {
    color: #00C7BE;
    width: 2rem;
    height: 2rem;
}

.value-icon.purple {
    background: rgba(139, 92, 246, 0.2);
}

.value-icon.purple .icon {
    color: #8B5CF6;
    width: 2rem;
    height: 2rem;
}

.value-icon.yellow {
    background: rgba(245, 158, 11, 0.2);
}

.value-icon.yellow .icon {
    color: #F59E0B;
    width: 2rem;
    height: 2rem;
}

.value-icon.red {
    background: rgba(239, 68, 68, 0.2);
}

.value-icon.red .icon {
    color: #EF4444;
    width: 2rem;
    height: 2rem;
}

.value-card h3 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.value-card.active .value-icon .icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: white;
}

.clients-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.client-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.corporate-placeholder {
    text-align: center;
}

.placeholder-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(229, 90, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.placeholder-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #FF6A00;
}

.corporate-placeholder p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.corporate-placeholder small {
    font-size: 0.875rem;
    color: #6b7280;
}

.colleges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .colleges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.college-card {
    background: linear-gradient(135deg, rgba(0, 199, 190, 0.1), rgba(8, 145, 178, 0.1));
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    will-change: transform, box-shadow; /* Added for performance optimization */
}

.college-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 199, 190, 0.2);
}

.college-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: rgba(0, 199, 190, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.college-icon .icon {
    color: #00C7BE;
    width: 2.25rem;
    height: 2.25rem;
}

.college-card span {
    color: #374151;
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
    transition: all 0.3s ease;
}

.college-card:hover span {
    color: #00C7BE;
}

/* Services Page */
.services-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb, white);
}

.courses-section {
    margin-bottom: 4rem;
}

.courses-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.course-card {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.course-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 106, 0, 0.2);
}

.course-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(0, 199, 190, 0.1);
    color: #00C7BE;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.course-card h3 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.course-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

.course-benefits {
    text-align: center;
}

.course-benefits p.highlight {
    color: #FF6A00;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-benefits p {
    color: #4b5563;
}

/* Service Tabs */
.service-tabs {
    width: 100%;
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 3rem;
    background: #f3f4f6;
    padding: 0.5rem;
    border-radius: 1rem;
}

@media (min-width: 1024px) {
    .tab-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

.tab-button {
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: #374151;
}

.tab-button.active {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.tab-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3); /* Added focus style for accessibility */
}

.tab-content {
    width: 100%;
}

.tab-pane {
    display: none;
}

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

.service-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-header {
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
}

.service-header > * {
    position: relative;
}

.service-card.orange .service-header {
    background: #FF6A00;
}

.service-card.cyan .service-header {
    background: #00C7BE;
}

.service-card.purple .service-header {
    background: #8B5CF6;
}

.service-card.yellow .service-header {
    background: #F59E0B;
}

.service-card.red .service-header {
    background: #EF4444;
}

.service-header h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.service-header p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.service-description {
    font-size: 1rem !important;
    line-height: 1.7;
    opacity: 0.8 !important;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr 1fr;
    }
}

.service-items h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.service-items ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-items li {
    display: flex;
    align-items: center;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-items li::before {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card.orange .service-items li::before {
    background: #FF6A00;
}

.service-card.cyan .service-items li::before {
    background: #00C7BE;
}

.service-card.purple .service-items li::before {
    background: #8B5CF6;
}

.service-card.yellow .service-items li::before {
    background: #F59E0B;
}

.service-card.red .service-items li::before {
    background: #EF4444;
}

.service-items li:hover {
    color: #1f2937;
}

.service-items li:hover::before {
    transform: scale(1.25);
}

.service-features h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
}

.feature::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.feature:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Placement Partners */
.placement-partners {
    margin-top: 4rem;
}

.partners-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(0, 199, 190, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.partners-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.partners-card p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 199, 190, 0.1);
    color: #00C7BE;
    border: 1px solid rgba(0, 199, 190, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.partners-card .small {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Feedback Page */
.feedback-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb, white);
}

.company-motto {
    margin-top: 2rem;
}

.company-motto h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 1rem;
}

.motto {
    font-size: 1.25rem;
    color: #FF6A00 !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

/* Testimonial Images */
.testimonial-images {
    margin-bottom: 4rem;
}

.testimonial-images h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .images-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.image-item {
    position: relative;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

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

.image-overlay p {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

/* Featured Testimonial */
.featured-testimonial {
    margin-bottom: 5rem;
}

.featured-testimonial h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 106, 0, 0.2);
    background: linear-gradient(135deg, white, rgba(255, 106, 0, 0.02));
}

.testimonial-card.featured {
    max-width: 96rem;
    margin: 0 auto;
}

.testimonial-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .testimonial-content {
        grid-template-columns: 1fr 2fr;
    }
}

.testimonial-profile {
    text-align: center;
}

@media (min-width: 1024px) {
    .testimonial-profile {
        text-align: left;
    }
}

.profile-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 106, 0, 0.2);
}

@media (min-width: 1024px) {
    .profile-image {
        margin: 0 0 1rem 0;
    }
}

.profile-placeholder {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6A00, #E55A00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (min-width: 1024px) {
    .profile-placeholder {
        margin: 0 0 1rem 0;
    }
}

.profile-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.profile-role {
    color: #FF6A00;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.profile-org {
    font-size: 0.875rem;
    color: #4b5563;
}

.testimonial-quote {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.star-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .star-rating {
        justify-content: flex-start;
    }
}

.star {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.25rem;
}

.star.filled {
    color: #fbbf24;
    fill: currentColor;
}

.star.empty {
    color: #d1d5db;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1f2937;
    font-style: italic;
    line-height: 1.7;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 106, 0, 0.1);
    color: #FF6A00;
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .quote-badge {
        justify-content: flex-start;
    }
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.75rem;
}

.indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FF6A00;
    transform: scale(1.25);
}

.indicator:hover {
    background: #9ca3af;
}

/* All Testimonials */
.all-testimonials h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-mini {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-mini:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 106, 0, 0.2);
}

.mini-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.mini-profile-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-mini:hover .mini-profile-image {
    border-color: rgba(255, 106, 0, 0.5);
}

.mini-profile-placeholder {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6A00, #E55A00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

.mini-profile-info {
    flex: 1;
}

.mini-profile-name {
    font-weight: bold;
    color: #1f2937;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.mini-profile-role {
    font-size: 0.75rem;
    color: #FF6A00;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.mini-profile-org {
    font-size: 0.75rem;
    color: #4b5563;
}

.mini-stars {
    display: flex;
    margin-bottom: 0.75rem;
}

.mini-quote {
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.875rem;
}

.mini-badge {
    font-size: 0.75rem;
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

/* Contact Page */
.contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb, white);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-method {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #e5e7eb;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.method-icon.orange {
    background: rgba(255, 106, 0, 0.2);
}

.method-icon.orange .icon {
    color: #FF6A00;
    width: 2rem;
    height: 2rem;
}

.method-icon.cyan {
    background: rgba(0, 199, 190, 0.2);
}

.method-icon.cyan .icon {
    color: #00C7BE;
    width: 2rem;
    height: 2rem;
}

.method-icon.purple {
    background: rgba(139, 92, 246, 0.2);
}

.method-icon.purple .icon {
    color: #8B5CF6;
    width: 2rem;
    height: 2rem;
}

.contact-method h3 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.method-details {
    margin-bottom: 0.5rem;
}

.method-details p {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.method-description {
    font-size: 0.875rem;
    color: #4b5563;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Form */
.form-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.form-header {
    background: linear-gradient(135deg, #FF6A00, #E55A00);
    color: white;
    padding: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    opacity: 0.9;
}

.contact-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6A00;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

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

/* Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 1.5rem;
    border: 2px solid #e5e7eb;
    overflow: hidden;
}

.info-header {
    padding: 1.5rem 1.5rem 0;
}

.info-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1f2937;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.info-header h3 .icon.cyan {
    color: #00C7BE;
}

.info-header p {
    color: #4b5563;
    font-size: 0.875rem;
}

.info-card .hours-list {
    padding: 0 1.5rem 1.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 500;
}

.hour-item span:last-child {
    color: #4b5563;
}

.call-ahead {
    padding: 0 1.5rem 1.5rem;
}

.call-ahead p {
    background: rgba(255, 106, 0, 0.1);
    color: #FF6A00;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 0 1.5rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.social-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3); /* Added focus style for accessibility */
}

.social-link.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-link.instagram:hover {
    background: #E4405F;
    color: white;
}

.social-link.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-link.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.social-link.twitter:hover {
    background: #000000;
    color: white;
}

.social-note {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.social-note p {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

.response-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(255, 193, 7, 0.05));
    border-color: rgba(245, 158, 11, 0.2);
    text-align: center;
    padding: 1.5rem;
}

.response-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.response-icon .icon {
    color: #F59E0B;
    width: 2rem;
    height: 2rem;
}

.response-card h3 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.response-card p {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.response-card small {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Maps Section */
.maps-section {
    margin-top: 4rem;
}

.maps-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.maps-header {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 2rem;
}

.maps-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.maps-header p {
    opacity: 0.9;
}

.maps-placeholder {
    height: 24rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.maps-content {
    text-align: center;
    color: #4b5563;
}

.maps-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.maps-icon .icon {
    color: #8B5CF6;
    width: 2.5rem;
    height: 2.5rem;
}

.maps-content h3 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.maps-content p {
    margin-bottom: 0.5rem;
}

.maps-content .location {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.maps-content .btn {
    background: #8B5CF6;
    color: white;
}

.maps-content .btn:hover {
    background: #7C3AED;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827, #000000);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 106, 0, 0.1) 0%, transparent 50%, rgba(0, 199, 190, 0.1) 100%);
}

.footer .container {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section.company-info {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-section.company-info {
        grid-column: span 2;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-circle {
    width: 4.25rem;
    height: 4.25rem;
}

.logo-circle,
.footer-logo .logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem; /* header size */
    height: 5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: transparent;
}

.logo-circle img,
.footer-logo .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show entire logo without cropping */
    object-position: center;
}

.footer-logo h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
}

.footer-logo p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin: 0;
}

.company-description {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.company-motto {
    color: #FF6A00 !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
}

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

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FF6A00;
    transform: scale(1.1);
}

.social-icon:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3); /* Added focus style for accessibility */
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FF6A00;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #d1d5db;
}

.contact-item .icon {
    color: #FF6A00;
    margin-right: 0.75rem;
    width: 1.125rem;
    height: 1.125rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item p {
    margin: 0;
    font-size: 0.875rem;
}

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

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle h2 {
        font-size: 1.25rem;
    }

    .hero-description h3 {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .video-content {
        gap: 2rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .quote-text {
        font-size: 1.125rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

.overflow-hidden {
    overflow: hidden;
}

.transition-all {
    transition: all 0.3s ease;
}

.cursor-pointer {
    cursor: pointer;
}

.select-none {
    user-select: none;
}