/* CSS Variables for consistent theming */
:root {
    --primary-color: #4E76B4;
    --primary-dark: #013E89;
    --secondary-color: #e63946;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #808080;
    --text-color: #333;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body with background image */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
    padding-top: 90px; /* Add this line - adjust based on your header height */
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/index-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Adjust opacity as needed (0.1 = 10%) */
    z-index: -1; /* Place behind all content */
}

/* Content overlay for background image */
.content-overlay {
    position: fixed;
    top: 90px; /* Start below header */
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    z-index: -1; /* Behind content but above background images */
}

h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header Styles */
.main-header {
    background-color: orange; /* For browsers that do not support gradients */
    background-image: linear-gradient(to left, rgba(252,176,69,69), rgba(252,200,69,1), rgba(252,176,69,69));   
    box-shadow: var(--box-shadow);
    position: fixed; /* Changed from sticky to fixed */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2; /* Ensure content stays above bouncing balls */
}

/* Logo and Company Name */
.logo-name-container {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3; /* Higher than bouncing balls */
}

.header-logo {
    width: 86px;
    height: 79px;
    flex-shrink: 0;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    white-space: nowrap;
}

/* Main Navigation */
.main-nav {
    display: flex;
    margin-left: auto; /* Push nav to the right */
    z-index: 3; /* Higher than bouncing balls */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Bouncing Balls Container */
.bouncing-balls-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Between background and content */
}

.nav-list a {
    font-size: 1.1rem; /* Increased font size */
    font-weight: 600;
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list .active a::after {
    width: 100%;
}


/* Additional styles for icon spacing and colors */
.nav-list a i {
	margin-right: 8px;
	color: var(--primary-color);
	width: 20px;
	text-align: center;
}

/* Main Layout */
.main-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 1rem;
    padding: 2rem 0.5rem; /* Reduced horizontal padding */
    margin-top: 0;
    max-width: 100%; /* Ensure it uses full width */
}

.content {
    padding: 0 0.5rem; /* Reduced horizontal padding */
	margin-left: 0; /* Remove left margin */
    margin-right: 0.5rem; /* Small margin from right edge */
}

.sidebar {
    background-color: var(--light-color);
    padding: 1.5rem 0.75rem; /* Reduced horizontal padding */
    border-radius: var(--border-radius);
    align-self: start;
    position: sticky;
    top: 100px;
    margin-left: 0.5rem; /* Small margin from left edge */
	margin-right: 0; /* Remove right margin */
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.offer-list {
    list-style: none;
}

.offer-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.offer-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.news-item {
    margin-bottom: 1rem;
}

.news-date {
    font-weight: bold;
    color: var(--gray-color);
    display: block;
    margin-bottom: 0.3rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Hero Section Styles */
.hero-section {
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.profile-section,
.vision-section {
    margin-bottom: 3rem;
}

.profile-section h2,
.vision-section h2 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-content,
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.profile-text,
.vision-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-image img,
.vision-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Updated Footer Styles */
.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    font-size: 1.2rem;
}

.footer-section p, 
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.4; /* Tighter line height */	
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.4; /* Tighter line height */
}

.footer-section i {
    margin-right: 0.8rem;
    width: 1.2rem;
    text-align: center;
    color: var(--primary-color);
}

/* Update the contact info styles */
.contact-info address p {
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevent text wrapping */
    margin-bottom: 0.5rem;
}

.contact-info address p i {
    margin-right: 0.5rem;
    flex-shrink: 0;
    width: 1.2rem; /* Fixed width for perfect alignment */
    text-align: center;
}

/* Make the email link break naturally if needed */
.contact-info address p a {
    white-space: normal;
    word-break: break-all; /* Allow email to break at any character if needed */
}

/* Specific adjustments for company address */
.company-address {
    min-width: 320px; /* Increased minimum width */
}

.company-address address p {
    margin-bottom: 0.5rem; /* Reduced line spacing */
    line-height: 1.4; /* Tighter line height */
}

/* Indentation for address lines */
.company-address address p:not(:first-child) {
    padding-left: 3.5rem; /* Added indentation */
    text-indent: -1.5rem; /* Hanging indent */
}

.company-address address p:first-child {
    margin-bottom: 0.75rem; /* Slightly more space after company name */
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    grid-column: 1 / -1; /* Span all columns */
    margin-top: 1rem; /* Added margin */    margin-top: 1rem; /* Added margin */
}


/* Animation for vision text */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.vision-text p {
    animation: fadeIn 0.5s ease forwards;
}

.vision-text p:nth-child(1) { animation-delay: 0.1s; }
.vision-text p:nth-child(2) { animation-delay: 0.3s; }
.vision-text p:nth-child(3) { animation-delay: 0.5s; }


/* profile.html */

/* Company Profile Specific Styles */
.company-profile {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.profile-section {
    margin-bottom: 2rem;
}

.profile-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
}

.signature {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.signature .company-name {
    font-weight: bold;
    margin: 0.5rem 0;
}






/* offers.html */

/* Offers Page Specific Styles */
.intro-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.intro-section .tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-category {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.offer-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.offer-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.offer-list {
    list-style: none;
    margin: 1rem 0;
    flex-grow: 1;
}

.offer-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.offer-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.offer-category .btn {
    align-self: flex-start;
    margin-top: auto;
}



/* events.html */

/* Events Page Specific Styles */
.events-intro {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.events-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.events-category i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.events-category h3 {
    margin: 0;
    color: var(--primary-color);
}

.events-list {
    display: grid;
    gap: 1.5rem;
}

.event-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.event-header h4 {
    margin: 0;
    color: var(--dark-color);
    flex: 1;
}

.event-type {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 1rem;
}

.event-description {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.events-contact {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.events-contact a {
    font-weight: 600;
}





/* contacts.html */

/* Contacts Page Specific Styles */
.contact-intro {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.contact-methods.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}




.contact-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-details h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p, 
.contact-details address {
    margin: 0.3rem 0;
    font-style: normal;
}

/* Professional Form Styling */
.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-color);
    font-size: 1rem;
}

.professional-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.required {
    color: var(--secondary-color);
}

.input-with-icon, .textarea-with-icon {
    position: relative;
}

.input-with-icon i, .textarea-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
}

.textarea-with-icon i {
    top: 20px;
    transform: none;
}

.input-with-icon input, 
.textarea-with-icon textarea {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.input-with-icon input:focus, 
.textarea-with-icon textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 118, 180, 0.2);
    outline: none;
    background-color: white;
}

.textarea-with-icon textarea {
    min-height: 150px;
    resize: vertical;
}

.recaptcha-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.form-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 118, 180, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

.privacy-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-color);
    justify-content: center;
}

