/* Global Styles */
:root {
    --primary-color: #FF5722;  /* Deep Orange 500 */
    --secondary-color: #E64A19; /* Deep Orange 700 */
    --accent-color: #FF7043;   /* Deep Orange 400 */
    --text-color: #333;
    --light-bg: #FFF3E0;       /* Deep Orange 50 */
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
header {
    background-color: var(--white); /* Set background to white */
    backdrop-filter: none; /* Remove backdrop filter */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Course Section Styles */
.courses {
    padding: 80px 20px;
    background-color: var(--light-bg);
    position: relative;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.courses h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    margin: 0 auto 3rem;
    padding-bottom: 1rem;
}

.courses h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

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

.course-card h3 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.course-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.course-detail-button, .enquiry-button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.course-detail-button {
    background: var(--light-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.course-detail-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.enquiry-button {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
}

.enquiry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

.course-detail-button i, .enquiry-button i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .course-card-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .course-detail-button, .enquiry-button {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-button {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: var(--primary-color);
}

#enquiryForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#enquiryForm input {
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

#enquiryForm input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}

#enquiryForm .submit-btn {
    background: var(--gradient-primary);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
    transition: var(--transition);
    color: var(--white);
    border: none;
    cursor: pointer;
}

#enquiryForm .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
        padding: 20px;
    }

    .course-card {
        padding: 25px;
    }

    .course-img {
        height: 230px;
    }
}

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

    .courses h2 {
        font-size: 2rem;
        margin-bottom: 30px;
}

.course-card h3 {
        font-size: 1.3rem;
    }

    .enquiry-button {
        padding: 10px 20px;
    }

    .course-img {
        height: 250px;
    }
}

/* About Section */
.about {
    padding: 5rem 1rem;
    background-color: var(--white);
    text-align: center; /* Center the heading */
}

.about-section-logo {
    display: block;
    margin: 0 auto 2rem;
    max-width: 150px;
    height: auto;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack items by default */
    align-items: center; /* Center items vertically when stacked */
    gap: 3rem; /* Increased gap between image and text */
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem; /* Added padding to the container */
    background: var(--light-bg); /* Added a light background */
    border-radius: 15px; /* Rounded corners */
    box-shadow: var(--box-shadow); /* Added subtle shadow */
}

.about-img {
    width: 100%;
    max-width: 450px; /* Adjusted max-width */
    height: auto;
    border-radius: 10px; /* Slightly less rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 4px solid var(--white); /* Added a white border */
    object-fit: cover; /* Ensure image covers the area */
}

.about-img:hover {
    transform: scale(1.03); /* Slightly increased scale on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-intro-text {
    text-align: left;
    line-height: 1.8;
    color: var(--text-color);
}

.about-right {
    flex-grow: 1;
}

.company-info {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 0;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.company-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-info h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.company-details ul, .services ul {
    list-style: none;
    padding-left: 0;
}

.company-details li, .services li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.company-details li:before, .services li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.company-details strong {
    color: var(--secondary-color);
}

.services p {
    margin-bottom: 1rem;
}

.certifications {
    margin-top: 2rem;
}

.certifications ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.certifications li {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Arrange items horizontally on larger screens */
        align-items: flex-start; /* Align items to the top when horizontal */
        text-align: left;
        gap: 4rem; /* Adjusted gap for horizontal layout */
    }

    .about-left {
        flex: 1;
        display: flex; /* Keep flex for centering content within about-left */
        flex-direction: column;
        align-items: center; /* Center content within about-left */
        gap: 1.5rem;
        padding: 2rem; /* Adjusted padding */
    }

    .about-right {
        flex: 1.5; /* Allow right side to take more space */
        display: flex;
        flex-direction: column;
    }

    .about-img {
        width: 100%;
        max-width: 400px; /* Adjusted max-width for the image in the left column */
         margin-bottom: 0; /* Remove bottom margin when next to text */
    }

    .about-intro-text {
        margin-bottom: 0; /* Remove bottom margin when next to .company-info */
    }

    .company-info {
         margin-top: 0; /* Ensure no top margin */
    }
}

