:root {
	--primary: #1A1A1A;
	--secondary: #304b70e9;
	--accent: #ffc130;
	--bg-light: #ffffff;
	--bg-grey: #f8fafc;
	--text-muted: #fcfdff;
	--grey:#475569;
	--footer: #94a3b8;
	--border:#e2e8f0;
	--input:#cbd5e1;
	--dfooter:#334155;
	
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	scroll-behavior: smooth;
	color: var(--bg-light);
	background: var(--bg-light);
	line-height: 1.6;
	font-family: "Google Sans Flex", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style-position: inside;
}

/* Header & Navigation */
header {
	background: var(--secondary);
	color: var(--bg-light);
	padding-right: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo {
	width: 200px;
	padding:10px;
}

nav {
	display: flex;
	gap: 24px;
	align-items: center;
}

nav a {
	font-weight: 600;
	transition: color 0.3s ease, transform 0.3s ease; /* Adds the timing for the movement */
}

nav a:hover {
	color: var(--accent);
	transform: translateY(-4px); /* Pushes the text 4 pixels UP */
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
	color: var(--bg-light);
	max-width: none;
	margin: 0;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 60px 5%;
	text-align: center;
}

.hero-home {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 1s ease-in-out;
}

.hero-about {
	background-image: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.9)), url('../images/about-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-aircon {
	background-image: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.9)), url('../images/aircon-page-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-solar {
	background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), url('../images/solar-page-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-workforce {
	background-image: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.9)), url('../images/workforce-page-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-contact {
	background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), url('../images/contact-page-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-terms {
	background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), url('../images/terms-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-privacy {
	background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), url('../images/privacy-hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero h1 {
	font-size: 36px;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
	font-size: 20px;
	max-width: 700px;
	margin: 0 auto 30px auto;
	color:var(--input);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.btn {
	display: inline-block;
	background: var(--accent);
	color: var(--primary);
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 900;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}

.btn:hover {
	background: var(--secondary);
	color: var(--text-muted);
}

/* Sections & Grids */
section {
	padding: 80px 5%;
	width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.bg-grey, .section-alt, .section-wrapper {
	background-color: var(--bg-grey);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.section-title {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
	text-align: center;
}

.section-sub {
	text-align: center;
	color: var(--primary);
	margin-bottom: 40px;
	font-size: 18px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.card {
	background: var(--secondary);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(140, 135, 135, 0.447);
	border: 3px solid var(--secondary);
	text-align: center;
	display: flex;            /* Turns the card into a flex container */
	flex-direction: column;   /* Stacks the text and button vertically */
	align-items: center;
}

.card .btn {
	margin-top: auto; /* This is the magic trick! It forces the button to the very bottom */
}

.feature-card {
	background: var(--bg-light);
	border: 2px solid var(--border);
	padding: 40px 30px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card h3 {
	color: var(--primary);
	font-size: 22px;
	margin-bottom: 15px;
}

.feature-card p {
	color: var(--grey);
	margin-bottom: 0;
}

.feature-card:hover {
	border-color: var(--secondary);
	transform: translateY(-8px);
	box-shadow: 0 16px 32px rgba(10, 162, 162, 0.15);
}

/* Forms */
form {
	display: grid;
	gap: 20px;
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-light);
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

input,
select,
textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--input);
	border-radius: 8px;
	font-family: inherit;
	font-size: 16px;
}

textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
footer {
	background: var(--primary);
	color: var(--accent);
	padding: 50px 5% 20px;
	text-align: center;
	margin-top: 40px;
}

.footer-nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.footer-nav a:hover {
	color: var(--bg-light);
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-bottom: 30px;
}

.footer-social a {
	color:var(--accent);
	font-size: 24px;
	transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
	color: var(--bg-light);
	transform: translateY(-4px);
}

.footer-legal {
	font-size: 14px;
	border-top: 1px var(--dfooter);
	padding-top: 20px;
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

/* Hero Content & Slider Arrows */
#hero-section {
	position: relative;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 60px;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.15);
	color: var(--bg-light);
	border: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 24px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 10;
}

.slider-arrow:hover {
	background: var(--text-muted);
	border-color: var(--text-muted);
	color: var(--secondary);
	transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: 5%; }
.right-arrow { right: 5%; }

/* =========================================
   NEW: Pill-Button CTA Banner
========================================= */
.cta-banner-wrapper {
	padding: 80px 5%;
	width: 100%;
}

.new-cta-banner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background-color: var(--secondary); /* Main background maps to secondary */
	border-radius: 12px; /* Slight rounding like the image */
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 80px;
	box-sizing: border-box;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* The curved accent overlay on the right */
.new-cta-banner::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -15%;
	width: 40%;
	height: 200%;
	background-color: var(--accent); /* Curve maps to accent */
	border-radius: 50%;
	z-index: 1;
}

/* Left side text container */
.cta-text {
	position: relative;
	z-index: 2; /* Keeps text above the curve */
	max-width: 60%; 
}

.cta-text h2 {
	color: var(--text-muted); /* Maps to text-muted */
	font-size: clamp(28px, 4vw, 36px);
	line-height: 1.3;
	margin: 0 0 10px 0;
	font-weight: 700;
}

.cta-text p {
	color: var(--text-muted);
	font-size: 18px;
	margin: 0;
	opacity: 0.9;
}

/* Right side button container */
.cta-action {
	position: relative;
	z-index: 2; /* Keeps button above the curve */
	margin-left: 30px;
}

/* Pill-shaped button */
.new-cta-btn {
	display: inline-block;
	background-color: var(--accent);
	color: var(--primary); 
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 800;
	border-radius: 50px; /* Creates the pill shape */
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Pill-shaped button hover state */
.new-cta-btn:hover {
	background-color: var(--secondary); /* Changes background to secondary */
	color: var(--text-muted);           /* Changes text to muted */
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
/* Burger Button Styles (Hidden on Desktop) */
/* Only use this if you want a solid button instead of a transparent icon */
.burger-btn {
    display: none; 
    background: var(--accent);       /* Yellow background */
    color: var(--primary);           /* Dark icon color */
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;              /* Rounded corners to match your theme */
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.burger-btn:hover {
    background: var(--secondary);    /* Changes to blue on hover */
    color: var(--text-muted);        /* Icon changes to white */
    transform: translateY(-4px);     /* Upward float */
}
/* Mobile Responsiveness */
@media (max-width: 992px) {
	.new-cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 50px 30px;
		gap: 30px;
	}
	.cta-text {
		max-width: 100%;
	}
	.cta-action {
		margin-left: 0;
	}
	.new-cta-banner::after {
		/* Adjusts the curve to the bottom on small screens */
		top: auto;
		bottom: -150%;
		right: -50%;
		width: 200%;
		height: 200%;
	}
}
/* =========================================
   Image Collage (About Page)
========================================= */
.image-collage {
	display: flex;
	gap: 15px;
	/* height: 100%;  */
	/* min-height: 400px;
	max-height: 600px; */
	height: 400px;
	width: 100%;
}

.image-collage .img-main {
    flex: 1.2;
    display: flex; /* Makes the wrapper a flex container to handle the image properly */
    min-height: 0; /* CRITICAL: Stops the natural image size from expanding the grid */
}
.image-collage .img-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0; /* CRITICAL: Stops the stacked 1000px images from blowing up the container */
}

.image-collage .img-stack .collage-img {
    flex: 1; /* Tells the two images to share the vertical space evenly */

}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    min-height: 0; /* Safety catch for the images themselves */
}

.collage-img:hover {
	transform: scale(1.02);
}

/* Centered Services Row */
.service-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* Flex Row for 3 items */
.service-row-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.service-row-flex .service-box {
	flex: 1 1 250px;
	max-width: 300px; 
}

.service-box {
	background: var(--secondary); 
	padding: 40px 20px;
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); 
	display: flex;
	flex-direction: column;
	align-items: center; 
	text-align: center; 
	border-top: 4px solid var(--accent); 
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 32px rgba(48, 75, 112, 0.25); 
}

