/* Reset margins and paddings to remove extra spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}


#home {
    display: flex;
    justify-content: center;
    min-height: 80vh; /* Adjust height for full screen */
    position: relative;
    color: white;
    text-align: center;
    width: 100%; /* Ensure home section spans full width */
    /* Background Image */
    background: linear-gradient(to right, rgba(36, 53, 88, 0.8), rgba(0, 0, 0, 0.6)), 
                url('images/woman3.webp') no-repeat ;
    background-size: cover; /* Cover full width and height */
    background-position: center ; /* Keep image aligned to the right */
   
    justify-content: center;  /* Centers horizontally */
    align-items: flex-end;    /* Pushes content to the bottom */
   
}

.home-container {
   
    text-align: center;
    max-width: 100%; /* Ensure it takes full width of the screen */
  
   
    
    
}


.home-title {
    padding-top: 80px;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 20px;
 
}

.home-description {
    font-size: 18px;
    margin-bottom: 40px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    width: 300px;
}

.products-button {
    background-color: #243558; /* Blue background for 'OUR PRODUCTS' */
    color: white;
    border: 2px solid white;
}

.contact-button {
    background-color: #f8c628; /* Golden background for 'CONTACT US' */
    color: white;
    border: 2px solid #f8c628;
}

@media (max-width: 768px) {
    .home-title {
        font-size: 24px;
    }
    .home-description {
        font-size: 16px;
    }
    .button-container {
        flex-direction: column;
        gap: 15px;
        padding-left: 20px;
    }
    #home {
       background-size: cover;
       min-height: 40vh;
    }
}
#about {
    padding: 60px 20px;
    text-align: center;
  
}

#about h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0D3B66;
}

#about p {
    font-size: 18px;
    margin-bottom: 40px;
}

#about h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #0D3B66;
}

.about-info-container {
    display: flex;

    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0D3B66;
    height: 500px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.about-image img {
    width: 100%;
    max-width: 700px; /* Adjust max width */
    height: 500px;
}
.about-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
  
    height: 400px;
    width: 400px;
}

.about-text{
    text-align: left;
   
}
.about-item {
    display: flex;
    align-items: center;
    
    background: transparent;
    padding: 10px;
    border-radius: 10px;
    text-align: left;
}

.about-item .icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.about-item h4 {
    font-size: 18px;
    margin-bottom: 5px; /* Reduced margin between title and description */
    color: white;
}

.about-item p {
    font-size: 12px;
    color: white;
    margin-top: 0; /* Remove any top margin if present */
}

@media (max-width: 768px) {
    .about-info-container {
        flex-direction: column; /* Stack items vertically */
        height: auto; /* Allow dynamic height */
       
    }

    .about-image {
        order: -1; /* Ensures the image appears on top */
        width: 100%;
       
        justify-content: center;
        max-width: 700px; /* Adjust max width */
    }

    .about-image img {
        width: 100%;
        height: 300px; /* Maintain aspect ratio */
        max-height: 400px; /* Prevents overly large images */
        object-fit: cover;
    }

    .about-text-container {
        width: 100%; /* Full width */
        height: auto;
        text-align: center; /* Center align text */
        padding: 20px 10px;
    }

    .about-item {
        flex-direction: row; /* Keep icon beside the text */
        text-align: left;
        align-items: center;
        padding: 10px;
    }

    .about-item .icon {
        width: 40px;
        height: 40px;
        margin-right: 15px; /* Maintain space between icon and text */
    }
}

/* Products Section */
#products {
    background-color: #E6F4FB; /* Light grey-blue */
    padding: 80px 10px;
    text-align: center;

}