@media (max-width: 767px) {
    .about-left, .about-right {
        width: 100%;
        align-items: center; /* Center items when stacked */
        padding: 1.5rem;
    }

    .about-intro-text {
         text-align: center; /* Center text on small screens */
    }

    .about-img {
        margin-bottom: 1.5rem; /* Keep space below image when stacked */
        max-width: 100%;
        width: auto; /* Allow image to scale */
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .company-info {
        padding: 1.5rem;
    }

    .about-img {
        max-width: 100%;
    }

    .company-info h3 {
        font-size: 1.5rem;
    }

    .company-info h4 {
        font-size: 1.2rem;
    }
}

/* Certificates Section */
.certificates {
    padding: 5rem 1rem;
    background-color: var(--white);
}

.certificates h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 1rem;
}

.certificates h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1rem;
}

.cert-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cert-info {
    flex-grow: 1;
}

.cert-info h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cert-info p {
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .certificates {
        padding: 4rem 1rem;
    }

    .certificates h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cert-grid {
        gap: 1.5rem;
    }

    .cert-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .cert-logo {
        width: 60px;
        height: 60px;
    }

    .cert-logo i {
        font-size: 2rem;
    }

    .cert-info h3 {
        font-size: 1.1rem;
    }

    .cert-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .certificates h2 {
        font-size: 1.8rem;
    }

    .cert-item {
        padding: 1rem;
    }

    .cert-logo {
        width: 50px;
        height: 50px;
    }

    .cert-logo i {
        font-size: 1.8rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: var(--white);
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 1rem;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.contact-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-group textarea + i {
    top: 1.5rem;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
    padding-top: 1.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-img {
        height: 250px;
    }

    .info-item {
        padding: 0.8rem;
    }

    .info-item i {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 1rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-img {
        height: 200px;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D84315 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 3rem 1rem 1rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
}

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

.social-links a {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex; /* Show the toggle button on mobile */
        z-index: 1001; /* Ensure it's above other content */
        flex-direction: column; /* Stack spans vertically */
        gap: 6px; /* Space between spans */
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--primary-color); /* Color of the bars */
        transition: all 0.3s ease; /* Smooth transition for animation */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Initially hide the menu off-screen to the right */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white); /* Background color of the mobile menu */
        padding: 80px 2rem 2rem; /* Top padding to clear fixed header, other padding */
        transition: right 0.3s ease; /* Smooth transition for sliding */
        box-shadow: -2px 0 5px rgba(0,0,0,0.1); /* Subtle shadow */
        z-index: 1000; /* Ensure menu is above page content */
        list-style: none; /* Remove list bullets */
    }

    .nav-menu.active {
        right: 0; /* Slide the menu into view */
    }

    .nav-list {
        flex-direction: column; /* Stack menu items vertically */
        gap: 1.5rem; /* Space between menu items */
        list-style: none; /* Ensure no bullets here either */
        padding: 0; /* Remove default padding */
    }

    .nav-item {
        margin: 0; /* Remove default margin */
    }

    .nav-link {
        text-decoration: none;
        color: var(--text-color); /* Color of menu links */
        font-weight: 600;
        font-size: 1.1rem;
        padding: 10px 0; /* Vertical padding for links */
        display: block; /* Make links block to fill width */
    }

    /* Keep basic toggle animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Temporarily remove overlay styles */
    .nav-overlay {
        display: none !important;
    }
}

/* Ensure desktop styles hide the toggle */
@media screen and (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    .nav-menu {
         position: static !important;
         height: auto !important;
         width: auto !important;
         right: auto !important;
         background-color: transparent !important;
         padding: 0 !important;
         box-shadow: none !important;
         z-index: auto !important;
         display: flex !important;
         flex-direction: row !important;
         list-style: none !important;
    }
    .nav-list {
         flex-direction: row !important;
         gap: 2rem !important;
         padding: 0 !important;
    }
    .nav-link {
        display: inline-block !important;
        padding: 0.5rem 1rem !important;
    }
     .nav-link::after {
        display: block !important; /* Show underline animation */
     }
}

/* Adjust padding for body when menu is open to prevent scrolling behind menu */
body.menu-open {
    overflow: hidden;
}

@media screen and (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

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

    .courses h2,
    .about h2,
    .certificates h2,
    .contact h2 {
        font-size: 2rem;
    }

    .company-info {
        padding: 1.5rem;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .company-info {
        padding: 2rem;
    }

    .company-info h3 {
        font-size: 1.5rem;
    }

    .company-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .company-info {
        padding: 1.5rem;
    }
}

/* Success Dialog Styles */
.success-dialog {
    display: none;
    position: fixed;
        top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-dialog.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.success-dialog.show .success-content {
    transform: translateY(0);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease forwards;
}

.success-icon i {
    font-size: 40px;
    color: var(--white);
}

.success-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.success-details {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item:hover {
    transform: translateX(10px);
}

.detail-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 0.8rem;
    border-radius: 50%;
}

.detail-item span {
    color: var(--text-color);
    font-weight: 500;
}

.close-success-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
}

.close-success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem;
        width: 95%;
    }

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

    .success-icon i {
        font-size: 35px;
    }

    .success-content h3 {
        font-size: 1.8rem;
    }

    .success-content p {
        font-size: 1rem;
    }

    .detail-item {
        padding: 0.6rem;
    }

    .detail-item i {
        font-size: 1rem;
        padding: 0.6rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 1rem;
    background: var(--white);
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.choose-us-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.choose-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.item-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.choose-us-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.choose-us-item p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 1rem;
    }

    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .choose-us-grid {
        gap: 1.5rem;
    }

    .choose-us-item {
        padding: 1.5rem;
    }

    .item-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
        margin-bottom: 1rem;
    }

    .choose-us-item h3 {
        font-size: 1.3rem;
    }

    .choose-us-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 4rem 1rem;
    }

    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .choose-us-grid {
        gap: 1.5rem;
    }

    .choose-us-item {
        padding: 1.5rem;
    }

    .item-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
        margin-bottom: 1rem;
    }

    .choose-us-item h3 {
        font-size: 1.3rem;
    }

    .choose-us-item p {
        font-size: 0.95rem;
    }
}

