/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}


/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    transition: top 0.3s ease;
}

.logo img {
    height: 50px;
}

/* Menu Toggle Styles */
.menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.menu-bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.3s;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: #00ffae;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00e69d;
}

/* Responsive Adjustments */

/* For tablets and smaller laptops (768px and below) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show menu toggle on smaller screens */
    }

    nav {
        position: absolute;
        top: 60px; /* Position below the header */
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8); /* Dark background for menu */
        display: none; /* Hide menu by default */
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    nav.active {
        display: flex; /* Show menu when active */
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0; /* Adjust margin for stacked items */
    }

    .logo img {
        height: 40px; /* Adjust logo size for tablets */
    }

    .banner-content h1 {
        font-size: 2em;
    }

    .btn {
        padding: 10px 20px;
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .menu-toggle {
        display: block; /* Show menu toggle on mobile */
        position: absolute;
        right: 20px; /* Position to the right side of the header */
        top: 15px; /* Adjust vertical positioning */
    }

    nav ul li {
        margin: 5px 0;
    }

    .logo img {
        height: 30px;
    }

    .banner {
        height: 400px;
        background-attachment: scroll;
    }

    .banner-content h1 {
        font-size: 1.5em;
    }

    .btn {
        padding: 8px 15px;
    }
}





/* Banner Styles */
.banner {
    height: 600px; /* Default height for larger screens */
    background: url('Image/banner.png') no-repeat center center;
    background-size: cover; /* Ensures the image covers the banner area */
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0; /* Adjust based on header height */
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text visibility */
    z-index: -1;
}

.banner-content {
    position: relative; /* Ensure content stays above the overlay */
}

.banner-content h1 {
    font-size: 3em; /* Default font size for larger screens */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00ffae;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.btn {
    background-color: #00ffae;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 255, 174, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px; /* Add space above button */
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 174, 0.6);
}

/* Responsive Adjustments */

/* For tablets and smaller laptops (768px and below) */
@media (max-width: 768px) {
    .banner {
        height: 500px; /* Adjust height for tablets */
        background-attachment: scroll; /* Disable parallax effect */
    }

    .banner-content h1 {
        font-size: 2.5em; /* Adjust font size for tablets */
    }

    .btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 0.9em; /* Adjust button font size */
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .banner {
        height: 400px; /* Reduce height for phones */
        background-attachment: scroll; /* Disable parallax effect for better performance */
    }

    .banner-content h1 {
        font-size: 1.5em; /* Further reduce font size for phones */
    }

    .btn {
        padding: 8px 15px; /* Adjust button padding for mobile */
        font-size: 0.8em; /* Adjust button font size for mobile */
    }
}



/* Courses Section */
.courses {
    padding: 50px 20px;
    text-align: center;
}

.course-list {
    display: flex;
    flex-wrap: wrap; /* Allow courses to wrap on smaller screens */
    justify-content: center;
    gap: 30px;
}

.course-container {
    text-align: center;
    width: 100%; /* Ensure full width on small screens */
    max-width: 390px; /* Max width of course container */
}

/* Course Header Styles */
.course-header {
    margin-bottom: 10px;
}

.course-header h3 {
    color: #00ffae;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.course-header h4 {
    color: #ddd;
    font-size: 1.2em;
}

/* Courses Section */
.courses {
    padding: 50px 20px;
    text-align: center;
}

.course-list {
    display: flex;
    flex-wrap: wrap; /* Allow courses to wrap on smaller screens */
    justify-content: center;
    gap: 30px;
    margin: 0 auto; /* Center align the course list */
}

/* Course Container */
.course-container {
    text-align: center;
    flex: 1 1 300px; /* Allow course containers to shrink and grow */
    max-width: 390px; /* Ensure a maximum width */
}

/* Course Header Styles */
.course-header {
    margin-bottom: 10px;
}

.course-header h3 {
    color: #00ffae;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.course-header h4 {
    color: #ddd;
    font-size: 1.2em;
}

/* Course Styles */
.course {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    width: 100%; /* Full width within its container */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box; /* Include padding in the element's width and height */
}

/* Image Styles */
.course img {
    width: 100%; /* Full width of the course box */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer; /* Indicate clickability */
}

.course .btn {
    margin-top: auto;
}

/* Hover Effects */
.course:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

/* Responsive Adjustments */

