/* General Styling */

html, body {
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Body styling */
body {
    background-image: url('images/background1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    width: 100%; /* Ensure full width */
    display: flex;
    flex-direction: column; /* Make sure elements stack vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: stretch; /* Stretch items to the full width */
}

/* Hero Section */
#hero {
    position: relative;
    height: auto;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    padding: 40px;
    text-align: center;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    transform: skewY(-3deg);
    transform-origin: 100%;
}

.hero-content h1 {
    color: #00a2c2;
    font-size: 2.5rem;
    margin-bottom: 1px;
    font-weight: bold;
}

.hero-content h2 {
    color: #00a2c2;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    color: #a3a3a3;
    font-size: 1.1rem; /* Slightly increased font size */
    line-height: 1.8; /* Increased line height for better readability */
    max-width: 1100px; /* Increased max-width to expand the area */
    margin: 0 auto;
    padding: 20px 0; /* Added vertical padding */
    word-spacing: 2px; /* Increased spacing between words */
    letter-spacing: 0.5px; /* Slight increase in letter spacing */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    body {
        background-attachment: scroll; /* Disable fixed background for better scaling */
        height: auto; /* Allow the body to adjust its height dynamically */
    }
    .hero-image {
        height: 400px; /* Adjust image height for medium screens */
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content h2 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: 0.95rem; /* Slightly smaller text */
        padding: 10px; /* Reduced padding */
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll; /* Disable fixed background for better scaling */
        height: auto; /* Allow the body to adjust its height dynamically */
    }
    .hero-image {
        height: 300px; /* Adjust image height for smaller screens */
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content h2 {
        font-size: 1.4rem;
    }
    .hero-content p {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 200px; /* Adjust image height for very small screens */
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content h2 {
        font-size: 1.2rem;
    }
    .hero-content p {
        font-size: 0.85rem;
    }
    body {
        background-attachment: scroll; /* Disable fixed background for better scaling */
        height: auto; /* Allow the body to adjust its height dynamically */
    }
}

/* Testimonials */

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 15px; /* Increased padding for more internal space */
    margin-bottom: 20px; /* Increased margin for more space between cards */
    width: 100%; /* Ensure the card takes the full width of the container */
    max-width: 600px; /* Set a max-width for the card */
    height: auto; /* Allow the height to adjust dynamically */
    box-sizing: border-box; /* Include padding in width and height calculation */
}

.testimonial-image {
    width: 120px; /* Adjusted width */
    height: 120px; /* Adjusted height */
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px; /* Increased margin for spacing */
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 15px; /* Increased margin for more space */
    font-size: 1.1rem; /* Increased font size */
    line-height: 1.5; /* Increased line height for better readability */
    font-weight: bold;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    color: #00a2c2;
    font-weight: bold;
    font-size: 1rem; /* Adjusted font size */
    display: flex;
    align-items: center;
}

/* Line before author name */
.author-name::before {
    content: ''; /* Create the line */
    display: inline-block; /* Keep it inline to align with text */
    width: 25px; /* Increased width of the line */
    height: 3px; /* Increased height of the line */
    background-color: #00a2c2;
    margin-right: 10px; /* Space between line and name */
    vertical-align: middle; /* Align line vertically with text */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column; /* Stack elements vertically on small screens */
        text-align: center; /* Center text on mobile */
        padding: 15px; /* Added padding for mobile screens */
        height: auto; /* Ensure card height adjusts based on content */
    }

    .testimonial-image {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 15px; /* Add bottom margin for spacing */
        width: 100px; /* Adjust image size for mobile */
        height: 100px; /* Adjust image size for mobile */
    }

    .testimonial-text {
        font-size: 1rem; /* Slightly reduce font size for mobile */
        line-height: 1.4; /* Adjust line height for mobile readability */
    }

    .testimonial-author {
        margin-top: 10px; /* Added margin for better spacing */
    }

    .author-name {
        font-size: 0.95rem; /* Adjust font size of author's name on mobile */
    }

    .author-name::before {
        display: none; /* Remove the line before the author's name on mobile */
    }
}

/* Tablet-specific adjustments */
@media (max-width: 1024px) {
    .testimonial-card {
        width: 90%; /* Adjust card width for tablet */
        margin: 20px auto; /* Center the cards */
    }

    .testimonial-image {
        width: 100px; /* Adjust image size for tablet */
        height: 100px; /* Adjust image size for tablet */
    }

    .testimonial-text {
        font-size: 1.05rem; /* Slightly smaller font size for tablets */
    }

    .testimonial-author {
        margin-top: 10px;
    }

    .author-name {
        font-size: 1rem;
    }
}


/* Services */
.section-title {
    color: #00a2c2;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center; /* Center the title */
}

.section-subtitle {
    color: #a3a3a3;
    font-size: 1rem; /* Default size for better readability on all screens */
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center; /* Center the subtitle */
}

.separator {
    width: 170px;
    height: 8px;
    background-color: #00a2c2;
    margin: 0 auto 30px;
}

.services-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.services-list li {
    color: #a3a3a3;
    font-size: 1.1rem; /* Default font size */
    margin-bottom: 10px; /* Added some spacing between items */
    padding-left: 30px;
    position: relative;
}

.services-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #00a2c2;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem; /* Slightly reduced font size */
    }

    .section-subtitle {
        font-size: 0.95rem; /* Slightly smaller font size */
        padding: 0 15px; /* Added padding for better readability */
    }

    .services-list li {
        font-size: 1rem; /* Reduce font size for readability on medium devices */
    }

    .separator {
        width: 150px; /* Slightly smaller separator on medium screens */
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem; /* Further reduce font size */
    }

    .section-subtitle {
        font-size: 0.9rem; /* Even smaller font size */
        padding: 0 20px; /* More padding for small screens */
    }

    .services-list li {
        font-size: 0.95rem; /* Smaller font size for mobile */
    }

    .separator {
        width: 130px; /* Further adjust separator size */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem; /* Reduce to fit smaller screens */
    }

    .section-subtitle {
        font-size: 0.85rem; /* Reduce the subtitle font */
        padding: 0 15px; /* Extra padding for tight screens */
    }

    .services-list li {
        font-size: 0.9rem; /* Reduce font size for better readability */
    }

    .separator {
        width: 100px; /* Smallest separator for tight screens */
    }
}


