@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: #78a9f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

::selection {
  color: rgb(255, 255, 255);
  background-color: #046414;
}

:root {
  --font-red--: #ED3237;
  --font-gold--: #C8A568;
  --font-green--: #00b21e;
   --font-blue--: #08409a;
  --font-black--: black;
  --background--: #EDEDED;
  --background2--: #606060;
  --background3--: #08409a;
  --footer--: #EAE5E5;
  --boder--: #C8A568;
  --btn-color: #08409a;
}


/* --------------------
    Navigtion Start 
    --------------------*/
nav {
  height: 80px;
  background: #78a9f8;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.4);
}

nav img {
  width: 200px;
  position: absolute;
  top: 20px;
  left: 5%;
}

nav ul {
  float: right;
  margin-right: 35px;
}

nav ul li {
  display: inline;
  margin: 10px 8px;
  padding: 0 8px;
  top: 24px;
}

nav ul li a {
  position: relative;
  color: var(--font-black--);
  font-size: 18px;
  font-weight: 500;
  padding: 5px 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

nav ul li a.active {
  color: var(--font-gold--)
}

nav ul li a:before {
  position: absolute;
  content: ' ';
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--background3--);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s linear;
}


nav ul li a.active:before,
nav ul li a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  color: var(--font-gold--)
}

label #btn,
label #cancel {
  color: var(--btn-color);
  font-size: 30px;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

nav ul li {
  position: relative;
  transition: all 0.3s ease-in-out;

}

.dropmenu {
  position: absolute;
  width: 260px;
  height: 370px;
  top: 30px;
  left: -28PX;
  margin: 0;
  background-color: var(--background--);
  display: none;
  opacity: 0;
  z-index: 99999;
}

.dropmenu li {
  padding: 5px 5px;
  display: block;

}

.menu,
.dropmenu {
  transition: all 0.3s ease-in-out;
}

.menu:hover .dropmenu {
  display: block;
  opacity: 1;
}

/* --------------Responsive-------------- */
@media (max-width: 1118px) {
  nav img {
    left: 8%;
  }
}

@media (max-width: 992px) {
  nav img {
    left: 6%;
    top: 25px;
    width: 150px;
  }

  nav ul li a {
    font-size: 17px;
  }
}

@media (max-width: 860px) {

  label #btn {
    display: block;
  }


  ul {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: var(--background--);
    top: 80px;
    left: -100%;
    /* text-align: center; */
    transition: all .5s;
    z-index: 999;
  }

  nav ul li {
    display: block;
    margin: 50px 30px;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
  }

  nav ul .menu {
    position: relative;
  }

  ul.dropmenu {
    position: absolute;
    width: 180px;
    height: 320px;
    top: 0px;
    left: 140px;
    background-color: rgb(218, 216, 216);
    border-radius: 10px;
    text-align: center;
    display: none;
    opacity: 0;
    z-index: 999;
  }

  .dropmenu li {
    padding: 4px 5px;
    margin: 0px;
    display: block;
    margin: 0;
  }

  .dropmenu li a {
    font-size: 14px;
  }

  .menu:hover .dropmenu {
    display: block;
    opacity: 1;
  }

  #check:checked~ul {
    left: 0;
  }

  #check:checked~label #btn {
    display: none;
  }

  #check:checked~label #cancel {
    display: block;
  }
}

/* --------------------
    Navigtion End 
    --------------------*/



/* --------------------
    Slider Start 
    --------------------*/
.container1 {
  position: relative;
}

.container1 .slide-container .slide {
  min-height: 85vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 9%;
  padding-bottom: 70px;
}

.container1 .slide-container .slide .content {
  flex: 1 1 350px;
  animation: slideContent .4s linear .6s backwards;
}

@keyframes slideContent {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
}

.container1 .slide-container .slide .content .image {
  flex: 1 1 500px;
}

.container1 .slide-container .slide .content .image img {
  animation: slideImage .4s linear;
}

@keyframes slideImage {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
}

.container1 .slide-container .slide .content h3 {
  font-size: 40px;
  color: var(--font-blue--);
}

.container1 .slide-container .slide .content p {
  font-size: 20px;
  text-align:justify;
  color: var(--font-black--);
  padding: 10px 0;
}