/* Sample Certificates Section */
.certificate-section {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--white);
}

.certificate-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.certificate-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.certificate-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.certificate-container img {
    width: 100%;
    height: auto;
        display: block;
    }

@media (max-width: 600px) {
    .certificate-section h2 {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }

    .certificate-container {
        margin: 0 10px;
    }
}

/* Requirements Section */
.requirements {
    padding: 5rem 1rem;
    background: var(--light-bg);
    text-align: center;
}

.requirements h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.requirements h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.requirements-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

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

.requirements-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.requirements-content ul li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .requirements {
        padding: 4rem 1rem;
    }

    .requirements h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .requirements-content ul {
        margin-left: 15px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 1rem;
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
}

.testimonials-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonials-container:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.student-details h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.student-details p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    opacity: 0.7;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

.scroll-indicator i:last-child {
    animation-delay: 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-5px);
    }
    60% {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .student-img {
        width: 50px;
        height: 50px;
    }

    .student-details h4 {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 1.2rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .scroll-indicator {
        font-size: 0.9rem;
    }
}

/* Our Instructors Section */
.instructors {
    padding: 5rem 1rem;
    background: var(--light-bg);
    text-align: center;
    overflow: hidden;
}

.instructors h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.instructors h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.instructors-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.instructors-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
}

.instructors-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.instructors-container:active {
    cursor: grabbing;
}

