* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f4f4f4;
    font-style: normal;
    font-weight: 400;
}

/* Base Styles (Desktop, Tablets, etc.) */
h1 {
    font-size: 2.5rem;
    /* 40px */
    line-height: 3.5rem;
    /* 56px */
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    /* 32px */
    line-height: 2.75rem;
    /* 44px */
    font-weight: 600;
}

h3 {
    font-size: 1.625rem;
    /* 26px */
    line-height: 2.25rem;
    /* 36px */
    font-weight: 600;
}

h4 {
    font-size: 1.375rem;
    /* 22px */
    line-height: 2rem;
    /* 32px */
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.75rem;
    /* 28px */
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    /* 16px */
    line-height: 1.5rem;
    /* 24px */
    font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        /* 32px */
        line-height: 2.75rem;
        /* 44px */
    }

    h2 {
        font-size: 1.75rem;
        /* 28px */
        line-height: 2.25rem;
        /* 36px */
    }

    h3 {
        font-size: 1.5rem;
        /* 24px */
        line-height: 2rem;
        /* 32px */
    }

    h4 {
        font-size: 1.25rem;
        /* 20px */
        line-height: 1.75rem;
        /* 28px */
    }

    h5 {
        font-size: 1.125rem;
        /* 18px */
        line-height: 1.625rem;
        /* 26px */
    }

    h6 {
        font-size: 1rem;
        /* 16px */
        line-height: 1.5rem;
        /* 24px */
    }
}

strong,
b {
    font-weight: 700;
    /* Bold weight */
}


/* header section */

header {
    width: 100%;
    height: 100px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

#logo>a>img {
    width: 100px;
}

.text-color {
    color: rgb(244, 116, 59);
}

hr {
    width: 100%;
    background-color: #f4743b;
    border: none;
    height: 1px;
}


.nav-icon {
    display: none;
    cursor: pointer;
}

/* Custom hamburger menu icon */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 100px;
}

a {
    text-decoration: none;
}

.nav-list>li>a {
    color: #000;
    font-size: 1.2rem;
}

/* hero section */

.title-section {
    text-align: center;
    margin: 20px 0px;
}

.text {
    text-align: center;
    margin: 2% 10%;
}

.text h1,
.overlow-content h1 {
    font-size: 2rem;
}

.text p,
.overlow-content p {
    font-size: 1.2rem;
}

.text h1,
.overlow-content h1,
p {
    margin-bottom: 20px;
}

.hero {
    background: url('images/DSC6732.jpg') no-repeat center / cover;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bolder;
}

.hero-content p {
    font-size: 1.2rem;
}

/* products */
.products {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    border-radius: 5px;
}

.product-card {
    padding: 5px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* subtle shadow only */
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-info {
    padding: 5px;
}

.product-info>h3 {
    margin-bottom: 10px;
}

.image-text-overlow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    background: url('images/DSC6732.jpg') no-repeat center / cover;
    width: 100%;
    height: 550px;
    color: white;
    background-attachment: fixed;
}

.overlow-content {
    width: 50%;
    height: auto;
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px;
}

.overlow-button {
    padding: 10px 25px;
    border: none;
    background-color: #f4743b;
    color: white;
    transition: transform 0.3s ease;
}

.overlow-button:hover {
    transform: scale(1.05);
}


.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #000;
    color: white;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.footer h4 {
    margin-bottom: 20px;
}

.footer-first {
    padding: 20px;
    display: flex;
    justify-content: center;
}



.footer-menu,
.help-menu {
    width: 30%;
    text-align: left;
}

.footer-menu a,
.help-menu a {
    text-decoration: none;
    color: #9e9a9a;
    display: block;
    margin-bottom: 10px;
}

.footer-second {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.logo-text {
    text-align: left;
    width: 30%;
}

.logo-text img {
    width: 120px;
}


/* video section */
/* Video Section */
.video-container {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

/* Ensure 16:9 aspect ratio for responsiveness */
.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}

/* Style for the video */
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Content */
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    /* Optional for readability */
    padding: 20px;
    border-radius: 10px;
}

/* Video Content Styling */
.video-content h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.2rem;
}


/* contact area */

/* Contact area */
.Contact {
    padding: 40px 0;
    margin-bottom: 100px;
    height: auto;
}

.Contact>h1 {
    text-align: center;
    font-size: 2rem;
    padding: 40px 0;
}