.container1 .slide-container .slide .content .btn {
  margin-top: 10px;
  display: inline-block;
  background-color:var(--background3--);
  color: #fff;
  font-size: 17px;
  padding: 9px 40px;
}

.container1 .slide-container .slide .content .btn:hover {
  background: #333;
}

.container1 .slide-container {
  display: none;
}

.container1 .slide-container.active {
  display: block;
}

/* .container1 .slide-container:nth-child(1) .slide {
  background: linear-gradient(90deg, #f9f9f9 70%, #fe4141 30.1%);
}

.container1 .slide-container:nth-child(2) .slide {
  background: linear-gradient(90deg, #f9f9f9 70%, #ff9090 30.1%);
}

.container1 .slide-container:nth-child(3) .slide {
  background: linear-gradient(90deg, #f9f9f9 70%, #99bbff 30.1%);
}
.container1 .slide-container:nth-child(4) .slide {
  background: linear-gradient(90deg, #f9f9f9 70%, #aeaeae 30.1%);
}

.container1 .slide-container:nth-child(5) .slide {
  background: linear-gradient(90deg, #f9f9f9 70%, #ff9090 30.1%);
}

.container1 .slide-container:nth-child(6) .slide {
  background: linear-gradient(90deg, #f9f9f9 70%, #ffb499 30.1%);
}
.container1 .slide-container:nth-child(7) .slide {
  background: linear-gradient(90deg, #f9f9f9 70%, #ff99c5 30.1%);
} */

.container1 #prev,
.container1 #next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: #333;
  height: 50px;
  width: 40px;
  line-height: 50px;
  font-size: 25px;
  text-align: center;
  cursor: pointer;
  font-weight: bolder;
}

.container1 #prev:hover,
.container1 #next:hover {
  background: #666;
}

.container1 #prev {
  left: 20px;
}

.container1 #next {
  right: 20px;
}

@media (max-width: 500px) {
  .container1 #prev {
    left: 0px;
    top: 60%;
  }

  .container1 #next {
    right: 0px;
    top: 60%;
  }

}

/* --------------------
    Slider End 
    --------------------*/

/* --------------------
    about start
    --------------------*/
.tital {
  color: var(--font-blue--);
  text-align: center;
  margin: 50px 0;
  font-size: 40px;
  font-weight: 600;
}

.about1 {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.text1 {
  width: 100%;
  text-align: center;
}

.text1 h2 {
  color: var(--font-blue--);
  font-size: 40px;
}

.text1 p {
  font-size: 20px;
  margin: 25px 0;
  text-align: left;
}

.text1 .mybtn {
  border: none;
  background-color: var(--btn-color);
  padding: 10px 15px;
  border-radius: 5px;
  align-items: center;
  color: var(--font-black--);

}

.text1 button a {
  color: white;
}

.image2 {
  width: 100%;
  text-align: center;
}

.image2 img {
  width: 90%;
}

@media (max-width: 992px) {
  .about1 {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .about1 {
    display: block;
  }

  h1 {
    margin: 25px 0;
  }

  .text1 h2 {
    font-size: 25px;
  }
}

/* --------------------
    about End
    --------------------*/


/* --------------------
    Product Start
    --------------------*/
.center-slider img {
  width: 90%;
}

.wrapper {
  padding: 0px 0;
}

/* Default slide */
.center-slider .slick-slide {
  color: #FFF;
  height: 350px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}

.center-slider .slick-slide,
.center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.center-slider .slick-center,
.center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);

}

.slick-next,
.slick-prev {
  z-index: 5;
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
  font-size: 26px;
}

/* --------------------
    Product End
    --------------------*/


/* --------------------
    Partner 
    --------------------*/
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 21));
  }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
  margin-bottom: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 42);
}

.slider .slide {
  height: 100px;
  width: 250px;
  margin: 0 30px;
}
/* --------------------
    Partner End
    --------------------*/

.map {
  width: 100%;
  margin: 0;
}

.map iframe {
  width: 100%;
  height: 450px;
}