.instructor-card {
    flex: 0 0 400px; /* Adjust card width as needed */
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Use flexbox to arrange image and details horizontally */
    align-items: center; /* Vertically align items */
    gap: 1.5rem; /* Space between image and details */
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.instructor-img {
    width: 120px; /* Adjust image size */
    height: 120px; /* Adjust image size */
    border-radius: 10px; /* Slightly rounded corners for the image */
    object-fit: cover;
    border: 3px solid var(--primary-color); /* Border around the image */
    flex-shrink: 0; /* Prevent image from shrinking */
}

.instructor-details-content {
    display: flex;
    flex-direction: column; /* Stack text details and social links vertically */
    align-items: flex-start; /* Align content to the left */
    flex-grow: 1; /* Allow this content area to take up remaining space */
}

.instructor-text-details {
    display: flex;
    flex-direction: column; /* Stack name, degree, and title vertically */
    align-items: flex-start; /* Align text to the left */
    margin-bottom: 1rem; /* Space between text details and social links */
}

.instructor-text-details h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.3rem; /* Space below name */
    text-align: left; /* Ensure text is left-aligned */
}

.instructor-text-details h5 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.3rem; /* Space below degree */
    opacity: 0.9;
     text-align: left; /* Ensure text is left-aligned */
}

.instructor-text-details h6 {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
     text-align: left; /* Ensure text is left-aligned */
     margin-bottom: 0; /* No bottom margin for the last item */
}

.instructor-details-content .social-links {
    display: flex; /* Arrange social links horizontally */
    justify-content: flex-start; /* Align social links to the left */
    gap: 10px; /* Space between buttons */
    margin-top: 1rem; /* Space above social links (adjust as needed) */
}

.instructor-card .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* Adjust button size */
    height: 35px; /* Adjust button size */
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.instructor-card .social-button.linkedin {
    background-color: #0077B5; /* LinkedIn Blue */
}

.instructor-card .social-button.github {
    background-color: #333; /* GitHub Black */
}

.instructor-card .social-button.facebook {
    background-color: #1877F2; /* Facebook Blue */
}

.instructor-card .social-button.gmail {
     background-color: #D14836; /* Gmail Red */
}

.instructor-card .social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .instructors {
        padding: 4rem 1rem;
    }

    .instructors h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .instructor-card {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items when stacked */
        gap: 1rem;
        flex: 0 0 280px; /* Adjust card width */
        padding: 1.2rem;
    }

    .instructor-img {
        width: 100px;
        height: 100px;
        border-radius: 50%; /* Make image round when stacked */
    }

    .instructor-details-content {
        align-items: center; /* Center content when stacked */
    }

    .instructor-text-details {
         align-items: center; /* Center text when stacked */
         margin-bottom: 1rem;
    }

    .instructor-text-details h4 {
        font-size: 1.2rem;
        text-align: center; /* Center text when stacked */
    }

     .instructor-text-details h5,
     .instructor-text-details h6 {
        font-size: 0.9rem;
        text-align: center; /* Center text when stacked */
    }

     .instructor-details-content .social-links {
        justify-content: center; /* Center social links when stacked */
        margin-top: 0.8rem; /* Adjust space */
    }

    .instructor-card .social-button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .instructors h2 {
        font-size: 1.8rem;
    }

    .instructor-card {
        flex: 0 0 250px;
        padding: 1rem;
    }

    .instructor-img {
        width: 80px;
        height: 80px;
    }

    .instructor-text-details h4 {
        font-size: 1.1rem;
    }

    .instructor-details-content .social-links {
        margin-top: 0.6rem; /* Adjust space */
    }

    .instructor-card .social-button {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Arrange items horizontally on larger screens */
        align-items: flex-start; /* Align items to the top when horizontal */
        text-align: left;
        gap: 3rem; /* Adjust gap for horizontal layout */
    }

    .about-left {
        flex: 1;
        display: block; /* Revert to block display for horizontal layout */
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-right {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .about-img {
        width: 100%;
        max-width: 400px; /* Adjust max-width for the image in the left column */
         margin-bottom: 1.5rem; /* Add some space below the image */
    }

    .about-intro-text {
        margin-bottom: 0; /* Remove bottom margin when next to .company-info */
    }

    .company-info {
         margin-top: 0; /* Ensure no top margin */
    }
}

@media (max-width: 767px) {
    .about-left,
    .about-right {
        width: 100%;
        align-items: center; /* Center items when stacked */
    }

    .about-intro-text {
         text-align: center; /* Center text on small screens */
    }

    .about-img {
        margin-bottom: 1.5rem; /* Keep space below image when stacked */
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .company-info {
        padding: 1.5rem;
    }

    .about-img {
        max-width: 100%;
    }

    .company-info h3 {
        font-size: 1.5rem;
    }

    .company-info h4 {
        font-size: 1.2rem;
    }
}

/* Nav Overlay Styles */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Below menu but above content */
}

.nav-overlay.active {
    display: block;
}

/* Mobile Menu Active State */
.nav-menu.active {
    right: 0;
}

/* Toggle Button Animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Course Details Modal Styles */
.course-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    overflow-y: auto;
    padding: 20px;
}

