@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
}

body {
    background:linear-gradient(130deg ,#4F575D, #1B1C21);
    overflow-x: hidden
}

/* header */
header {
    background:linear-gradient(130deg ,#4F575D, #1B1C21);
    height: 90px;
    align-content: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 150px;
    margin-left: 50px;
}

.nav-menu {
    display: flex;
    align-items: center
}

.nav-links {
    margin: 0 20px;
    color: whitesmoke;
    transition: 0.7s ease;
    border: 2px solid transparent;
}


.nav-links:hover {
    color: gray;
    
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    background-color: whitesmoke;
    height: 2px;
    width: 30px;
    margin: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

}

@media only screen and (max-width:846px) {
    .hamburger {
        display: block;
        align-content: center;
        margin: 0 20px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .logo {
        margin: 0 20px
    }

    .nav-menu {
        display: block;
        position: absolute;
        top: 90px;
        left: -100%;
        background:#333;
        text-align: center;
        width: 100%;
        transition: 0.3s;
        z-index: 11000;
    }

    .nav-items {
        margin: 30px;
    }

    .nav-menu.active {
        left: 0;
    }
}

/*  */

.slider {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.slider .controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 2;
    display: none;
}

.slider .controls>div {
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
}

.slider .controls>.up {
    top: 0;
    right: 0;
    background: white;
    color: black;
}

.slider .controls>.down {
    bottom: 0;
    left: 0;
    background: black;
    color: white;
}

.slider .wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.slider .wrapper .left,
.slider .wrapper .right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.slider .wrapper .left>div,
.slider .wrapper .right>div {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 1s ease-in-out;
}

.slider .wrapper .image {
    width: 640px;
    height: 504px;
}

.slider .wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slider img.logo-slider{
    background:linear-gradient(130deg ,#4F575D, #1B1C21);
    object-fit: contain;
}

.slider .wrapper .text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
}

.slider .wrapper p {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    padding: 0 50px;
}

.slider .wrapper h2 {
    font-size: 60px;
    padding: 0 50px;
    margin-top: 10px;
    line-height: 1.3;
    font-weight: 800;
}

/* Media Queries */
@media (max-width: 1200px) {
    .slider .wrapper p {
        font-size: 18px;
        padding: 0 30px;
    }

    .slider .wrapper h2 {
        font-size: 45px;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .slider .wrapper p {
        font-size: 16px;
        padding: 0 20px;
    }

    .slider .wrapper h2 {
        font-size: 35px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .slider {
        display: none;
    }
}

/* mobile */
.mobile-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.mobile-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 10;
    display: none;
}

.mobile-controls .left-button {
    position: absolute;
    left: 10px;
}

.mobile-controls .right-button {
    position: absolute;
    right: 10px;
}

.mobile-controls .button {
    background: #ffcc00;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-controls .button:hover {
    background: #e0b800;
}

.mobile-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.mobile-slide {
    min-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.mobile-slide img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-text {
    background: white;
    width: 100vw;
    padding: 20px 0;
    height: 25%;
    text-align: center;
    position: absolute;
    bottom: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.mobile-text h2 {
    margin: 10px 0;
    font-size: 40px;
    color: #333;
    padding: 0 10px;
    font-weight: 800;
}

.mobile-text p {
    font-size: 18px;
    color: #777;
    padding: 0 10px
}

@media screen and (min-width:769px) {
    .mobile-slider {
        display: none;
    }
}
/*  */
.content {
    min-height: 100vh;
    /* background: #333; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.content-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-main img {
    width: 50vw;
}

.content-main h2 {
    text-align: center;
    text-transform: capitalize;
    font-size: 40px;
    letter-spacing: 1px;
    width: 85%;
    margin: 50px auto;
    background-image: linear-gradient(to top, #404040, whitesmoke);
    -webkit-background-clip: text;
    color: transparent;
}

.content-main .content-service {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.content-main .service-list img {
    width: 60px;
}

.content-main .service-list {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 0px solid;
    border-bottom-color: whitesmoke;
    border-bottom-width: 3px;
    padding: 15px 20px;
    height: 140px;
    transition: .5s ease-in;
}

.content-service .service-list p.service-name {
    text-align: center;
    color: whitesmoke;
    margin-top: 10px;
    letter-spacing: .7px;
    font-weight: bold;
    transition: .5s ease-in;
}


.content-service .service-list p.service-para {
    text-align: center;
    color: whitesmoke;
    margin-top: 12px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .5px;
    margin-bottom: 10px;
    transition: .5s ease-in;
}

.content-service .service-list:hover {
    background: whitesmoke;
}

.content-service .service-list:hover p.service-name {
    color: #171717;
}

.content-service .service-list:hover p.service-para {
    color: #171717;
}

/*  */
.product h2 {
    text-align: center;
    font-size: 35px;
    text-transform: capitalize;
    background-image: linear-gradient(to top, #404040, whitesmoke);
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 50px;
}

.product {
    min-height: 100vh;
}

.product-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 50px;
    width: 95%;
    margin: 50px auto;
    place-items: center;
}

.product-list {
    width: 270px;
    height: 380px;
    background: #f6f6f6;
    padding: 8px 10px;
    border-radius: 12px;
    transition: 1s;
}

.product-main img {
    height: 280px;
    width: 270px;
    border-radius: 10px;
}

.product-list p.model {
    font-size: 12px;
    color: #333;
    text-transform: capitalize;
    margin-top: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-list p.product\.name {
    text-transform: capitalize;
    margin-top: 5px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.price {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.price p.discount-price {
    font-size: 16px;
    color: #000;
    font-weight: 700
}

.price p.original-proce {
    font-size: 14px;
    text-decoration: line-through;
    color: grey;
    font-weight: 500;
    text-decoration-thickness: 1px;
}

.product-main .product-list:hover {
    box-shadow: rgba(255, 255, 255, 0.35) 0px 2px 10px;
}


/*  */
.deals {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deals-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80vw;
    min-height: 85vh;
    background: #fff;
    border-radius: 20px;
    transition: 1s;
    padding: 20px;
}

.deals-content:hover {
    box-shadow: rgba(255, 255, 255, 0.45) 0px 25px 20px -20px;
}

.deals-content .deals-img {
    width: 300px;
    height: 400px;
}

.deals-content .item {
    width: 300px;
    height: 400px;
    border-radius: 12px;
}

.deals-detail {
    width: 500px;
}

.deals-img .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deals p.deals-head {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
}

.deals p.deal-para {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 20px;
    color: #404040;
}

.deals .deals-btn {
    margin-top: 25px;
    margin-bottom: 20px;
}

.deals .deals-detail a {
    color: #fff;
    padding: 8px 10px;
    background: #333;
    text-transform: capitalize;
    letter-spacing: .5px;
    font-weight: 500;
}

.deals .deals-detail a:hover{
    background: #404040;
}

.owl-dot.active span {
    width: 30px !important;
}

/*  */
.image-head h2 {
    text-align: center;
    font-size: 35px;
    text-transform: capitalize;
    background-image: linear-gradient(to top, #404040, whitesmoke);
    -webkit-background-clip: text;
    color: transparent;
    margin: 50px 0;
}

.image-gallery {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    width: 85%;
    margin: 50px auto;
    gap: 50px;
}
.image-list{
    position: relative;
    width: 300px;
    height: 300px;
    display: inline-block;
}
.image-gallery img {
    width: 100%;
    height: 100%;
}
.image-list .overlay{
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
    background: rgba(0,0,0,0.8);
}
.image-list .text-image{
    color: yellow;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all .3s ease;
    width: 90%;
    text-align: center;
}
.image-list:hover .text-image{
    opacity: 1;
}
.image-list:hover .overlay{
   opacity: 1
}
.image-list .overlay-left{
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    transition: all .3s ease
}
.image-list:hover .overlay-left{
    width: 100%;
}
.image-list p.head{
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
}
.image-list p.para{
    color: white;
   font-size: 15px;
    margin-top: 10px;
    letter-spacing: .5px;
    line-height: 21px;
}
/*  */
.connect {
    text-align: center;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    color: whitesmoke;
    letter-spacing: 1px;
}

.connect .connect-btn {
    margin-top: 50px;
    background: #ffffff;
    padding: 10px;
}

.connect-btn a {
    color: #171717;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 18px;
}

/*  */
footer {
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 5px solid whitesmoke;
}

.footer-main {
    display: flex;
    color: whitesmoke;
    justify-content: space-around;
    padding: 50px
}

.footer-main img.logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-main .footer-list .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-list .contact {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}

.footer-main .footer-list h3 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 25px 0;
}

.footer-main .footer-list a {
    text-transform: capitalize;
    color: whitesmoke;
    font-size: 18px;
}

.footer-main .footer-list .footer-links {
    margin: 5px 0;
}

@media screen and (max-width:860px) {
    .footer-main {
        flex-direction: column;
    }
}

footer p {
    text-align: center;
    color: whitesmoke;
    padding: 0 0 30px;
}

.footer-para {
    width: 33%;
}

.footer-para p {
    text-align: start;
}
footer p.copyright a{
    color: whitesmoke;
}

@media screen and (max-width:1078px) {
    .hero-width {
        flex-direction: column;
        gap: 40px
    }

    .hero-flex {
        width: 90%;
    }

    .deals-content {
        flex-direction: column;
    }

    .product-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        width: 85%;
        margin: 50px auto;
        place-items: center;
    }
}

@media screen and (max-width:768px){
    footer{
        padding-bottom: 100px;
    }
}

@media screen and (max-width:534px) {
    header img {
        width: 150px;
        margin-left: 20px;
    }

    .deals-detail {
        width: 300px;
    }

    .deals p.deals-head {
        margin-top: 50px;
    }
    .content-main video {
        width: 80vw;
    }
}

@media screen and (max-width:738px) {
    .product-main {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        width: 85%;
        margin: 50px auto;
        place-items: center;
    }

    .footer-para {
        width: 90%;
    }
    .content-img img{
        width: 80vw;
    }
    .content-main h2{
        font-size: 30px
    }
}






/* about page */

.about-page-main {
    min-height: 60vh;
    background: url(../img/about\ overlay.png);
    display: flex;
    justify-content: start;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover
}

.line {
    width: 5px;
    height: 200px;
    background: linear-gradient(to bottom, white, grey);
    margin-left: 100px;
    margin-right: 20px;
}

.about h3 {
    text-transform: capitalize;
    font-size: 50px;
    line-height: 60px;
    color: white;
    text-shadow: 2px 2px 3px black;
}
@media screen and (max-width:769px){
    .about-page-main{
        justify-content: center;
    }
    .line{
        display: none;
    }
    .about h3{
        font-size: 35px;
        text-align: center;
        line-height: 50px
    }
}

.about-detail {
    width: 85%;
    margin: 50px auto;
}

.about-detail p {
    color: whitesmoke;
    letter-spacing: .5px;
    line-height: 25px;
    font-size: 18px;
    margin-bottom: 50px;
    text-align: center;
}

.about-page-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 10px;
    width: 85%;
    margin: 0 auto 50px;

}

.about-page-flex .mission-vision-list {
    background: #fff;
    height: 220px;
    padding: 15px 25px;
}

.about-page-flex h3 {
    font-size: 20px;
    color: #333;
    text-transform: capitalize;
    letter-spacing: .8px;
}

.about-page-flex p {
    font-size: 15px;
    color: #444;
    letter-spacing: .5px;
    line-height: 22px;
    margin-top: 20px;
}

.choose-serve-list {
    background: #fff;
    padding: 15px 25px;
    height: 300px;
}
@media screen and (max-width:1175px){
    .about-page-flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 10px;
    width: 85%;
    margin: 0 auto;

}
    .choose-serve-list {
    background: #0d0d0d;
    padding: 15px 25px;
    height: auto;
}
    .about-page-flex .mission-vision-list {
    background: #0d0d0d;
    height: auto;
    padding: 15px 25px;
}
    
}
@media screen and (max-width:891px){
    .about-detail p {
        font-size: 15px;
    }
}


.whatsapp-icon {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 20px;  /* Adjust as needed */
    background-color: #25D366; /* WhatsApp color */
    color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.4s ease-in-out;
    text-decoration: none;
    font-size: 30px; /* Adjust icon size */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid white; /* Add border */
}

/* Pulse effect */
.whatsapp-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4); /* Pulse color */
    z-index: -1;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6), 
                0 0 20px rgba(37, 211, 102, 0.4), 
                0 0 30px rgba(37, 211, 102, 0.2), 
                0 0 40px rgba(37, 211, 102, 0.1),
                0 0 50px rgba(37, 211, 102, 0.05);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.whatsapp-icon:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

@media screen and (max-width:768px) {
    .whatsapp-icon{
        bottom: 50px;
    }
}


.side-button {
    position: fixed;
    top: 50%;
    right: -82px;
    z-index: 1000;
    transform: translateY(-50%) rotate(270deg);
}

.side-button-list {
    display: flex;
    gap: 15px;
}

.side-button-list a {
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-radius: 5px 5px 0 0;
    border: 2px solid #333;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

.side-button-list a.enquiry {
    background-color: #333;
    color: #fff;
    border-color: #fff;
}

@media screen and (max-width:768px) {
    .side-button{
        top: 100%;
        left: 50%;
        right: 0;
        transform: translate(-50%,-100%)  rotate(0deg);
        width: 100%;
    }
    .side-button-list{
        justify-content: center;
        gap: 0;
    }
    .side-button-list a{
        flex: 1;
        border: none;
        border-radius: 0;
    }
    
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* Allows scrolling on small screens */
}

.modal-content {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
    border-color: #007bff;
    outline: none;
}

.modal-content .submit-btn {
    padding: 12px 25px;
    background-color: #333;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content .submit-btn:hover {
    background-color: #444;
}

.enquiry-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.enquiry-close:hover {
    color: #666;
}

/* Media query for small screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .modal-content {
        padding: 10px;
        max-width: 90%;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .modal-content label {
        font-size: 0.85rem;
    }

    .modal-content input,
    .modal-content textarea {
        font-size: 0.95rem;
        padding: 10px;
    }

    .modal-content .submit-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .enquiry-close {
        font-size: 20px;
    }
}

/* Media query for extra-small screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .modal-content {
        padding: 15px;
        max-width: 80%;
        margin: 0 auto
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }

    .modal-content input,
    .modal-content textarea {
        font-size: 0.9rem;
        padding: 8px;
    }

    .modal-content .submit-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .enquiry-close {
        font-size: 18px;
    }
}