/* Message   Or Alert Css */
.success { color: green; padding: 10px; background: #e6ffe6; border: 1px solid #00b300; margin-bottom: 10px; }
.error { color: red; padding: 10px; background: #ffe6e6; border: 1px solid #ff1a1a; margin-bottom: 10px; }

/* Whatsapp Btn */
.whatsapp-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  line-height: 60px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transition: 0.3s;
}

/* --------------------
    Footer CSS Start
-------------------- */
footer {
  background: linear-gradient(135deg, #02061794, #0a254094, #1118278c);
  color: #fff;
  padding: 80px 20px 40px; /* Increased top and bottom padding */
  font-family: 'Poppins', sans-serif;
  margin-top: -6px;
}

footer .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}

footer .box {
  flex: 1 1 220px;
  margin: 20px;
}

footer .topic {
  font-size: 22px;
  font-weight: 600;
  color: #e0b722;
  margin-bottom: 20px;
  position: relative;
}

footer .topic::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #e0b722;
  margin-top: 8px;
  border-radius: 5px;
}

footer p {
  font-size: 15px;
  line-height: 1.7;
}

footer .media-icons a {
  display: inline-block;
  color: #38bdf8;
  background: #0f172a;
  width: 42px;
  height: 42px;
  margin: 10px 6px 0 0;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
  transition: 0.4s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

footer .media-icons a:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
}

footer .middle a, 
footer .middle2 a {
  display: block;
  color: #ccc;
  margin: 8px 0;
  text-decoration: none;
  transition: 0.3s;
}

footer .middle a:hover, 
footer .middle2 a:hover {
  color: #e0b722;
}

