body {
    background-color: #ffffff !important; /* Changed background to white */
    color: #000000 !important; /* Changed text color to black */
}

/* header & nav bar */

header {
    background-color: #f6f4f2 !important; /* Changed background to orange */
    border-bottom: 1px solid #ec6907 !important; /* Border color to match orange */
}

nav ul li a {
    color: #000000 !important; /* Changed text color to black */
}

nav ul li a:hover {
    color: #ec6907 !important; /* Changed hover color to orange */
}

.hero-section {
    background-color: #ffffff !important; /* Changed background to white */
}

.hero-text h2 {
    color: #ec6907 !important; /* Changed text color to orange */
}

.hero-text p {
    color: #000000 !important; /* Changed text color to black */
}

.cta-button {
    background-color: #ec6907 !important; /* Changed button background to orange */
}

.cta-button:hover {
    background-color: #d85a05 !important; /* Slightly darker orange on hover */
}

.services-section {
    background-color: #ffffff !important; /* Changed background to white */
    color: #000000 !important; /* Changed text color to black */
}

.services-section h2 {
    color: #ec6907 !important; /* Changed heading color to orange */
}

.service-item {
    background-color: #f7f7f7 !important; /* Changed background to light grey */
}

.service-item h3 {
    color: #ec6907 !important; /* Changed heading color to orange */
}

.service-item p {
    color: var(--text-color) !important; /* Changed text color to black */
}

.portfolio-section {
    background-color: #ffffff !important; /* Changed background to white */
    color: #000000 !important; /* Changed text color to black */
}

.portfolio-section h2 {
    color: #ec6907 !important; /* Changed heading color to orange */
}

.portfolio-item h3 {
    color: #ec6907 !important; /* Changed heading color to orange */
}

.portfolio-item{ 
    background-color: #f7f7f7 !important; /* Changed heading color to orange */
}

.portfolio-item p {
    color: var(--text-color) !important; /* Changed text color to black */
}

.about-us-section {
    background-color: #ffffff !important; /* Changed background to white */
    color: #000000 !important; /* Changed text color to black */
}

.about-us-section h2 {
    color: #ec6907 !important; /* Changed heading color to orange */
}

.about-text p {
    color: #000000 !important; /* Changed text color to black */
}

.about-buttons .cta-button {
    background-color: #ec6907 !important; /* Changed button background to orange */
}

.about-buttons .cta-button:hover {
    background-color: #d85a05 !important; /* Slightly darker orange on hover */
}

.contact-us-section {
    background-color: #ffffff !important; /* Changed background to white */
    color: #000000 !important; /* Changed text color to black */
}

.contact-us-section h2 {
    color: #ec6907 !important; /* Changed heading color to orange */
}

.contact-form {
    background-color: #f7f7f7 !important; /* Changed background to light grey */
}

.contact-form label {
    color: #000000 !important; /* Changed label color to black */
    text-align: left;
}

.contact-form input, .contact-form textarea {
    background-color: #ffffff !important; /* Changed input background to white */
    color: #000000 !important; /* Changed input text color to black */
}

.submit-button {
    background-color: #ec6907 !important; /* Changed button background to orange */
}

.submit-button:hover {
    background-color: #d85a05 !important; /* Slightly darker orange on hover */
}

.footer-section {
    background-color: #f7f7f7 !important; /* Changed background to light grey */
    color: #000000 !important; /* Changed text color to black */
}

.footer-about p, .footer-links ul li a {
    color: var(--text-color) !important; /* Changed text color to black */
}

.footer-links ul li a:hover {
    color: #ec6907 !important; /* Changed hover color to orange */
}

.footer-social ul li a {
    color: #000000 !important; /* Changed icon color to black */
}

.footer-social ul li a:hover {
    color: #ec6907 !important; /* Changed hover color to orange */
}

.footer-bottom {
    background-color: var(--background-color) !important; /* Changed background to white */
    color: #000000 !important; /* Changed text color to black */
}


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

body {
    background-color: #121212;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.logo h1 {
    font-size: 24px;
    color: #00A2FF;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #00A2FF;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #1c1c1c;
}

