html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin-bottom: 60px;
}

.top-navbar {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    border-bottom: 1px solid #eee;
}
/* Header Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

    .navbar .logo img {
        height: 50px;
    }

    .navbar .nav-links {
        list-style: none;
        display: flex;
        gap: 30px;
    }

        .navbar .nav-links li a {
            text-decoration: none;
            color: #111;
            font-weight: bold;
            position: relative;
        }

            .navbar .nav-links li a::after {
                content: "";
                position: absolute;
                width: 0%;
                height: 2px;
                background: lightgreen;
                left: 0;
                bottom: -4px;
                transition: width 0.3s ease-in-out;
            }

            .navbar .nav-links li a:hover::after {
                width: 100%;
            }

.logo img {
    height: 50px;
    max-width: 100%;
}


.logo {
    cursor: default; /* normal by default */
    display: inline-block;
}

    .logo:hover {
        cursor: pointer; /* hand on hover */
    }

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

    .menu li a {
        text-decoration: none;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #111;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s ease-in-out;
    }

/* Contact Us Button */
.contact-btn {
    position: relative;
    display: inline-block;
    background-color: #1c1514;
    color: white !important;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

    .contact-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: lightgreen;
        z-index: -1;
        transition: width 0.4s ease-in-out;
        border-radius: 999px;
    }

    .contact-btn:hover::before {
        width: 100%;
    }

    .contact-btn:hover {
        color: #111 !important;
    }

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 100px;
    background: #fff;
}

    .hero-section .content {
        max-width: 50%;
    }

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
        color: #1c1413;
    }

    .hero-section p {
        font-size: 1.3rem;
        margin: 20px 0;
        color: #333;
    }

.cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a img {
    height: 32px;
    width: 32px;
}

/* Hero Image */
.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.get-in-touch-btn {
    background-color: #1c1313;
    color: white;
    display: inline-flex;
    align-items: center;
    border-radius: 40px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    /*transition: background 0.3s ease-in-out;*/
}

.arrow-circle {
    background-color: white;
    color: #222; /* Changed to darker color for better contrast */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    transition: background-color 0.3s, color 0.3s;
    position: relative !important;
}

.get-in-touch-btn:hover .arrow-circle {
    background-color: #f0f0f0;
}

.arrow-icon {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    transform: translateX(1px); /* Shifted slightly to the right */
}
/**/
.get-in-touch-btn:hover {
    /*background: linear-gradient(to right, #1c1313, lightgreen);*/
    color: white;
}

    /*.get-in-touch-btn:hover .arrow-circle {
    background-color: lightgreen;
    color: white;
}*/
    .get-in-touch-btn:hover .arrow-circle {
        background-color: #007BFF; /* Change circle color */
        color: white; /* Change arrow color */
        transform: translateY(4px); /* Move circle down slightly */
    }

    .get-in-touch-btn:hover .arrow-icon {
        transform: translateY(2px); /* Move arrow slightly */
    }
/*about us section*/
.about-us-section {
    padding: 2rem;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.about-us-card {
    background: linear-gradient(to bottom right, #FFA500, #FF8C00);
    color: #222;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 900px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1.5rem;
}

.about-us-card h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000;
}

.about-us-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight {
    font-weight: bold;
    color: #222;
    background: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 8px;
}

.background-box {
    background-color: #f0f8ff;
    color: #000;
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .background-box ul {
        list-style: disc;
        margin-left: 1.5rem;
        margin-top: 0.5rem;
    }

    .background-box li {
        margin-bottom: 0.5rem;
    }

/*about us section*/
/*@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;600&display=swap');*/

body {
    background-color: white; /* Cream background */
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    background-color: white; /* Cream background */
    font-family: 'Inter', sans-serif;
    /* margin: 0;
    padding: 0;*/
}

.about-us-section {
    padding: 4rem 1rem;
    background-color: #f5edea;
    color: #000;
}

.about-us-container {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-us-heading {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    color: #000;
}

.about-us-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
}

.highlighted-text {
    display: inline-block;
    font-weight: 600;
    background: transparent;
    padding: 0.5rem 1rem;
    border: 1px solid #000;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 1rem;
}

.background-box {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 5px solid #000;
    border-radius: 12px;
}

    .background-box h4 {
        font-weight: bold;
        margin-bottom: 1rem;
        font-family: 'Anton', sans-serif;
        text-transform: uppercase;
        font-size: 1.3rem;
    }

    .background-box ul {
        padding-left: 1.2rem;
        color: #444;
    }

.about-us-content strong {
    font-weight: 600;
    color: #000;
    display: block;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/*IT Couurses*/
.it-courses-section {
    background-color: #f5edea;
    padding: 4rem 1rem;
    text-align: center;
}

.section-title-box {
    margin-bottom: 2rem;
}

.it-courses-heading {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.it-courses-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #444;
}

.it-courses-carousel {
    width: 90%;
    margin: auto;
}





.course-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 0 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
}

    .course-card img {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
        display: block; /* Makes image a block element */
        margin-left: auto; /* Centers the image horizontally */
        margin-right: auto;
        object-fit: contain; /* Ensures the image maintains its aspect ratio */
    }

    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }


    .course-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: #222;
    }
