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

:root {
    --primary-orange: #EB6025;
    --dark-orange: #D54A1A;
    --light-orange: #FF7A3D;
    --accent-orange: #FF8C42;
    --gradient-orange: linear-gradient(135deg, #EB6025 0%, #D54A1A 100%);
    --light-gradient: linear-gradient(135deg, #FF7A3D 0%, #FF8C42 100%);
    --text-dark: #333;
    --text-light: var(--text-light);
    --bg-light: #FFF8F5;
    --bg-white: #fff;
    --shadow: rgba(235, 96, 37, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    left: 0;
    right: 0;
}

.navbar {
    padding: 1rem !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    order: 1;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
}

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

.logo-text {
    color: var(--primary-orange);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3px;
    margin: 0;
    padding: 0;
    order: 2;
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-orange);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
}

.nav-item.dropdown .nav-link.dropdown-toggle::after {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid rgba(235, 96, 37, 0.2);
    margin-top: 8px;
    padding: 0.5rem 0;
    display: block;
}

.nav-item.dropdown .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(235, 96, 37, 0.05);
}

.nav-item.dropdown .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
    padding-left: 25px;
}

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

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

/* ===== Courses: Stacked layout (override grid) ===== */
.courses-section .courses-grid {
    display: block;
    /* override any grid/flex */
}

.courses-section .course-card.detailed {
    display: flex;
    align-items: stretch;
    gap: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
    /* image + content handle spacing */
    margin-bottom: 32px;
}

.courses-section .course-card.detailed .course-image {
    flex: 0 0 30%;
    max-width: 30%;
    text-align: center;
    margin-top: 23px;
}

.courses-section .course-card.detailed .course-image img {
    display: block;
    width: 50%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
}

.courses-section .course-card.detailed .course-content {
    flex: 1 1 auto;
    padding: 24px;
}

.courses-section .course-card .course-actions {
    margin-top: 16px;
}

/* Badges inside stacked card */
.courses-section .course-card .course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-orange);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* Responsive: stack image above content on small screens */
@media (max-width: 768px) {
    .courses-section .course-card.detailed {
        display: block;
    }

    .courses-section .course-card.detailed .course-image,
    .courses-section .course-card.detailed .course-content {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .courses-section .course-card.detailed .course-content {
        padding: 16px;
    }
}

/* Multi-level Dropdown Menu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-toggle::after {
    content: "▶";
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover .dropdown-toggle::after {
    transform: rotate(90deg);
}

/* Enhanced dropdown styling */
.nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid rgba(235, 96, 37, 0.2);
    margin-top: 8px;
    padding: 0.5rem 0;
    display: block;
}

.nav-item.dropdown .dropdown-menu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0;
    border-radius: 0 6px 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.dropdown-submenu:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.dropdown .dropdown-item.active {
    background: var(--primary-orange);
    color: white;
}

.nav-item.dropdown .dropdown-item.active:hover {
    background: var(--dark-orange);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    order: 3;
    flex-shrink: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
}

