* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f5f0;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-container {
    display: flex;
    flex: 1;
    padding-top: 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a5f23 0%, #2e7d32 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #ffeb3b;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a:hover, .main-nav a.active {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sidebar Styles */
.sticky-sidebar {
    width: 80px;
    flex-shrink: 0;
}

.sticky-buttons {
    background: linear-gradient(to bottom, #1a5f23, #2e7d32);
    border-radius: 0 15px 15px 0;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 90px;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 120px);
    overflow-y: auto;
}

.sticky-btn {
    background-color: #fff;
    color: #1a5f23;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sticky-btn:hover {
    background-color: #ffeb3b;
    transform: translateY(-5px) scale(1.1);
    color: #1a5f23;
}

.sticky-btn.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.sticky-btn.emergency-btn {
    background-color: #ff5252;
    color: white;
}

.btn-tooltip {
    position: absolute;
    left: 70px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.sticky-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    left: 65px;
}

.sidebar-info {
    margin-top: auto;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.sidebar-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Main Content Area */
.content-area {
    flex: 1;
    padding: 20px 30px;
    background-color: white;
    border-radius: 15px 0 0 15px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.05);
    margin-left: 10px;
    min-height: calc(100vh - 140px);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h2 {
    font-family: 'Playfair Display', serif;
    color: #1a5f23;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: linear-gradient(to right, #f8f5f0, #fff);
    padding: 30px;
    border-radius: 15px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    color: #1a5f23;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2e7d32;
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background-color: #1a5f23;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.btn-secondary:hover {
    background-color: #2e7d32;
    color: white;
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: #ef6c00;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #2e7d32;
    margin: 10px auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #1a5f23;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Content Section */
.content-section {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.content-image, .content-text {
    flex: 1;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.content-text h3 {
    font-family: 'Playfair Display', serif;
    color: #1a5f23;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-text h4 {
    color: #2e7d32;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: #2e7d32;
}

.program-details {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f0f7f0;
    padding: 15px;
    border-radius: 10px;
    flex: 1;
}

.detail-item i {
    font-size: 1.8rem;
    color: #2e7d32;
}

.detail-item h5 {
    color: #1a5f23;
    margin-bottom: 5px;
}

/* Testimonial */
.testimonial-section {
    background-color: #f0f7f0;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.testimonial-section h3 {
    color: #1a5f23;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: 600;
    color: #2e7d32;
    font-style: normal;
    text-align: right;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #1a5f23 0%, #2e7d32 100%);
    border-radius: 15px;
    color: white;
    margin-top: 40px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: white;
    color: #1a5f23;
}

.cta-section .btn-primary:hover {
    background-color: #ffeb3b;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #ddd;
    padding-top: 50px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section{
    margin-left: 20px;
}

.footer-section h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #2e7d32;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li i {
    color: #2e7d32;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2e7d32;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #2e7d32;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom i {
    color: #ff5252;
}

/* About Section Styles */
.row {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    align-items: center;
}

.col-lg-6 {
    flex: 1;
    min-width: 0;
}

.about-image-box1 {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-img {
    position: absolute;
    width: 55%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    left: 150px;
    z-index: 1;
}

.big-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.big-img a {
    display: block;
}

.big-img .pattern {
    display: none;
}

.small-img1 {
    position: absolute;
    bottom: 40px;
    left: 120px;
    width: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 2;
    left: 20px;
}

.small-img1 img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.small-img1 a {
    display: block;
}

.small-img2 {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.small-img2 img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-content-box1 {
    padding: 20px;
}

.about-content-box1 p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.inner-label {
    background-color: #2e7d32;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sec-title-style1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sec-subtitle-style1 {
    color: #2e7d32;
    display: block;
}

.text-font2 {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.text-20 {
    font-size: 1rem !important;
}

.text-box1 {
    border-left: 4px solid #2e7d32;
    padding-left: 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    padding: 20px;
    padding-left: 20px;
    border-radius: 5px;
}

.text-box1 p {
    margin: 0;
    text-align: justify;
    color: #666;
    line-height: 1.8;
}

.vs-btn-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.vs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vs-btn.wave-style1 {
    background-color: #2e7d32;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
}

.vs-btn.wave-style1:hover {
    background-color: #1a5f23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.vs-btn.outline-style1 {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #ddd;
    padding: 13px 35px;
    border-radius: 5px;
}

.vs-btn.outline-style1:hover {
    border-color: #2e7d32;
    color: #2e7d32;
    background-color: rgba(46, 125, 50, 0.05);
}

.vs-btn-shape {
    display: none;
}

.vs-btn-text {
    display: inline;
}

.vs-btn-icon {
    display: inline;
    font-size: 1.2rem;
}

/* Add these styles to your existing style.css */

/* Booking Section */
.booking-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    margin: 40px 0;
    border-radius: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Column Styles */
.left-column .text-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.left-column h3 {
    color: #1a5f23;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-icon {
    background-color: #f0f7f0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2e7d32;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #1a5f23;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-text p {
    color: #666;
    font-size: 0.95rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f7f0;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-info-box {
    background-color: #1a5f23;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-info-box h4 {
    color: #ffeb3b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box i {
    color: #ffeb3b;
    width: 20px;
}

/* Right Column - Form Styles */
.booking-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: #1a5f23;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.booking-form .form-row  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.booking-form .form-row1  {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-group1 {
    margin-bottom: 20px;
    width: 45%;

}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
}

.booking-form label i {
    color: #2e7d32;
    margin-right: 8px;
    width: 20px;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="number"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

/* Terms Checkbox */
.terms-group {
    margin-top: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-label a {
    color: #2e7d32;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit, .btn-reset {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.btn-submit {
    background-color: #2e7d32;
    color: white;
}

.btn-submit:hover {
    background-color: #1a5f23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-reset {
    background-color: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-reset:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}

.form-note p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-note i {
    color: #2e7d32;
    width: 20px;
}

/* Booking Confirmation Page */
.booking-confirmation {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    font-size: 5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.booking-confirmation h2 {
    color: #1a5f23;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.confirmation-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.detail-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.detail-card h3 {
    color: #1a5f23;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: 600;
}

.next-steps {
    text-align: left;
}

.next-steps h3 {
    color: #1a5f23;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 20px;
    margin-bottom: 30px;
}

.next-steps li {
    margin-bottom: 10px;
    color: #555;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background-color: #f0f7f0;
    border-radius: 10px;
    color: #1a5f23;
}

/* Error Page */
.booking-error {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.error-icon {
    font-size: 4rem;
    color: #ff5252;
    margin-bottom: 20px;
}

.booking-error h2 {
    color: #333;
    margin-bottom: 20px;
}

.error-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.error-list li {
    background-color: #fff5f5;
    color: #d32f2f;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #ff5252;
}

.mobile-para{
    width:90%;margin:20px auto;
}

/* Responsive Design for Two Columns */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-us{
        margin:0px !important;
    }
    .hero-section{
        margin-bottom:0px !important;
    }
    .about-image-box1{
        display:none !important;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    .booking-form .form-group1 {
        width: 100%;
    }
    .two-column-layout{
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .first-footer-section{
        margin-left:0px;
    }
    .hide-on-mobile{
        display:none !important;
    }
    .booking-form-container {
        padding: 20px;
    }
    
    .left-column .text-content {
        padding: 20px;
    }
    
    .radio-group {
        flex-direction: row;
        gap: 10px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }


}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    }
    
    .content-section {
        flex-direction: column;
    }
    
    .sticky-sidebar {
        width: 70px;
    }
    
    .sticky-buttons {
        padding: 20px 8px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .about-image-box1 {
        height: 400px;
    }
    
    .sec-title-style1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-para{
        width:100%;
        margin:0px;
    }
    .left-column{
        order:2;
    }
    .right-column{
        order:1;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a5f23;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        /* justify-content: center; */

    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-container {
        flex-direction: column;
        padding: 0px;
    }
    
    .sticky-sidebar {
        width: 100%;
        order: 2;
    }
    
    .sticky-buttons {
        flex-direction: row;
        justify-content: center;
        padding: 15px;
        height: auto;
        border-radius: 0;
        position: relative;
        top: 0;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .sidebar-info {
        display: none;
    }
    
    .btn-tooltip {
        display: none;
    }
    
    .content-area {
        margin-left: 0;
        border-radius: 0;
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h2 {
        font-size: 1.8rem;
    }
    
    .row {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image-box1 {
        position: relative;
        height: auto;
        min-height: auto;
        width: 100%;
        margin: 20px 0;
        display: block;
    }
    
    .big-img {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin-bottom: 20px;
        height: auto;
        left: auto;
        top: auto;
    }
    
    .big-img img {
        height: auto;
        max-height: 280px;
        width: 100%;
    }
    
    .small-img1 {
        position: relative !important;
        width: 100% !important;
        margin-bottom: 15px;
        display: block !important;
        bottom: auto;
        left: auto;
        top: auto;
        right: auto;
        z-index: 1;
    }
    
    .small-img1 img {
        width: 100%;
        height: auto;
        max-height: 220px;
    }
    
    .small-img2 {
        position: relative !important;
        width: 100% !important;
        display: block !important;
        bottom: auto;
        left: auto;
        top: auto;
        right: auto;
        z-index: 1;
    }
    
    .small-img2 img {
        width: 100%;
        height: auto;
        max-height: 220px;
    }
    
    .sec-title-style1 {
        font-size: 1.8rem;
    }
    
    .vs-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .vs-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .hero-section, .cta-section {
        padding: 20px;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .program-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-image-box1 {
        min-height: auto;
        margin: 15px 0;
    }
    
    .big-img img {
        max-height: 220px;
    }
    
    .small-img1 img,
    .small-img2 img {
        max-height: 180px;
    }
    
    .sec-title-style1 {
        font-size: 1.5rem;
    }
    
    .about-content-box1 {
        padding: 10px;
    }
    
    .vs-btn-group {
        gap: 10px;
    }
    
    .vs-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}
.dropdown-menu{
    flex-direction: column;
    gap: 0px !important;
    min-width: 250px !important;
}
/* Enhanced Dropdown Styles for Mobile */
@media (max-width: 768px) {
    .dropdown .dropdown-toggle {
        justify-content: space-between;
        padding-right: 15px;
    }
    
    .dropdown-menu {
        background-color: rgba(26, 95, 35, 0.9) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        position: static !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0 !important;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex !important;
    }
    
    .dropdown-menu a {
        padding-left: 0px !important;
        color: #fff !important;
        border-bottom: none !important;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #ffeb3b !important;
    }
    
    .dropdown-menu a i {
        color: #ffeb3b !important;
    }
}

/* Desktop Dropdown Hover Support */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown:hover .dropdown-toggle i.fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* Fix for active dropdown on current page */
.dropdown.active .dropdown-toggle {
    background-color: rgba(255, 255, 255, 0.2);
}