/*carriers section */
.careers-section {
    padding: 60px 20px;
    background: #fef6f2;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.careers-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.careers-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .careers-section h2 span {
        color: #ff6b6b;
    }

.careers-section .subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .form-row input,
    .form-row textarea {
        padding: 12px 15px;
        font-size: 15px;
        border: 1px solid #ccc;
        border-radius: 12px;
        transition: 0.3s;
    }

        .form-row input:focus,
        .form-row textarea:focus {
            border-color: #ff6b6b;
            outline: none;
            box-shadow: 0 0 5px rgba(255, 107, 107, 0.2);
        }

.apply-btn {
    background: #ff6b6b;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

    .apply-btn:hover {
        background: #e25555;
    }

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
        gap: 20px;
    }

        .form-row input,
        .form-row textarea {
            flex: 1;
        }

    textarea {
        width: 100%;
    }
}

.file-upload-row {
    flex-direction: column;
    align-items: flex-start;
}

.file-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

input[type="file"] {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}

    input[type="file"]:hover {
        border-color: #ff6b6b;
    }

.file-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.clear-btn {
    background-color: #e74c3c;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

    .clear-btn:hover {
        background-color: #c0392b;
    }

/*footer*/
.footer {
    background-color: white;
    padding: 40px 0 10px 0;
    border-top: 1px solid #dee2e6;
    font-size: 15px;
    position: relative !important;
}

    .footer h5 {
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer a {
        text-decoration: none;
        color: black !important;
    }

        .footer a:hover {
            text-decoration: underline;
            color: #0d6efd;
        }

    .footer .social-icons a {
        font-size: 1.5rem;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

        .footer .social-icons a:hover {
            color: #0d6efd;
        }

    .footer .bottom-line {
        border-top: 1px solid #dee2e6;
        padding-top: 15px;
        margin-top: 20px;
        font-size: 14px;
        display: flex;
        /*flex-wrap: wrap;*/
        gap: 10px;
        justify-content: space-between;
        text-align: center;
    }

    .footer .footer-links {
        flex: 1 1 100%;
        text-align: center;
    }

/* Responsive Map */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

/* Floating WhatsApp Button */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
}

/* QR Popup */
#qr-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 999;
    text-align: center;
}

    #qr-popup img {
        width: 200px;
        height: 200px;
    }

    #qr-popup p {
        margin-top: 10px;
        font-size: 14px;
        color: #333;
    }

.toast-message {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-family: 'Segoe UI', sans-serif;
    max-width: 300px;
}

    .toast-message.show {
        opacity: 1;
        transform: translateX(0);
    }

.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.custom-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

    .close-btn:hover {
        color: #dc3545;
    }

.custom-modal-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/*.custom-modal-content img {
    border-radius: 10px;
}*/

.custom-modal-content p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

#contactForm input,
#contactForm textarea {
    font-size: 0.95rem;
}

#sendMsgBtn {
    background-color: #0d6efd;
    border: none;
    transition: background-color 0.3s ease;
}

    #sendMsgBtn:hover {
        background-color: #084298;
    }

