@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: #c0dffc;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

body {
  width: 100%;
}

/* Header Section */

#header{
    display: flex;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: rgb(225, 225, 255);
    box-shadow: 0 5px 15px rgb(0, 0, 0, 0.06);
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
     
}
#navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 15px;
}
#navbar li{
    list-style: none;
    position: relative;
    
}
#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600px;
    font-weight: bold;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active{
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30px;
    height: 2px;
    background:#088178;
    position: absolute;
    bottom: -4px;
    left: 1px;
}

/* Home Page */
#hero{
    background-image: url("img/hero4.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
     
     
}
#hero h4{
    padding-bottom: 20px;

}

#hero h1{
    color: #088178;
}

#hero button{
    background-image: url("img/button.png");
    background-color: transparent;
    color: #088178;
    border: 0;
    font-weight: bold;
    padding: 14px 80px;
    background-repeat: no-repeat;
    transition: 0.3s ease;
    cursor: pointer;
}
#hero button:hover{
    transform: scale(0.9)
}

/* Feature Section */
#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .f-box{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #cce7d0;
    border-radius: 5px;
    transition: all 0.3s ease;
}
#feature .f-box:hover {
    transform: scale(1.08); /* slightly bigger */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* shadow for depth */
}
#feature .f-box h6{
    display: inline-block;
    background-color: #dcf7f5;
    padding: 10px;
}
#feature .f-box img{
    width: 100%;
    margin-bottom: 10px;
}
#feature .f-box:nth-child(2) h6{
    background-color: #f7dcf3;
}
#feature .f-box:nth-child(3) h6{
    background-color: #dcf7de;
}
#feature .f-box:nth-child(4) h6{
    background-color: #c0dffc;
}
#feature .f-box:nth-child(5) h6{
    background-color: #dac0fc;
}
#feature .f-box:nth-child(6) h6{
    background-color: #ebc0fc;
}

/* Products Section */
#product1{
    text-align: center;
}
#product1 .pro-container{
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#product1 .pro1{
    width: 25px;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 10px;
    margin: 15px 0;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
#product1 .pro1:hover{
    transform: scale(1.08); /* slightly bigger */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* shadow for depth */
}

#product1 .pro1 img{
    width: 100%;
    border-radius: 10px;
    
}
#product1 .pro1 .discription{
    text-align: start;
}
#product1 .pro1 .discription span{
    color: #088178;
    font-size: 12px;
}
#product1 .pro1 .discription h5{
    padding-top: 6px;
    font-size: 14px;
}
#product1 .pro1 .discription .star i{
    padding-top: 3px;
    color: rgb(241, 241, 111);
}
#product1 .pro1 .discription h4{
    padding: 7px 0;
    font-size: 14px;
    font-weight: 600;
    color: #088178;
}
#product1 .pro1 .discription .price{
    display: flex;
    justify-content: space-between;
}
#product1 .pro1 .discription .price i{
    padding-right: 20px;
    color: #088178;
    transition: all 0.3s ease;
}
#product1 .pro1 .discription .price i:hover{
    transform: scale(1.3);
}

/* Banner Section */

#banner{
    background-image: url("img/banner/b2.jpg");
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center;
    gap: 10px;
    background-size: cover;
    background-position: center;

}

#banner h4{
    color: #c0dffc;
    font-size: 18px;
}
#banner h2{
    color: #f7fbff;
    font-size: 32px;
    padding: 10px 0;
}
#banner span{
    color: #e42121;
}
#banner button{
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}
#banner button:hover{
    transform: scale(1.05);
}
#smBanner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}
#smBanner .bannerBox1{
    background-image: url("img/banner/b17.jpg");
    height: 50vh;
    min-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align:center;
    gap: 10px;
    background-size: cover;
    background-position: center;
    padding: 30px;
}
#smBanner .bannerBox2{
    background-image: url("img/banner/b10.jpg");
    height: 50vh;
    min-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align:center;
    gap: 10px;
    background-size: cover;
    background-position: center;
    padding: 30px;
}
 