/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 40px;
    max-width: 1100px; /* Reduce this to your preferred width */
    margin: 0 auto; 
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: flex-end;
    height: 100%;
}
.product-item:before {
    content: ''; /* Required for pseudo-elements */
    position: absolute; /* Position it absolutely within the product-item */
    top: 0; /* Stretch to the top */
    left: 0; /* Stretch to the left */
    right: 0; /* Stretch to the right */
    bottom: 0; /* Stretch to the bottom */
    background-color: rgba(63, 60, 60, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Ensure it appears above the image */
}

.product-item.large {
    grid-row: span 2;
}

.product-item:nth-child(1) {
    background-image: url('images/caucasian-scientist-man-blue-lab-uniform-make-notes-about-big-steel-chromed-machine.png');
}

.product-item:nth-child(2) {
    background-image: url('images/aluminum-tanks-storage-raw-materials-chemical-industry-sterile-conditions-enterprise.png');
    grid-column: 2; /* Position in the second column */
    grid-row: 1; /* Stay in the first row */
}

.product-item:nth-child(3) {
    background-image: url('images/Calque\ 3.png');
    grid-column: 3; /* Position in the third column */
    grid-row: 1; /* Stay in the first row next to item 2 */
}

.product-item:nth-child(4) {
    background-image: url('images/chef-working-together-professional-kitchen.png');
    grid-column: 2 / span 2; /* Span across both columns in the second row */
    grid-row: 2;
}

.product-content {
    width: 100%;
    position: relative; /* Make sure text is above the overlay */
    z-index: 2; /* Bring content above the overlay */
    padding: 20px;
    color: #fff;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-content .separator {
    width: 90%;
    height: 5px;
    background-color: #fff;
    margin-bottom: 15px;
    margin-left: 0 ;
}

.product-content ul {
    list-style-type: none; /* Remove default list style */
    padding-left: 0; /* Remove left padding */
    margin: 0; /* Remove margin */
}

.product-content ul li {
    font-size: 0.8rem; /* Set font size */
    margin-bottom: 2px; /* Margin between list items */
    position: relative; /* Necessary for absolute positioning of the before pseudo-element */
    padding-left: 12px; /* Padding for spacing */
    line-height: 1.2; /* Line height for readability */
}

.product-content ul li::before {
    content: '-'; /* Use the hyphen as content */
    position: absolute; /* Position it absolutely within the list item */
    left: 0; /* Align it to the left */
    color: #fff; /* Change the color to match your design */
    margin-right: 5px; /* Add some space between the hyphen and the text */
}



.logo-container {
    position: relative; /* Establishes a positioning context */
    text-align: right; /* Aligns the logo to the right */
    padding-right: 70px;
    margin: 20px; /* Space above the logo */
}

.product-logo {
    max-width: 180px; /* Control the size of the logo */
    height: auto; /* Maintain aspect ratio */
    margin: 0; /* Remove default margins */
}

.btn {
    display: inline-block; /* Make it an inline block */
    padding: 10px 20px; /* Adjust padding for the button */
    color: white; /* Text color */
    background-color: #00a2c2; /* Button color */
    border: none; /* Remove border */
    border-radius: 10px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 1rem; /* Font size */
    transition: background-color 0.3s; /* Transition for hover effect */
    width: 180px;
    text-align: center;
}

.btn:hover {
    background-color: #008c9e; /* Darker shade for hover effect */
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile devices */
        grid-template-rows: repeat(4, 450px); /* Adjust row heights */
        gap: 30px;
    }

    .product-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .product-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;

    }

    .product-item:nth-child(3) {
        grid-column: 1;
        grid-row: 3;

    }

    .product-item:nth-child(4) {
        grid-column: 1;
        grid-row: 4;

    }

    .product-item {
        height: auto; /* Allow item height to adjust based on content */
    }

    .product-item .product-content {
        padding: 15px;
        position: absolute;
        bottom: 20px; /* Ensure the text stays near the bottom of the image */
        z-index: 2;
        width: 100%;
    }

    .product-content h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .product-content .separator {
        width: 80%;
        margin-bottom: 10px;
    }

    .product-content ul li {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .btn {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr; /* Single column layout for very small screens */
        grid-template-rows: repeat(4, 380px);
        gap: 20px;
    }

    .product-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .product-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;

    }

    .product-item:nth-child(3) {
        grid-column: 1;
        grid-row: 3;

    }

    .product-item:nth-child(4) {
        grid-column: 1;
        grid-row: 4;

    }

    .product-item {
        height: auto; /* Allow height to adjust */
    }

    .product-content h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .product-content ul li {
        font-size: 0.9rem;
    }

    .btn {
        width: 130px;
    }
}