.btn-outline-primary {
    margin-top: 10px;
}
/* Loader Styling */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.spinner-container {
    text-align: center;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline-block;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light background */
    border-top: 8px solid #3498db; /* Bright blue color */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Optional: Add a little "progressing dots" effect */
.dots {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
}

    .dots span {
        animation: dot-blink 1.5s infinite step-start;
    }

        .dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .dots span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .dots span:nth-child(3) {
            animation-delay: 0.6s;
        }

@keyframes dot-blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*mobile view*/
/* Mobile Responsiveness Styles */
@media (max-width: 767px) {
    /* General adjustments */
    html {
        font-size: 14px;
    }
    .slick-dots {
        display: none;
    }
    body {
        margin-bottom: 40px;
    }

    /* Navigation */
    .top-navbar, .navbar {
        padding: 15px 20px;
        /*flex-direction: column;*/
    }

        .menu, .navbar .nav-links {
            /*flex-direction: column;*/
            align-items: center;
            gap: 15px;
            margin-top: 15px;
        }

        .navbar .logo img {
            height: 40px;
        }

    /* Hero Section */
    .hero-section {
        padding: 100px 20px;
        flex-direction: column;
    }

        .hero-section .content {
            max-width: 100%;
            text-align: center;
            margin-bottom: 30px;
        }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    /* About Us Section */
    .about-us-section {
        padding: 2rem 1rem;
    }

    .about-us-container {
        padding: 1.5rem;
    }

    .about-us-heading {
        font-size: 2.5rem;
    }

    /* IT Courses Section */
    .it-courses-section {
        padding: 2rem 1rem;
    }

    .it-courses-heading {
        font-size: 2rem;
    }

    .it-courses-carousel {
        width: 100%;
    }

    .course-card {
        height: auto;
        min-height: 180px;
        margin: 0 5px 10px 5px;
    }

    /* Careers Section */
    .careers-container {
        padding: 20px;
    }

    .careers-section h2 {
        font-size: 24px;
    }

    .careers-section .subtitle {
        font-size: 14px;
    }

    /* Form elements */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

        .form-row input,
        .form-row textarea {
            width: 100%;
        }

    .file-upload-row {
        width: 100%;
    }

    .file-input-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .clear-btn {
        margin-top: 10px;
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 30px 0 5px 0;
        text-align: center;
    }

        .footer h5 {
            margin-top: 20px;
        }

        .footer .bottom-line {
            flex-direction: column;
            gap: 10px;
        }

    /* Modal and Popups */
    .custom-modal-content {
        width: 95%;
        padding: 20px;
    }

    #qr-popup {
        width: 80%;
        right: 10px;
    }

        #qr-popup img {
            width: 150px;
            height: 150px;
        }

    /* WhatsApp Button */
    #whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }

    /* Toast Messages */
    .toast-message {
        max-width: 250px;
        font-size: 14px;
    }

    /* Loader */
    .spinner {
        width: 50px;
        height: 50px;
    }

    .loader-text {
        font-size: 16px;
    }

    /* Contact Button */
    .contact-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Make text in about-us card more readable on mobile */
    .about-us-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Add a mobile navigation toggle button */
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1000;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Hidden by default on mobile */
    .menu, .navbar .nav-links {
        display: none;
    }

        /* Show when active class is added via JavaScript */
        .menu.active, .navbar .nav-links.active {
            display: flex;
        }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        padding: 60px 40px;
    }

        .hero-section .content {
            max-width: 60%;
        }

        .hero-section h1 {
            font-size: 2.5rem;
        }

    .about-us-heading, .it-courses-heading {
        font-size: 2.8rem;
    }

    .course-card {
        height: 180px;
    }

    .navbar, .top-navbar {
        padding: 15px 30px;
    }
}

