button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: black;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    transition: 0.2s ;
    width: fit-content;
    
}
button.white{
     font-size: 14px;
    font-weight: 600;
    padding: 11px 18px;
    color: rgb(0, 0, 0);
    background-color: transparent;
    border: 1px solid rgb(0, 0, 0);
    cursor: pointer;
    outline: none;
    transition: 0.2s ;
    width: fit-content;
    margin-top: 30px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== HEADER ===== */
#header {
  width: 100%;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  z-index: 10;
  -webkit-text-stroke: 0.2px black;
}

#logo {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

#navbar {
  list-style: none;
  display: flex;
  gap: 30px;
}

#navbar li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

#navbar li a:hover,
#navbar li a.active {
  color: #f0c14b;
}
#navbar li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #f0c14b;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s ease;
}


#navbar .cart {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
#hero {
  height: 100vh;
  background: linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("img/about.png") center/cover no-repeat;
  display: flex;
  gap: 20px;
  align-items: center;
  padding-left: 80px;
}

.hero-content {
  color: #ffffff;
  max-width: 600px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 500;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  margin: 10px 0;
}

.hero-content p {
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 40px;
}

/* ===== BUTTONS ===== */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.3s;
}

.btn.primary {
  background: #ffffff;
  color: #000;
  font-weight: 600;
}

.btn.primary:hover {
  background: #f0c14b;
}

.btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.outline:hover {
  background: #ffffff;
  color: #000;
}

.search-box {
  display: flex;
  align-items: center;
  background: #76767675;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  width: 390px;
  justify-content: center;
  margin-left: 33%;
}

.search-box i {
  color: #ffffff;
  margin-right: 8px;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  background: #00000000;
  color: white;
}
@media (max-width:786px) {
  .search-box {
    margin-left: 22%;
  }
  #hero{
    background-size: 50vh;
    background-position: center;
    background-size: cover;
  }
  .hero-content{
    margin-top: 200px;
    margin-bottom: 200px;
  }

.hero-content h2 {
margin-top: 5px;
font-weight: bolder;
}

.hero-content p {
  letter-spacing: 2px;
  margin-top: 5px;
}
}

@media (max-width:550px) {
  .search-box {
    margin-left: 12%;
  }
  #hero{
    background-size: 50vh;
    background-position: center;
    background-size: cover;
  }
  .hero-content{
    margin-top: 200px;
    margin-bottom: 200px;
  }

.hero-content h2 {
margin-top: 5px;
font-weight: bolder;
}

.hero-content p {
  letter-spacing: 2px;
  margin-top: 5px;
}
}
@media (max-width:485px) {
  .search-box {
    margin-left: 6%;
    width:315px ;
  }
}

/* #logo {
  font-size: 28px;
  font-weight: 700;
  color: #088178;
  letter-spacing: 1px;
}

#navbar {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

#navbar li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
}
#navbar i:hover{
  color: #088178;
}

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


#navbar li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #088178;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s ease;
}

#navbar li a:hover::after,
#navbar li a.active::after {
  width: 100%;
}
#hero {
  height: 90vh;
  background: linear-gradient(
      rgb(0, 0, 0),
      rgba(0,0,0,0.45)
    ),
    url("img/e.png") center/cover no-repeat;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

#hero h4,h3 {
  font-size: 20px;
  color: #fffdfd;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

#hero h1 {
  font-size: 56px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
#hero h2{
  color: red;
}

#hero p {
  font-size: 16px;
  color: #eaeaea;
  max-width: 500px;
  margin-bottom: 30px;
}

#hero button {
  width: 180px;
  padding: 14px 0;
  border: none;
  background: #088178;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

#hero button:hover {
  background: #065f59;
  transform: translateY(-2px);
} */
.section-p1{
    padding: 40px 80px;
}
.section-m1{
    margin: 40px 0;
    text-align: center;
}
#feature{
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
}
#feature .fe-box{
    width: 180px;
    text-align: center;
    padding:25px 15px ;
box-shadow: 20px 20px 34px rgba(0,0,0,0.03);
border: 1px solid #cce7d0;
margin: 15px 0;
}
#feature .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.177);
}
#feature .fe-box img{
    width: 100%;
    margin-bottom: 10px
}
#feature .fe-box h4{
    display: inline-block;