/* For tablets and smaller laptops (768px and below) */
@media (max-width: 768px) {
    .course-header h3 {
        font-size: 1.5em; /* Adjust font size for tablets */
    }

    .course-header h4 {
        font-size: 1em; /* Adjust font size for tablets */
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .course-header h3 {
        font-size: 1.2em; /* Further adjust font size for mobile */
    }

    .course-header h4 {
        font-size: 0.9em; /* Further adjust font size for mobile */
    }

    .course {
        padding: 15px; /* Adjust padding for smaller screens */
    }
}


/* Popup Container */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
}

/* Popup Content */
.popup-content {
    background-color: transparent; /* No background */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%; /* Default width */
    max-width: 90vw; /* Max width of 90% of the viewport width */
    max-height: 80vh; /* Max height of 80% of the viewport height */
    box-sizing: border-box; /* Include padding and border in the width and height */
    position: relative; /* For positioning the close button */
    overflow: hidden; /* Hide overflow */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #00ffae; /* Change color on hover */
}

/* Popup Image */
.popup-content img {
    width: 100%; /* Fit the image to the width of the popup content */
    height: auto; /* Maintain aspect ratio */
    max-height: 60vh; /* Ensure the image is less than the viewport height */
    object-fit: contain; /* Ensure the image scales to fit */
    border-radius: 10px; /* Optional: Add some rounding to match other elements */
    margin-bottom: 20px; /* Space between the image and the button */
}

/* Enroll Now Button */
.popup-content .btn {
    background-color: #00ffae;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 255, 174, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    width: auto; /* Adjust width to fit content */
    margin-top: 20px; /* Ensure there's space between the button and the image */
}

/* Responsive Adjustments */

/* For tablets and smaller laptops (768px and below) */
@media (max-width: 768px) {
    .popup-content {
        width: 90%; /* Increase width for tablets */
        max-width: 95vw; /* Increase max width */
    }

    .popup-content img {
        max-height: 50vh; /* Reduce max height for the image */
    }

    .close-btn {
        font-size: 1.5em; /* Smaller close button */
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .popup-content {
        width: 95%; /* Almost full width for phones */
        max-width: 100vw; /* Max width of 100% of the viewport width */
    }

    .popup-content img {
        max-height: 40vh; /* Further reduce max height for the image */
    }

    .close-btn {
        font-size: 1.2em; /* Even smaller close button */
    }

    .popup-content .btn {
        padding: 10px 20px; /* Smaller button padding for phones */
    }
}


/* Enrollment Section */
.enroll {
    padding: 50px 20px;
    text-align: center;
    background-color: #1a1a1a;
}

.enroll h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00ffae;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 600px; /* Max width for larger screens */
    margin: 0 auto; /* Center the form horizontally */
}

form input, form select, form textarea {
    width: 100%;
    max-width: 100%; /* Full width within container */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    background-color: #2a2a2a;
    color: #fff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 174, 0.7), inset 0 0 10px rgba(0, 0, 0, 0.8);
}

form button {
    background-color: #00ffae;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 255, 174, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
}

/* Button Hover Effect */
form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 174, 0.6);
}

/* Responsive Adjustments */

