* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Roboto';
    src: url('https://fonts.gstatic.com/s/roboto/v49/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2') format('woff2');
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Bar */
/* Content styling */

/* Content styling */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.content h1 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
}

.content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* Navbar Base */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 0;
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;

}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

/* Dropdown */
.dropdown-toggle::after {
    content: " ▾";
    font-size: 12px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    min-width: 180px;
    padding: 0.5rem 0;
    z-index: 1001;
    /* Remove list styling */
    list-style: none;
}

.dropdown-content li a {
    padding: 10px 15px;
    font-size: 14px;
    white-space: nowrap;
    /* Remove any bullet points */
    list-style: none;
}

.dropdown-content li a:hover {
    background: #ff6b35;
    color: #fff;
    border-radius: 6px;
}

.dropdown.open .dropdown-content {
    display: flex;
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.language-btn {
    background: #eee;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-btn:hover {
    background: #ff6b35;
    color: #fff;
}

.phone-btn {
    background: #ff6b35;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-btn:hover {
    background: #e85a2d;
}


/* Hamburger (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 5rem 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        display: none;
        padding-left: 1rem;
        margin: 0.5rem 0;
        /* Remove list styling for mobile */
        list-style: none;
    }

    .dropdown.open .dropdown-content {
        display: flex;
    }