padding: 9px 8px 6px 8px;
line-height: 1;
border-radius: 4px;
color: rgb(0, 0, 0);
background:linear-gradient(to right, skyblue ,pink );
}
#product1{
    text-align: center;
}
#product1 p1{
    font-size: smaller;

}
#product1 .pro{
    
    min-width: 100px;
    padding: 6px 0px;
    border: 1px solid #cce7d0;
    border-radius:25px ;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.02);
    margin: 0px 0px;
    transition: 0.2s ease;
    position: relative;
}
#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 30px;
}
.pro img{
    width: 95%;
    border-radius: 20px; 
 }
 .pro a:first-child {
  display: block;
}

#product1 .pro:hover{
        box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.286);
}
.des{
text-align: start;
padding: 6px 10px;
}
.des span{
    color: #606063;
    font-size: 12px;
}
.des h5{
    padding-top:-10px ;
    color: #1a1a1a;
    font-size:14px ;
}
.star i{
    font-size: 12px;
    color: rgb(243,181, 25);
}
.des h4{
   
    font-size: 15px;
    font-weight: 700;
    color: #088178;

}
 .pro #cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-image: url(img/banner.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 40vh;
}
.section-m1 button{
    width:fit-content;
     margin-left: 45.5%;
}
@media (max-width:800px){
  .section-m1 button{
    margin-left: 37%;
  }
}
#banner h4{
    color: white;
    font-size: 16px;
}
.section-m1 h1{
    color: white;
    font-size: 30px;
    padding: 10px 0;
}
#banner h1 span{
    color: #ef3636;
}
#sm-banner{
    display: flex;
justify-content: space-between;
    flex-wrap: wrap;
}
#sm-banner .banner-box{
     
    flex-direction: column;
    justify-content: center;
   align-items: flex-start;
    background-image: url(img/banner1.jpg);
    background-size: cover;
    background-position:top;
    width:600px;
    height: 40vh;
    padding: 30px;
}
#sm-banner .banner2{
    background-image: url(img/banner2.jpg);
}

#sm-banner h4{
    color: rgb(0, 0, 0);
    font-size:20px ;

}
.section-p1 h1{
    color: rgb(0, 0, 0);
    font-size: 40px;
   
}
#sm-banner span{
    color: rgb(0, 0, 0);
    font-size: 14px;
padding-bottom: 20px;
    
}
#sm-banner .banner-box:hover button{
    background: #088178;
    border: 1px solid #088178;
}
#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    padding: 0 80px;
}
#banner3 .banner-box{
   display: flex;
     flex-direction: column;
    justify-content: center;
   align-items: flex-start;
    background-image: url(img/banner5.jpg);
    background-size: cover;
    background-position:top;
    width:28%;
    height: 28vh;
    padding: 20px;
    margin-bottom: 20px;
}
#banner3 h1{
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-weight: 900;
}
#banner3 h3{
     color: #ef3636;
     font-weight: 800;
     font-size: 15px;
}
#banner3 .banner-2{
    background-image: url(img/banner4.jpg);
    background-position: center;
}
#banner3 .banner-3{
    background-image: url(img/banner3.jpg);
    background-position: center;
}
#newsletter{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url();
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
} 
#newsletter .form{
display: flex;
width: 40%;
}
#newsletter h3{
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}
#newsletter p{
    font-size: 14px;
    font-weight: 600;
    color: #808ea0;
}
#newsletter p span{
    color: #ffbd27;
}
#newsletter input {
    height: 3.125rem;
    padding: 0 1.23em;
    font-size: 14px;
    width: 90%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#newsletter button{
    background-color: #088172;
    color: white;
    white-space: nowrap;
     border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.col h3{
    color:#063970;
}
.col p{
    color:#dadfe7;
}
.follow h3,i{
    color: #abb2bc;
}
.row img{
    width: 60%;
    height: 80px;
}
.row{
    display: flex;
    justify-content: flex-start;
}
#GateWays{
     width: 10%;
     height: 80px;
}
footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 0%;
    margin-right: 0%;
    background-color: #0f172a;
}
footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
   margin-bottom: 20px;
   padding-left: 60px;
}
footer .sponcered{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
footer h3{
    font-size: 14px;
    padding-bottom: 20px;
}
footer p{
    font-size: 13px;
 margin: 0 0 8px 0;
}
footer a{
    font-size: 13px;
    text-decoration: none;
    color: #fafafa;
    padding-bottom: 10px;
    padding-top: 10px;
}
footer .follow{
    padding-right: 8px;
    cursor: pointer;
}
footer .follow i:hover,
footer a:hover{
    color: #088178;
}
 .copyright {
   width: 75%;
     text-align: center;  
     color: white;
     margin-left: 10%;
} 


/* css for shop.html */

#newsletter2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(img/banner2.jpg);
    backdrop-filter:blur(50%);
    background-size: cover;
    background-repeat: no-repeat;
   
    background-color: #031733;
    height:28vh;
}
#newsletter2 h1{
    color: rgb(0, 0, 0);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
    text-shadow:  1px 1px 2px rgb(255, 255, 255),  
        -1px -1px 2px rgb(255, 255, 255);
     background-color: #04183400;
}
#newsletter2 p{
    color: rgb(0, 0, 0);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
}
#pagination{
    text-align: center;
}
#pagination button{
    text-decoration: none;
    background-color:#088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
}
#pagination a i{
    font-size: 16px;
    font-weight: 600;
}