/* For small height devices */
@media (max-height: 600px) {
    .hero-section {
        padding: 30px 20px;
    }

        .hero-section h1 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .hero-section p {
            margin: 10px 0;
        }

    .about-us-section, .it-courses-section, .careers-section {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 767px) {
    /* Show mobile menu by default instead of hiding it */
    .menu, .navbar .nav-links {
        display: flex; /* Change from 'none' to 'flex' */
        width: 100%;
    }
    .slick-dots{
        display:none !important;
    }
    /* Add hamburger menu styling if you choose to implement it */
    .mobile-nav-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    /* Ensure the navbar has enough space for the menu */
    .navbar, .top-navbar {
        min-height: 60px;
        position: relative;
    }

    /* Fix for collapsed navigation */
    .navbar-collapse {
        width: 100%;
    }
}

/* Fix for icons showing as boxes */
@font-face {
    font-family: 'FontAwesome'; /* Or whatever icon font you're using */
    src: url('../fonts/fontawesome-webfont.woff2') format('woff2'), url('../fonts/fontawesome-webfont.woff') format('woff'), url('../fonts/fontawesome-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* This helps with performance */
}

/* Backup for icons using emoji or unicode symbols */
.icon-fallback {
    font-family: sans-serif; /* System font as fallback */
}

/* Preload critical fonts to prevent FOIT (Flash of Invisible Text) */
html {
    font-display: swap;
}

/* Add specific fixes for icon containers */
.social-icons a,
.arrow-icon,
[class^="icon-"],
[class*=" icon-"] {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/*mobile view*/

/* ---------------------------------------------
   Extra Small Devices (up to 480px)
--------------------------------------------- */
@@media (max-width: 480px) {
    .top-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: white;
        padding: 10px 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .slick-dots{
        display:none;
    }
    .logo img {
        height: 40px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

        .menu.show {
            display: flex;
        }

        .menu li {
            margin: 10px 0;
        }

            .menu li a {
                color: black;
                text-decoration: none;
                font-size: 15px;
                padding: 8px 16px;
                display: block;
                transition: color 0.3s ease;
            }

    .menu-toggle {
        display: block;
        font-size: 22px;
        cursor: pointer;
        color: #000;
    }

    .custom-modal {
        display: none;
        position: fixed;
        z-index: 1050;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .custom-modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 15px;
        border: 1px solid #888;
        width: 95%;
        border-radius: 5px;
        position: relative;
        font-size: 14px;
    }

    .close-button {
        color: #aaa;
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
    }

        .close-button:hover,
        .close-button:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    .footer {
        background-color: #f8f9fa;
        padding: 40px 15px 20px;
        text-align: center;
    }

        .footer h5 {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .footer p,
        .footer a {
            font-size: 14px;
        }

        .footer .row > div {
            margin-bottom: 20px;
        }

    .map-responsive {
        overflow: hidden;
        padding-bottom: 56.25%;
        position: relative;
        height: 0;
    }

        .map-responsive iframe {
            left: 0;
            top: 0;
            height: 200px;
            width: 100%;
            position: absolute;
        }

    .bottom-line {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-top: 20px;
        gap: 10px;
    }
}

/* ---------------------------------------------
   Phones and Small Tablets (481px - 767px)
--------------------------------------------- */
@@media (min-width: 481px) and (max-width: 767px) {
    .top-navbar {
        padding: 10px 15px;
    }

    .slick-dots {
        display: none;
    }

    .logo img {
        height: 45px;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        /*flex-direction: column;*/
        align-items: center;
        padding: 10px 0;
        z-index: 999;
    }

        .menu.show {
            display: flex;
        }

        .menu li {
            margin: 10px 0;
        }

            .menu li a {
                font-size: 16px;
            }

    .custom-modal-content {
        width: 95%;
    }

    .footer .row > div {
        text-align: center;
        margin-bottom: 20px;
    }

    .map-responsive iframe {
        height: 200px;
    }

    .bottom-line {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ---------------------------------------------
   Tablets (768px - 991px)
--------------------------------------------- */
@@media (min-width: 768px) and (max-width: 991px) {
    .top-navbar {
        padding: 10px 20px;
    }

    .slick-dots {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 999;
        padding: 15px 0;
    }

        .menu li {
            margin: 10px 0;
            text-align: center;
        }

        .menu.show {
            display: flex;
        }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: #000;
    }

    .custom-modal-content {
        width: 90%;
    }

    .footer .row > div {
        text-align: center;
    }

    .map-responsive iframe {
        height: 250px;
    }
}

/* ---------------------------------------------
   Small Desktops (992px - 1199px)
--------------------------------------------- */
@@media (min-width: 992px) and (max-width: 1199px) {
    .top-navbar {
        padding: 10px 30px;
    }

    .slick-dots {
        display: none;
    }

    .logo img {
        height: 55px;
    }

    .menu li a {
        font-size: 16px;
    }

    .menu-toggle {
        display: none;
    }

    .menu {
        display: flex;
        list-style: none;
        gap: 25px;
        align-items: center;
    }

        .menu li a {
            color: black;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

    .custom-modal-content {
        width: 500px;
    }

    .footer .row > div {
        text-align: left;
    }

    .map-responsive iframe {
        height: 300px;
    }

    .bottom-line {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ---------------------------------------------
   Large Desktops (1200px and up)
--------------------------------------------- */
@@media (min-width: 1200px) {
    .top-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: white;
        padding: 10px 40px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .slick-dots {
        display: none;
    }

    .logo img {
        height: 60px;
    }

    .menu {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
    }

        .menu li a {
            color: black;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }

            .menu li a:hover {
                color: #007bff;
            }

    .menu-toggle {
        display: none;
    }

    .custom-modal {
        display: none;
        position: fixed;
        z-index: 1050;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .custom-modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 600px;
        border-radius: 5px;
        position: relative;
    }

    .close-button {
        color: #aaa;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

        .close-button:hover,
        .close-button:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    .footer {
        background-color: #f8f9fa;
        padding: 40px 60px 20px;
    }

        .footer .row > div {
            text-align: left;
        }

    .map-responsive iframe {
        height: 350px;
    }

    .bottom-line {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }
}