#smBanner h4{
    color: #ffffff;
    font-weight: 500;
}
button.bannerBtn{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #ffffff;
    background-color:  transparent;
    cursor: pointer;
    border: 1px solid #ffffff;
    outline: none;
    transition: 0.2s;
}
#smBanner .bannerBtn:hover{
    transform: scale(1.05);
    color: #1a1a1a;
    background-color: #ffffff;
}
#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 80px;
}
#banner3 .bannerBox1{
    background-image: url("img/banner/b7.jpg");
    height: 30vh;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align:center;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}
#banner3 .bannerBox2{
    background-image: url("img/banner/b4.jpg");
    height: 30vh;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align:center;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}
#banner3 .bannerBox3{
    background-image: url("img/banner/b18.jpg");
    height: 30vh;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align:center;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}
#banner3 h2{
    color: #c0dffc;
    font-weight: 900;
    font-size: 22px;
}
#banner3 h3{
    color: #f55b5b;
    font-weight: 700;
    font-size: 18px;
}

#newsBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-image: url("img/banner/b14.png");
    background-repeat: no-repeat;
    background-position: 10px 20px;
    background-color: #0b1a31;
}
#newsBox h4{
    color: #c0dffc;
    font-weight: 700;
}
#newsBox p{
    color: #74899c;
    font-weight: 600;
}
#newsBox p span{
    color: #f8773b;
    font-weight: 600;
}
#newsBox input{
    height: 3.2rem;
    width: 100%;
    padding: 0 1.25em;
    font-size: 14px;
    border: 1px solid transparent;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#newsBox button{
    color: #ffff;
    background-color: #74899c;
    height: 3.2rem;
    font-size: 12px;
    width: 40%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
     

}
#newsBox .form{
    display: flex;
    justify-content:  space-between;
    align-items: center;
    width: 40%;
    gap: 5px;
     
}

.footer {
    background-color: #f3f3f3;
    padding: 40px 80px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-col a {
    text-decoration: none;
    color: #222;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #088178;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}
.follow{
    margin-top: 10px;
}

.follow .icon i {
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.follow .icon i:hover {
    color: #088178;
    transform: scale(1.05);

}

.install .row img {
    width: 120px;
    margin-right: 10px;
    border: 1px solid #088178;
    border-radius: 5px;
}

.install img {
    margin-top: 10px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

#mobile{
     display: none;
     align-items: center;
      
}
#close{
    display: none;
}

/* Shop Page Section */
#heroShop{
    background-image: url("img/banner/b1.jpg");
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#heroShop h2{
    color: #cce7d0;
}
#heroShop p{
    color: #f7851b;
    font-weight: 600;
}
#pageMover{
    
    text-align: center;
     
}
#pageMover a{
    text-decoration: none;
    background-color: #0b1a31;
    padding: 15px 20px;
    color: #dcf7de;
    border-radius: 4px;
    font-weight: 600;
}

#pro-details .single-pro-image{
    width: 40%;
    margin-right: 50px;
}
#pro-details .smallImgGroup{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
    transition: 0.3s ease;
}
.small-img-col:hover{
    transform: scale(1.08);
}

/* Product Details Layout */
#pro-details {
    display: flex;
    gap: 40px;
}

/* Left Side Image */
.single-pro-image {
    width: 40%;
}

.smallImgGroup {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.small-img-col {
    width: 24%;
    cursor: pointer;
}

/* Right Side Content */
.single-pro-details {
    width: 50%;
    padding-top: 30px;
}

.single-pro-details h4 {
    padding: 20px 0 10px;
}

.single-pro-details h2 {
    font-size: 26px;
}

.single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.single-pro-details input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    margin-right: 10px;
}

.single-pro-details button {
    background: #088178;
    color: #fff;
}

.single-pro-details span {
    line-height: 25px;
}

