:root {
    /* Header/Footer Light Beige */
    --primary-red: #F4F1DE;    /* Light Beige */
    
    /* Alternative shades to consider: */
    /* --primary-red: #EAE7D6; */  /* Slightly darker beige */
    /* --primary-red: #F7F4E3; */  /* Slightly lighter beige */
    
    --accent-red: #ff4444;     /* Keeping accent red */
    
    /* Black Background */
    --dark-bg: #232323;        /* Lighter rich black */
    --card-bg: #2d2d2d;        /* Slightly lighter for cards */
    
    /* Alternative background options: */
    /* --dark-bg: #202020; */  /* Slightly darker */
    /* --dark-bg: #262626; */  /* Even lighter */
    /* --dark-bg: #282828; */  /* Spotify dark */
    /* --dark-bg: #2a2a2a; */  /* Lightest option */
    
    --text-dark: #202124;      /* Dark text for light header */
    --text-white: #FFFFFF;     /* White text for dark areas */
    --border-color: rgba(255, 255, 255, 0.12);  /* Light borders */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-dark);
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
}

header {
    background-color: #F4F1DE; /* Ensure background color is set */
    position: fixed; /* Make the header fixed */
    top: 0; /* Position it at the top */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
    z-index: 1000; /* Ensure it stays above other content */
    padding: 0.5rem 2rem; /* Reduce padding for a slimmer header */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.header-content {
    display: flex;
    align-items: center; /* Align items vertically centered */
    justify-content: space-between; /* Space between logo and nav */
    max-width: 1200px; /* Optional: Set a max width for the header */
    margin: 0 auto; /* Center the header */
}

.logo-container {
    display: flex;
    align-items: center; /* Align logo and tagline vertically centered */
}

.logo {
    width: 180px;  /* Adjusted for new logo */
    height: auto;
}

.header-text {
    flex-grow: 1;
}

.tagline {
    font-size: 1rem; /* Adjust font size as needed */
    color: #333; /* Set text color */
    margin-left: 1rem; /* Space between logo and tagline */
    margin-bottom: 20px; /* Add space below the tagline */
    text-align: left; /* Align text to the left */
}

h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.01em;
    font-weight: 600;
}

h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 600;
}

/* Services Section */
#services {
    padding: 2.5rem 2rem;
    margin-top: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 68, 68, 0.2);
    border-color: var(--accent-red);
}

.service-card i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-red);
}

.service-card h3 {
    color: #FFFFFF;  /* White text for headings */
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-red);
}

/* Optional: Add subtle background glow effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.service-card:hover::after {
    width: 200%;
    height: 200%;
}

/* Ensure content stays above the glow effect */
.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #CCCCCC;
}

/* Why Choose Us Section */
#why-choose-us,
#contact {
    padding: 2.5rem 2rem; /* Match padding to Our Services */
    max-width: 1200px; /* Optional: Set a max width for consistency */
    margin: 0 auto; /* Center the sections */
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust to fit 3 tiles per row */
    gap: 1rem; /* Space between tiles */
    margin: 0 auto; /* Center the grid */
    max-width: 1200px; /* Optional: Set a max width for the grid */
}

.feature-card {
    background-color: #FFFFFF; /* Set to the desired background color */
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    padding: 1.5rem; /* Padding inside the tile */
    text-align: center; /* Center text */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.feature-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.feature-card i {
    font-size: 2rem; /* Icon size */
    color: var(--accent-red); /* Icon color */
    margin-bottom: 0.5rem; /* Space between icon and text */
}

.feature-card h3 {
    margin: 0.5rem 0; /* Space around heading */
    font-size: 1.2rem; /* Heading size */
}

.feature-card p {
    font-size: 0.9rem; /* Description size */
    color: #CCCCCC; /* Description color */
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

footer {
    background-color: var(--primary-red);
    text-align: center;
    padding: 1rem;
    width: 100%;
}

/* About Us Section */
#about-us {
    padding: 2rem 2rem;
    margin-bottom: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.about-content > p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    text-align: justify;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    letter-spacing: normal;
}

.about-content > p:last-of-type {
    margin-bottom: 2rem;
}

.about-highlights {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight i {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.highlight h4 {
    color: #FFFFFF;  /* White text for headings */
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #CCCCCC;
    font-family: 'Arial', sans-serif;
    letter-spacing: normal;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-content > p {
        font-size: 1rem;
    }
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        grid-width: 1fr;
    }
}

/* Common section styles */
.section-container {
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .logo {
        width: 150px;
    }
}

/* Update card text colors for dark theme */
.service-card h3,
.highlight h4 {
    color: #FFFFFF;  /* White text for headings */
}

.contact-grid {
    display: flex;
    justify-content: space-between; /* Space between the two cards */
    margin-top: 2rem; /* Margin for the section */
}

.contact-card {
    background-color: #2d2d2d; /* Match tile color to Our Services */
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    padding: 1.5rem; /* Padding inside the card */
    text-align: center; /* Center text */
    color: #CCCCCC;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    flex: 1; /* Allow cards to grow equally */
    margin: 0 1rem; /* Margin between cards */
}

.contact-info {
    display: flex;
    flex-direction: column; /* Stack address lines vertically */
    margin-top: 1rem; /* Space above the address */
    padding-left: 0; /* Remove indentation for left alignment */
    text-align: left; /* Ensure text is left-aligned */
}

.contact-info p {
    margin: 0; /* Remove default margin */
    padding-left: 175px; /* Add 10px padding to the left */
    color: #CCCCCC; /* Optional: Set text color */
}

.contact-buttons {
    display: flex;
    gap: 0.5rem; /* Space between buttons */
    justify-content: center; /* Center buttons */
}

/* Why Choose Us Tiles */
.features-grid .feature-card {
    background-color: #2d2d2d; /* Ensure this is applied */
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    padding: 1.5rem; /* Padding inside the tile */
    text-align: center; /* Center text */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s; /* Smooth transition for hover effect */
    color: #FFFFFF;
}



.main-nav {
    margin-left: auto; /* Push the nav to the right */
}

.main-nav ul {
    list-style: none; /* Remove default list styling */
    display: flex; /* Display links in a row */
    gap: 2rem; /* Space between links */
}

.main-nav a {
    text-decoration: none; /* Remove underline from links */
    color: #333; /* Set link color */
    font-weight: bold; /* Optional: Make links bold */
}

.main-nav a:hover {
    color: var(--accent-red); /* Change color on hover */
}

.address {
    display: flex; /* Use flexbox for better responsiveness */
    flex-direction: column; /* Stack address lines vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove padding */
    font-size: 0.9rem; /* Adjust font size for better readability */
    line-height: 1.5; /* Improve line spacing */
}

.address p {
    margin: 0; /* Remove margin from paragraphs */
}