form {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group>input {
    width: 400px;
    height: 50px;
    border: 2px solid #f4743b;
    border-radius: 1rem;
    padding: 5px;
    font-size: 1.1rem;

}

.message-group {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.message-group>textarea {
    width: 400px;
    height: 150px;
    border-radius: 1.2rem;
    border: 2px solid #f4743b;
    ;
    padding: 10px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #f4743b;
    ;
    border: none;
    border-radius: 1.2rem;
    color: #fff;
    transition: transform box-shadow 0.3s ease;
}

input[type="submit"]:hover {
    box-shadow: 0 0 15px 5px #f4743b;
    ;
    transform: scale(1.05);
}


.privacy-policy {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-policy h2 {
    font-size: 1.8rem;
    color: #555;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-policy p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-policy ul {
    list-style-type: none;
    padding-left: 0;
}

.privacy-policy ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.privacy-policy ul li::before {
    content: "•";
    color: #f4743b;
    /* Color for the bullet points */
    margin-right: 10px;
}



.terms-of-service {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.terms-of-service h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.terms-of-service h2 {
    font-size: 1.8rem;
    color: #555;
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms-of-service p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.terms-of-service ul {
    list-style-type: none;
    padding-left: 0;
}

.terms-of-service ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.terms-of-service ul li::before {
    content: "•";
    color: #f4743b;
    /* Color for the bullet points */
    margin-right: 10px;
}

.terms-of-service a {
    color: #f4743b;
    text-decoration: none;
}

.terms-of-service a:hover {
    text-decoration: underline;
}

.terms-of-service hr {
    border: none;
    background-color: #f4743b;
    height: 2px;
    margin: 20px 0;
}


.about-us {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
}

.about-us h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.about-content,
.mission-vision,
.quality-policy,
.contact-details {
    margin-bottom: 25px;
}

.about-us h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-us p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-us a {
    color: #f4743b;
    text-decoration: none;
}

.about-us a:hover {
    text-decoration: underline;
}

.about-us strong {
    font-weight: bold;
}

.technology {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
}

.technology h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.technology-content {
    margin-bottom: 25px;
}

.technology h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.technology p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Gallery Styles */
.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}


.gallery-row img {
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Desktop Wallpaper Images */
.wallpaper-images img {
    height: auto;
    width: 90%;
}

/* Tall Images */
.tall-images img {
    height: auto;
    width: 30%;
}

/* Hover Effects */
.gallery-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


@media(max-width:768px) {

    .gallery-row {
        flex-wrap: wrap;
    }

    .gallery-row img {
        width: 100%;
        height: auto;
    }

    /* header section */
    header {
        flex-direction: row-reverse;
        padding: 0 10px;
    }

    #logo {
        width: 60%;
    }

    .nav-icon {
        display: block;
        padding-left: 10px;
    }

    .hamburger-menu:hover span {
        background-color: #f4743b;
    }

    /* Animation for menu toggle */
    #menu-toggle:checked+.nav-icon .hamburger-menu span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    #menu-toggle:checked+.nav-icon .hamburger-menu span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked+.nav-icon .hamburger-menu span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .nav-list {
        display: none;
        position: absolute;
        width: 90%;
        height: 100vh;
        top: 100px;
        left: 0;
        color: #000;
        background-color: #fff;
        padding: 0 20px;
        z-index: 100;

    }

    #menu-toggle:checked+.nav-icon+.nav-list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    /* hero section */
    .hero,
    .image-text-overlow {
        width: 100%;
        text-align: center;
        height: 300px;
        background-attachment: fixed;
    }

    .overlow-content {
        width: 90%;
        height: auto;
    }

    .overlow-content h1 {
        font-size: 1.1rem;
    }

    .overlow-content p {
        font-size: 0.7rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        font-weight: bolder;
    }

    .hero-content p {
        font-size: 0.9rem;
    }


    .logo img {
        display: block;
        width: 20%;
        margin: 0 auto;
    }


    .text p {
        font-size: 1.1rem;
    }

    /* products */
    .products {
        display: flex;
        flex-direction: row;
    }

    .product-card {
        width: 40%;
        text-align: center;
    }

    .footer {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .footer-first {
        flex-direction: column;
        gap: 20px;
    }

    .footer-menu,
    .help-menu {
        width: 100%;
        text-align: left;
    }


    .logo-text {
        text-align: left;
        width: 100%;
    }

    /* contact area */
    /* Contacnt section */
    form {
        flex-direction: column;
    }

    .form-group>input {
        width: 100%;
    }

    .message-group>textarea {
        width: 80%;
    }

}