.privacy-notice i {
    color: var(--primary-color);
}

/* Error States */
.error-message {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1rem;
}

.input-with-icon input.error, 
.textarea-with-icon textarea.error {
    border-color: var(--secondary-color);
}

/* Form Status Messages */
#form-status {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

#form-status.success {
    background-color: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

#form-status.error {
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* Loading State */
.form-loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    z-index: 10;
    border-radius: 12px;
}

.form-loading .btn-primary {
    position: relative;
}

.form-loading .btn-primary::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



.error-message {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1rem;
}

/* Additional security-related styles */
.hp-field {
	opacity: 0;
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}
#form-status {
	margin-top: 1rem;
	padding: 0.8rem;
	border-radius: var(--border-radius);
	font-weight: 500;
}
#form-status.success {
	background-color: rgba(46, 125, 50, 0.15);
	color: #2e7d32;
	border: 1px solid rgba(46, 125, 50, 0.3);
}
#form-status.error {
	background-color: rgba(211, 47, 47, 0.15);
	color: var(--secondary-color);
	border: 1px solid rgba(211, 47, 47, 0.3);
}
.form-loading {
	position: relative;
	pointer-events: none;
}
.form-loading::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.7);
	z-index: 10;
}

.btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

#submit-btn i {
    margin-left: 5px;
}

.map-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.google-map {
    height: 400px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 1rem;
    background: #f5f5f5; /* Fallback color */
    position: relative;
}

.google-map::before {
    content: "Loading Map...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}




/* solutions.html */

/* Solutions Page Specific Styles */
.solution-intro-list li {
    margin-top: 10px;
    margin-bottom: 10px;
    list-style-type: none;
    padding-left: 1.5rem;
}

.solution-intro-list i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-category {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
}

.solution-category h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.solution-list {
    list-style: none;
}

.solution-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
}

.solution-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.solution-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.solution-list a:hover {
    color: var(--primary-dark);
}