/* single-product-style */
#prodetails{
   display: flex;
   margin-top:20px ;
}
#prodetails .single-pro-image{
    width: 40%;
    margin-right: 50px;
}
.small-img-group{
    display: flex;
    justify-content: space-between;
}

.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
#prodetails .single-pro-details{
    width: 50%;
       
}
#prodetails .single-pro-details h4{
    padding:40px 0 30px 0 ;
}
#prodetails .single-pro-details h3{
    font-size: 26px;
    color: black;
}
#prodetails .single-pro-details select{
    display:block;
    padding: 5px 10px ;
    margin-bottom: 10px;
}
#prodetails .single-pro-details input{
    width: 50px;
    height: 44px;
    padding-left: 10px ;
    font-size: 16px;
    margin-right: 10px;
}
#prodetails .single-pro-details input:focus{
    outline: none;
}
#prodetails .single-pro-details button{
    background-color:#088178;
    color: white;
}
#prodetails .single-pro-details span{
    line-height: 25px;
    
}

#blog-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.511), rgba(0, 0, 0, 0.473)),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1600&q=80");
  height: 23vh;
  background-size: cover;
  background-position:center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-hero-text {
  text-align: center;
  color: #fff;
}

.blog-hero-text h1 {
  font-size: 40px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgb(0, 0, 0),  
        -1px -1px 2px rgb(0, 0, 0);;
        margin-top: 15px;
}

.blog-hero-text p {
  font-size: 18px;
  opacity: 0.9;
}

/* BLOG SECTION */
#blog {
  background: #fff;
}

/* BLOG BOX */
#blog .blog-box {
  position: relative;
  display: flex;
  
  align-items: center;
  margin-bottom: 120px;
}

/* DATE */
.blog-box h1 {
  position: absolute;
  top: -40px;
 
  left: 0px;
  font-size: 70px;
  font-weight: 700;

  color: #c9cbce;
  z-index: 1;
}

/* IMAGE */
.blog-img {
  width: 40%;
}

.blog-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* DETAILS */
.blog-details {
  width: 60%;
  padding-left: 40px;
}

.blog-details h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.blog-details p {
  font-size: 15px;
  color: #555;
  line-height: 26px;
  margin-bottom: 20px;
}

.blog-details a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  position: relative;
}

.blog-details a::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: -60px;
}
.full-text {
  display: none;
  margin-top: 10px;
  color: #555;
}


/* responsive of global */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}


/* mobile responsive */
@media (max-width: 799px) {
  #header {
    padding: 15px 30px;
    flex-wrap: wrap;
  }

  #navbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  #navbar li {
    padding: 10px;
  }
}

/* shop/index.html */
@media (max-width: 1200px) {
  #product1 .pro {
    width: 22%;
  }
}

@media (max-width: 992px) {
  #product1 .pro {
    width: 30%;
  }
}

@media (max-width: 768px) {
  #product1 .pro {
    width: 45%;
  }

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

@media (max-width: 480px) {
  #product1 .pro {
    width: 40%;
  }

  .section-p1 {
    padding: 30px 15px;
  }
}
/* header section of index.html */
@media (max-width: 768px) {
  #hero {
    height: auto;
    padding: 60px 30px;
    background-size: cover;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 22px;
  }
}
/* banner of index.html */
@media (max-width: 768px) {
  #sm-banner {
    flex-direction: column;
    gap: 20px;
  }

  #sm-banner .banner-box {
    width: 100%;
    height: auto;
  }

  #banner3 {
    padding: 0 20px;
  }

  #banner3 .banner-box {
    width: 100%;
  }
}
/* sproduct.html */
@media (max-width: 768px) {
  #prodetails {
    flex-direction: column;
  }

  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0;
  }

  #prodetails .single-pro-details {
    width: 100%;
    padding-top: 20px;
  }

  .small-img-group {
    gap: 10px;
  }
}
/* news letter and footer */
@media (max-width: 768px) {
  #newsletter {
    flex-direction: column;
    gap: 20px;
  }

  #newsletter .form {
    width: 100%;
  }

  footer {
    margin: 0;
    padding: 30px;
  }

  .copyright {
    width: 100%;
  }
}
#mobile {
  display: none;
}