.quality-section {
    background-color: #e7f4f9;
    padding: 50px;
    text-align: center;
}

.quality-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.quality-title p {
    margin-bottom: 40px;
    font-size: 1rem;
    text-align: center;
    font-weight: bold;

}

.quality-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.feature {
    text-align: center;
    max-width: 300px;
}

.feature img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 1.2rem;
    color: #00a2c2;
    font-weight: bold;
}

.feature p {
    font-size: 0.9rem;
    color: #00a2c2;
    font-weight: bold;
}

@media (max-width: 768px) {
    .quality-section {
        padding: 30px;
    }

    .quality-title h2 {
        font-size: 1.8rem;
    }

    .quality-title p {
        font-size: 0.9rem;
    }

    .quality-features {
        gap: 30px; /* Reduce gap for smaller screens */
    }

    .feature {
        max-width: 200px; /* Reduce max width for smaller screens */
    }

    .feature h4 {
        font-size: 1rem; /* Smaller title for mobile */
    }

    .feature p {
        font-size: 0.8rem; /* Smaller text for mobile */
    }
}

/* Very small screens adjustments (e.g., mobile portrait) */
@media (max-width: 480px) {
    .quality-section {
        padding: 20px;
    }

    .quality-title h2 {
        font-size: 1.5rem; /* Further reduce font size for small screens */
    }

    .quality-title p {
        font-size: 0.8rem; /* Smaller font for very small screens */
    }

    .quality-features {
        flex-direction: column; /* Stack items vertically on very small screens */
        gap: 20px; /* Smaller gap */
    }

    .feature {
        max-width: 100%; /* Allow feature to take full width */
    }

    .feature img {
        width: 60px; /* Resize the image for small screens */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .feature h4 {
        font-size: 1rem; /* Smaller title for very small screens */
    }

    .feature p {
        font-size: 0.75rem; /* Smaller text for very small screens */
    }
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.benefits {
    display: flex;
    justify-content: space-between; /* Even spacing between boxes */
    gap: 5px;
    padding: 20px;
    margin: 0 auto; /* Center the whole container */
    max-width: 1350px; /* Adjust the maximum width for the benefit section */
    height:300px ;
}

.benefit {
    background-color: #aee0e8;
    padding: 40px 20px 60px; /* Adjust bottom padding to make room for the number */
    text-align: center;
    flex: 1;
    max-width: 480px; /* Ensure the width is aligned with the example */
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    
}

.benefit h4 {
    font-size: 1.2rem;
    color: #00a2c2; /* Same color as the example */
    margin-bottom: 10px;
    font-weight: bold;
}

.benefit p {
    font-size: 0.9rem;
    color: #00a2c2;
    margin-bottom: 20px;
}

.benefit-number {
    font-size: 2rem;
    color: #00a2c2;
    font-weight: bold;
    margin-top: 20px;
    display: block;
    position: absolute;
    bottom: 10px; /* Align the number at the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center the number horizontally */
}

.benefit:after {
    content: '';
    display: block;
    width: 80%;
    height: 0.5px;
    background-color: white;
    margin: 10px auto; /* Consistent space above the number */
    position: absolute; /* Positioning to make it fixed */
    bottom: 50px; /* Adjust as needed to place above the number */
    left: 50%; /* Center align */
    transform: translateX(-50%); /* Align center */
}

.benefits-logo-container {
    position: relative; /* Establishes a positioning context */
    text-align: center; /* Aligns the logo to the right */
    margin: 20px; /* Space above the logo */
}

@media (max-width: 1024px) {
    .benefits {
        gap: 20px;
        height: auto; /* Let the height adjust automatically on smaller screens */
    }

    .benefit {
        max-width: 45%; /* Decrease width slightly */
    }

    .benefit-number {
        font-size: 1.8rem; /* Decrease font size for the number */
    }

    .benefit h4 {
        font-size: 1rem; /* Adjust font size for titles */
    }

    .benefit p {
        font-size: 0.85rem; /* Adjust font size for paragraphs */
    }
}

/* Responsive for screens <= 768px (Tablets in portrait mode or smaller screens) */
@media (max-width: 768px) {
    .benefits {
        flex-direction: column; /* Stack the benefits vertically */
        gap: 30px; /* Increase space between items */
    }

    .benefit {
        max-width: 100%; /* Take full width */
        padding: 30px 20px 50px; /* Adjust padding for a better layout */
    }

    .benefit-number {
        font-size: 1.5rem; /* Adjust font size for the number */
    }

    .benefit h4 {
        font-size: 1.1rem; /* Adjust font size for titles */
    }

    .benefit p {
        font-size: 0.9rem; /* Adjust font size for paragraphs */
    }
}

/* Responsive for screens <= 480px (Mobile screens) */
@media (max-width: 480px) {
    .benefits {
        padding: 10px; /* Reduce padding on very small screens */
        gap: 20px; /* Decrease the gap between items */
    }

    .benefit {
        max-width: 100%; /* Take full width on small screens */
        padding: 20px 10px 40px; /* Adjust padding for mobile screens */
    }

    .benefit-number {
        font-size: 1.3rem; /* Further reduce the number font size */
    }

    .benefit h4 {
        font-size: 1rem; /* Further reduce title font size */
    }

    .benefit p {
        font-size: 0.85rem; /* Adjust paragraph font size */
    }
}

/* Contact Section */
#contact {
    background-color: #f5f5f5; /* Set the background color to match the image */
    padding: 50px; /* Adjust padding as needed */
  }
  
  #contact h2 {
    color: #000000; /* Adjust color to match the image */
    margin-bottom: 10px;
    font-weight: bold;
  }
  #contact p{
    max-width: 55%; /* Ajustez la valeur en pourcentage ou en pixels */
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  .form-control {
    border-radius: 5px; /* Remove rounded corners */
    border: 1px solid #00a2c2; /* Adjust border style and color */
    padding: 15px; /* Increase padding for better readability */
  }
  
  .btn {
    background-color: #00a2c2; /* Adjust button color */
    border: none;
    padding: 15px 30px;
  }
  @media (max-width: 1024px) {
    #contact h2 {
        font-size: 1.8rem; /* Slightly smaller font for tablets */
    }

    #contact p {
        max-width: 70%; /* Adjust paragraph width for better readability on tablets */
        font-size: 0.95rem; /* Adjust font size */
    }

    .form-control {
        padding: 12px; /* Adjust padding for form fields */
    }

    .btn {
        padding: 12px 25px; /* Adjust button size */
    }
}