footer .right a {
  color: #ccc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

footer .right a:hover {
  color: #e0b722;
}

footer .bottom {
  text-align: center;
  padding: 20px 0 0;
  font-size: 14px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

footer .bottom a {
  color: #e0b722;
  text-decoration: none;
}

footer .bottom a:hover {
  text-decoration: underline;
}

/* Contact item spacing improved */
footer .right .contact-item {
  display: flex;
  align-items: flex-start;
  color: #ccc;
  margin-bottom: 10px; /* More spacing between contact lines */
  gap: 12px;
  line-height: 1.8; /* More space between lines */
}

footer .right .contact-item i {
  font-size: 18px;
  color: #e0b722;
  margin-top: 3px;
}

footer .right .contact-item span {
  font-size: 15px;
  line-height: 1.8;
}

/* Fully Responsive Footer Fix */
@media (max-width: 900px) {
  footer .content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  footer .box {
    width: 100%;
    margin: 20px 0;
    padding: 0 10px;
    text-align: left;
  }

  footer .topic {
    text-align: left;
  }

  footer .topic::after {
    margin-left: 0;
  }

  footer .media-icons {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Keep icon on the left and text on the right */
  footer .right .contact-item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  footer .right .contact-item i {
    margin-top: 3px;
    min-width: 20px; /* ensures alignment */
    text-align: center;
  }

  footer .right .contact-item span {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 60px 15px 30px;
  }

  footer .topic {
    font-size: 18px;
  }

  footer p,
  footer .middle a,
  footer .middle2 a,
  footer .right .contact-item span {
    font-size: 13px;
  }

  footer .media-icons a {
    width: 34px;
    height: 34px;
    font-size: 15px;
    line-height: 34px;
  }

  /* Contact item layout holds on very small screens */
  footer .right .contact-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  footer .right .contact-item i {
    margin-top: 4px;
  }
}


/* --------------------
    About
    --------------------*/
h2 {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  color: var(--font-blue--);
  margin-top: 20px;
}

.line {
  width: 110px;
  height: 3px;
  background: var(--boder--);
  margin: 2px auto;

}

.line2 {
  width: 90px;
  height: 3px;
  background: var(--boder--);
  margin: auto;

}

.about {
  width: 75%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;

}

.about .box1 {
  width: 48%;
  color: rgb(98, 98, 98);
}

.about .box1 p {
  font-size: 20px;
  margin-top: 10px;
}

.about .box2 p {
  font-size: 20px;
  margin-top: 10px;
}

.about .box2 p i {
  color: var(--background3--);
  font-size: 20px;
  margin-right: 10px;
}

.about .box2 {
  width: 48%;
  color: rgb(98, 98, 98);
}



.add {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  width: 75%;
  text-align: center;
  margin-bottom: 50px;

}

.add1 {
  padding: 10px;
}

.add1 img {
  width: 20%;
}

.add1 h3 {
  color: var(--font-blue--);
  margin: 10px 0;
}

.add1 h3 .underline {
  width: 120px;
  height: 3px;
  background-color: var(--boder--);
  margin: 5px auto;

}

.add1 p {
  color: #606060;
  font-size: 20px;

}


.worldmap {
  margin: 50px auto;
  display: flex;
  justify-content: center;
  background-color: wh;

}

.worldmap img {
  margin: 0 auto;
  width: 50%;
  height: auto;

}

@media (max-width:1200px) {
  .about {
    width: 95%;
  }

  .add {
    width: 95%;
  }
}

@media (max-width:786px) {
  .about {
    width: 95%;
    display: block;
  }

  .about .box1 {
    width: 100%;
    font-size: 12px;
  }

  .about .box2 {
    width: 100%;
    font-size: 12px;

  }

  .about .box2 p i {
    color: var(--background3--);
    font-size: 12px;
    margin-right: 10px;
  }

  .worldmap {
    margin: 50px 0;
    display: block;
  }

  .worldmap img {
    width: 100%;
    height: auto;

  }

}

@media (max-width:600px) {
  .about {
    width: 95%;
    display: block;
  }

  .about .box1 p {
    width: 100%;
    font-size: 16px;

  }

  .about .box2 p {
    width: 100%;
    font-size: 16px;

  }

  .add {
    width: 95%;
    display: block;
  }
}

/* --------------------
    About End
    --------------------*/



/* --------------------
    Gallary 
    --------------------*/
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  margin-bottom: 50px;

}

h1 {
  font-size: 40pt;
  font-weight: 500;
  color: #363638;
}

.container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
}

.item {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 2%;
  min-width: 300px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.item:hover {
  cursor: pointer;
}

.item * {
  transition: all 0.35s ease-in-out;
}

.item img {
  max-width: 100%;
  vertical-align: top;
  height: 310px;
}

.item:hover img {
  opacity: 0.3;
}

.text {
  width: 80%;
  height: 90%;
  position: absolute;
  top: -130px;
  left: 0%;
}

.text h3 a{
  color: rgb(255, 0, 0);
  font-size: 1.5em;
}

.item:hover .text {
  top: 30%;
}

.item:hover .button {
  bottom: 20%;
}

.item .button {
  position: absolute;
  bottom: -100px;
  left: 25%;
  width: 50%;
  border: 3px solid #01A2AC;
  padding: 15px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  background-color: #01A2AC;
  color: #F5F5F5;
}

/* Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #F5F5F5;
  margin: 5% auto;
  box-sizing: border-box;
  width: 700px;
  max-height: 714px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.scale {
  animation: scale 0.5s;
  animation-fill-mode: forwards;
}

@keyframes scale {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

#img {
  width: 100%;
  height: 450px;
}

#details {
  padding: 25px;
  text-align: left;
  position: relative;
  height: 264px;
  box-sizing: border-box;
  border-top: 1px solid #363638;
}

#details * {
  transition: all .3s;
}

#title {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.button {
  position: absolute;
  width: 30%;
  background-color: #01A2AC;
  color: #F5F5F5;
  text-align: center;
  left: 25px;
  bottom: 35px;
  padding: 15px;
}


#details i {
  position: absolute;
  bottom: 30px;
  right: 25px;
  font-size: 3rem;
  color: #01A2AC;
}

.button:hover,
i:hover {
  cursor: pointer;
  opacity: 0.6;
}

/* Close Button */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 10px;
}

.close:hover,
.close:focus {
  color: #363638;
  text-decoration: none;
  cursor: pointer;
}


@media (max-width: 991px) {

  .container {
    width: 100%;
  }

  .item {
    margin: 10px 5%;
    min-width: 250px;
    max-width: 250px;
    width: 100%;
  }

  .item img {

    height: 250px;
  }

}

@media (max-width: 642px) {

  .container {
    width: 100%;
  }

  .item {
    margin: 10px 3%;
    min-width: 200px;
    max-width: 200px;
    width: 100%;
  }

  .item img {

    height: 200px;
  }

}

@media (max-width: 473px) {
  .item {
    margin: 10px 20px;
    min-width: 150px;
    max-width: 150px;
    width: 100%;
  }

  .item img {
    height: 150px;
  }

}

@media (max-width: 397px) {
  .item {
    margin: 5px 0.5%;
    min-width: 130px;
    max-width: 130px;
    width: 100%;
  }

  .item img {
    height: 130px;
  }

}

/* --------------------
    Gallary End
    --------------------*/


/* --------------------
    Conatct
    --------------------*/


.containe8 {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 2rem;
  /* background-color: #12192c; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-solid,
.fa-location-dot,
.fa-phone {
  font-size: 15px;
  color: var(--font-blue--) !important;
  margin-right: 10px;

}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #62ab6e;
  border: #C8A568 2px solid;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  /*z-index: 1000;*/
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  position: relative;

}



/* .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #C8A568;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
} */

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;

}