/* For tablets and smaller laptops (768px and below) */
@media (max-width: 768px) {
    .enroll h2 {
        font-size: 1.5em; /* Reduce font size for tablets */
    }

    form {
        padding: 20px; /* Reduce padding for smaller screens */
    }
    
    form input, form select, form textarea {
        padding: 12px;
    }

    form button {
        padding: 10px 20px; /* Adjust button padding for tablets */
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .enroll h2 {
        font-size: 1.2em; /* Further reduce font size for phones */
    }

    form {
        padding: 15px; /* Further reduce padding for mobile */
    }

    form input, form select, form textarea {
        padding: 10px; /* Reduce padding for smaller screens */
        margin-bottom: 8px; /* Adjust spacing */
    }

    form button {
        padding: 8px 15px; /* Further reduce button padding for mobile */
    }
}















/* Our Team Section */
.team {
    padding: 50px 20px;
    text-align: center;
    background-color: #1a1a1a;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Team Slider */
.team-slider {
    overflow: hidden; /* Hide overflow */
    position: relative;
    width: 100%;
}

/* Team List */
.team-list {
    display: flex;
    justify-content: center; /* Center align items within the slider */
    transition: transform 0.5s ease-in-out;
    width: calc(100% * 3); /* Adjust based on the number of team members */
}

/* Team Container */
.team-container {
    text-align: center;
    flex: 0 0 auto; /* Allow the container to shrink to fit content */
    max-width: 300px; /* Max width for the container */
    box-sizing: border-box;
    margin: 0 auto; /* Center align each container */
    margin-bottom: 20px; /* Space below each container */
}




/* Team Header */
.team-header {
    margin-bottom: 10px;
}

.team-header h3 {
    color: #00ffae;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.team-header h4 {
    color: #ddd;
    font-size: 1.1em;
}

/* Team Member Section */
.team-member {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 15px;
    width: 100%; /* Full width of the container */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Team Member Image */
.team-member img {
    width: 100%; /* Fit image to container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    margin-bottom: 7px;
    cursor: pointer; /* Indicate clickability */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 5px; /* Space between social icons */
    justify-content: center;
    margin-top: 10px; /* Space above social icons */
}

.social-icons a {
    display: inline-block;
    width: 40px; /* Adjusted width for social icons */
    height: 40px; /* Adjusted height for social icons */
}

.social-icons img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2); /* Slightly enlarge icons on hover */
}

/* Lightbox Styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 500px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Slider Indicators */
.slider-indicators {
    text-align: center;
    margin-top: 20px; /* Adjust this as needed */
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #00ffae; /* Match the button color */
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5; /* Default opacity */
    transition: opacity 0.3s ease;
}

.indicator.active {
    opacity: 1; /* Fully visible for the active slide */
}

/* Responsive Adjustments */

/* For tablets and smaller laptops (768px and below) */
@media (max-width: 768px) {
    .team-header h3 {
        font-size: 1.4em; /* Adjust font size */
    }

    .team-header h4 {
        font-size: 1em; /* Adjust font size */
    }

    .team-list {
        gap: 20px; /* Adjust gap for smaller screens */
    }

    .team-container {
        flex: 0 1 80%; /* Reduce size to fit two items */
        max-width: 300px; /* Ensure fit within screen size */
        margin: 0 auto; /* Center align each container */
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .team-header h3 {
        font-size: 1.2em; /* Further reduce font size */
    }

    .team-header h4 {
        font-size: 0.9em; /* Further reduce font size */
    }

    .team-list {
        gap: 15px; /* Adjust gap for mobile */
    }

    .team-container {
        flex: 0 1 100%; /* Full width on mobile */
        max-width: 300px; /* Ensure fit within screen size */
        margin: 0 auto; /* Center align each container */
    }
}















/* About Us Section */
.about-us {
    padding: 50px 10px;
    text-align: center;
    background-color: #121212;
}

/* Heading Styles */
.about-us h2 {
    font-size: 2em;
    color: #00ffae;
    margin: 0 auto 20px; /* Center the heading */
    text-align: center; /* Center align for better mobile view */
    
}

/* Content Container */
.about-us-content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center items horizontally */
    align-items: center;
    gap: 20px; /* Space between text and image */
}

/* Text Container */
.about-us-text {
    max-width: 600px; /* Adjust for larger screens */
    text-align: left;
     font-size: .9em;
}

/* Text Paragraphs */
.about-us-text p {
    margin-bottom: 10px;
}

/* Image Container */
.about-us-image {
    max-width: 100%;
    display: flex;
    justify-content: center; /* Center the image */
}

/* Image Styling */
.about-us-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-width: 390px; /* Ensure image does not exceed this width */
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* Responsive Adjustments */

/* For tablets and smaller laptops (768px and below) */
@media (max-width: 768px) {
    .about-us h2 {
        font-size: 1.5em; /* Adjust font size for tablets */
    }

    .about-us-content {
        flex-direction: column; /* Stack text and image vertically */
        gap: 20px; /* Increase gap for stacking */
    }

    .about-us-text {
        margin: 0; /* Remove margins for stacking */
    }

    .about-us-image {
        max-width: 100%;
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .about-us h2 {
        font-size: 1.2em; /* Further reduce font size */
        margin: 0 10px; /* Adjust margin for smaller screens */
    }

    .about-us-content {
        gap: 15px; /* Adjust gap for mobile */
    }

    .about-us-text {
        max-width: 100%; /* Full width of the container */
    }

    .about-us-image img {
        max-width: 100%; /* Ensure image fits within screen */
    }
}








/* Contact Us Section */
.contact-us {
    text-align: center;
    margin: 50px 0;
    padding: 20px 10px;
    background-color: #121212;
    margin-bottom: 100px;
}

.contact-us h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00ffae;
}

/* Container for the content */
.contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between image and details */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-bottom: 30px;
}

/* Contact Image */
.contact-image {
    width: 300px; /* Default width for larger screens */
    height: auto;
}

/* Contact Details Container */
.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    gap: 0px; /* Further reduced gap between contact items */
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0px; /* Further reduced gap between icon and text */
}

