body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* navbar */
.search-results {
    display: none;
    position: absolute;
    padding-left: 20px;
    top: 100%;
    left: 0;
    right: -15px;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 300px;
    overflow-y: hidden;
}
.search-results.active {
    display: block;
}
.search-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-item:hover {
    background-color: #f8fafc;
}
.search-item:last-child {
    border-bottom: none;
}
.mega-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.mega-menu.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #b14b90;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* home page */
.hero-clip-path {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
@media (max-width: 768px) {
    .hero-clip-path {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
}
.floating {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, -0px); }
}
.gradient-bg {
    background: linear-gradient(120deg, rgba(247, 123, 36, 0.08) 0%, rgba(234, 85, 128, 0.08) 50%, rgba(177, 75, 144, 0.08) 100%);
}
.tech-card {
    transition: all 0.3s ease;
}
.tech-card:hover {
    transform: translateY(-5px);
}
.service-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-5px);
    border-left: 4px solid #f77b24;
}
.stat-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
}
.course-pill {
    transition: all 0.3s ease;
}
.course-pill:hover {
    transform: scale(1.05);
}
.animated-border {
    position: relative;
}
.animated-border::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f77b24, #ea5580);
    transition: width 0.3s ease;
}
.animated-border:hover::after {
    width: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon-container:hover {
    transform: scale(1.1);
}
.testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
}
    
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #b14b90, #ea5580, #f77b24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #b14b90, #d45b64, #ea5580, #f77b24);
}

.quote-icon {
    font-size: 3rem;
    color: #b14b90;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #b14b90;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.client-details p {
    margin: 5px 0 0;
    color: #b14b90;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    margin-top: 10px;
}

.rating span {
    color: #f77b24;
    margin-right: 3px;
    font-size: 1.1rem;
}

.student-badge {
    display: inline-block;
    background: rgba(177, 75, 144, 0.2);
    color: #b14b90;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}
.modern-faq {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f9f9fb 0%, #ffffff 100%);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #b14b90 0%, #d45b64 50%, #f77b24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #5a5a72;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border-radius: 50px;
    border: 1px solid #e2e2e9;
    background: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #b14b90;
    box-shadow: 0 4px 12px rgba(177, 75, 144, 0.15);
}

.search-box svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .faq-content {
        flex-direction: row;
    }
}

.faq-categories {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 767px) {
    .faq-categories {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        flex: 0 0 auto;
    }
}

.category {
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    background: white;
    border: 1px solid #f0f0f5;
    cursor: pointer;
    font-weight: 500;
    color: #5a5a72;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.category:hover {
    border-color: #b14b90;
    color: #b14b90;
}

.category.active {
    background: #b14b90;
    color: white;
    border-color: #b14b90;
}

.faq-accordion {
    flex: 1;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f5;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2a2a3a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #b14b90;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    color: #b14b90;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #5a5a72;
}

/* Animation for category filtering */
.faq-item {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.vedhaan-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 20px;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
/* Floating shapes for background */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}
.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #b14b90, #d45b64);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}
.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #f77b24, #bf2a15);
    bottom: 50px;
    right: -100px;
    animation-delay: -5s;
}
.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #0f0f1a, #1a1a2a);
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(10deg);
    }
    66% {
        transform: translateY(20px) rotate(-10deg);
    }
}
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}
.contact-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f0f1a;
    letter-spacing: -0.5px;
}
.gradient-text {
    background: linear-gradient(135deg, #d45b64, #b14b90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-wrapper svg {
    width: 28px;
    height: 28px;
}
.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a2a;
    font-weight: 600;
}
.info-content p {
    margin: 8px 0;
    color: #666;
    font-size: 1rem;
}
.hours-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.hours-card h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #1a1a2a;
    text-align: center;
    font-weight: 600;
}
.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.hour-item:last-child {
    border-bottom: none;
}
.hour-item span:first-child {
    font-weight: 600;
    color: #333;
}
.hour-item span:last-child {
    color: #666;
}
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group input,
.form-group textarea {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b14b90;
    background: white;
    box-shadow: 0 0 0 3px rgba(180, 75, 144, 0.15);
}
.submit-btn {
    background: linear-gradient(135deg, #d45b64, #b14b90);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 56px;
}
.submit-btn .btn-text {
    transition: opacity 0.3s ease;
}
.submit-btn .btn-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.loader-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}
.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}
.submit-btn.loading .btn-text {
    opacity: 0;
}
.submit-btn.loading .btn-loader {
    opacity: 1;
}
.submit-btn:hover:not(.loading) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 75, 144, 0.35);
}
.form-message {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    opacity: 1;
    transform: translateY(0);
}
.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    opacity: 1;
    transform: translateY(0);
}
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.feature-icon svg {
    width: 35px;
    height: 35px;
}
.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a2a;
    font-weight: 600;
}
.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features-section {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .vedhaan-contact {
        padding: 70px 15px;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}
@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .info-card, .hours-card, .feature {
        padding: 20px;
    }
}
}
