/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and General Styles */
body {
    font-family: 'Arial, sans-serif';
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    margin: 0 auto;
}

/* Header and Navigation */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

header .logo img:hover {
    transform: scale(1.1);
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
}

header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Banner */
.banner {
    background-image: linear-gradient(to top, #ffecd2 0%, #000000 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner .content {
    z-index: 1;
    max-width: 1500px; 
    text-align: center; 
    margin: 0 auto;
}

.banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.5rem; /* Make the text larger */
    line-height: 2;
    color: #D3B26B; /* Change text color to something lighter */
    font-weight: bold; /* Bold the text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle shadow for emphasis */
    max-width: 2000px;
    margin: 20px auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2); /* Add a subtle background highlight */
    border-radius: 10px; /* Slightly round the corners */
    text-align: center; /* Ensure the text is centered */
}


.large-logo {
    width: 600px;
    display: block;
    margin: 0 auto 40px;
}

/* About Us Section */
#about {
    background-image: linear-gradient(to bottom, #ffecd2 0%, #000000 100%);  /* Set background to black */
    color: #D3B26B;  /* Set text color to the gold-like shade */
    padding: 2rem 0;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fading the image */
}

#about .container {
    position: relative;
    z-index: 1;
    max-width: 90%;  /* Set the width to 90% of the viewport */
    margin: 0 auto;  /* Center the content */
    padding-left: 20px;  /* Add some padding if needed */
    padding-right: 20px; /* Add some padding if needed */
}

#about h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #D3B26B; /* Gold for the heading */
    margin-bottom: 20px
}

#about p, #about ul {
    font-size: 1.7rem;
    font-weight: bold;
    color: #D3B26B;  /* Gold for the paragraph and list items */
    margin-bottom: 30px; /* Increased margin for paragraph separation */
    line-height: 1.6; /* Add spacing between lines */
}

#about ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 30px;
}

#about ul li {
    line-height: 1.6;
    color: #D3B26B;  /* Gold color for the list items */
}

#about p strong {
    color: #F0C674; /* Slightly different shade of gold for highlights */
    font-weight: bold; /* Highlight important terms */
}

/* Section */
.section {
    padding: 4rem 0;
}

.section .container {
    max-width: 1200px;
}

/* Services Section */
#services {
    background-image: linear-gradient(to top, #ffecd2 40%, #000000 100%);  /* Set background to black */
    color: #D3B26B;  /* Set text color to the gold-like shade */
    padding: 2rem 0;
    position: relative;
}

#services h2 {
    color: #D3B26B;  /* Use the gold color for the heading */
    text-align: center;
    margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.service-item {
    flex: 1 1 calc(25% - 20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 25%;  /* Ensure items don't stretch too much */
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-item p {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background:  rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

#experience {
    background-image: linear-gradient(to bottom, #ffecd2 100%, #000000 0%);  /* Set background to black */
    color: #000000;  /* Set text color to the gold-like shade */
    padding: 2rem 0;
    position: relative;
}

#experience h2 {
    color: #000000;  /* Use the gold color for the heading */
    text-align: center;
    font-size: 2.8rem; 
    font-weight: bold;
    margin-bottom: 20px;
}

#experience p {
    font-size: 1.8rem;  /* Increase the paragraph font size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));  /* Adjust the grid layout */
    gap: 50px;  /* Spacing between logos */
    justify-items: center;
    padding: 20px 20px;
    border: 0px solid #D3B26B;  /* Border around the grid */
}

.logo-item {
    width: 100%;  /* Ensure logos take full width of grid cells */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #D3B26B;  /* Add a border around each logo */
    padding: 30px;
    background-color: #fff;  /* White background behind logos */
}

.logo-item img {
    max-width: 180px;  /* Increase logo size */
    height: auto;  /* Maintain aspect ratio */
    object-fit: contain;
}

.logo-item img:hover {
    filter: none;  /* Remove grayscale on hover */
}

/* Additional Companies Section */
.additional-companies {
    text-align: center;
    margin-top: 30px;
    font-size: 1.4rem;
    color: #000000;
}

.additional-companies ul {
    list-style-type: none;
    padding: 0;
}

.additional-companies li {
    margin: 10px 0;
}

/* Experience Description */
#experience p:last-of-type {
    font-size: 1.8rem;  /* Increase the paragraph font size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

/* Certifications & Brand Approvals Section */
#certifications {
    background-image: linear-gradient(to bottom, #ffecd2 0%, #000000 10%);  /* Match the theme */
    padding: 4rem 0;
    color: #D3B26B;
    text-align: center;
}

#certifications h2 {
    color: #D3B26B;  /* Use the gold color for the heading */
    text-align: center;
    font-size: 2.8rem; 
    font-weight: bold;
    margin-bottom: 20px;
}

#certifications p {
    color: #D3B26B;
    font-size: 1.8rem;  /* Increase the paragraph font size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.certification-list {
    list-style-type: none;  /* Remove default bullet points */
    padding: 0;
    font-size: 1.4rem;  /* Larger font size */
}

.certification-list li {
    margin: 15px 0;  /* Spacing between list items */
    color: #D3B26B;
}

/* Logos Grid Section for Certifications & Approvals */
#certifications .logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#certifications .logo-item {
    flex: 1 1 calc(25% - 20px);  /* 4 items per row */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 10px;
    border: 1px solid #D3B26B;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#certifications .logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Contact Us Section */
#contact {
    background-color: #ffecd2;
    padding: 3rem 0;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

#contact p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
}

#contact .contact-info {
    list-style: none;
    padding: 0;
    font-size: 1.25rem;
    color: #333;
}

#contact .contact-info li {
    margin-bottom: 10px;
}

#contact .contact-info a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

#contact .contact-info a:hover {
    color: #D3B26B;  /* Same gold-like color as in the rest of the site */
}



/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer .social-media {
    list-style: none;
    display: flex;
}

footer .social-media li {
    margin: 0 10px;
}

footer .social-media li a img {
    width: 24px;
    height: 24px;
}

footer .contact-info {
    text-align: left;
    margin-top: 1rem;
}