/* Responsive for screens <= 768px (Tablets and smaller devices) */
@media (max-width: 768px) {
    #contact {
        padding: 30px; /* Reduce padding for smaller screens */
    }

    #contact h2 {
        font-size: 1.6rem; /* Adjust font size for heading */
    }

    #contact p {
        max-width: 90%; /* Full width for small screens */
        font-size: 0.9rem; /* Adjust font size */
    }

    .form-control {
        padding: 10px; /* Adjust padding for smaller form fields */
    }

    .btn {
        padding: 10px 20px; /* Adjust button size */
    }
}

/* Responsive for screens <= 480px (Mobile screens) */
@media (max-width: 480px) {
    #contact {
        padding: 20px; /* Reduce padding further for mobile screens */
    }

    #contact h2 {
        font-size: 1.4rem; /* Smaller font size for heading */
    }

    #contact p {
        max-width: 100%; /* Full width for mobile screens */
        font-size: 0.85rem; /* Adjust font size */
    }

    .form-control {
        padding: 8px; /* Further reduce padding */
    }

    .btn {
        padding: 8px 15px; /* Adjust button padding */
        font-size: 0.9rem; /* Adjust button font size */
    }
}

/* Footer */
.footer {
    background-color: #333; /* Adjust background color as needed */
    color: #fff; /* Adjust text color as needed */
    padding: 25px 0; /* Top/bottom padding */
    text-align: center; /* Center text elements */
}

