@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.slider-container{
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.header{
    background-repeat: no-repeat;
    background-size: cover;
}

.logo{
    display: inline-block;
    vertical-align: top;
    width: 200px;
    height: 50px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
}

nav {
    display: flex;
    height: 80px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    position: fixed;  /* Fix navbar at the top */
    top: 0;
    left: 0;
    width: 100%;  /* Ensure the navbar takes full width */
    z-index: 1000;  /* Keeps the navbar on top of other content */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);  /* Optional: adds shadow to navbar */
}

.nav-links ul{
    float: right;
    line-height: 80px;
}

.nav-links ul li{
    display: inline-block;
    list-style: none;
    padding: 0px 20px;
    position: relative;
}

.nav-links ul li a{
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 7px 8px;
    font-size: 20px;
    font-weight: bold;
}

nav ul li a:hover{
    background-color: #ff892f;
    color: black;
    transition: 0.5s;
}

nav ul li .active{
    background-color: #ff892f;
    color: black;
}
.slider-section {
    padding-top: 80px; /* Add padding to the top equal to the height of the navbar */
}
.slider-wrapper .slider-item{
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
}

.slider-wrapper .slider-item::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url("../img/slideshow-1.jpg");
    background-size: cover;
    background-position: center;
}

.slider-wrapper .slider-item:nth-child(2):before{
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url("../img/slideshow-2.jpg");
}

.slider-wrapper .slider-item:nth-child(3):before{
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url("../img/slideshow-3.jpg");
}

.slider-wrapper .slider-item .slide-content{
    color: white;
    z-index: 20;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 10px;
    max-width: 1400px;
    position: relative;
}

.slider-wrapper .slider-item .slide-content > *{
    max-width: 60%;
}

.slider-item .slide-content .slide-title{
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    color: #FF6E00;
}

.slider-item .slide-content .slide-description{
    margin-top: 25px;
    line-height: 25px;
    font-size: 1.7rem;
}

.slider-item .slide-content .slide-button{
    color: white;
    width: 250px;
    padding: 13px 0;
    display: block;
    margin-top: 45px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid white;
    transition: 0.5s ease;
}

.slider-item .slide-content .slide-button:hover{
    color: black;
    background-color: #FF6E00;
}

.slider-navigation button{
    position: absolute;
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    z-index: 20;
    color: white;
    border: none;
    background-color: #202022;
    transform: translateY(-50%);
    transition: 0.4s ease;
}

.slider-navigation button.swiper-button-disabled{
    display: none;
}

.slider-navigation button:hover{
    background: #323235;
}

.slider-navigation button#slide-prev{
    left: 20px;
}

.slider-navigation button#slide-next{
    right: 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1536px) {
    .slider-wrapper .slider-item .slide-content{
        width: 85%;
    }
}

@media (max-width: 1024px) {
    .slider-wrapper .slider-item .slide-content > * {
        max-width: 66%;
    }

    .slider-navigation button{
        top: unset;
        bottom: -15px;
        background: none;
    }

    .slider-navigation button:hover{
        background: none;
    }
}

@media (max-width: 768px) {
    .slider-wrapper .slider-item .slide-content > * {
        max-width: 100%;
    }

    .slider-navigation button{
        top: unset;
        bottom: -15px;
        background: none;
        color: black;
    }

    .slider-navigation button:hover{
        background: none;
    }
}

nav .material-symbols-outlined{
    display: none;
}

@media (max-width: 700px) {
    .slider-item .slide-content .slide-title{
        font-size: 1.8rem;
    }

    .slider-item .slide-content .slide-description{
        font-size: 1.1rem;
    }
    .slider-navigation button#slide-prev{
        display: none;
    }
    
    .slider-navigation button#slide-next{
        display: none;
    }

    .nav-links ul li{
        display: block;
    }

    .nav-links{
        position: absolute;
        background: #FF6E00;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .material-symbols-outlined{
        display: block;
        color: black;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        background: transparent;
        border: none;
        font-weight: bold;
    }

    .nav-links ul{
        padding: 30px;
    }

    .nav-links ul li{
        display: block;
        padding: 15px 0;
    }
}

/* Core Values Section */
.core-values{
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.core-values h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: auto;
    text-transform: uppercase;
    color: #FF6E00;
    padding-bottom: 20px;
}

.core-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 columns for larger screens */
    grid-gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.core-content {
    background-color: white;
    padding: 20px;
    border: 2px solid #FF6E00;  /* Add border around each core value */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.core-container .core-content .core-title{
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: auto;
    text-transform: uppercase;
    color: black;
}

