.hero-sections {
    display: flex;
    max-width: 1200px;
    width: 100%;
    height: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background-color: white;
}

.content-wrapper {
    flex: 1;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    opacity: 0.1;
    z-index: -1;
}

.content-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    bottom: -100px;
    right: -60px;
    opacity: 0.1;
    z-index: -1;
}

.main-heading {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e40af;
    line-height: 1.2;
    position: relative;
}

.main-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #4f46e5, #6366f1);
    border-radius: 2px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f97316;
    margin-bottom: 1.5rem;
    margin-top: 1.2rem;
}

.description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.feature-text {
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}

.image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.hero-section:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(225deg, rgb(111 102 252 / 14%) 0%, rgb(30 64 175 / 4%) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        height: auto;
    }
    
    .image-wrapper {
        height: 300px;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

#about{
    display: flex;
    place-content: center;
}


.why-choose-section {
    max-width: 1200px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 240, 247, 0.5) 0%, rgba(240, 249, 255, 0.5) 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ff4e50, #f9d423);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.title-highlight {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(to right, rgba(255, 78, 80, 0.2), rgba(249, 212, 35, 0.2));
    z-index: 0;
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.05) 0%, rgba(58, 123, 213, 0.1) 100%);
    box-shadow: 0 12px 30px rgba(58, 123, 213, 0.15);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 78, 80, 0.05) 0%, rgba(249, 99, 118, 0.1) 100%);
    box-shadow: 0 12px 30px rgba(255, 78, 80, 0.15);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(144, 63, 199, 0.05) 0%, rgba(87, 37, 144, 0.1) 100%);
    box-shadow: 0 12px 30px rgba(144, 63, 199, 0.15);
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(249, 212, 35, 0.05) 0%, rgba(230, 178, 0, 0.1) 100%);
    box-shadow: 0 12px 30px rgba(249, 212, 35, 0.15);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.card-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.card-shape-1 {
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.feature-card:nth-child(1) .card-shape-1 {
    background: #0084ff;
}

.feature-card:nth-child(2) .card-shape-1 {
    background: #ff4e50;
}

.feature-card:nth-child(3) .card-shape-1 {
    background: #903fc7;
}

.feature-card:nth-child(4) .card-shape-1 {
    background: #f9d423;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ff4e50 0%, #f9637a 100%);
    box-shadow: 0 8px 20px rgba(255, 78, 80, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #903fc7 0%, #572590 100%);
    box-shadow: 0 8px 20px rgba(144, 63, 199, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #f9d423 0%, #e6b200 100%);
    box-shadow: 0 8px 20px rgba(249, 212, 35, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card:nth-child(1) .feature-title {
    color: #3a7bd5;
}

.feature-card:nth-child(2) .feature-title {
    color: #ff4e50;
}

.feature-card:nth-child(3) .feature-title {
    color: #903fc7;
}

.feature-card:nth-child(4) .feature-title {
    color: #e6b200;
}

.feature-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}





.decoration {
    position: absolute;
    z-index: 1;
}

.decoration-circle {
    border-radius: 50%;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(58, 123, 213, 0.05) 0%, rgba(58, 123, 213, 0) 70%);
}

.decoration-2 {
    bottom: 15%;
    right: 8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 78, 80, 0.05) 0%, rgba(255, 78, 80, 0) 70%);
}

.decoration-3 {
    top: 40%;
    right: 25%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(249, 212, 35, 0.07) 0%, rgba(249, 212, 35, 0) 70%);
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}



.programs-section {
    max-width: 1200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7ff 0%, #ebf4ff 100%);
    z-index: -1;
    border-radius: 30px;
}

.section-container {
    padding: 3rem 2rem;
    position: relative;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6366F1, #4F46E5);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.programs-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.program-category {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-header {
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.tuition-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.neet-header {
    background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
}

.jee-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.other-header {
    background: linear-gradient(135deg, #fad961 0%, #f76b1c 100%);
}

.category-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.8rem;
    color: white;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 80%;
}

.category-content {
    padding: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.content-block {
    margin-bottom: 1.5rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.block-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4F46E5;
    color: white;
    font-size: 0.9rem;
    margin-right: 0.75rem;
}

.neet-block .block-title span {
    background: #1d4ed8;
}

.jee-block .block-title span {
    background: #db2777;
}

.other-block .block-title span {
    background: #ea580c;
}

.block-description {
    color: #4a5568;
    font-size: 0.95rem;
    padding-left: 2.5rem;
}

.subjects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.subject-item {
    background: #f7fafc;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.subject-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.subject-item::before {
    content: "🔹";
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.highlight-box {
    background: #EBF4FF;
    border-left: 4px solid #3182CE;
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 1rem 0;
}

.neet-block .highlight-box {
    background: #E6F6FF;
    border-left-color: #0284c7;
}

.jee-block .highlight-box {
    background: #FCE7F3;
    border-left-color: #BE185D;
}

.other-block .highlight-box {
    background: #FFF7ED;
    border-left-color: #C2410C;
}

.exam-list {
    list-style: none;
    margin-top: 1rem;
}

.exam-item {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.exam-item::before {
    content: "•";
    color: #4F46E5;
    font-weight: bold;
    margin-right: 0.75rem;
}

.other-block .exam-item::before {
    color: #ea580c;
}

.accent-text {
    color: #4F46E5;
    font-weight: 600;
}

.neet-block .accent-text {
    color: #1d4ed8;
}

.jee-block .accent-text {
    color: #db2777;
}

.other-block .accent-text {
    color: #ea580c;
}

.category-footer {
    padding: 1rem 2rem;
    background: #f5f5f5;
    color: #4a5568;
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid #e2e8f0;
}

.decorative-element {
    position: absolute;
    z-index: -1;
}

.decorative-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0) 70%);
    top: -150px;
    left: -150px;
}

.decorative-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.05) 0%, rgba(244, 63, 94, 0) 70%);
    bottom: 0;
    right: -100px;
}

@media (max-width: 768px) {
    .category-icon {
        display: none;
    }
    
    .category-subtitle {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .subjects-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .subjects-list {
        grid-template-columns: 1fr;
    }
}