.footer p {
    margin-bottom: 5px; /* Adjust spacing based on image */
    font-weight: bold;
    text-align: left;
    
}

.social-icons {
    display: flex;
    flex-direction: column; /* Align icons horizontally */
    justify-content: center; /* Center icons horizontally */
    gap: 15px; /* Add space between icons */

}

.social-icon i {
    color: white; /* Icon color */
    font-size: 30px; /* Icon size */
}

.footer-logo {
    max-width: 200px; /* Adjust logo size */
    margin-top: 70px;
    justify-content: center; /* Center icons horizontally */


}

.seperatorFooter, .bigSeperatorFooter {
    background-color: #00a2c2;
    height: 5px;
    margin: 10px 0px ; /* Center the separators */

}

.seperatorFooter {
    width: 170px;
}

.bigSeperatorFooter {
    width: 940px;
}

  
 /* Responsive for screens <= 1024px */
@media (max-width: 1024px) {
    .footer {
        padding: 20px 0; /* Slightly reduce padding */
    }

    .footer p {
        font-size: 0.9rem; /* Slightly reduce text size */
    }

    .social-icons {
        flex-direction: row; /* Align icons horizontally */
        gap: 20px; /* Increase space between icons */
    }

    .footer-logo {
        max-width: 150px; /* Reduce logo size */
        margin-top: 20px; /* Adjust margin */
    }

    .seperatorFooter, .bigSeperatorFooter {
        width: 80%; /* Make separators responsive */
    }
}