.course-details-content {
    background: white;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.course-details-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.course-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-details-header h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    margin: 0;
    font-size: 2.5rem;
}

.close-details-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-details-button:hover {
    background: rgba(0,0,0,0.8);
    transform: rotate(90deg);
}

.course-details-body {
    padding: 30px;
}

.course-info-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.course-info-section:last-child {
    border-bottom: none;
}

.course-info-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-info-section h3 i {
    color: var(--primary-color);
}

.features-list, .prerequisites-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.features-list li, .prerequisites-list li {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i, .prerequisites-list li i {
    color: var(--primary-color);
}

.duration-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.duration-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.duration-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.course-details-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    text-align: center;
}

.course-details-footer .enquiry-button {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-left: 6px solid #28a745;
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    z-index: 1001;
}

.toast.active {
    transform: translateX(0%);
}

.toast .toast-content {
    display: flex;
    align-items: center;
}

.toast-content i {
    font-size: 25px;
    color: #28a745;
    margin-right: 15px;
}

.toast-content .toast-message {
    display: flex;
    flex-direction: column;
}

.toast-message .toast-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.toast-message .toast-text {
    font-size: 14px;
    color: #666;
}

.toast .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
}

.toast .toast-progress:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #28a745;
}

.toast.active .toast-progress:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}

/* Responsive Styles for Course Details */
@media (max-width: 768px) {
    .course-details-content {
        margin: 20px auto;
    }

    .course-details-header {
        height: 200px;
    }

    .course-details-header h2 {
        font-size: 1.8rem;
    }

    .course-details-body {
        padding: 20px;
    }

    .features-list, .prerequisites-list {
        grid-template-columns: 1fr;
    }

    .duration-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .course-details-header {
        height: 150px;
    }

    .course-details-header h2 {
        font-size: 1.5rem;
    }

    .course-info-section h3 {
        font-size: 1.3rem;
    }
}

/* Leadership Team Section */
.leadership {
    padding: 5rem 1rem;
    background-color: var(--light-bg);
    text-align: center;
}

.leadership h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.leadership h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.leadership-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.team-member-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 280px; /* Fixed width for consistent cards */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-member-img {
    width: 120px; /* Adjusted size */
    height: 120px; /* Adjusted size */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--light-bg);
}

.team-member-details h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-member-details p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .leadership {
        padding: 4rem 1rem;
    }

    .leadership h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .leadership-container {
        gap: 2rem;
    }

    .team-member-card {
        width: 250px;
        padding: 1rem;
    }

    .team-member-img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .team-member-details h3 {
        font-size: 1.2rem;
    }

    .team-member-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .leadership h2 {
        font-size: 1.8rem;
    }

    .leadership-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member-card {
        width: 90%; /* Full width on small screens */
        max-width: 300px;
    }

    .team-member-img {
        width: 80px;
        height: 80px;
    }
}

/* Our Vision Section */
.vision {
    padding: 5rem 1rem;
    background-color: var(--white);
    text-align: center;
}