.service-box h3 {
	color: var(--bg-light);
	font-size: 22px;
	margin-bottom: 12px;
}

.service-box p {
	color:var(--input);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Contact Box */
.contact-box {
	background: var(--secondary);
	border-radius: 16px;
	padding: 60px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	border-top: 5px solid var(--accent);
}

.contact-intro {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 40px;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.contact-icon {
	background: var(--bg-light);
	color: var(--accent);
	font-size: 24px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-list strong {
	display: block;
	color: var(--accent);
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-list p {
	color: var(--bg-light);
	margin: 0;
	font-size: 16px;
}
/* =========================================
   Typography & Spacing Utilities
========================================= */
/* Replaces: style="font-size: 18px; color: var(--grey); margin-bottom: 20px;" */
.body-large {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 20px;
}

/* Specific text alignment overrides */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }

/* Margin utilities */
.mb-0 { margin-bottom: 0; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* =========================================
   Component Styles
========================================= */
/* Replaces the inline styles on the large centered container above service rows */
.section-intro-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Replaces the inline styles on FontAwesome icons inside feature cards */
.feature-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

/* Replaces: style="font-size: 18px; color: var(--grey); line-height: 2; margin-bottom: 20px; list-style-type: none; padding: 0;" */
.feature-list {
    font-size: 18px;
    color: var(--grey);
    line-height: 2;
    margin-bottom: 20px;
    list-style-type: none;
    padding: 0;
}

/* Replaces the inline styles on the checkmarks inside those lists */
.feature-list i {
    color: var(--accent);
    margin-right: 10px;
}

/* Replaces button inline sizing (e.g., style="padding: 10px 20px; font-size: 14px;") */
.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Replaces button inline sizing (e.g., style="padding: 16px 32px; font-size: 18px;") */
.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}
/* Animations */
.reveal-up { opacity: 0; transform: translateY(50px); transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.is-visible { opacity: 1; transform: translate(0) scale(1); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Utility Classes */
.pr-20 {
    padding-right: 20px;
}

.items-center {
    align-items: center;
}

.text-left {
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.service-row { grid-template-columns: repeat(2, 1fr); }
}


/* Unified Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header & General */
    header { 
        flex-direction: row; /* Keeps logo and button on the same line */
        flex-wrap: wrap;     /* Pushes the nav to the bottom when active */
        justify-content: space-between; 
        align-items: center;
        padding: 15px 5%; 
    }
	/* Show the burger icon */
    .burger-btn {
        display: block;
    }

    nav { 
        display: none; /* Hidden by default on mobile */
        width: 100%;
        flex-direction: column; 
        text-align: center;
        padding-top: 20px;
        padding-bottom: 10px;
        gap: 15px; 
        border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
        margin-top: 10px;
    }
    nav { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 12px; /* Shrinks the gap slightly so links fit better */
    }
	/* This makes the menu visible when the button is clicked */
    nav.active {
        display: flex;
    }
    
    /* Layout Adjustments */
    section { 
        padding: 50px 5%; /* Reduces massive desktop white space */
    }
    .pr-20 { 
        padding-right: 0; /* Removes the offset when columns stack */
    }
    .image-collage { 
        flex-direction: column; 
        height: auto; 
    }
    .img-main .collage-img, .collage-img { 
        height: 250px; 
    }

	.img-stack {
		display: none !important;
	}

    /* Hero & Typography Adjustments */
    .hero h1 {
        font-size: 28px; /* Scales down the title to fit smaller screens */
    }
    .hero p {
        font-size: 16px;
    }
    .slider-arrow {
        display: none; /* Hides arrows on phones so they don't block text */
    }
    
    /* Forms & Cards */
    .contact-box { 
        padding: 40px 20px; 
    }
    form { 
        padding: 25px 15px; /* Gives the text inputs wider breathing room */
    }
    
    /* Footer */
    .footer-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 40px auto;
        display: flex;
        flex-direction: column; /* Forces columns to stack uniformly */
        gap: 40px;
		justify-content: center;
		align-items: center;
        text-align:  center;
    }
    /* Centers the overall Connect With Us column */
    .footer-social-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Centers the phone and email links */
    .footer-contact-info {
        align-items: center;
    }

    /* Centers the social media icons */
    .footer-social-column .footer-social {
        justify-content: center; 
        padding-left: 0; 
    }

	.footer-links, .footer-nav-vertical {
		justify-content: center;
		align-items: center;
        text-align:  center;
	}
}   
/* =========================================
   Updated Multi-Column Footer
========================================= */
footer {
    background: var(--primary);
    color: var(--accent);
    padding: 60px 5% 20px;
    margin-top: 40px;
}

/* Container for the 3 columns */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    text-align: left; /* Overrides the previous center alignment */
    margin-bottom: 40px;
}

/* Left Column: Image and Paragraph */
.footer-left {
    flex: 1.5; /* Gives the text column slightly more room */
    min-width: 280px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Optional: Makes a dark logo white for the dark background */
	margin-left: -10px;
}

.footer-left p {
    line-height: 1.6;
    margin: 0;
	color:var(--footer)
}
/* Logo and Text Across the Bottom */
.footer-brand-bottom {
    max-width: 800px; /* Keeps the text from stretching too wide on huge screens */
    margin: 0 auto 30px auto;
    text-align: center;
    border-top: 1px solid var(--dfooter); /* Adds a subtle divider line above the logo */
    padding-top: 40px;
}

.footer-logo-bottom {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand-bottom p {
    color: var(--footer);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* Middle & Right Columns */
.footer-links,
.footer-social-column {
    flex: 1;
    min-width: 200px;
}

.footer-heading {
    color: var(--bg-light);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Vertical Links Formatting */
.footer-nav-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-vertical a {
    transition: color 0.3s ease, transform 0.3s ease; /* Adds the animation timing for the movement */
    width: fit-content; /* Ensures the hover effect only triggers when touching the actual text */
}

.footer-nav-vertical a:hover {
    color: var(--bg-light);
    transform: translateY(-4px); /* Pushes the text 4 pixels UP */
}

/* Contact Info in Footer */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px; 
}

.footer-contact-info a {
    color:var(--footer); 
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-contact-info a i {
    color: var(--accent); 
    font-size: 18px;
    width: 20px; 
    text-align: center;
}

.footer-contact-info a:hover {
    color: var(--bg-light);
}
/* Align social icons with the contact text above them */
.footer-social-column .footer-social {
    justify-content: flex-start;
    margin-bottom: 0;
    padding-left: 30px; 
}

/* =========================================
   Moving Brand Logos Banner
========================================= */
.brand-banner-wrapper {
    background-color: var(--bg-grey); /* Keeps the background white */
    padding: 20px 0;
    overflow: hidden; /* Hides logos that have moved off-screen */
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.brand-banner-track {
    display: inline-flex;
    align-items: center;
    width: max-content;
    
    /* The Animation: 20 seconds, continuous speed, infinite loop */
    animation: scroll-left-to-right 20s linear infinite;
}


.brand-banner-track img {
    height: 50px; /* Adjust this to make your logos larger or smaller */
    width: auto;
	margin-right: 80px;
    object-fit: contain;
    filter: grayscale(100%); /* Makes logos grey for a clean, uniform look */
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Restores full color when hovering over a logo */
.brand-banner-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Keyframes to drive the left-to-right movement */
@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%); /* Starts pushed to the left */
    }
    100% {
        transform: translateX(0); /* Ends fully to the right, then snaps back seamlessly */
    }
}