/* 
    .nav-actions {
        display: none; 
    } */

    .logo h6 {
        display: none;
    }

    .content {
        padding: 1.5rem;
    }

    .content h1 {
        font-size: 2rem;
    }
}
/* Hide on small screens (max-width: 576px) */
@media (max-width: 576px) {
    .phone-btn {
        display: none;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Course Section */
.course-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.course-section1 {
    padding: 5px;
    background: #fff;
}

.course-section3 {
    padding: 10px;
    background: #ffff;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Course Overview */
.course-overview {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-overview h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.course-list {
    list-style: none;
    padding: 0;
}

.course-item {
    background: #f8f9fa;
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.course-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.course-item::before {
    content: '🌟';
    position: absolute;
    left: -30px;
    top: 1.5rem;
    font-size: 1.5rem;
}

.course-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.course-item ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.course-item ul li {
    position: relative;
    margin: 0.3rem 0;
    padding-left: 1rem;
}

.course-item ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #ff6b35;
}

/* Modal Styles */
.btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 2rem auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 60px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b35;
}

.modal h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stepwise-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stepwise-table th {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;

}

.stepwise-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    border-right: 1px solid #ff6b35;
}

.stepwise-table td:last-child {
    border-right: none;
    /* remove line after last column */
}

.stepwise-table tr:nth-child(even) {
    background: #f8f9fa;


}

.stepwise-table tr:hover {
    background: #fff3e6;

}

.step-number {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .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 a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .course-overview {
        padding: 2rem;
    }

    .course-item {
        padding: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}


/* Working hours */
.wrapper {
    padding: 5px;
    background-color: #fff;
}

.schedule-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.schedule-container h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
}

.day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 12px;
    background: #f9f9f9;
    transition: 0.3s ease;
    font-size: 16px;
}

.day:hover {
    background: #e0f7fa;
    transform: translateY(-2px);
}

.day-name {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.day-name span {
    margin-right: 8px;
    font-size: 18px;
}

.day-time {
    font-size: 15px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .schedule-container {
        padding: 20px;
    }

    .schedule-container h2 {
        font-size: 22px;
    }

    .day {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 12px;
    }

    .day-time {
        margin-top: 5px;
        font-size: 14px;
    }
}


/* Footer styling */
footer {
    background: #0d0d1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #ff6b35;
}

.footer-services {
    list-style: none;
}

.footer-services li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-services li:before {
    content: '✦';
    color: #ff6b35;
    margin-right: 10px;
    font-size: 0.8rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.contact-info i {
    color: #ff6b35;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1e2a47;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a4a;
    opacity: 0.9;
    font-size: 0.9rem;
}


.designer {
    color: #13C5DD;
    font-weight: bold;
}


/* Responsive design */
@media (max-width: 992px) {
    .footer-content {
        gap: 30px;
    }

    .footer-column {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .footer-column {
        min-width: 100%;
    }

    .footer-content {
        gap: 40px;
    }
}

/* Button styling */
.send-message-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.send-message-btn i {
    margin-left: 8px;
}

.send-message-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}


/* Page Title */
.page-title {
    text-align: center;
    margin: 50px 0 40px;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.page-title h2 {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    ;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.send-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.send-btn i {
    margin-left: 8px;
}

.send-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

.info-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
}

.address-list {
    list-style: none;
}

.address-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.address-list i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

.address-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.address-text p {
    color: #666;
    margin-bottom: 3px;
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Responsive Design */
@media (max-width: 768px) {

    .page-title {
        margin: 80px 0 30px;
    }

    .contact-section {
        gap: 30px;
    }

    .contact-form,
    .contact-info {
        min-width: 100%;
    }
}



/* about section  */

.about-container {
    /* max-width: 1200px; */
    margin: auto;
    padding: 40px;
    background: #f9f9f9;
}

.about-container1 {
    /* max-width: 1200px; */
    margin: auto;
    padding: 40px;
    background: #fff;
}

.about-heading {
    text-align: center;
    margin-bottom: 40px;
}

.about-heading h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.about-heading h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background: #ff6600;
    margin: 8px auto 0;
    border-radius: 2px;
}

.about-heading h3 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #555;
}

/* First Section - Image LEFT + Content RIGHT */
.about-section-first {
    display: flex;
    flex-direction: row;
    /* Ensures left-to-right layout */
    align-items: flex-start;
    /* Aligns content to top */
    gap: 30px;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    /* Ensures consistent height */
    /* font-size: 1rem;
    line-height: 1.8; */
}

/* LEFT SIDE - IMAGE */
.about-left {
    flex: 0 0 45%;
    /* Fixed width for image section */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT SIDE - CONTENT */
.about-right {
    flex: 1;
    /* Takes remaining space */
    padding: 10px 0;
}

.h2s {
    color: #ff6600;
}

.about-text h3 {
    color: #ff6600;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 8px;
    display: inline-block;
}

.about-text p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1rem;
    color: #444;
}

/* Other Sections (Content only) */
.about-section {
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-section h3 {
    color: #ff6600;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 8px;
    display: inline-block;
}

.about-section p {
    margin-bottom: 15px;
    text-align: justify;
    color: #444;
}

strong {
    color: #ff6600;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-heading h2 {
        font-size: 2rem;
    }

    .about-heading h3 {
        font-size: 1rem;
    }

    .about-section-first {
        flex-direction: column;
        /* Stack vertically on mobile */
        gap: 20px;
        min-height: auto;
        padding: 20px;
    }

    .about-left {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .about-img {
        max-width: 100%;
    }

    .about-right {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .about-text p {
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .about-section-first {
        padding: 15px;
    }

    .about-section {
        padding: 20px;
    }
}

/* experience section  */
.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: rgb(246, 231, 231);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.h1S {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}

.h2S {
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 400;
    margin-bottom: 30px;
}

section {
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .h3S {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card .ps {
    font-size: 1rem;
    opacity: 0.9;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 40px 0;
}

.personal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item i {
    font-size: 1.5rem;
    color: #ff6600;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.info-content .h4S {
    font-size: 1rem;
    color: #0d0d1a;
    margin-bottom: 5px;
}

.info-content .ps {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.stories-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #6a11cb;
}

.stories-section .h3S {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.stories-section .ps {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .h1S {
        font-size: 2.2rem;
    }

    .h2S {
        font-size: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card .h3S {
        font-size: 1.8rem;
    }

    .personal-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .h1S {
        font-size: 1.8rem;
    }

    .h2S {
        font-size: 1.2rem;
    }

    .info-card {
        padding: 20px;
    }

    .info-card .h3S {
        font-size: 1.6rem;
    }

    .stories-section {
        padding: 20px;
    }

    .stories-section .h3S {
        font-size: 1.5rem;
    }
}

/* consultation form */

.container1 {

    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Header Section */
.consultation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.consultation-header h1 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.consultation-header p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}


/* Form Layout */
.consultation-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.form-info {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #ff6b35 0%, #e85a2d 100%);
    color: white;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.benefits-list i {
    background: rgba(255, 255, 255, 0.2);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.7rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

/* Form Elements */
.consultation-form {
    flex: 2;
    min-width: 300px;
    padding: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 180px;
}

/* Radio and Checkbox */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.4rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.radio-option input,
.checkbox-option input {
    width: 16px;
    height: 16px;
}

/* Submit Button */
.submit-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: block;
    margin: 1.5rem auto 0;
    min-width: 180px;
}

.submit-btn:hover {
    background: #e85a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(232, 90, 45, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .container {
        padding: 1rem;
    }

    .consultation-header h1 {
        font-size: 1.7rem;
    }

    .consultation-form-container {
        flex-direction: column;
    }

    .form-info,
    .consultation-form {
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Form Validation Styles */
.form-control.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-control.error+.error-message {
    display: block;
}

/* Success Message */
.success-message {
    background: #2ecc71;
    color: white;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: none;
}