.vision h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.vision h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.vision-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.vision-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.vision-container p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .vision {
        padding: 4rem 1rem;
    }

    .vision h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .vision-container p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .vision h2 {
        font-size: 1.8rem;
    }

    .vision-container {
        padding: 0 1rem; /* Add padding for very small screens */
    }

    .vision-container p {
         font-size: 0.95rem;
         line-height: 1.6;
    }
}

/* Our Mission Section */
.mission {
    padding: 5rem 1rem;
    background-color: var(--light-bg);
    text-align: center;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mission-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.mission-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.mission-container p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mission {
        padding: 4rem 1rem;
    }

    .mission h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .mission-container p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .mission h2 {
        font-size: 1.8rem;
    }

    .mission-container {
        padding: 0 1rem; /* Add padding for very small screens */
    }

    .mission-container p {
         font-size: 0.95rem;
         line-height: 1.6;
    }
} 

/* Our Values Section */
.values {
    padding: 5rem 1rem;
    background-color: var(--white);
    text-align: center;
}

.values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.values h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.values-container ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.values-container li {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.values-container li:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.values-container li i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-container li h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.values-container li p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .values {
        padding: 4rem 1rem;
    }

    .values h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .values-container ul {
        gap: 1.5rem;
    }

    .values-container li {
        padding: 1.5rem;
    }

    .values-container li i {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .values-container li h3 {
        font-size: 1.3rem;
    }

    .values-container li p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
     .values h2 {
        font-size: 1.8rem;
    }

    .values-container ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

     .values-container li i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .values-container li h3 {
        font-size: 1.2rem;
    }
}

/* Quick Links Section Styles */
.quick-links-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.quick-links-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-links-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.quick-links-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.quick-links-category {
    margin-bottom: 50px;
}

.quick-links-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-links-category h3 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.quick-link-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-link-card:hover::before {
    transform: scaleX(1);
}

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

.quick-link-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Branch-specific card colors */
.cse-card .quick-link-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.civil-card .quick-link-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.electrical-card .quick-link-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.mechanical-card .quick-link-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.it-card .quick-link-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.best-card .quick-link-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.certificate-card .quick-link-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.diploma-card .quick-link-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.company-card .quick-link-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.quick-link-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.quick-link-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.link-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.quick-link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* District Links Grid Styles */
.category-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 25px;
    margin-top: 10px;
}

.district-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.district-link {
    background: white;
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.district-link i {
    color: #667eea;
    font-size: 0.9rem;
}

.district-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.district-link:hover i {
    color: white;
}

/* AICTE Banner Styles */
.aicte-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.aicte-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.aicte-icon {
    font-size: 4rem;
    color: #ffd700;
}

.aicte-text {
    flex: 1;
    color: white;
}

.aicte-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.aicte-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.aicte-btn {
    background: white;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aicte-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive Styles for Quick Links */
@media (max-width: 768px) {
    .quick-links-title {
        font-size: 2rem;
    }

    .quick-links-subtitle {
        font-size: 1rem;
    }

    .quick-links-category h3 {
        font-size: 1.5rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .quick-link-card {
        padding: 25px;
    }

    .quick-link-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .quick-link-card h4 {
        font-size: 1.2rem;
    }

    .district-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
    }

    .district-link {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .aicte-banner {
        padding: 30px 20px;
    }

    .aicte-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .aicte-icon {
        font-size: 3rem;
    }

    .aicte-text h4 {
        font-size: 1.5rem;
    }

    .aicte-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .quick-links-title {
        font-size: 1.8rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .quick-link-card {
        padding: 20px;
    }

    .district-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .district-link {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .aicte-text h4 {
        font-size: 1.3rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: white;
    padding: 80px 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #666;
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.faq-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
}

.faq-btn.secondary {
    background: #333;
    color: white;
}

.faq-btn.secondary:hover {
    background: #555;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.faq-btn.whatsapp {
    background: #25D366;
    color: white;
}

.faq-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-cta {
        padding: 40px 20px;
    }

    .faq-cta h3 {
        font-size: 1.6rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

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

    .faq-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 18px;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 18px;
    }

    .faq-cta h3 {
        font-size: 1.4rem;
    }
} 