.core-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.core-icon {
    width: 50px;  /* Size of the icon */
    height: 50px; /* Size of the icon */
    border-radius: 50%;  /* Makes the image circular */
    object-fit: cover;  /* Ensures the image covers the circular area */
    margin-bottom: 10px;  /* Space between the image and the title */
}

@media (max-width: 768px) {
    .core-container {
        grid-template-columns: 1fr 1fr; /* Two columns for smaller screens */
    }
}

@media (max-width: 500px) {
    .core-container {
        grid-template-columns: 1fr; /* One column for mobile */
    }

    .core-values h1 {
        font-size: 2rem;
    }

    .core-content {
        padding: 15px;
    }

    .core-content .core-title {
        font-size: 1.2rem;
    }

    .core-description {
        font-size: 14px;
    }
}

.aboutus-section{
    width: 100%;
    margin: auto;
    text-align: justify;
    padding: 50px 350px;
    background-color: #FAFAFA;
    min-height: 500px;
    box-shadow: 0 0 30px rgba(255, 110, 0, 0.3);
}
.aboutus-section h3{
    color: #FF6E00;
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
}
.aboutus-section h1{
    color: #FF6E00;
    margin-top: 5px;
    font-size: 50px;
    font-weight: 200;
    text-transform: uppercase;
}
.aboutus-section p{
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0.1em;
    word-spacing: 5px;
    font-family: "Montserrat", sans-serif;
}

.product-section {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 50px 350px;
    background-color: white;
    box-shadow: 0 0 30px rgba(255, 110, 0, 0.3);
}

.product-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: auto;
    text-transform: uppercase;
    color: #FF6E00;
    padding-bottom: 20px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(4, 300px); /* Create 4 equal-width columns */
    grid-gap: 30px; /* Add space between items */
    margin-bottom: 40px;
    justify-content: center; /* Center the entire grid horizontally */
    align-items: center; /* Center grid items vertically if needed */
}

.product-content {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-align: center; /* Ensure that text is centered if any */
}

.product-content img {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s ease;
    object-fit: fill;
    outline: 3px solid #FF6E00;
    padding: 10px 10px;
}

.product-content img:hover {
    transform: scale(1.10); /* Slight zoom effect on hover */
}

.product-button {
    color: black;
    width: 250px;
    padding: 13px 0;
    display: inline-block;
    margin-top: 0px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s ease;
    border-radius: 5px;
    background-color: #ff9645;
}

.product-button:hover {
    color: black;
    background-color: #ff6f00;
}

.client-section {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 50px 350px;
    background-color: white;
    box-shadow: 0 0 30px rgba(255, 110, 0, 0.3);
}

.client-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: auto;
    text-transform: uppercase;
    color: #FF6E00;
    padding-bottom: 20px;
}

.client-container {
    display: grid;
    grid-template-columns: repeat(4, 300px); /* Create 4 equal-width columns */
    grid-gap: 30px; /* Add space between items */
    margin-bottom: 40px;
    justify-content: center; /* Center the entire grid horizontally */
    align-items: center; /* Center grid items vertically if needed */
}

.client-content {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-align: center; /* Ensure that text is centered if any */
}

.client-content img {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s ease;
    object-fit: fill;
    outline: 3px solid #FF6E00;
    padding: 10px 10px;
}

.client-content img:hover {
    transform: scale(1.10); /* Slight zoom effect on hover */
}

.client-button {
    color: black;
    width: 250px;
    padding: 13px 0;
    display: inline-block;
    margin-top: 0px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s ease;
    border-radius: 5px;
    background-color: #ff9645;
}

.client-button:hover {
    color: black;
    background-color: #ff6f00;
}




@media screen and (max-width: 768px) {
    .aboutus-section {
        padding: 50px 20px;
    }
    .product-section {
        padding: 50px 20px;
    }
    .product-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
        grid-gap: 20px;
    }
    .product-content img {
        width: 180px; /* Slightly smaller images */
        height: 120px;
    }
    .product-button {
        width: 200px; /* Make the button smaller on mobile */
    }
    .product-section h1 {
        font-size: 2rem; /* Make the heading smaller */
    }
    .client-section {
        padding: 50px 20px;
    }
    .client-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
        grid-gap: 20px;
    }
    .client-content img {
        width: 180px; /* Slightly smaller images */
        height: 120px;
    }
    .client-button {
        width: 200px; /* Make the button smaller on mobile */
    }
    .client-section h1 {
        font-size: 2rem; /* Make the heading smaller */
    }
}

@media screen and (max-width: 1300px) {
    .aboutus-section {
        padding: 50px 20px;
    }
}