#close {
  display: none;
}

/* MOBILE MENU */
@media (max-width: 800px) {

  #mobile {
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 26px;
    cursor: pointer;
    z-index: 1000;
  }

  #navbar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100vh;
    background: #000000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 30px;
    transition: 0.3s ease;
  }

  #navbar.active {
    right: 0;
  }

  #close {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 22px;
    cursor: pointer;
  }

  #navbar li {
    margin-bottom: 20px;
  }
}



@media (max-width: 800px) {
  /* BACK BUTTON */
.back-btn {
  position: fixed;
  top: 13px;
  right:28px;
  background: #ffffff;
  color: #6cb5c7;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.305);
  transition: 0.3s ease;
  z-index: 9999;
}

 .back-btn:active {
  background: #487d82;
  transform: translateY(-2px);
}

.back-btn i {
  font-size: 13px;
}

}
@media (min-width: 800px){
  .back-btn{
   display: none;
  }
}

/* about style sheet */
/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #222;
}

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

/* ABOUT HERO */
#about-hero {
  height: 50vh;
   background-image:
    url("img/ban1.png");
    background-position: center;
    background-size: cover;
  height: 23vh;
  position: relative;
}

#about-hero .overlay {
  background: rgba(15, 23, 42, 0);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#about-hero h1 {
  color: #ffffff;
  text-shadow:  1px 1px 2px rgb(0, 0, 0),  
        -1px -1px 2px rgb(0, 0, 0);;
  font-size: 40px;
  letter-spacing: 1px;
  margin-top: 15px;
}
#about-hero p{
background-color:rgba(0, 0, 0, 0);
color: white;
font-family: sans-serif;
font-size: large;
}
/* #about-hero h6,h2 {
  color: #fb0000;
  margin-top: 10px;
  font-size: 18px;
} */

/* ABOUT CONTENT */
.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-img {
  flex: 1;
}

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

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: red;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  background-color: rgba(0, 0, 0, 0);
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #0f172a94;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #1e293b;
}
#video{
  width: 700px;
  height: 500px;
  align-items: center;
  margin-left: 25%;
  border-radius: 10px;
  border: 1px solid black;
  box-shadow: 0px 0px 5px black;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .section-p1 {
    padding: 40px 30px;
  }

  .about-container {
    flex-direction: column;
  }

  #about-hero h1 {
    font-size: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }
  #about-hero{
    height: 150px;
  }
}
@media (max-width:950px){
  #video{
    text-align: center;
    width: 500px;
    margin-left: 20%;
  }
}
@media (max-width:650px){
  #video{
    text-align: center;
    width: 350px;
    margin-left:18% ;
  }
}
@media (max-width:470px){
  #video{
    text-align: center;
    width: 300px;
    margin-left:19% ;
  }
}

/* contact style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== BANNER ===== */
.contact-banner {
  height: 23vh;
  background: url("https://images.unsplash.com/photo-1520975916090-3105956dac38?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  position: relative;
}

.contact-banner .overlay {
  height: 100%;
  background: rgba(35, 40, 60, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.contact-banner h1 {
  font-size: 40px;
margin-top: 15px;
  text-shadow:  1px 1px 2px rgb(0, 0, 0),  
        -1px -1px 2px rgb(0, 0, 0);;
}

.contact-banner p {
  font-size: 16px;
  opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  display: flex;
  gap: 40px;
  padding: 60px 80px;
}

.contact-left {
  flex: 1;
}

.contact-left span {
  color: #088178;
  font-size: 14px;
  font-weight: 600;
}

.contact-left h2 {
  font-size: 32px;
  margin: 15px 0;
}

.contact-left h3 {
  margin: 20px 0 10px;
}

.contact-left ul {
  list-style: none;
}

.contact-left li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

/* ===== MAP ===== */
.contact-right {
  flex: 1;
}

.contact-right iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

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

#contact {
  background: #ffffff;
}

.contact-container {
  display: flex;
  gap: 0px;
  border: 1px solid rgba(0, 0, 0, 0.675);
  padding: 30px 10px 30px 100px ;
}

/* LEFT FORM */
.contact-form {
  flex: 1;
}

.contact-form span {
  color: #777;
  font-size: 13px;
}

.contact-form h2 {
  font-size: 36px;
  margin: 10px 0 30px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  outline:#000;
  font-size: 14px;
}

.contact-form button {
  width: 140px;
  padding: 14px;
  background: #088178;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #055b54;
}

/* RIGHT PEOPLE */
.contact-people {
  flex: 1;
  margin-left: 30%;
  margin-top: 50px;
}

.person {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.person img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.person p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.person p span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* MOBILE */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
  }

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


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .contact-banner h1 {
    font-size: 34px;
  }
}
@media (max-width:850px){
  .contact-people{
    margin-right: 0px;
    margin-left: 25%;
  }
  .contact-container{
    padding: 10px 20px 10px 20px ;
  }
}
/* =====================
   CART SECTION
===================== */
#cart1 {
  padding: 80px 6%;
  background: #f8f9fa;
  min-height: 100vh;
}