.products-description {
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Product Containers */
.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Individual Product Item */
.product-item {
    background-color: #D2E9FA; /* Light blue default */
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Alternating Background Colors */
.light-blue {
    background-color: #D2E9FA; /* Light Blue */
}

.light-orange {
    background-color: #FEE8C8; /* Light Orange */
}

/* Product Image Container */
.product-image-container {
    width: 100%;
    height: 260px;
   
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    
}

.product-image-container img {
    width: 100%;
    height: 260px;
    border-radius: 10px;
}

/* Title and Arrow */
.product-item h3 {
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product-item h3 span {
    font-size: 22px;
    color: #0D3B66;
}

/* Product Description */
.product-item p {
    margin-top: 1rem;
    font-size: 14px;
    color: #555;
    text-align: left;
}

/* Requirements Section (Initially Hidden) */
.requirements {
    display: block;
    margin-top: 20px;
    text-align: left;
}

.requirements h4 {
    font-size: 16px;
    color: #0D3B66;
    margin-bottom: 5px;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.requirements li::before {
    content: "✔";
    color: orange;
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

@media (max-width: 480px) {
    .products-container {
        grid-template-columns: repeat(1, 1fr); /* 1 per row */
    }
}
/* FAQ Section Container */
#faq-container {
    background-color: #E6F4FB; /* Light blue background */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 20px auto;
}

/* FAQ Title */
#faq-container h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Individual FAQ Item */
.faq-item {
    background: #0D3B66;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Question Styling */
.faq-question {
     display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    color: #FFD700;
    transition: background 0.3s ease;
    
}


/* Plus and Minus Icons */
.icon {
    font-size: 20px;
    font-weight: bold;
}

/* Answer Styling */
.faq-answer {
     display: block;
    padding: 15px;
    border-top: 1px solid #ccc;
    background: #0D3B66;
    color: white;
}
.faq-contact {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-contact h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-contact p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    background: #0D3B66; /* Blue button */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.contact-btn:hover {
    background: #0A2A4E;
}
/* Contact Section */
#contact-container {
    background-color: #0D3B66; /* Darker blue */
    color: white;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    margin: 0; /* Remove any margin */
    padding: 40px 0; /* Remove side padding to align fully */
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Horizontal Line */
hr {
    border: 0;
    height: 1px;
    background: white;
    width: 80%;
    margin: 20px auto;
}
.head1{
    color: #FFD700;
}
/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left; /* Ensures text starts on the same line */
    gap: 5px;
    margin-left: 70px;
}

.contact-item {
    display: flex;
    align-items: left; /* Aligns icon and text on the same line */
    justify-content: left; /* Centers the items horizontally */
  
    width: fit-content;
}

.contact-info p {
    
    text-align: left;
    gap: 5px;
    font-size: 16px;
  
}
.contact-info p img{
    margin-right: 10px;
}
.contact-info img {
    width: 20px;
    height: 20px;
}

/* Email Link */
.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.head{
    padding-top: 20px;
    color: #FFD700;
}
.contact-form input,
.contact-form textarea {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

/* Send Button */
.contact-form button {
    background: linear-gradient(45deg, #FFD700, #FFC107); /* Golden gradient */
    color: white; /* Dark blue text */
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

/* Hover Effect */
.contact-form button:hover {
    background: linear-gradient(45deg, #FFC107, #FFD700); /* Reverse gradient */
    transform: scale(1.05);
}

/* 📌 Responsive Adjustments */
@media (max-width: 768px) {
    #contact-container {
        padding: 30px 15px;
    }

    .social-icons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .social-icons img {
        width: 35px;
        height: 35px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }

    .contact-info p {
        font-size: 13px;
        flex-direction: column;
        text-align: center;
    }

    .contact-info img {
        width: 18px;
        height: 18px;
    }
    .contact-info{
        margin-left: 40px;
        margin-right: 40px;
    }
    .contact-form input,
    .contact-form textarea {
        width: 80%;
    }

    .contact-form button {
        width: 50%;
    }
}
footer {
    margin: 0;
    padding: 20px;
    background: #162a3d;
    color: white;
}
#contact{
    background-color: #0D3B66; /* Light grey-blue */
    
}
.head1{
    color: #FFD700;
}