/* Page Header */
.page-header {
    background: var(--gradient-orange);
    color: white;
    padding: 90px 0 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: var(--bg-light);
    padding: 71px 13px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Large screen hero padding */
@media (min-width: 1200px) {
    .hero-container {
        padding: 0 40px;
    }
}

@media (min-width: 1400px) {
    .hero-container {
        padding: 0 60px;
    }
}

.hero-content h1 {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 315px;
    max-height: 500px;
    border-radius: 15px;
    /* box-shadow: 0 15px 40px rgba(235, 96, 37, 0.2); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}


/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 71px 13px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0px 3rem;
}

/* Responsive features grid padding */
@media (max-width: 768px) {
    .features-grid {
        padding: 0px 1rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .features-grid {
        padding: 0px 2rem;
    }
}

/* Large screen features grid padding */
@media (min-width: 1200px) {
    .features-grid {
        padding: 0px 4rem;
    }
}

@media (min-width: 1400px) {
    .features-grid {
        padding: 0px 5rem;
    }
}

@media (min-width: 1600px) {
    .features-grid {
        padding: 0px 6rem;
    }
}

.features-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-track {
    display: flex;
    width: 700%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.feature-slide {
    width: 14.28%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.feature-slide.active {
    opacity: 1;
}

.feature-card {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    background: var(--dark-orange);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 17px;
}

/* YouTube Videos Section */
.youtube-videos {
    padding: 71px 13px;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.video-card p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

/* Responsive Design for Videos */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-container {
        height: 180px;
    }

    .video-card h3 {
        font-size: 1.2rem;
        margin: 1rem 1rem 0.5rem 1rem;
    }

    .video-card p {
        font-size: 0.9rem;
        margin: 0 1rem 1rem 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Vision & Mission Section */
.vision-mission {
    padding: 71px 13px;
    background: var(--bg-light);
}

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

/* merged into enhanced .vm-card styles later */

/* Courses Preview */
.courses-preview {
    padding: 71px 13rem;
    background: white;
}

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

.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Make course cards show full-image tiles */


.course-card:hover {
    transform: translateY(-5px);
}

/* Make course cards conform to the image size and remove extra chrome */
.courses-preview .course-card {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    overflow: hidden;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.courses-preview .course-card:nth-child(1) {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.courses-preview .course-card:nth-child(2) {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.courses-preview .course-card:nth-child(3) {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.3);
}

.courses-preview .course-card:nth-child(4) {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.courses-preview .course-card:nth-child(5) {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.courses-preview .course-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.courses-preview .course-image {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.course-card .course-image {
    display: block;
    width: 100%;
}

.course-image img {
    width: 45%;
    height: 45%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 17px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 71px 13px;
    background: var(--gradient-orange);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 122, 61, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-orange);
    border: 2px solid white;
}

.cta .btn-primary:hover {
    background: var(--bg-light) !important;
    color: var(--primary-orange) !important;
    border: 2px solid white !important;
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white !important;
    color: var(--primary-orange) !important;
    border: 2px solid white !important;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 0 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none !important;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--dark-orange) !important;
    color: white !important;
    text-decoration: none !important;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    /* border-top: 1px solid rgba(255,255,255,0.35); */
    padding-top: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-inline p {
    margin: 0;
}

.footer-follow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-follow span {
    font-weight: 600;
}

/* Courses Page Specific Styles */
.courses-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.course-card.detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-age {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-features {
    margin: 1.5rem 0;
}

.course-features h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-features ul {
    list-style: none;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.course-features i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.course-details {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary-orange);
}

.course-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.course-benefits {
    padding: 20px 0;
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Inquiry Page Styles */
.inquiry-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.inquiry-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-orange);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    padding-right: 35px;
    padding-left: 35px;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* max-width: 800px; */
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    color: var(--text-light);
    line-height: 1.6;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Bootstrap row spacing for forms */
.inquiry-form .row {
    margin-bottom: 1rem;
}

.inquiry-form .row:last-child {
    margin-bottom: 0;
}

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

.inquiry-form .form-group {
    margin-bottom: 0;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 17px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 10px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    height: 42px;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    height: 42px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-orange);
}

.why-choose-us {
    padding: 20px 0;
    background: white;
}

/* About Page Styles */
.company-overview {
    padding: 80px 0;
    background: white;
}

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

.overview-text h2 {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-mission-detailed {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-card h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    font-weight: 500;
}

.leadership-team {
    padding: 80px 0;
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-position {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.member-social a:hover {
    background: var(--dark-orange);
}

.achievements {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.achievement-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.our-approach {
    padding: 80px 0;
    background: white;
}

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

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.approach-icon i {
    font-size: 2rem;
    color: white;
}

.approach-card h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.certifications {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cert-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 500;
}

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-contact-card h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.quick-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-orange);
    color: white !important;
    text-decoration: none !important;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.quick-btn:hover {
    background: var(--dark-orange) !important;
    color: white !important;
    text-decoration: none !important;
}

.quick-btn i {
    font-size: 1.2rem;
}

.branch-locations {
    padding: 20px 0;
    background: white;
}

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

.branch-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
}

.branch-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.branch-info {
    padding: 1.5rem;
}

.branch-info h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.branch-details {
    margin-bottom: 1.5rem;
}

.branch-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 17px;
    font-weight: 500;
}

.branch-details i {
    color: var(--primary-orange);
    width: 20px;
}

.map-section {
    padding: 20px 0;
    background: var(--bg-light);
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-section {
    padding: 20px 0;
    background: white;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

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

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

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

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

/* Orange Theme Enhancements */
.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(235, 96, 37, 0.3);
}

.feature-card:hover .feature-icon {
    background: var(--light-orange);
    transform: scale(1.1);
}

.course-card:hover {
    box-shadow: 0 15px 40px var(--shadow);
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(235, 96, 37, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 5px 15px rgba(235, 96, 37, 0.2);
}

/* Orange gradient text effect */
.hero-content h1 {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Orange accent borders */
.feature-card,
.course-card,
.testimonial-card {
    border-top: 3px solid var(--primary-orange);
}

/* Orange hover effects for interactive elements */
.nav-link:hover {
    color: var(--light-orange);
}

.social-links a:hover {
    background: var(--light-orange) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* Footer logo styling */
.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

/* Orange-themed form focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(235, 96, 37, 0.1);
}

/* Orange-themed scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* Individual Course Pages */
.course-overview {
    padding: 4rem 0;
}

.course-overview img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 25rem;
    /* width: 25rem; */
    margin-top: 4rem;
}

.course-highlights ul {
    list-style: none;
    padding: 0;
}

.course-highlights li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.course-specifications {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.course-specifications h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.course-specifications ul {
    list-style: none;
    padding: 0;
}

.course-specifications li {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(235, 96, 37, 0.1);
    font-size: 17px;
}

.course-specifications li:last-child {
    border-bottom: none;
}

.course-specifications strong {
    color: var(--primary-orange);
}

.course-details-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.detail-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.detail-icon i {
    font-size: 2rem;
    color: white;
}

.detail-card h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.course-features-section {
    padding: 4rem 0;
}

.feature-card {
    text-align: center;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.md-message {
    padding: 4rem 0;
}

.md-message img {
    max-width: auto;
    height: 350px;
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    /* transition: transform 0.3s ease; */
}

/* .md-message img:hover {
    transform: scale(1.05);
} */

.md-signature {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    font-style: italic;
}

.md-signature p {
    margin: 0;
    color: var(--text-dark);
}

.md-signature strong {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.md-achievements {
    padding: 4rem 0;
    background: var(--bg-light);
}

.md-philosophy {
    padding: 4rem 0;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.philosophy-icon i {
    font-size: 2rem;
    color: white;
}

.alphavedic-overview {
    padding: 2rem 0;
    background: var(--bg-light);
}

.our-philosophy {
    padding: 4rem 0;
}

.our-programs {
    padding: 20px 0;
    background: var(--bg-light);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.our-approach {
    padding: 4rem 0;
}

.target-age {
    padding: 20px 0;
    background: var(--bg-light);
}

.age-group-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.age-group-card:hover {
    transform: translateY(-5px);
}

.age-group-card h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.cta-section {
    padding: 4rem 0;
    background: var(--primary-orange);
}

.cta-section .btn {
    margin: 0.5rem;
}

/* Responsive Design - Tablet */
@media (min-width: 769px) and (max-width: 991px) {
    .hero,
    .features,
    .courses-preview,
    .vision-mission,
    .youtube-videos,
    .cta {
        padding: 60px 3rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-logo {
        gap: 8px;
    }

    .logo-img {
        height: 35px;
    }

    /* Mobile Dropdown Styles */
    .nav-item.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(235, 96, 37, 0.1);
        border-radius: 0;
        border: none;
        margin-top: 10px;
        padding: 0;
    }

    .nav-item.dropdown .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid rgba(235, 96, 37, 0.1);
    }

    .nav-item.dropdown .dropdown-item:hover {
        background: rgba(235, 96, 37, 0.2);
        padding-left: 20px;
    }

    /* Mobile Multi-level Dropdown */
    .dropdown-submenu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(235, 96, 37, 0.2);
        border-radius: 0;
        border: none;
        margin-top: 5px;
        margin-left: 20px;
        padding: 0;
    }

    .dropdown-submenu .dropdown-item {
        padding: 8px 15px;
        border-bottom: 1px solid rgba(235, 96, 37, 0.1);
    }

    .dropdown-submenu .dropdown-toggle::after {
        content: "▼";
        transform: none;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 177px;
        height: 274px;
        max-height: 350px;
    }

    .hero-image::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

    .hero-image::after {
        width: 80px;
        height: 80px;
        right: -5px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-form .row {
        margin-bottom: 1.5rem;
    }

    .inquiry-form .col-md-4,
    .inquiry-form .col-md-6,
    .inquiry-form .col-sm-6,
    .inquiry-form .col-sm-12 {
        margin-bottom: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .overview-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .inquiry-tabs {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Responsive section padding for mobile */
    .hero,
    .features,
    .courses-preview,
    .vision-mission,
    .youtube-videos,
    .cta {
        padding: 40px 1rem;
    }

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

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo {
        gap: 6px;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero-image img {
        max-width: 177px;
        height: 274px;
        max-height: 300px;
    }

    .hero-image::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .hero-image::after {
        width: 60px;
        height: 60px;
        right: -3px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .form-container {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .vision-mission {
        position: relative;
        overflow: hidden;
    }

    /* Decorative soft glow in the background */
    .vision-mission::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle at center, rgba(235, 96, 37, 0.15) 0%, rgba(235, 96, 37, 0.08) 40%, transparent 70%);
        pointer-events: none;
    }

    /* Ensure cards stretch evenly */
    .vm-grid {
        align-items: stretch;
    }

    /* Card styling enhancements */
    .vm-card {
        padding: 2.5rem;
        border-top: 4px solid var(--primary-orange);
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        background: #fff;
    }

    .vm-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 18px 44px rgba(235, 96, 37, 0.22), 0 6px 18px rgba(0, 0, 0, 0.10);
    }

    .vm-card h3 {
        background: var(--gradient-orange);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .vm-card h3::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--accent-orange);
        border-radius: 2px;
        margin: 0.5rem 0 0;
    }

    .vm-card p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--text-light);
        text-align: justify;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .vm-card {
            padding: 2rem;
        }
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

/* Button Colors - Orange Theme */
.btn-primary {
    background: #EB6025 !important;
    border: 2px solid #EB6025 !important;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(235, 96, 37, 0.3);
    transition: all 0.3s ease;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.btn-primary:hover {
    background: #D35400 !important;
    border-color: #D35400 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 96, 37, 0.4);
}

.btn-primary:active {
    background: #B7410E !important;
    border-color: #B7410E !important;
    color: white !important;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(235, 96, 37, 0.5);
}

.btn-secondary {
    background: white !important;
    border: 2px solid #EB6025 !important;
    color: #EB6025 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(235, 96, 37, 0.2);
    transition: all 0.3s ease;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.btn-secondary:hover {
    background: #EB6025 !important;
    border-color: #EB6025 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 96, 37, 0.4);
}

.btn-secondary:active {
    background: #D35400 !important;
    border-color: #D35400 !important;
    color: white !important;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(235, 96, 37, 0.5);
}

.btn-outline {
    background: transparent !important;
    border: 2px solid #EB6025 !important;
    color: #EB6025 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.btn-outline:hover {
    background: #EB6025 !important;
    border-color: #EB6025 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 96, 37, 0.4);
}

.btn-outline:active {
    background: #D35400 !important;
    border-color: #D35400 !important;
    color: white !important;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(235, 96, 37, 0.5);
}

/* CTA Button Special Styling */
.cta .btn-primary {
    background: #EB6025 !important;
    border: 2px solid #EB6025 !important;
    color: white !important;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta .btn-primary:hover {
    background: #D35400 !important;
    border-color: #D35400 !important;
    color: white !important;
    transform: translateY(-2px);
}

.cta .btn-primary:active {
    background: #B7410E !important;
    border-color: #B7410E !important;
    color: white !important;
    transform: translateY(0);
}

.cta .btn-secondary {
    background: white !important;
    border: 2px solid #EB6025 !important;
    color: #EB6025 !important;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta .btn-secondary:hover {
    background: #EB6025 !important;
    color: white !important;
    transform: translateY(-2px);
}

.cta .btn-secondary:active {
    background: #D35400 !important;
    border-color: #D35400 !important;
    color: white !important;
    transform: translateY(0);
}

/* Hero Button Styling */
.hero .btn-primary {
    background: #EB6025 !important;
    border: 2px solid #EB6025 !important;
    color: white !important;
    font-size: 1rem;
    padding: 12px 15px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.hero .btn-primary:hover {
    background: #D35400 !important;
    border-color: #D35400 !important;
    color: white !important;
    transform: translateY(-2px);
}

.hero .btn-primary:active {
    background: #B7410E !important;
    border-color: #B7410E !important;
    color: white !important;
    transform: translateY(0);
}

.hero .btn-secondary {
    background: white !important;
    border: 2px solid #EB6025 !important;
    color: #EB6025 !important;
    font-size: 1.1rem;
    padding: 12px 28px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.hero .btn-secondary:hover {
    background: #EB6025 !important;
    color: white !important;
    transform: translateY(-2px);
}

.hero .btn-secondary:active {
    background: #D35400 !important;
    border-color: #D35400 !important;
    color: white !important;
    transform: translateY(0);
}

.card-text {
    font-size: 17px;
}

.container-fluid {
    padding-right: 35px;
    padding-left: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive padding adjustments for container-fluid */
@media (max-width: 768px) {
    .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .container-fluid {
        padding-right: 30px;
        padding-left: 30px;
    }
}

/* Large screen padding adjustments */
@media (min-width: 1200px) {
    .container-fluid {
        padding-right: 60px;
        padding-left: 60px;
    }
}

@media (min-width: 1400px) {
    .container-fluid {
        padding-right: 80px;
        padding-left: 80px;
    }
}

@media (min-width: 1600px) {
    .container-fluid {
        padding-right: 100px;
        padding-left: 100px;
    }
}