.hero-content {
    display: flex;
    align-items: center;
    /* max-width: 1200px; */
}

.video-container {
    flex: 1;
    margin-right: 50px;
}

.hero-video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00A2FF;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #00A2FF;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0084cc;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.logo img {
    width: 80px; /* Adjust the size of the logo */
    height: 80px;
    border-radius: 50%; /* This makes the logo rounded */
    object-fit: cover; /* Ensures the logo fits well inside the circle */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #00A2FF;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #1c1c1c;
}

.hero-content {
    display: flex;
    align-items: center;
    /* max-width: 1200px; */
}

.video-container {
    flex: 1;
    margin-right: 50px;
}

.hero-video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00A2FF;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #00A2FF;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0084cc;
}

.services-section {
    padding: 50px;
    background-color: #121212;
    color: white;
    text-align: center;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #00A2FF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00A2FF;
}

.service-item p {
    font-size: 16px;
    color: #ddd;
}

.portfolio-section {
    padding: 50px;
    background-color: #1c1c1c;
    color: white;
    text-align: center;
}

.portfolio-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #00A2FF;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.portfolio-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00A2FF;
}

.portfolio-item p {
    font-size: 16px;
    color: #ddd;
}

.about-us-section {
    padding: 50px;
    background-color: #1c1c1c;
    color: white;
}

.about-us-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #00A2FF;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    flex-direction: row-reverse; /* Move image to the right */  
}

.about-image {
    flex: 1;
    margin-left: 30px; /* Add margin on the left of the image */
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ddd;
}

.about-buttons {
    display: flex;
    gap: 20px;
}

.about-buttons .cta-button {
    padding: 15px 30px;
    background-color: #00A2FF;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-buttons .cta-button:hover {
    background-color: #0084cc;
}

.contact-us-section {
    padding: 50px;
    background-color: #1c1c1c;
    color: white;
    text-align: center;
}

.contact-us-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #00A2FF;
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* max-width: 1200px; */
    margin: 0 auto;
    gap: 40px;
}

.contact-form {
    flex: 1;
    background-color: #2b2b2b;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.contact-form label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #ccc;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 16px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    background-color: #444;
}

.submit-button {
    padding: 15px 30px;
    background-color: #00A2FF;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0084cc;
}

.contact-info {
    flex: 0.7;
    color: var(--text-color);
    text-align: left;
    padding: 20px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links li {
    list-style: none;
}

.social-links a {
    font-size: 40px; /* Similar size as the original images */
    color: #ccc; /* Light gray as default */
    filter: grayscale(100%); /* Apply grayscale effect */
    transition: filter 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    filter: grayscale(0%); /* Remove grayscale on hover */
    color: #ec6907; /* Change color to your theme on hover */
}


.footer-section {
    background-color: #121212;
    color: #ccc;
    padding: 50px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.footer-about, .footer-links, .footer-social {
    flex: 1;
    margin: 20px;
}

.footer-about h3, .footer-links h3, .footer-social h3 {
    font-size: 24px;
    color: #ec6907;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
}

.footer-links ul li a:hover {
    color: #00A2FF;
}

.footer-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-social ul li {
    display: inline-block;
}

.footer-social img {
    width: 40px;
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer-social img:hover {
    filter: grayscale(0%);
}

.footer-bottom {
    background-color: #1c1c1c;
    padding: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: bolder;
    color: #888;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-icons li {
    display: inline-block;
}

.social-icons a {
    color: #ccc;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00A2FF;
}


/* Base Styles (already provided in the main CSS) */

/* Responsive for tablets and smaller screens (width less than 992px) */
@media (max-width: 992px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .video-container {
        margin-right: 0;
    }

    .hero-text {
        margin-top: 20px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        padding: 0;
        margin-top: 20px;
    }

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

/* Responsive for mobile screens (width less than 768px) */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .about-content {
        padding: 0 10px;
    }

    .about-buttons {
        display: flex;
        gap: 20px;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .about-text p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        padding: 20px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    #menu-list {
        display: none;
        list-style-type: none;
        /* display: block; */
        padding: 0;
        margin: 0;
        background-color: var(--background-color);
        color: var(--test-color);
    }
    
    #menu-list.open {
        display: block;
    }
}

/* Ultra small devices (width less than 576px) */
@media (max-width: 576px) {
    .hero-text h2 {
        font-size: 28px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .about-text p {
        font-size: 14px;
    }

    .contact-form input, .contact-form textarea {
        padding: 10px;
    }

    .contact-form label {
        font-size: 16px;
    }

    .submit-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .social-links a {
        font-size: 36px;
    }
}


/* Navigation Bar Base Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ec6907; /* Adjusted to new color scheme */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffffff;
}

/* Menu Toggle Styles (for smaller screens) */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--test-color);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide the menu initially */
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    nav ul li a {
        color: #ec6907; /* Adjusted to new color scheme */
    }

    .menu-toggle {
        display: block;
    }

    /* When the menu is opened */
    nav.open ul {
        display: flex;
    }
}