/* Responsive for screens <= 768px (Tablets) */
@media (max-width: 768px) {
    .footer {
        padding: 15px 0; /* Reduce padding for smaller devices */
    }

    .footer p {
        font-size: 0.85rem; /* Reduce text size further */
    }

    .social-icons {
        flex-direction: row; /* Align icons horizontally */
        justify-content: center; /* Center icons */
        gap: 15px; /* Adjust space between icons */
        margin-top: 10px; /* Adjust margin */
    }

    .footer-logo {
        max-width: 130px; /* Further reduce logo size */
        margin-top: 20px;
    }

    .seperatorFooter, .bigSeperatorFooter {
        width: 90%; /* Adjust width for smaller screens */
    }
}

/* Responsive for screens <= 480px (Mobile screens) */
@media (max-width: 480px) {
    .footer {
        padding: 10px 0; /* Further reduce padding */
    }

    .footer p {
        font-size: 0.8rem; /* Further reduce text size */
    }

    .social-icons {
        flex-direction: row; /* Keep icons horizontal */
        justify-content: center; /* Center icons */
        gap: 10px; /* Reduce space between icons */
    }

    .footer-logo {
        max-width: 100px; /* Further reduce logo size */
        margin-top: 10px; /* Adjust margin */
    }

    .seperatorFooter, .bigSeperatorFooter {
        width: 100%; /* Make separators take full width */
    }
}
/* Navbar Styling */
.navbar {
    background-color: white;
    padding: 0;
}

.navbar-nav .nav-item {
    position: relative;
    margin-right: 50px; /* Spacing between navbar items */
}

.navbar-nav .nav-link {
    font-size: 1.1rem; /* Adjust font size */
    font-weight: bold;
    color: #333;
    padding: 20px 30px;
    position: relative;
    z-index: 2; /* Make sure the text appears above the diamond */
    transition: color 0.3s ease;
}

/* Active Navbar Link Styling (Diamond Shape) */
.navbar-nav .nav-link.active {
    position: relative;
    z-index: 1; /* To ensure the active link text stays above the diamond */
    color: white !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skewX(-20deg);
    width: 150%; /* Adjust width to make sure the diamond covers the full width */
    height: 100%;
    background-color: #00a2c2; /* Diamond background color */
    z-index: -1; /* Make sure the diamond is behind the text */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Active Link Text: counter skew to keep text straight */
.navbar-nav .nav-link.active span {
    display: inline-block;
    transform: skewX(20deg);
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #00a2c2;
    background-color: transparent;
    text-decoration: none;
}

/* Hover Effect for Non-active Links */
.navbar-nav .nav-link:not(.active):hover::before {
    background-color: #00a2c2;
    transform: translateX(-50%) skewX(-20deg) scale(1.1); /* Scale up on hover */
}
/* Responsive Logo */
.navbar-brand img {
    max-width: 100%; /* Make sure the logo doesn't overflow */
    height: auto; /* Maintain aspect ratio */
}

/* Optional: Control max-height for smaller screens */
@media (max-width: 1400px) {
    .navbar-brand img {
        max-height: 40px; /* Slightly reduce size for tablets */
    }

    .navbar-nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin-right: 10px; /* Reduce space between items for tablet screens */
    }

    /* Reduce width of the paragraphs or links inside the navbar */
    .navbar-nav .nav-link {
        width: 80%; /* Adjust width to reduce size */
        text-align: center; /* Center the text */
        padding: 10px 20px; /* Adjust padding if needed */
        font-size: 0.8rem; /* Optional: Reduce font size for smaller screens */
    }
}


@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 35px; /* Further reduce size for smaller screens */
    }

    /* Stack navbar items vertically on smaller screens */
    .navbar-nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin-right: 0; /* Remove margin between items */
        margin-bottom: 10px; /* Add space between navbar items */
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        max-height: 30px; /* Further reduce size for mobile screens */
    }

    /* Adjust navbar items for very small screens */
    .navbar-nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
        font-size: 0.9rem; /* Reduce font size for mobile screens */
    }
}