/* Contact Icon */
.icon {
    width: 50px;
    height: 50px;
}

/* Contact Item Links */
.contact-item a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: text-decoration 0.3s ease; /* Smooth underline effect */
}

.contact-item a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive Adjustments */

/* For tablets (768px and below) */
@media (max-width: 768px) {
    .contact-us h2 {
        font-size: 28px; /* Adjust heading font size */
    }

    .contact-image {
        width: 250px; /* Adjust image width for smaller screens */
    }

    .contact-content {
        flex-direction: column; /* Stack image and details vertically */
        align-items: center; /* Center-align both image and details */
    }

    .contact-details {
        order: 1; /* Ensure details are placed beside image in column layout */
        text-align: left; /* Align text to the left */
        gap: 3px; /* Further reduced gap between contact items */
    }

    .contact-item {
        gap: 3px; /* Further reduced gap between icon and text */
    }

    .contact-item a {
        font-size: 14px; /* Further adjust font size */
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .contact-us h2 {
        font-size: 24px; /* Further adjust heading font size */
    }

    .contact-content {
        flex-direction: row; /* Place image and details side by side */
        align-items: flex-start; /* Align items to the start of the flex container */
    }

    .contact-image {
        width: 200px; /* Further adjust image width */
        margin-right: 20px; /* Space between image and contact details */
    }

    .contact-details {
        order: 1; /* Ensure details are placed beside image */
        text-align: left; /* Align text to the left */
        gap: 5px; /* Further reduced gap between contact items */
    }

    .contact-item {
        gap: 3px; /* Further reduced gap between icon and text */
    }

    .contact-item a {
        font-size: 14px; /* Further adjust font size */
    }
}




/* Footer Styles */
.footer {
    background-color: #2a2a2a;  /* Dark background for the footer */
    color: #fff;  /* White text color */
    text-align: center;
    padding: 20px 0;  /* Increased padding for better spacing */
}

.footer-content h3 {
    margin-bottom: 10px;  /* Increased margin for better separation */
    font-size: 24px;
    color: #00ffae;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;  /* Increased margin for better spacing */
}

.social-icon {
    width: 80px;  /* Adjusted width for better fit */
    height: 80px;  /* Adjusted height for better fit */
    margin: 0 10px;  /* Spaced out icons */
}

.footer-links {
    margin-top: 10px;  /* Increased margin for better separation */
}

.footer-links a {
    color: #fff;  /* White text color for links */
    text-decoration: none;
    margin: 0 10px;  /* Spaced out links */
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Modal Styles */
.modal {
    display: none;  /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);  /* Dark semi-transparent background */
}

.modal-content {
    background-color: #ffffff;  /* White background for the modal */
    color: #333;  /* Dark text color for the modal */
    margin: 10% auto;  /* Adjusted margin for better centering */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;  /* Increased max-width for larger screens */
    border-radius: 8px;
}

.close {
    color: #333;  /* Dark color for the close button */
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;  /* Even darker color when hovering */
    text-decoration: none;
    cursor: pointer;
}

/* Copyright Notice */
.footer .copyright {
    margin-top: 20px;  /* Increased margin for better separation */
    font-size: 14px;  /* Slightly larger font size for copyright notice */
    color: #ccc;  /* Light gray color for copyright text */
}

/* Responsive Adjustments */

/* For tablets (768px and below) */
@media (max-width: 768px) {
    .footer-content h3 {
        font-size: 22px;  /* Adjusted heading font size */
    }

    .social-icon {
        width: 40px;  /* Smaller icon size for tablets */
        height: 40px;  /* Smaller icon size for tablets */
        margin: 0 8px;  /* Reduced margin for tablets */
    }

    .footer-links {
        margin-top: 15px;  /* Adjusted margin for better spacing */
    }

    .footer-links a {
        font-size: 14px;  /* Adjusted font size for links */
    }

    .modal-content {
        width: 90%;  /* Increased width for better fit on tablets */
    }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
    .footer-content h3 {
        font-size: 20px;  /* Further reduced heading font size */
    }

    .social-icon {
        width: 30px;  /* Further reduced icon size for mobile */
        height: 30px;  /* Further reduced icon size for mobile */
        margin: 0 5px;  /* Reduced margin for mobile */
    }

    .footer-links {
        margin-top: 10px;  /* Adjusted margin for mobile */
    }

    .footer-links a {
        font-size: 12px;  /* Further reduced font size for mobile */
    }

    .modal-content {
        width: 95%;  /* Further increased width for better fit on mobile */
    }
}