/* Blog Section */
#heroShop.pageHeader{
    background-image: url("img/banner/b19.jpg");
}
#heroShop.pageHeader p{
    color: #49ff11;
}

#blog{
    padding: 150px 150px 0 150px;
}
#blog .blog-container{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 70px;
}
#blog .blog-img{
    width: 50%;
    margin-right: 40px;
}
#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#blog .blog-content{
    width: 50%;
}
#blog .blog-content a{
    text-decoration: none;
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 700;
}

#blog .blog-container h1{
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #dac0fc;
    z-index: -2;
}

#heroShop.aboutSec {
    background-image: url("img/about/banner.png");
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat;
}

#about-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Image */
.about-img {
    width: 50%;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
}

/* Right Content */
.about-content {
    width: 50%;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 14px;
    color: #555;
    line-height: 25px;
}

.about-content abbr {
    font-size: 13px;
    color: #333;
}
marquee {
    padding: 5px;
    background-color: #c0dffc;
}
#about-app{
    text-align: center;
}

#about-app .video{
    width:70%;
    height: 100%;
    margin-top: 30px;
    margin: 30px auto 0 auto;

}
#about-app .video video{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    
}
#about-app a{
    text-decoration: none;
}

#contactDetails{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
#contactDetails .details span{
    font-size: 12px;
}
#contactDetails .details h2{
    font-size: 24px;
    line-height: 35px;
    padding: 20px 0;
}
#contactDetails .details h3{
    font-size: 18px;
    padding-bottom: 15px; 
}
#contactDetails .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}
#contactDetails .details li i{
    font-size: 14px;
    padding-right: 22px;
}
#contactDetails .details li p{
    margin: 0;
    font-size: 14px;
}
#cart {
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img {
    width: 70px;
}

#cart table td:nth-child(1) {
    width: 50px;
    text-align: center;
}

#cart table td:nth-child(2) {
    width: 100px;
}

#cart table td:nth-child(3) {
    width: 200px;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
    width: 120px;
    text-align: center;
}

#cart table td input {
    width: 60px;
    padding: 5px;
}

#cart table thead {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

#cart table thead td {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px 0;
}

#cart table tbody tr td {
    padding: 15px 0;
    font-size: 14px;
}

#cart table tbody td i {
    color: #888;
    cursor: pointer;
}

#cart-add {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Coupon */
#coupon {
    width: 50%;
}

#coupon h3 {
    margin-bottom: 15px;
}

#coupon div {
    display: flex;
}

#coupon input {
    padding: 10px;
    width: 70%;
    border: 1px solid #ccc;
    outline: none;
}

#coupon button {
    padding: 10px 20px;
    background: #088178;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Subtotal */
#subtotal {
    width: 40%;
    border: 1px solid #ccc;
    padding: 20px;
}

#subtotal h3 {
    margin-bottom: 15px;
}

#subtotal table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#subtotal table td {
    padding: 10px;
    border: 1px solid #ddd;
}

#subtotal button {
    width: 100%;
    background: #088178;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
}


/* Media Responsive */
@media (max-width : 820px) {

    .section-p1{
        padding: 40px 40px;
    }

    #navbar {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 200px;
    background-color:rgb(225, 225, 255);
    padding: 80px 0 0 10px;
    transition: 0.3s ;
    }

    #navbar.active{
        right: 0px;
    }


    #mobile{
     display: flex;
     align-items: center;
      
    }
    #mobile i{
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 40px;
        cursor: pointer;
    }
    #navbar .active{
        right: 0px;
    }
    #close{
        position: absolute;
        top: 30px;
        display: block;
        color: #1a1a1a;
        font-size: 24px;
        text-align: start;
    }
    #bagggg{
        display: none;
    }

    #hero{
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    }
    #feature{
        justify-content: center;
        
    }
    #feature .f-box {
        margin: 15px 15px;
    }
    #product1 .pro-container {
        justify-content: center;
        
    }
    #product1 .pro1 {
         margin: 15px;
    }
    #smBanner {
        justify-content: center; 
    }
    #banner3 {
        padding: 0 40px;
    }
    #banner3 .bannerBox1{
        width: 25%;
    }
    #banner3 .bannerBox2{
        width: 25%;
    }
    #banner3 .bannerBox3{
        width: 25%;
    }
    #newsBox .form{
        width: 70%;
    }

    #blog img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    #blog .blog-container {
        display: flex;
        align-items: center;
        width: 100%;
        height: 35vh;
        position: relative;
        margin-bottom: 70px;
    }
    #cart-add {
        flex-direction: column;
    }

    #coupon,
    #subtotal {
        width: 100%;
    }
    #cart.section-p1{
        padding: 10px;
    }

}