/* -***********************************************************************************- */

.video-gallery {
    padding: 50px;
    color: #ec6907;
    text-align: center;
}

.video-gallery h2 {
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #ec6907 !important;
    font-size: 36px;
    margin-bottom: 30px;
}

.main-video {
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
    height: auto; /* Adjust height dynamically based on content */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

.main-video video {
    width: 100%;
    height: 100%; /* Ensure the video fills the container */
    object-fit: cover; /* Maintain aspect ratio and crop if needed */
    border-radius: 10px;
}

.category h3 {
    margin: 20px 0;
    color: var(--text-color);
    font-size: 24px;
}

.video-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    max-width: 100%;
    flex-wrap: wrap;
    align-items: center;
}

.video-thumbnails img {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnails img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

/* Ensure responsiveness on smaller screens */
@media (max-width: 768px) {
    .main-video {
        width: 100%; /* Full width on smaller screens */
        max-width: none;
    }

    .video-thumbnails img {
        width: 90px;
        height: 68px;
    }
}


/* ************************************************************************************************* */


.partners-section {
    padding: 50px 0;
    text-align: center;
}

.partners-section h2 {
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #ec6907 !important;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-item {
    flex: 1 1 100px;
    max-width: 100px;
    transition: transform 0.3s ease;
}

.partner-item img {
    width: 100%;
    height: auto;
    display: block;
}

.partner-item:hover {
    transform: scale(1.05);
}

/* ************************************************************************************************* */

/* Default Theme Variables (Dark Mode) */
:root {
    --background-color: #121212;
    --text-color: #ffffff;
    --primary-color: #ec6907;
    --section-bg-color: #1c1c1c;
    --card-bg-color: #1e1e1e;
}

/* Light Mode Variables */
body.light-mode {
    --background-color: #ffffff;
    --text-color: #000000;
    --primary-color: #000000;
    --section-bg-color: #f7f7f7;
    --card-bg-color: #f1f1f1;
}

/* Apply Variables Globally */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Styling */
header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--text-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

/* Services Section */
.services-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.service-item {
    background-color: var(--card-bg-color);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.portfolio-item {
    background-color: var(--card-bg-color);
}

/* Contact Us Section */
.contact-us-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.contact-form {
    background-color: var(--card-bg-color);
}

/* Footer */
.footer-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

/* Video Gallery */
.video-gallery {
    background-color: var(--section-bg-color);
    color: var(--primary-color);
}

.main-video iframe {
    background-color: var(--background-color);
}

/* Partners Section */
.partners-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

/* Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}



/* ************************************************************************************************* */


/* Default Dark Mode Variables */
:root {
    --background-color: #121212;
    --text-color: #ffffff;
    --primary-color: #00A2FF;
    --section-bg-color: #1c1c1c;
    --card-bg-color: #1e1e1e;
}

/* Light Mode Variables */
body.light-mode {
    --background-color: #ffffff;
    --text-color: #000000;
    --primary-color: #ec6907;
    --section-bg-color: #f7f7f7;
    --card-bg-color: #f1f1f1;
}

/* Apply Variables Globally */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header */
header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--text-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

/* Services Section */
.services-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.service-item {
    background-color: var(--card-bg-color);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.portfolio-item {
    background-color: var(--card-bg-color);
}

/* Contact Us Section */
.contact-us-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.contact-form {
    background-color: var(--card-bg-color);
}

/* Footer */
.footer-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

/* Video Gallery */
.video-gallery {
    background-color: var(--section-bg-color);
    color: var(--primary-color);
}

/* Partners Section */
.partners-section {
    background-color: var(--section-bg-color);
    color: var(--text-color);
}

/* Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}


/* ************************************************************************************************* */

/* Default Dark Mode Variables */
:root {
    --background-color: #1c1c1c !important;
    --text-color: #ffffff !important;
    --primary-color: #ec6907 !important;
    --section-bg-color: #1c1c1c !important;
    --card-bg-color: #1e1e1e !important;
    --border-color: #333 !important;
    --test-color: #ec6907 !important;
}

/* Light Mode Variables */
body.light-mode {
    --background-color: #ffffff !important;
    --text-color: #000000 !important;
    --primary-color: #ec6907 !important;
    --section-bg-color: #f7f7f7 !important;
    --card-bg-color: #f1f1f1 !important;
    --border-color: #ec6907 !important;
    --test-color: #000 !important;
}

/* Apply Variables Globally */
body {
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Header */
header {
    background-color: var(--background-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

/* Navigation Links */
nav ul li a {
    color: var(--text-color) !important;
    transition: color 0.3s ease !important;
}

nav ul li a:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--section-bg-color) !important;
    color: var(--text-color) !important;
}

.hero-text h2 {
    color: var(--primary-color) !important;
}

.hero-text p {
    color: var(--text-color) !important;
}

/* Buttons */
.cta-button {
    background-color: var(--primary-color) !important;
    color: var(--text-color) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.cta-button:hover {
    background-color: var(--text-color) !important;
    color: var(--background-color) !important;
}

/* Services Section */
.services-section {
    background-color: var(--section-bg-color) !important;
    color: var(--text-color) !important;
}

.service-item {
    background-color: var(--card-bg-color) !important;
    color: var(--text-color) !important;
}

.service-item h3 {
    color: var(--primary-color) !important;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--section-bg-color) !important;
    color: var(--text-color) !important;
}

.portfolio-item {
    background-color: var(--card-bg-color) !important;
}

.portfolio-item h3 {
    color: var(--primary-color) !important;
}

/* About Us Section */
.about-us-section {
    background-color: var(--section-bg-color) !important;
    color: var(--text-color) !important;
}

.about-us-section h2 {
    color: var(--primary-color) !important;
}

.about-text p {
    color: var(--text-color) !important;
}

/* Contact Us Section */
.contact-us-section {
    background-color: var(--section-bg-color) !important;
    color: var(--text-color) !important;
}

.contact-form {
    background-color: var(--card-bg-color) !important;
}

.contact-form label {
    color: var(--text-color) !important;
}

.contact-form input, .contact-form textarea {
    background-color: var(--background-color) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color) !important;
}

/* Footer Section */
.footer-section {
    background-color: var(--section-bg-color) !important;
    color: var(--text-color) !important;
}

.footer-links ul li a {
    color: var(--text-color) !important;
}

.footer-links ul li a:hover {
    color: var(--primary-color) !important;
}

.footer-social ul li a {
    color: var(--text-color) !important;
}

.footer-social ul li a:hover {
    color: var(--primary-color) !important;
}

/* Video Gallery */
.video-gallery {
    background-color: var(--section-bg-color) !important;
    color: var(--primary-color) !important;
}

.main-video iframe {
    background-color: var(--background-color) !important;
}

/* Partners Section */
.partners-section {
    background-color: var(--section-bg-color) !important;
    color: var(--text-color) !important;
}

.partner-item:hover {
    transform: scale(1.05) !important;
    border: 1px solid var(--primary-color) !important;
}

/* Toggle Button */
.theme-toggle {
    background: none !important;
    border: none !important;
    color: var(--text-color) !important;
    font-size: 24px !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}



/* ************************************************************************************************* */



/* ************************************************************************************************* */



/* ************************************************************************************************* */