.solution-list i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.page-description {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.intro-section {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}



/* Promotion-xxx.html */

/* Promotion Page Specific Styles */
.promotion-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.promotion-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.promotion-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.promotion-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promotion-image {
    text-align: center;
    margin-bottom: 2rem;
}

.promotion-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.promotion-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promotion-highlights {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.promotion-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promotion-highlights ul {
    list-style: none;
    padding-left: 1.5rem;
}

.promotion-highlights li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.promotion-highlights li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.promotion-cta {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0;
    text-align: center;
}

.promotion-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.key-features {
	background-color: var(--light-color);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	margin-bottom: 2rem;
}

.key-features h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.key-features h3 i {
	color: var(--primary-color);
}

.key-features li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-methods {
    margin: 1.5rem 0;
}

.contact-methods p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.current-promotion a {
    font-weight: bold;
    color: var(--primary-dark);
}



.promotion-image img {
    min-height: 300px; /* Prevent layout shift */
    background-color: #f5f5f5; /* Fallback color */
    font-size: 0; /* Hide alt text if image is large */
}

.promotion-image img:after {
    content: "Promotion Image (Failed to load)";
    display: block;
    font-size: 16px;
    color: #999;
    text-align: center;
    padding: 20px;
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 1.5rem 0;
    transform: scale(0.9);
    transform-origin: left top;
}

/* Error message styling for reCAPTCHA */
#captcha-error {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    min-height: 1rem;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
	margin-left: auto; /* Push toggle button to the right */
}

/* Responsive Design */
@media (max-width: 992px) {
    .company-name {
        font-size: 1.3rem;
    }
	
    .main-container {
        grid-template-columns: 1fr;
        padding: 1rem 0.5rem; /* Consistent reduced padding */
    }
    
    .sidebar {
        position: static;
        order: 2;
        margin: 0 0.5rem; /* Small margins on both sides */
		padding: 1.5rem 0.75rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .content {
        margin: 0 0.5rem; /* Small margins on both sides */
    }
    
    .profile-content,
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .profile-image,
    .vision-image {
        order: -1;
    }
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .promotion-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .promotion-details {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Smaller padding for mobile */
    }

    .branding h1 {
        font-size: 1.2rem;
    }

    .company-name {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 70px; /* Adjusted to match mobile header height */
        right: 0.5rem; /* Align to right side */
        left: auto; /* Override left: 0 */
        width: auto; /* Let content determine width */
        min-width: 120px; /* Minimum width */
        background-color: white;
        flex-direction: column;
        align-items: flex-start; /* Align items to start (left) */
        padding: 0.25rem 0; /* Reduced padding */
        box-shadow: var(--box-shadow);
        transform: translateX(80%); /* Slide in from right */
        transition: transform 0.3s ease;
        border-radius: var(--border-radius);
    }
    
    .nav-list[data-visible="true"] {
        transform: translateX(0);
    }
    
    .nav-list li {
        width: 100%;
        text-align: left; /* Align text to left */
    }
    
    .nav-list a {
        display: block;
        padding: 0.25rem 0.75rem; /* Tighter padding */
        justify-content: flex-start;
    }
    
    /* Adjust icon spacing */
    .nav-list a i {
        margin-right: 0.5rem; /* Slightly reduced */
        width: 18px; /* Slightly smaller */
    }
    
    /* If you have any other elements that might collide with the fixed header */
    .sidebar {
        top: 70px; /* Adjust sticky sidebar position */
    }	
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem; /* Smaller gap on mobile */		
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .company-address {
        min-width: auto;
    }
    
    .company-address address p:not(:first-child) {
        padding-left: 1.8rem; /* Slightly larger indent on mobile */
        text-indent: -1.8rem;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
    }

    .hero-section {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
	
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        order: -1;
    }

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

    .event-header {
        flex-direction: column;
    }
    
    .event-type {
        margin: 0.5rem 0 0 0;
        align-self: flex-start;
    }


    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-methods.three-columns {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .recaptcha-container {
        transform: scale(0.9);
        transform-origin: center top;
    }

    .g-recaptcha {
        transform: scale(0.85);
    }
	
    .google-map {
        height: 300px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-category {
        padding: 1rem;
    }	
}


@media (max-width: 480px) {
    .logo-name-container {
        gap: 8px;
    }
    
    .header-logo {
        width: 60px;
        height: 55px;
    }
    
    .company-name {
        font-size: 0.9rem;
    }

    .main-container {
        padding: 1rem 0.25rem; /* Even smaller padding */
    }
    
    .sidebar, .content {
        margin: 0 0.25rem; /* Smaller margins */
        padding: 1rem 0.5rem; /* Adjusted padding */
    }
}