@media (max-width : 420px) {

    .section-p1{
        padding: 20px;
    }
    #header{
        padding: 10px 30px;
        width: 100%;
    }
    #hero{
        padding: 0 20px;
        background-position:55%;
    }
    h2{
        font-size:32px;
    }
    h1{
        font-size: 40px
    }
    #feature{
        justify-content: space-between;
    }
    #feature .f-box{
        width: 155px;
        margin: 0 0 15px 0;
    }
    #product1 .pro-container {
        justify-content: space-between;
    }
    #product1 .pro1 {
        width: 100%;
         
    }
    #banner{
        padding: 10px;
    }
     #smBanner {
        display: flex;
        flex-direction: column; /* stack vertically */
        gap: 15px;
        width: 100%;
    }

    #smBanner .bannerBox1,
    #smBanner .bannerBox2 {
        width: 100%;
        min-width: 100%;
        height: 180px; /* smaller for mobile */
        padding: 15px;
    }

    #smBanner h2 {
        font-size: 18px;
    }

    #smBanner h4 {
        font-size: 14px;
    }

    #smBanner span {
        font-size: 12px;
    }
    #banner3 {
        display: flex;
        flex-direction: column; /* stack vertically */
        gap: 15px;
        padding: 0 15px;
    }

    #banner3 .bannerBox1,
    #banner3 .bannerBox2,
    #banner3 .bannerBox3 {
        width: 100%;
        min-width: 100%; /* override 30% */
        height: 150px; /* smaller height */
        padding: 15px;
    }

    #banner3 h2 {
        font-size: 16px;
    }

    #banner3 h3 {
        font-size: 12px;
    }
    .footer {
        padding: 20px;
    }

    .footer-container {
        display: flex;
        flex-direction: column; /* stack */
        gap: 20px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }

    .install .row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .install .row img {
        width: 100px;
    }

    .copyright {
        text-align: center;
        font-size: 12px;
    }

    /* product section */

    #heroShop {
        background-image: url("img/banner/b1.jpg");
        width: 100%;
        height: 30vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        object-fit: cover;
    }
    #heroShop p{
        text-align: center;
    }


    #pro-details{
        display: flex;
        flex-direction: column;
    }

    #pro-details .single-pro-image{
        width: 100% !important;
        margin-right: 50px !important;
    }
    #pro-details .single-pro-details{
        width: 100%;
    }
    #pro-details .single-pro-details span{
        font-size: 12px;
    }

    /* blog page */
    #blog{
        padding: 100px 20px 0 20px;
    }
    #blog .blog-container{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog .blog-img{
        width: 100%;
    }
    #blog .blog-content{
        width: 100%;
        margin-bottom: 20px;
    }
    #about-section {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 40px;
        margin: 0 30px;
    }   
    #about-section .about-img{
        width: 100%;
    }
    #about-section .about-content{
        width: 100%;
    }
    #about-section.section-p1{
        padding: 0;
    }
    #about-section h1{
        font-size: 12px;
    }
    #contactDetails {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
    }
    #contactDetails .details h2 {
        font-size: 18px;
        line-height: 25px;
        padding: 10px 0;
    }
     #contactDetails .map {
        width: 100%;
        height: 300px;
    }

    #contactDetails .map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
}