body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    /* Prevent horizontal scrollbars */
}


.navbar {
    /*background-color: transparent;*/
    background-color: rgba(255, 255, 255, 0.9); /* white with slight transparency */

    /* Initially transparent */
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure navbar is on top */
    transition: background-color 0.3s;
    /* Smooth color transition */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
}

.navbar.fixed {
    background-color: orange;
    /* Change to orange on scroll */
}

.navbar img {
    height: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-weight: bold;
    font-size: 20px;
    margin-left: 10px;
    white-space: nowrap;
    /* Prevent line break */
}

.menu {
    list-style-type: none;
    margin: 0 5%;
    padding: 0;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu li:last-child {
    margin-right: 0;
    /* Remove margin for the last menu item */
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-section {
    position: relative;
    height: 100vh;
    /* Cover the entire viewport */
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease;
}

.text-overlay {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.text-overlay h1 {
    font-size: 3rem;
    color: orange;
    text-shadow: 2px 2px 4px #000000
}

.text-overlay p1 {
    color: orangered;
    text-shadow: 2px 2px 4px #000000
}


/* Hamburger Menu Styles */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 5px;
    transition: all 0.3s ease;
}

.about {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2.5%;
    gap: 5%;
}

.about-left {
    text-align: center;
}

.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about img {
    height: 40%;
    width: 90%;
    border-radius: 25px;
}

.section2 h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #fff;
}

h2 {
    color: orange;
}

h4 {
    color: rgb(0, 0, 0);
}

.button {
    margin: 5%;
    padding: 1%;
    border: 2px solid orange;
    color: orange;
    background-color: #fff;
    border-radius: 25px;
}

.button:hover {
    border: 2px solid #fff;
    color: #fff;
    background-color: orange;
}






.contactus {

    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info a {
    color: #693cef;
    text-decoration: none;
    margin-left: 3px;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
}

.form-group button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: orangered;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.form-group button:hover {
    background-color: orange;
}

.icon {
    margin-right: 10px;
}


.section2 {
    background-color: orange;
}

.section2 .card h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: orange;
    font-size: 1.4rem;
    padding: 20px;
    top: 30;

}

.section3 .card h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: orange;
    font-size: 1.4rem;

    padding: 20px;
    top: 30;

}

.section3 {
    background-color: orange;
}

.card {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    padding: 30px 50px;
    background: #fff;
    cursor: pointer;
    margin: 80px 40px;
}



.card:hover {
    height: 320px;
}

.imgbox {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(-80px);
    z-index: 99;

}
li a{
    color: #000000;
}
.card img {
    width: 100%;
    border-radius: 10px;
}

.content {
    background-color: #fff090;
    display: flex;
    flex-direction: column;
    flex-wrap: initial;
    width: 100%;
    margin: 4em auto;
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
    color: black;
    position: absolute;
}

.content {
    bottom: 20%;
    padding: -31px 20px;
    text-align: center;
    margin: 0% 0%;

    transform: translateY(-90px);
    opacity: 0;
    transition: 0.3s;
}

.card:hover>.content {
    opacity: 1;
    transform: translateY(60px);
}

.content h2 {

    color: rgb(22, 41, 105);
}


p4 {
    font-size: 1rem;
    font-weight: bold;
}

h3 {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.8rem;
    color: orange;
}

body .gallery1 {
    background: white;
}

.gallery1 {
    width: 900px;
    display: flex;
    overflow-x: scroll;
}

.gallery1 div {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    padding: 10px;
    flex: none;
}

.gallery1 div img:hover {
    filter: grayscale(0);
    cursor: pointer;
    transform: scale(1.1);
}

.gallery1 div img {
    width: 90%;
    border: 2px solid black;
    border-radius: 13px;
    box-shadow: 4px 7px 0px black;
    filter: grayscale(100%);
    margin: 5%;
    transition: transform 0.5s;
}

.gallery1::-webkit-scrollbar {
    display: none;
}

.gallery1-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background-color: #fff;
}