.title {
  color: #FFF;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #C8A568;
  line-height: 1;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

/* .input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #C8A568;
  top: 50%;
  transform: translateY(-50%);
  border: #C8A568 2px solid;
} */

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
  margin: auto;
}

.contact-info .title {
  color: #fff;
}

.text {
  color: #fff;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #fff;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
  color: orange;
}

.social-media {
  padding: 2rem 0 0 0;
  color: orange;
}

.social-media p {
  color: #fff;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #08409a, #08409a);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}






.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .containe8 {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}



.credit {
  text-align: center;
  color: #fff;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.credit a {
  text-decoration: none;
  color: #FBAB7E;
  font-weight: bold;
}

/* ------------- product -------------------- */



.h3heding {
  color: #046414;
  text-align: center;
  margin: 30px 20px;
}

.tegline {
  color: #363638;
  width: 80%;
  text-align: center;
  margin: 25px auto;
  font-size: 20px;
}

.boxss {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin: 50px auto;
  width: 100%;
}

.boxss .imgbox {
  width: 30%;
  margin: 20px;
}

.boxss .textbox {
  width: 30%;
}

.boxss .textbox3 {
  width: 30%;
}

.boxss .imgbox img {
  width: 100%;
  align-items: center;
}

.feature_boxes {
  width: 100%;
  /* margin: 30px; */
}

.feature_boxes button {
  font-size: 17px;
  padding: 10px;
  margin: 5px;
  height: auto;
  border: 1px solid #62ab6e;
  border-radius: 5px;
}

.feature_boxes button:hover {
  color: #62ab6e;
  background-color: white;
  cursor: pointer;
}

.btn_.active {
  background: #62ab6e;
  color: white;
}

.desc_ {
  margin: 5px;
  display: none;
}

.btn_ {
  transition: all 0.2s ease;
}

.desc_1 {
  padding: 30px;
  background-color: rgb(255, 243, 243);
  border-radius: 10px;
  border: 2px solid rgb(159, 159, 159);
  display: flex;
  width: 100%;
}

.desc_2 {
  padding: 30px;
  background-color: rgb(255, 243, 243);
  border-radius: 10px;
  border: 2px solid rgb(159, 159, 159);
  width: 100%;
}

.desc_3 li {
  list-style-type: circle;
  padding: 10px;
  background-color: rgb(255, 243, 243);
  border-radius: 10px;
  border: 1px solid rgb(159, 159, 159);
  width: 100%;
}

.bold {
  color: rgb(120, 63, 63);
  font-weight: bold;
}

.table_container {
  background: #fff;
  border-width: 1px;
  padding: 15px;
  width: 100%;
}

.table>thead>tr>th {
  border-top: none !important;
}

.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
  border-top: 1px solid #e7e7e7;
  line-height: 1.42857;
  padding: 5px 20px;
  vertical-align: middle;
}

th {
  text-align: left;
}

.list3>li {
  list-style: none;
  position: relative;
  padding: 0 0 0 27px;
  margin-bottom: 10px;
}

.list3 li:after {
  background: #62ab6e;
  color: #fff;
  content: "\2192";
  font-size: 9px;
  height: 18px;
  left: 0;
  line-height: 18px;
  position: absolute;
  text-align: center;
  text-indent: 1px;
  top: 3px;
  width: 18px;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #E5E5E5;
  }
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

