* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* General Navbar Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #222;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow */
    
}

/* Logo and Spacing */


.logo {
    display: flex;
    align-items: center; /* Ensures proper alignment */
}

.navbar-logo {
    display: flex; /* Makes sure text and image stay in one row */
    align-items: center; /* Aligns them properly */
    text-decoration: none;
}

.navbar-logo img {
    width: 100px; /* Adjust logo size */
    height: auto;
    cursor: pointer;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-left: 10px; /* Adds space between image and text */
}




.navbar-logo span {
    font-size: 15px;
    font-weight: normal;
    color: white;
 text-align: center;
 
}

.logo a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}


.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ff8902;
    text-shadow: 0px 2px 5px rgba(255, 165, 0, 0.6);
}

/* Toggle Menu (Hidden by Default) */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}


/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 10px;
        background-color: rgba(34, 34, 34, 0.95);
        width: 250px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateY(-20px);
        opacity: 0;
    }

    .nav-links.active {
        display: flex;
        padding: 20px;
        transform: translateY(0);
        opacity: 1;
        z-index: 9999;
    }
}


.logo img {
    margin-right: 10px;
    width: 50px; /* Adjust spacing between the logo and text */
}


.logo-img {
    display: block;
    margin: 0 auto; /* Center the logo */
    width: 50px; /* Adjust size */
    opacity: 0.5; /* Adjust transparency (0.0 = fully invisible, 1.0 = solid) */
}

.dropdown {
    position: relative;
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(34, 34, 34, 0.95);
    list-style: none;
    padding: 10px;
    top: 100%;
    left: 0;
    width: 200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* Show dropdown on hover for desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block !important;
    }
}

/* Mobile dropdown fix */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
        position: relative;
        width: 100%;
        background-color: rgba(34, 34, 34, 0.95);
        padding: 10px;
    }

    .dropdown-menu.active {
        display: block;
    }
}

.arrow {
    font-size: 12px;
    margin-left: 5px;
    color: #ff8902;
}





.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.gradient-text {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #0072ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}




/* Smooth fade-in and scale effect */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9); /* Starts slightly smaller */
    }
    to {
        opacity: 1;
        transform: scale(1); /* Returns to normal size */
    }
}







.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff8000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ffb472;
}

footer > p {
    text-align: center;
    color: white;
    background-color: #222;
}

a {
    color: #FF7600;
}

.why-choose-us {
    text-align: center;
    color: white;
    padding: 80px 20px;
    background-color: #222;
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.benefit>h3 {
    color: #fe8b09;
}

.benefit {
    color: #222;
    width: 30%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}


.benefit:hover {
    transform: scale(1.05); /* Expands block by 5% */
}

.benefit img {
    width: 50px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        width: 80%;
    }
}

.services {
    color: white;
    text-align: center;
    padding: 80px 20px;
    background-color: #222;
}

.services h3{
    color: rgb(0, 123, 255);
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    color: #222;
    width: 35%;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: scale(1.05);
}

.service img {
    width: 50px;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6f00f8;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #ffaf69;
}
.testimonials {
    text-align: center;
    padding: 80px 20px;
    background-color: #222;
    color: white;
}

.testimonial-container {
    color: #222;
    background-color: #222;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    width: 40%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    font-style: italic;
}
.quote {
    text-align: center;
    padding: 80px 20px;
    background-color: #222;
    color: white;
}

.quote .cta-button {
    background-color: #FF7600;
}

.quote .cta-button:hover {
    background-color: #ffb06b;
}
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column; /* Align everything vertically */
    align-items: flex-start; /* Align content to the left */
}


.location {
    background: rgba(255, 255, 255, 0.1); /* Light contrast */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

iframe {
    margin-top: 10px;
    border-radius: 10px;
  
}




.footer-section {
    margin-bottom: 20px;
}

.logormkse {
    width: 50px; /* Adjust width */
    height: auto; /* Keeps aspect ratio */
    margin-right: 10px; /* Adds space between logo and heading */
}


.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section a {
    color: #FFA500;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons a {
    color: white;
    font-size: 24px;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #FFA500;
}

.footer-bottom {
    padding-top: 20px;
    color: #222;
    background-color: white;
    text-align: center;
}



.brands {
    color: #222;
    text-align: center;
    padding: 60px 20px;
    background-color: #222;
    overflow: hidden;
}

.brand-carousel {
    background-color: #222;
    display: flex;
    gap: 30px;
    position: relative;
  /* Slower speed */
}

.brand img {
    width: 150px;
    filter: grayscale(50%);
    transition: filter 0.3s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 1;
}

/* Infinite Scrolling Animation */
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* Adjust based on logo count */
}
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Adjusted to create a seamless loop */
}