#backBtn,
#nextBtn {
    width: 50px;
    cursor: pointer;
    margin: 60px;
}


.section4 {

    display: flex;
    justify-content: space-around;
    align-items: center;

    background: url("op1.jpg");
    background-repeat: no-repeat 50% 50%;
    background-color: orangered;
    margin: 0px;
    background-size: cover;
    width: 100%;
}

.section4>div {
    width: 31%;
}

.leftsection {
    display: absolute;
    justify-content: space-around;
    align-self: start;
    font-size: 1.4rem;
    margin: 10% 5%;
}

.rightsection img {
    width: 50%;
    background-color: #fff;
}

p3 {
    color: #fff;
}





body .customer {
    background: white;
}

.customer {
    width: 400px;
    display: flex;
    overflow-x: scroll;
}

.customer div {
    width: 100%;
    display: grid;
    grid-template-rows: auto auto auto;
    grid-gap: 20px;
    padding: 10px;
    flex: none;
}

.customer div img:hover {
    filter: grayscale(0);
    cursor: pointer;
    transform: scale(1.1);
}

.customer div img {
    width: 20%;
    border: 2px solid black;
    border-radius: 500px;
    filter: grayscale(100%);
    margin: 1% 39%;
    transition: transform 0.9s;
}


.reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    background-color: #fff;

}





.menu-button {
    display: none;
}

.reviews .customer h2 {
    text-align: center;
    color: orange;
    font-size: 1.2rem;
    margin: 0px 80px;
}

.last {
    display: flex;
    justify-content: space-around;
    align-items: center;
}












.footer {
    background-color: orange;
    color: #000000;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 5px;
  }
  
  ul.social-icons li {
    display: inline;
    margin-right: 10px;
    color: #000000;
  }
  
  ul.social-icons li:last-child {
    margin-right: 0;
  }
  
  .footer-bottom {
    margin-top: 20px;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-section {
      margin-bottom: 15px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .footer {
      padding: 20px 0;
    }
  
    .footer-section {
      flex-basis: 100%;
    }
  }
  

@media screen and (max-width: 768px) {
    .logo span {
        font-size: 15px;
    }

    .text-overlay h1 {
        font-size: 2rem;
    }

    .card {
        justify-content: center;
        width: 55%;
        text-align: center;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 95px;
        background-color: orange;
        margin: 0 1%;
        width: 80%;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* Add shadow for depth */
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
        /* Center align menu items */
    }

    .menu li:last-child {
        margin-bottom: 0;
        /* Remove margin for the last menu item */
    }

    .menu a {
        padding: 10px 20px;
        /* Increase padding for better touch target */
    }

    .menu-icon {
        display: block;
        margin-right: 10%;
    }

    .menu-icon.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-icon.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about {
        flex-direction: column;
    }


    #backBtn,
    #nextBtn {
        width: 50px;
        cursor: pointer;
        margin: 5px;
    }


    .gallery1 {
        width: 300px;

    }

    .last {
        flex-direction: column;
    }

    .main-footer {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
    }

}

@media screen and (min-width: 1800px) {
    .navbar {
        padding: 20px 40px;
        /* Increase padding for larger screens */
    }

    .logo span {
        font-size: 25px;
        /* Increase font size for larger screens */
    }

    .about {
        margin: 5% 10%;
        /* Increase margin for better spacing */
    }

    .about img {
        height: 50%;
        /* Increase image height for better visibility */

    }

    .section2 {
        padding: 5% 10% 0%;
        /* Increase margin for better spacing */
    }

    .section3 {
        padding: 0 10%;
    }

    .card {
        width: 290px;
        /* Increase card width for larger screens */
    }

    .gallery1 {
        width: 1000px;
        /* Increase gallery width for larger screens */
    }

    .footer_1,
    .footer_2 {
        max-width: 50%;
        /* Adjust max-width for footer sections */
    }

    .footer_2 {
        padding-left: 20px;
        /* Add padding for better alignment */
    }

    .footer_2 .links {
        padding-left: 20px;
        /* Add padding for better alignment */
    }
}