.btnn {
  background-color: rgb(255, 238, 238);
  color: rgb(1, 1, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 40px;
  font-size: 15px;
  padding: 10px;
  width: 220px;
  border: unset;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 25px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.btnn:focus {
  outline: none;
}

.btnn span:nth-child(1) {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0px;
  left: -100%;
  background-color: #62ab6e;
  animation: sp1 3s linear alternate-reverse infinite;
}

@keyframes sp1 {
  from {
    left: -100%;
  }

  to {
    left: 100%;
  }
}

.btnn span:nth-child(2) {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
  right: -100%;
  background-color: #62ab6e;
  animation: sp2 3s linear alternate-reverse infinite;
}

@keyframes sp2 {
  from {
    right: -100%;
  }

  to {
    right: 100%;
  }
}

.btnn span:nth-child(3) {
  position: absolute;
  height: 100%;
  width: 2px;
  top: -40px;
  left: 0px;
  background: #62ab6e;
  animation: sp3 3s linear alternate-reverse infinite;
}

@keyframes sp3 {
  from {
    top: -100%;
  }

  to {
    top: 100%;
  }
}

.btnn span:nth-child(4) {
  position: absolute;
  height: 100%;
  width: 2px;
  bottom: -40px;
  right: 0px;
  background-color: #62ab6e;
  animation: sp4 3s linear alternate-reverse infinite;
}

@keyframes sp4 {
  from {
    bottom: -100%;
  }

  to {
    bottom: 100%;
  }
}

.btnn:hover {
  padding: 10px;
  letter-spacing: 2px;
  background-color: #89e799;
  color: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px 3px #acebb7;
}

/* product-slider */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.numbertextt {
  color: #ff0000;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: transparent;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 767px) {
  .prev, .next, .text {
    font-size: 11px
  }
}

.change_color {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(255, 255, 255);
  background-color: red;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.isq table {
  border: 0;
}

.fram table, .fram2 table {
  margin-top: 7px;
  width: 100%;
  font-size: 14px;
  max-width: 100%;
}

tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

.isq table tr td:first-child, .isq table tr th:first-child {
  border-right: 1px solid #e3e3e3;
  width: 35%;
}

.isq table tr td, .isq table tr th {
  border: 0;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
  padding: 8px 8px 9px 12px;
  vertical-align: top;
}

.fram table tr td, .fram2 table tr td {
  border: 1px solid #e3e3e3;
  padding: 8px 8px 9px 12px;
  text-align: left;
}

.fram td, .fram th {
  max-width: 100%;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.su-table {
  width: 100%;
  margin-bottom: 1.5em;
}

su-table table {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
  font-size: 1em !important;
  border: 1px solid #ccc !important;
  table-layout: auto !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

.su-table tr, .su-table td {
  vertical-align: middle !important;
}

@media (max-width: 1130px) {

  .boxss {

    width: 100%;
  }

  .productbox .one {
    width: 33%;
  }

  .productbox .two {
    width: 33%;
  }

  .productbox .three {
    width: 33%;
  }

}

@media (max-width: 991px) {
  .boxss {
    display: block;
    width: 100%;
  }

  .boxss .imgbox {
    width: 50%;
    text-align: center;
    margin: 10px;
  }

  .boxss .textbox {
    width: 100%;

  }

  .boxss .textbox3 {
    width: 100%;
    /* padding: 10px 20px; */

  }

}

@media (max-width: 860px) {

  .product {
    display: block;
  }

  .product .imgbox {
    text-align: center;
    margin: 0 auto;
  }

  .product .imgbox img {
    max-width: 350px;

  }

}

@media (max-width: 600px) {
  .boxss .imgbox {
    width: 90%;
    text-align: center;
    margin: 50px auto;
  }

  .media-icons {
    text-align: center;
  }


}
.containerss {
  width: 80%;
  margin: 0 auto;
}

/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup container */
.popup-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Image column */
.popup-content .column {
  flex: 1 1 50%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Text column */
.text-popup {
  flex: 1 1 50%;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-popup a {
  display: inline-block;
  margin: 10px 0;
  font-size: 16px;
  color: #2563eb; /* Tailwind blue-600 */
  text-decoration: none;
  font-weight: 500;
}

.text-popup a:hover {
  text-decoration: underline;
}

/* Responsive stacking on small screens */
@media (max-width: 600px) {
  .popup-content {
    flex-direction: column;
    padding: 0;
  }

  .popup-content .column {
    padding: 15px;
  }

  .text-popup {
    padding: 20px 15px;
  }

  .text-popup a {
    font-size: 15px;
  }
}