.brand-carousel {
    display: flex;
    width: max-content; /* Allows continuous movement */
    animation: scrollBrands 20s linear infinite;
}

.brand {
    flex: 0 0 auto; /* Prevents shrinking */
}


/* Hover Effect */
.brand img:hover {
    filter: grayscale(0%);
}


.sticky-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.sticky-btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #FF7600;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    transition: background 0.3s ease-in-out;
}

.sticky-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.sticky-btn:hover {
    background-color: #FFA500;
    transform: scale(1.1);
}
.solar-calculator {
    text-align: center;
    padding: 60px 20px;
    background-color: #222;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

input, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px;
    background-color: #FFA500;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #FF7600;
}
.calculator-container {
    display: none;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    transition: max-height 0.5s ease-in-out;
}
@media (min-width: 1024px) { /* Adjust for laptop screens */
    .calculator-container {
        padding: 10px 30px; /* Reduce padding */
        max-width: 600px; /* Limit width */
        margin: auto; /* Keep it centered */
    }
}


.toggle-calculator {
    display: block;
    margin: auto;
    padding: 10px 15px;
    background-color: #b4c818;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.toggle-calculator:hover {
    background-color: #FF7600;
}

/*about us*/
.about1 {
    text-align: center;
    padding: 100px 20px; /* Reduce padding for smaller screens */
    background-image: url('images/WhatsApp\ Image\ 2025-10-02\ at\ 18.50.56_45bb164c.jpg'); /* Corrected backslash issue */
    background-size: cover;
    background-position: center;
}

/* Make sure the heading is fully visible */
.about1 h1 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: white;
  
    padding: 20px; /* Reduce padding for better fit */
    display: inline-block;
    width: 100%;
}

/* Responsive Fix for Small Screens */
@media (max-width: 768px) {
    .about1 {
        padding: 50px 10px; /* Less padding so text fits */
    }

    .about1 h1 {
        font-size: 28px; /* Reduce font size to fit better */
        padding: 10px; /* Adjust spacing */
        width: auto; /* Prevent text overflow */
    }
}



.about-container {
    background-color: #d7d7d7;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}







/* Light background effect behind text */



.about {
    text-align: center;
    padding: 80px 20px;
    background-color: #414141;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.projects {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 80px;
}

/* Individual Sections */


/* Titles */
.commercial-projects h2,
.residential-projects h2 {
    font-size: 30px;
    color: #ff8d5d;
    margin-bottom: 20px;
    
}

.commercial-projects h3,.residential-projects h3{
    color: #fe8b09;
}

/* Gallery Layout */


/* Project Boxes */
.project {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.commercial-projects,
.residential-projects {
    margin-bottom: 40px;
    padding: 40px;
    background: rgb(208, 208, 208);
    border-radius: 10px;
    max-width: 90%; /* Adjust container width */
    margin: auto;
}

.project-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .commercial-projects,
    .residential-projects {
        max-width: 100%; /* Increase width for smaller screens */
        padding: 20px; /* Reduce padding */
    }

    .project-gallery {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .project {
        width: 90%; /* Make project boxes wider */
    }
}

/* Image Styling */
.project img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

/*packages*/
.packages {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 80px;
}



.package-container {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/*get in touch */

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background-color: #222;
    color: white;
}

.contact-bg {
    flex: 1; /* Makes sure it takes equal space */
    padding: 40px;
    background: url('images/solar\ contact02.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center; /* Centers content inside */
    text-align: center;
}

/* Make sure text inside is readable */
.contact-info {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
    border-radius: 10px;
}

.contact-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.contact-form h2{
    color: #222;
}
.contact-form label{
    color: #222;

}

.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-bg {
        width: 100%;
        padding: 30px;
    }

    .contact-info, .contact-form {
        width: 100%;
        padding: 20px;
    }
}







/*requestforquote.html*/
.quote-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background-color: #222;
    color: white;
}

.quote-in {
    flex: 1; /* Makes sure it takes equal space */
    padding: 40px;
    background: url('images/solar\ \ contact01.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center; /* Centers content inside */
    text-align: center;
}

/* Make sure text inside is readable */
.quote-info {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
    border-radius: 10px;
}


.quote-info ul {
    margin-top: 15px;
    list-style: none;
    text-align: left;
}

.quote-info ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.quote-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.quote-form h2 {
    margin-bottom: 20px;
    color: #222;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

button {
    padding: 12px;
    background-color: #FFA500;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

button:hover {
    background-color: #FF7600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quote-container {
        flex-direction: column;
        text-align: center;
    }
    
    .quote-info, .quote-form {
        width: 100%;
        padding: 20px;
    }
}


.past-projects {
    text-align: center;
    color: white;
    padding: 80px 20px;
    background-color: #222; /* Dark background */
}

.past-projects h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.projects-carousel {
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: auto;
}

.projects-track {
    display: flex;
    gap: 20px;
    width: fit-content; /* Expands dynamically */
    transition: transform 0.5s ease-in-out;
}



.project-slide {
    width: 600px; /* Set consistent width */
    height: 400px; /* Set consistent height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents image overflow */
    background-color: #333; /* Optional background for consistency */
    border-radius: 20px;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills container proportionally */
    border-radius: 10px;
}


/* Navigation Buttons */
.projects-prev, .projects-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 165, 0, 0.8);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 28px;
    border-radius: 50%;
}

.projects-prev { left: 15px; }
.projects-next { right: 15px; }

.projects-prev:hover, .projects-next:hover {
    background: rgba(255, 140, 0, 1);
}


.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 2.5s ease-in-out forwards; /* Fades out after 2.5s */
}