@media screen and (max-width: 480px) {
    .aboutus-section {
        padding: 40px 10px;
    }
    .product-section {
        padding: 40px 10px;
    }
    .product-container {
        grid-template-columns: repeat(2, 1fr); /* 1 column on mobile devices */
        grid-gap: 10px;
    }
    .product-content img {
        width: 140px; /* Further reduce image size */
        height: 100px;
    }
    .product-button {
        width: 180px; /* Make the button even smaller */
    }
    .product-section h1 {
        font-size: 1.8rem; /* Smaller heading on mobile */
    }
    .client-section {
        padding: 40px 10px;
    }
    .client-container {
        grid-template-columns: repeat(2, 1fr); /* 1 column on mobile devices */
        grid-gap: 10px;
    }
    .client-content img {
        width: 140px; /* Further reduce image size */
        height: 100px;
    }
    .client-button {
        width: 180px; /* Make the button even smaller */
    }
    .client-section h1 {
        font-size: 1.8rem; /* Smaller heading on mobile */
    }
}


.footer-section {
    width: 100%;
    margin: auto;
    padding: 30px 18%; /* Use percentage to make padding responsive */
    background-color: #ff892f;
}

.footer-container {
    display: flex; /* Use flexbox to align items horizontally */
    justify-content: space-between; /* Distribute the sections evenly */
    align-items: flex-start; /* Align content to the top (vertically) */
    padding: 20px;
    gap: 100px; /* Adjust space between the sections */
    flex-wrap: wrap; /* Allows content to wrap on smaller screens */
}

.footer-content {
    flex: 1; /* Makes each .footer-content take equal width */
    display: flex;
    flex-direction: column; /* Stack the h1 and p vertically */
    align-items: flex-start; /* Align items to the left */
    margin-bottom: 20px; /* Adds space between sections */
}

.footer-content img {
    width: 70%; /* Ensures the image doesn't overflow */
    height: auto;
}

.footer-content h1 {
    margin-bottom: 10px;
    position: relative; /* To position the vertical line before it */
    padding-left: 20px; /* Adds space for the vertical line */
}

.footer-content h1::before {
    content: ''; /* Creates a pseudo-element before the <h1> */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the line */
    width: 3px; /* Set width of the vertical line */
    height: 50%; /* Adjust the height of the vertical line */
    background-color: #000; /* Color of the vertical line */
}

.footer-content p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.footer-content p br {
    margin-bottom: 5px; /* Add space after line breaks in the address */
}

/* Media Queries for Responsiveness */

/* For small screens (mobile devices) */
@media (max-width: 768px) {
    .footer-section {
        padding: 30px 20px; /* Reduce padding on smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack the sections vertically */
        gap: 30px; /* Adjust gap between sections */
    }

    .footer-content {
        flex: 1 1 100%; /* Make each section take full width */
        text-align: center; /* Center the text */
    }

    .footer-content img {
        width: 50%; /* Reduce image size for smaller screens */
    }

    .footer-content h1::before {
        height: 30%; /* Shorten the vertical line */
    }

    .footer-content p {
        font-size: 16px; /* Reduce font size for smaller screens */
    }
}

/* For very small screens (extra mobile screens) */
@media (max-width: 480px) {
    .footer-section {
        padding: 20px 10px; /* Reduce padding further for very small screens */
    }

    .footer-container {
        gap: 20px; /* Reduce the gap between sections */
    }

    .footer-content {
        text-align: center; /* Ensure everything is centered */
    }

    .footer-content img {
        width: 60%; /* Further reduce image size */
    }

    .footer-content h1::before {
        height: 20%; /* Further reduce the vertical line height */
    }

    .footer-content p {
        font-size: 16px; /* Reduce font size for better readability */
    }
}

.credit-section {
    max-width: 100%;
    background-color: #ff9645;
    padding: 30px;
    text-align: center;
}

.footer-container .fab{
    color: black;
}


.backgroundheader-container {
    padding-top: 80px;
    text-align: center;
    width: 100%;
    height: 50vh;  /* Full viewport height */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/img/backgroundheader.jpg");
    background-size: cover;  /* Ensures the image covers the container without distortion */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat;  /* Prevents the image from repeating */
    
    /* Flexbox for centering content */
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;  /* Center vertically */
    flex-direction: column;  /* Stack elements vertically */
}
.backgroundheader-container h1{
    color: white;
    font-size: 4.5rem;
}

.aboutus-page_section{
    width: 100%;
    margin: auto;
    text-align: justify;
    padding: 50px 350px;
    background-color: #FAFAFA;
    min-height: 500px;
}
.aboutus-page_section h3{
    color: #FF6E00;
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
}
.aboutus-page_section h1{
    color: #FF6E00;
    margin-top: 5px;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
}
.aboutus-page_section p{
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0.1em;
    word-spacing: 5px;
}