/* =====================
   CART TABLE
===================== */
#cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* TABLE HEADER */
#cart-table thead {
  background: #f1f1f1;
}

#cart-table thead td {
  padding: 18px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
  text-align: center;
}

/* TABLE BODY */
#cart-table tbody td {
  padding: 20px;
  font-size: 15px;
  color: #444;
  text-align: center;
  border-bottom: 1px solid #eee;
}

/* PRODUCT IMAGE */
#cart-table img {
  width: 70px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* REMOVE BUTTON */
.cart-remove {
  font-size: 18px;
  color: #ff4d4d;
  cursor: pointer;
  transition: 0.3s ease;
}

.cart-remove:hover {
  color: #c40000;
}

/* QUANTITY INPUT */
.cart-qty {
  width: 65px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  text-align: center;
  outline: none;
}

.cart-qty:focus {
  border-color: #088178;
}

/* SUBTOTAL */
.cart-subtotal {
  font-weight: 600;
  color: #088178;
}

/* =====================
   TOTAL TEXT
===================== */
/* .total-box h3 {
  margin-top: 30px;
  text-align: right;
  font-size: 22px;
  color: #222;
} */

#cart-total {
  color: #088178;
  font-weight: 700;
}
.checkout-box {
  max-width: 100%;
  margin-left: auto;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.checkout-box h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #222;
  
}

.coupon-box, .payment-box {
  margin-bottom: 20px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.3s;
}

.radio-card:hover {
  border-color: #088178;
  background: #f6fffd;
}

.radio-card input {
  accent-color: #088178;
  transform: scale(1.2);
}

.radio-card span small {
  display: block;
  color: #777;
  font-size: 13px;
}

.total-box {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.total-box p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.discount {
  color: #e63946;
}

.total-box h3 {
  display: flex;
  justify-content: space-between;
  color: #088178;
  font-size: 22px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  #cart-table thead {
    display: none;
  }

  #cart-table,
  #cart-table tbody,
  #cart-table tr,
  #cart-table td {
    display: block;
    width: 100%;
  }

  #cart-table tr {
    background: #fff;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  }

  #cart-table tbody td {
    text-align: right;
    padding: 12px 0;
    border-bottom: none;
  }

  #cart-table tbody td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: #555;
  }

  #cart1 h3 {
    text-align: center;
  }
}
.buy-btn {
  width: 75%;
  margin-left: 14%;
  padding: 14px;
  background: #088178;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.buy-btn:hover {
  background: #066b63;
}
/* =========================
   CART TABLE – DESKTOP
   ========================= */

#cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

#cart-table thead {
  background: #f8f8f8;
}

#cart-table thead td {
  padding: 14px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

#cart-table tbody td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

#cart-table img {
  border-radius: 10px;
  border: 1px solid #ddd;
}

#cart-table input[type="number"] {
  width: 70px;
  padding: 6px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* REMOVE BUTTON – DESKTOP */
#cart-table button {
  background: #000000;
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left:90% ;              /* ✅ center */
  transition: 0.2s ease;
}

#cart-table button:hover {
  background: #d9363e;
  transform: scale(1.05);
}
#cart-hero {
  height: 40vh;
   background-image:
    url("img/e.png");
    background-position: center;
    background-size: cover;
  height: 23vh;
  position: relative;
}

#cart-hero .overlay {
  background: rgba(15, 23, 42, 0);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#cart-hero h1 {
  color: #ffffff;
  text-shadow:  1px 1px 2px rgb(0, 0, 0),  
        -1px -1px 2px rgb(0, 0, 0);;
  font-size: 40px;
  letter-spacing: 1px;
  margin-top: 15px;
}
#cart-hero p{
background-color:rgba(0, 0, 0, 0);
color: white;
font-family: sans-serif;
font-size: medium;
}