.loading-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out; /* Fades in smoothly */
}

.loading-text {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    
    color:rgb(250, 128, 90);
    animation: fadeIn 1.5s ease-in-out; /* Fades in smoothly */
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.projects-header {
    background: url('images/pexels-pixabay-433308.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 80px 20px;
    color: white;
}

.projects-header h1 {
    font-size: 35px;
    font-weight: bold;
    background: linear-gradient(to right, #ff703f, #ff9863, #ffbd78);
    text-align: center;
     /* Solar Gold to Orange */
    -webkit-background-clip: text; /* For Safari & Chrome */
    -moz-background-clip: text; /* For Firefox */
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Packages Header with Background Image */
.packages-header {
    background: url('images/pexels-manny-21954159-6601008.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 100px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Solar Packages Section */
.solar-packages1 {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 80px 10%;
}

/* Package Container */
.solar-packages1-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Individual Package */
.solar-package1 {
    background: white;
    color: black;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Package Images */
.solar-package1 img {
    width: 10%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Hover Effect */
.solar-package1:hover {
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .solar-packages1-container {
        grid-template-columns: 1fr; /* Stack packages on mobile */
    }
}


.solar-package-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Ensures the div behaves like a full clickable section */
}

.solar-package1 {
    transition: transform 0.3s ease-in-out;
}

.solar-package-link:hover .solar-package1 {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}

/*residential, commercial and rent to own packages rmkse*/
.solar-pack {
    padding: 40px;
    background-color: #c8bbb0;
    text-align: center;
}

.pack-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    width: 80%;
    color: #222;
    max-width: 600px; /* Ensures it doesn't stretch too wide */
}

/* Responsive Fix for Small Screens */
@media (max-width: 768px) {
    .pack-card {
        width: 90%; /* Make it wider on smaller screens */
        padding: 15px; /* Reduce padding for better fitting */
    }

    .pack-card h3 {
        font-size: 20px; /* Slightly reduce heading size */
    }

    .pack-card p,
    .pack-card li {
        font-size: 16px; /* Ensure readability */
    }

    .pack-card ul {
        width: 100%; /* Prevent list from shrinking */
        text-align: left;
    }
}


.pack-card li {
    
    text-align: center;
    align-items: center;
}
ul {
    list-style: none; /* Removes default bullets */
    padding: 0; /* Removes extra space */
    margin: 0 auto; /* Centers the list properly */
    width: fit-content; /* Ensures it doesn't stretch weirdly */
    text-align: left; /* Aligns text inside correctly */
}

li {
    padding: 5px 10px; /* Adds spacing to prevent overcrowding */
    text-align: left; /* Ensures list text is properly aligned */
}


.price {
    font-size: 18px;
    font-weight: bold;
    color: #ff8902;
}
.package-logo {
    display: block;
    margin: 0 auto 15px; /* Centers the logo and adds spacing */
    width: 60px; /* Adjust logo size */
    height: auto;
}
.indexmid-logo {
 display: block;
    margin: 0 auto 15px; /* Centers the logo and adds spacing */
    width: 60px; /* Adjust logo size */
    height: auto;
    background-color: #222;

}
.gradient-text {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #ff5e00 0%, #ff973c 50%, #ff973c 75%, #ff5e00 100%); /* Solar Gold to Orange */
    -webkit-background-clip: text; /* For Safari & Chrome */
    -moz-background-clip: text; /* For Firefox */
    background-clip: text;
    -webkit-text-fill-color: transparent; }

    .top-banner {
    background-color: #ffffff;
    color: rgb(148, 148, 148);
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}



.top-banner a {
    color: #f8ac3b; /* Gold color for CTA */
    text-decoration: none;
    font-weight: normal;
}


