* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --maroon: #321E1E;
  --gold: #FFD700;
  --gold-col: #e9b545;
  --white: hsl(0, 0%, 100%);
  --WHITE: hsl(0, 0%, 100%);
  --BLACK: hsl(0, 0%, 0%);
  --black-90: hsl(0, 0%, 10%);
  --black-70: hsl(0, 0%, 30%);
  --black-alpha-40: hsla(0, 0%, 0%, 0.4);
  --yellow-light: hsl(44, 95%, 83%);
  --green-light: hsl(158, 68%, 75%);
  --red-light: hsl(0, 84%, 80%);
  --orange-light: hsl(22, 85%, 80%);
  --select-box-bg-color: hsl(0, 0%, 100%);
  --border-color-1: hsl(0, 0%, 90%);

}





html {
  overflow-x: hidden;
}
body {
  background-color: white;
  color: white;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

#particles-js {
      background-color: #203121ed;
  /*background-color: rgb(30, 30, 31);*/
  width: 100%;
  height: 80vh;
  z-index: 1000;
  position: relative;
  top: -95px;
}

/* logo section */

#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
  width: 168px;
  height: 60px;

}
@media only screen and (max-width: 767px) {

  #header .logo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 80px;
  }

}
@media(max-width: 1200px) {
  .logo {
    max-height: none !important;
    margin-left: -40px;
    max-width: 100%;
  }

  .logo img {
    transform: scale(.9);
  }
}
/* @media (max-width: 35em) {
  #header .logo img {
    padding-left: 38px;
    margin: 0;
    width: 176px;
    height: 53px;
}
} */

/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: static;
  /* margin-right: -150px; */

}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  /* background-image: linear-gradient(to right,#321E1E,rgba(224, 164, 12, 0.6) ); */
  background-image: linear-gradient(to right, black, rgba(224, 164, 12, 0.6));
  border-radius: 8px;
  /* border: 1px solid goldenrod; */
  box-shadow: 0 0 10px 1px #e9b545;
  /* backdrop-filter: blur(10px); */
  /* width: 100%; */
}

.navbar li {
  position: relative;
  /* background: red; */
  padding: 0px;
  /* color: #321E1E; */

}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 8px 16px;
  margin-left: 10px;
  font-family: Oxanium, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.815);
  /* color: #321E1E; */
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--gold-col);
  background-color: #321E1E;
  /* border-radius: 50px; */
  /* border: 2px solid var(--gold-col); */
  box-shadow: 0 0 5px 1px #e9b545;
  /* backdrop-filter: blur(5px); */

}


#header {
  transition: all 0.5s;
  /* z-index: 997; */
  transition: all 0.5s;
  padding: 24px 0;
  /* background: rgba(103, 176, 209, 0.8); */
}

#header.header-scrolled {
   /*background: rgba(55, 142, 181, 0.9); */
  /*background: transparent;*/
  background: rgb(0 0 0 / 90%);
  padding: 12px;
}
/**
  * Mobile Navigation 
  */
section#home {
  height: 100vh;
  display: grid;
  place-items: center;
}

/* h1 {
    font-size: 4rem;
  } */
#ham-menu {
  display: none;
}

nav ul.active {
  left: 0;
  /* width: 360px;
    position: fixed; */
}

@media only screen and (max-width: 991px) {
  html {
    font-size: 56.25%;
  }

  header {
    padding: 2.2rem 5rem;
  }
  #header .logo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 80px;
  }

  .navbar {
    margin-right: 20px;
  }

 

  #ham-menu {
    display: block;
    color: var(--gold-col);
    cursor: pointer;
  }

  nav #ham-menu {
    /* font-size: 3.2rem; */
    font-size: 30px;

  }


  nav ul.active {
    top: 0px;
        left: 0px;
        width: 80vw;
        position: fixed;
        /* background-color: red; */
        margin-top: 13%;
  }
  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
    height: auto;
    width: 80vw;
    /* margin: 40px 0px 0px 88px; */
    padding: 9px;
}

#nav-bar li .nav-link {
  background: linear-gradient(to right, #543800, #38301e);
  width: 79vw;
  height: 50px;
  border: none;
  font-size: 1.6em;
  color: white;
  cursor: pointer;
  border-radius: 0 25px;
  position: relative;
  transition: all .6s;
  margin: 0px 0px 8px 0px;
  display: flex;
  justify-content: center;
  border: 3px solid white;
}
}

@media screen and (max-width: 790px) {

  #header .logo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 80px;
  }

  .navbar {
    margin-right: 20px;
  }

  html {
    font-size: 50%;
  }

  #ham-menu {
    display: block;
    color: var(--gold-col);
    cursor: pointer;
  }

  nav #ham-menu {
    /* font-size: 3.2rem; */
    font-size: 30px;
    margin-left: -80px;

  }



  nav ul.active {
    top: 0;
    left: 0px;
    width: 80vw;
    position: fixed;
    /* background-color: red; */
    margin-top: 10%;
  }
  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
    height: auto;
    width: 80vw;
    /* margin: 40px 0px 0px 88px; */
    padding: 9px;
}

#nav-bar li .nav-link {
  background: linear-gradient(to right, #543800, #38301e);
  width: 79vw;
  height: 50px;
  border: none;
  font-size: 1.3rem;
  color: white;
  cursor: pointer;
  border-radius: 0 25px;
  position: relative;
  transition: all .6s;
  margin: 0px 0px 8px 0px;
  display: flex;
  justify-content: center;
  border: 3px solid white;
}

}

@media only screen and (max-width: 575px) {
  html {
    font-size: 46.87%;
  }

  header {
    padding: 2rem 3rem
  }

  nav ul {
    top: 65.18px;
    height: calc(100vh - 65.18px);
  }

  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
  }

  nav ul.active {
    left: 0px;
    width: 80vw;
    position: fixed;
    margin-top: 10%;
  }
  
}

/* nav end */
/* card section */





/* SocialMediaIcons Section CSS Start Here */

.SocialMediaIcons-container{
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: -130px;
  top: 130px;
  width: 210px;
  z-index: 1100;
}

.SocialMediaIcons-container .container-menu li{
  list-style-type: none;
  background-color: #e9b545;
  color: #fff;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 5px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.SocialMediaIcons-container .container-menu li:hover{
  margin-left: -115px;
}
.SocialMediaIcons-container .container-menu li img{
  float: left;
  margin: 5px 12px;
  border-radius: 10px;

}
.SocialMediaIcons-container .container-menu li:nth-child(1){
  background-color: rgb(75, 136, 222);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(2){
  background: linear-gradient(rgb(222, 75, 180),rgb(200, 0, 255),white);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(3){
  background-color: rgb(23, 27, 141);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(4){
  background-color: rgb(32, 240, 122);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li:nth-child(5){
  background: linear-gradient(rgb(227, 29, 19),white);
  border-radius: 5px;
}
.SocialMediaIcons-container .container-menu li p{
  padding-top: 5px;
  margin: 0px;
  line-height: 16px;
  font-size: 14px;
  font-family: sans-serif;
}

.SocialMediaIcons-container .container-menu li p a{
  text-decoration: none;
  color: #fff;
}
.SocialMediaIcons-container .container-menu li p a:hover{
  text-decoration: underline;

}

/* SocialMediaIcons Section CSS END Here */

/* Filter galery */
.filterGalery{
  text-align: center;
}
.portfolio-item {
  display: inline-block;
  margin: 10px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.portfolio-item.hide{
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.portfolio-item img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
#filter-buttons{
  /* background-color: red; */
  padding: 20px 0;
}
#filter-buttons button{
  width: 10%;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  background: rgba(244, 210, 13, 0.8);
  transition: cubic-bezier(.4s);
  border: 1px solid goldenrod;
  box-shadow: 10px 10px 10px -1px rgba(0,0,0,0.4);
}
#filter-buttons button:hover{
  transform: scaleX(1) rotate(7deg);
  transition: all .3s ease;
  background: black;
  color: #fff;
  outline: none;
}

/* Second Section css start here */
.secondSection{
  width: 100%;
  height: auto;
  background: rgba(251, 222, 60, 0.3);
  opacity: .9;
}
.sectionHeading{
  text-align: center;
}

.priceSection{
  /* display: flex; */
  justify-content: center;
  align-items: center;
  color: #000;
}

.pric-card{
  max-width: 300px;
  background-color: #fff;
  padding: 20px;
  margin: 30px 15px;
  border-radius: 10px;
  box-shadow: 10px 10px 10px -1px rgba(10,99,169,0.16), 3px 3px 10px -1px rgba(255,255,255,0.7);
}
.pric-card h3{
  margin-bottom: 15px;
}
.pric-card h1{
  margin-bottom: 10px;
  color: rgba(0,0,0,1);
  font-size: 2.5rem;
}
.pric-card h1 span{
  font-size: 15px;
  color: rgba(0,0,0,0.7);
}
.pric-card ul{
  list-style: none;
 padding: 0;
 margin: 0;
}
.pric-card ul li{
  line-height: 3;
  color: rgba(0,0,0,0.9);
}
.pric-card ul li i{
  margin-right: 10px;
  color: rgba(0,0,0,0.4);
}
.pric-card a{
  margin: 20px 0;
  text-align: center;
  display: block;
  text-decoration: none;
  border: 1px solid blue;
  color: blue;
  padding: 10px;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 5px 8px 8px -1px rgba(37, 13, 199, 0.16), 3px 3px 10px -1px rgba(37, 13, 199, 0.16);

}
.pric-card a:hover{
  background-color: gold;
  color: aliceblue;
}

/* RESPONSIVE SECTION CSS STARTS FROM HERE */
@media (max-width: 1024px){
  .navbar{
    margin-right: -33px;
  }
  #about{
    margin-top: -38px;
  }
}
@media screen and (max-width: 64em) {
  
  #particles-js{
    height: 70vh;
  }
  .firstSection {
    height: 40vh;
  }
  .firstSection-cntainer-header #element{
    font-size: 1rem;
  }
  .SocialMediaIcons-container .container-menu{
    padding-left: 2rem;
    margin-top: -33px;
  }
  
}
@media screen and (max-width: 48em) {
  
  #particles-js{
    height: 40vh;
  }
  .firstSection {
    height: 40vh;
  }
  .pric-card{
    max-width: 100%;
   }
   
}

@media screen and (max-width: 35em) {
  
  #particles-js{
    height: 40vh;
  }
  .firstSection {
    height: 40vh;
  }
  .pric-card{
    max-width: 100%;
   }

   .hero{
    margin-top: 15px;
   }
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 13px;
  background: black;
  color: white;
}


#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #fff; */
  background: linear-gradient(to right, rgb(0, 0, 0, 0.9), rgba(98, 97, 97, 0.9) 100%);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-logo img {
  width: 200px;
  height: 80px;
  margin-left: 0px;
  margin-top: -20px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  /* color: #fc0; */
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: white;
  /* color: var(--gold-col); */
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  /* color: #47b2e4; */
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  /* display: flex; */
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--gold-col);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--gold-col);
  /* color:var(--maroon); */
  color: black;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

/* #footer .footer-top .social-links a i{
  color: black;
} */

#footer .footer-top .social-links a:hover {

  background: black;
  color: var(--gold-col);
  padding: 5px;
  /* border-radius: 50%; */
  text-decoration: none;


  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 8px 0;
  /* margin-right: 4px; */
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--gold-col);

}

#footer .copyright {
  /* float: left; */
  /* text-align: center; */

}

#footer .copyright a {

  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--gold-col);
  /* text-shadow: #C07F00; */
  text-decoration: none;
  /* background: #c080008e; */
  padding: 5px;
}

#footer .credits {
  /* float: right; */
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

.footer-links p{
  color: #fff;
  font-size: 13px;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
.row .col-lg-3 .card img{
  height: 200px;
  width: 100%;
  padding-right: 23px;

}




/* whatsapp integration css  */

.whatsapp_float {
  position: fixed;
  width: 15%;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp_float span{
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family: sans-serif;
  padding-left: 10px;
}

.whatsapp_float .msg-alrt{
  background-color: red;
 width: 18%;
 height: auto;
 border-radius: 100px;
 text-align: center;
 position: absolute;
 top: -13px;
 right: 0;
 
}

.whatsapp_float .msg-alrt h4{
  margin: 0;
  font-size: 1.2rem;
  padding: 5px;
  
}

/* for mobile */
@media screen and (max-width: 767px){
  .whatsapp-icon {
    /* margin-top: 10px; */
  }
  .whatsapp_float {
    width: 35%;
    height: 45px;
    bottom: 10px;
    right: 10px;
    font-size: 22px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  }

  .whatsapp_float span{
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: sans-serif;
    padding-left: 5px;
  }
}



/* Iso logo (In footer) */
/* .iso {
  width: 170px;
  height: 170px;
  margin: 10px 0px 0px 0px;
} */
/* Iso footer end */

/* Navbar Design in mobile response Start */
@media only screen and (max-width: 575px) {
  #nav-bar li .nav-link {
    background: linear-gradient(to right, #543800, #38301e);
    width: 79vw;
    height: 50px;
    border: none;
    font-size: 1.6em;
    color: white;
    cursor: pointer;
    border-radius: 0 25px;
    position: relative;
    transition: all .6s;
    margin: 0px 0px 8px 0px;
    display: flex;
    justify-content: center;
    border: 3px solid white;
}
  #nav-bar li .nav-link:hover{
    border-radius: 25px 0;
  }
  #nav-bar li .nav-link::before{
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, #240b36, #543800);
	width: 100%;
	height: 100%;
	/* filter: blur(22px); */
	transform: scale(0.9, 0.8) translateY(20px);
	z-index: -1;
	opacity: 0;
	transition: all 0.6s;
  margin: 0px 0px 2px 0px;
  }
  #nav-bar li .nav-link:hover::before{
    opacity: 1;
  }
}

@media only screen and (max-width: 550px) {
  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 50px;
    /* margin-top: 700px; */
    width: 100%;
    /* height: calc(100vh - 73.6px); */
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-around; */
    transition: 1s;
    gap: 0;
    height: auto;
    width: 80vw;
    /* margin: 40px 0px 0px 88px; */
    padding: 9px;
}
}
/* Navbar Design in mobile response End */


/* Pop up form */
#popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 9999;
}

#popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
  padding: 10px;
  border-radius: 15px;
  border: 5px solid #d3ae5d;
  /* box-shadow: 10px 7px 10px 7px rgb(126 108 65); */
}

.text-heading {
  color: #d3ae5d;
}

.posrel12 p {
  line-height: normal;
}
/* #close-popup {
  position: absolute;
  top: -2px;
  right: 10px;
  cursor: pointer;

  font-size: 22px;
  background-color: goldenrod;
  padding: 2px 12px;
  border: 2px solid black;
  z-index: 99999;
} */
#close-popup {
  position: absolute;
  top: 1px;
  right: 13px;
  cursor: pointer;
  /* width: 16px; */
  font-size: 28px;
  z-index: 99999;
}

#popup-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#popup-form input {
  background-color: #1d1d1d;
  border: none !important;
  color: white;
}

#popup-form input::placeholder {
  color: white;
  opacity: 1;
}


#popup-form button {
  padding: 10px 20px;
  /* background-color: #d3ae5d; */
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.formpop input {
  margin-bottom: 10px;
}

.popupimg {
  width: 300px;
  height: 271px;
  margin: -18px 34px 0px -10px;
}

.main-button-gradient button {
  font-size: 13px;
  color: #000000;
  /* background: rgb(219, 138, 222); */
  /* background: linear-gradient(-145deg, rgb(242 195 77 / 60%) 0%, rgb(22 21 20) 100%); */
  background: radial-gradient(circle, #f9d976 0%, #f6c74d 40%, #d4af37 100%);
  padding: 12px 30px;
  /* padding: 0px; */
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.isopopup {
  width: 100px;
  height: 100px;
}

.ml11 {
  margin: 0px 0px 0px 0px;
}


@media(max-width:600px) {
  #popup-container {
    display: none;
    position: fixed;
    top: -147px;
    left: 0;
    width: 81%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 9999;
  }

  #popup-content {
    position: absolute;
    top: 67%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    padding: 20px;
    border-radius: 15px;
    /* border: 5px solid goldenrod; */
    /* box-shadow: 10px 7px 10px 7px rgb(126 108 65); */
  }

  .popupimg {
    width: 300px;
    height: 271px;
    margin: -9px -24px 0px -12px;
  }

  .posrel12 {
    position: relative;
  }

  .posabs12 {
    /* position: absolute;
    top: 275px; */
  }

  .ml11 {
    margin: 0px !important;
  }
}


@media(max-width:380px) {
  #popup-content {
    width: 83vw;
    position: absolute;
    top: 77%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    padding: 20px;
    border-radius: 15px;
    /* border: 5px solid goldenrod; */
    /* box-shadow: 10px 7px 10px 7px rgb(126 108 65); */
  }
}


@media(width:280px) {
  #popup-content {
    position: absolute;
    top: 73%;
    left: 62%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    padding: 20px;
    border-radius: 15px;
    /* border: 5px solid goldenrod; */
    /* box-shadow: 10px 7px 10px 7px rgb(126 108 65); */
    width: 269px;
  }

  .popupimg {
    width: 300px;
    height: 271px;
    margin: -9px -24px 0px -34px !important;
  }

  .isopopup {
    width: 100px;
    height: 100px;
    margin: 0px !important;
  }
}

@media (min-width: 760px) and (max-width: 920px) {
  .popupimg {
    width: 300px;
    height: 271px;
    margin: 0px;
  }

  .posrel12 {
    position: relative;
  }

  .posabs12 {
    position: absolute;
    top: 275px;
  }

  .ml11 {
    margin: 0px 0px 11px 103px;
  }

  #particles-js {
    height: 600px;
  }
}

@media screen and (max-width: 992px) {

  .popupimg {
    width: 228px;
    height: 235px;
    margin: 0px 0px 0px 62px;
  }

  .posrel12 {
    position: relative;
  }

  .posabs12 {
    /* position: absolute; */
    /* top: 275px; */
  }

  .ml11 {
    /* margin: 0px 0px 11px 103px; */
    margin: 0px 0px 11px 110px;
  }

  .isopopup {
    width: 85px;
    height: 85px;
    margin: -15px 0px 0px 0px;
  }

}

@media screen and (width: 540px) {
  .ml11 {
    margin: 0px;
  }
}

/* Popup form End */

/* Happy Clients Start */
#gradient{
  background-image: linear-gradient(45deg, rgb(144 134 50), rgb(245 218 136), rgb(26 26 26 / 62%));
}
:root {
  --w: 300px;
  /* --wave: url('data:image/svg+xml,<svg width="1440" height="490" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" transform="rotate(0deg)" version="1.1"><defs><linearGradient id="sw-gradient-0" x1="0" x2="0" y1="1" y2="0"><stop offset="0%" stop-color="rgba(49, 96, 133, 1)"/><stop offset="100%" stop-color="rgba(49, 96, 133, 1)"/></linearGradient></defs><g class="layer"><title>Layer 1</title><path d="m-9638,343l80,-40.8c80,-41.2 240,-122.2 400,-106.2c160,16 320,131 480,155.2c160,24.8 320,-41.2 480,-40.9c160,-0.3 320,65.7 480,57.2c160,-8.5 320,-89.5 480,-122.5c160,-33 320,-16 480,-40.8c160,-24.2 320,-90.2 480,-65.4c160,24.2 320,139.2 480,187.9c160,49.3 320,32.3 480,-24.5c160,-57.2 320,-155.2 480,-196c160,-41.2 320,-24.2 480,-24.5c160,0.3 320,-16.7 480,-24.5c160,-8.2 320,-8.2 480,16.3c160,24.5 320,73.5 480,98c160,24.5 320,24.5 480,40.8c160,16.7 320,48.7 480,73.5c160,24.2 320,41.2 480,65.4c160,24.8 366,165.8 480,16.3c114,-149.5 309,-98.5 480,-179.7c171,-81.2 256,67.8 465,78.5c210,4.7 305,-94.9 495,-13.1c190,81.8 400,7.4 527,-27.4c127,-34.8 255,76.2 452,42.9c197,-33.3 301,9.3 381,-7.4l80,-16.3l0,245l-80,0c-80,0 -240,0 -400,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -480,0c-160,0 -320,0 -400,0l-80,0l0,-147z" fill="rgb(218 165 32)" id="svg_1"/></g></svg>'); */
  --wave: url('data:image/svg+xml,<svg width="1440" height="490" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" transform="rotate(0deg)" version="1.1"><defs><linearGradient id="gradient" x1="0" x2="0" y1="1" y2="0"><stop offset="0%" stop-color="rgb(144%20134%2050)"/><stop offset="100%" stop-color="rgb(245%20218%20136)"/></linearGradient></defs><g class="layer"><title>Layer%201</title><path d="m-9638,343l80,-40.8c80,-41.2%20240,-122.2%20400,-106.2c160,16%20320,131%20480,155.2c160,24.8%20320,-41.2%20480,-40.9c160,-0.3%20320,65.7%20480,57.2c160,-8.5%20320,-89.5%20480,-122.5c160,-33%20320,-16%20480,-40.8c160,-24.2%20320,-90.2%20480,-65.4c160,24.2%20320,139.2%20480,187.9c160,49.3%20320,32.3%20480,-24.5c160,-57.2%20320,-155.2%20480,-196c160,-41.2%20320,-24.2%20480,-24.5c160,0.3%20320,-16.7%20480,-24.5c160,-8.2%20320,-8.2%20480,16.3c160,24.5%20320,73.5%20480,98c160,24.5%20320,24.5%20480,40.8c160,16.7%20320,48.7%20480,73.5c160,24.2%20320,41.2%20480,65.4c160,24.8%20366,165.8%20480,16.3c114,-149.5%20309,-98.5%20480,-179.7c171,-81.2%20256,67.8%20465,78.5c210,4.7%20305,-94.9%20495,-13.1c190,81.8%20400,7.4%20527,-27.4c127,-34.8%20255,76.2%20452,42.9c197,-33.3%20301,9.3%20381,-7.4l80,-16.3l0,245l-80,0c-80,0%20-240,0%20-400,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-480,0c-160,0%20-320,0%20-400,0l-80,0l0,-147z" fill="url(%23gradient)" id="svg_1"/></g></svg>');


}

.body2 {
  padding: 0;
  margin: 0;
  /* min-height: 100vh; */
  display: grid;
  place-items: center;
  /* background: black; */
  /* overflow: hidden; */
	/* filter: brightness(1) sepia(1) saturate(9) hue-rotate(95deg); */
  position: relative;
}
.scene {
  position: relative;
  width: 304px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: var(--wave);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 740px;
  animation: wave 2.5s linear infinite;
}
.move {
  position: absolute;
  width: var(--w);
  aspect-ratio: 1;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  animation: rotateMove 10s linear infinite;
  /* mix-blend-mode: difference; */
}
.scene i {
  --degree: 150px;
  --deg: 360deg;
  --cos: cos( (var(--i) * var(--deg) / var(--total)));
  --sin: sin( (var(--i) * var(--deg) / var(--total)));
  --transform: calc(var(--cos) * var(--degree)), 
  calc(var(--sin) * var(--degree));
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: a;
  display: block;
  background: #000000;
  transform: translate(
    var(--transform)
  );
}

@keyframes wave {
  0% {
    background-position-x: 840px;
  }
  100% {
    background-position-x: 0px;
  }
}
@keyframes rotateMove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

.happyclients{
  position: absolute;
  top: 17%;
  left: 18%;
  text-align: center;
}

.waviy {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(217, 218, 191, 0.2));
}
.waviy span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: goldenrod;
  text-transform: uppercase;
  animation: waviy 2s infinite;
  animation-delay: calc(.1s * var(--i));
  /* font-family: cursive; */
  font-family: Oxanium, sans-serif;
}
@keyframes waviy {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-20px)
  }
}

#counter {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
}
/* Add a + symbol after the counter */
#counter::after {
  content: '+';
  position: absolute;
  margin-left: 5px; /* Spacing between the number and the + symbol */
}
/* Happy Clients End */


/*  */
.text {
  color: transparent;
  font-size: 2em;
  font-weight: 700;
  display: inline-block;
  border-radius: 3px;
  background-color: #1d3557;
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Oxanium, sans-serif;
}
.text:before {
  content: attr(data-title);
  background: linear-gradient(90deg, #f58915 0%, #fd1d1d 51%, #1d3557 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-clip: text;
  -webkit-background-clip: text;
  transition: all 1s ease-in-out;
  animation: text-animation 3s infinite;
}

@keyframes text-animation {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.waviy .new{
  color: #e9b545 !important;
}
/*  */


/* New Dropdown Start */
/* New Add */
.dropdown-menu {
  display: none; /* Hide dropdown by default */
  position: absolute;
  /*background-color: #fff; */
  background-color: #cfcfcf !important;
  /* Background color */
  /*border: 1px solid #ddd; */
  z-index: 1000; /* Positioning */
    border: 7px solid #e9b545 !important;
}

.dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown on hover */
}

/* Set dropdown menu width to 80% of the screen */
.dropdown-menu {
  position: fixed !important; 
  width: 70vw; /* 80% of the viewport width */
  /* left: auto;
  right: auto;  */
  display: grid ;
  /* grid-template-columns: 1fr 1fr 1fr 1fr; */
  gap: 20px;
}

/* Optional: Adjust dropdown item styles if needed */
.dropdown-item {
  width: 100%; /* Ensure dropdown items take full width of the dropdown */
}
.posabs123{
  display: flex;
  justify-content: center;
  position: absolute;
}
.dropdown:hover .dropdown-menu {
  display: grid;
  padding: 20px;
  width: 97%;
  left: 0;
  margin: 0px 20px;
}
.dropdown1:hover .dropdown-menu {
  display: contents;
  /* padding: 0px; */
  width: auto;
  max-height: 400px;
  /* overflow-x: scroll; */
  margin: 0px ;
}


.dropdown1 .dropdown-menu.show {
  display: none; /* Show when active */
}



.dropdown-menu {
  display: none; /* Hide by default */
  /* max-height: 400px; */
  /* overflow-y: auto; Enable scrolling */
  margin: 0; /* Remove margin */
}
.dropdown-menu.show {
  display: block; /* Show when active */
}



/* New */
.dropdown-buttons {
  display: flex;
  flex-direction: column;
  width: 23%;
}

.dropdown-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  text-align: left;
}

.dropdown-button.active {
  background-color: #007bff; /* Change this color as needed */
  color: white;
}

.dropdown-item-group {
  display: none;
}

.dropdown-item-group.active1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--gold-col);
  row-gap: 66px;
}
.dropdown:hover .dropdown-menu{
  display: none;
}
@media(min-width:968px){
  .dropdown:hover .dropdown-menu {
    display: flex;
    padding: 30px 20px;
    width: 97%;
    left: 0;
    margin: 0px 20px;
    z-index: 999;
    /* display: block; */
    /* max-height: 90vh;
        overflow-y: scroll; */
  }
}
.dropdown-button {
  color: black;
  font-size: 20px;
  font-weight: 700;
  position: relative; /* Positioning context for ::after */
  margin-bottom: 5px;
}
.dropdown-button:hover {
  color: var(--gold-col);
}
.dropdown-button::after {
  content: ''; /* Required for ::after to display */
  position: absolute; /* Position it relative to the button */
  left: 0;
  right: 0;
  bottom: 4px; /* Adjust this value to create space below the button */
  height: 1px; /* Set height for the "line" */
  background-color: #ccc; /* Set color for the line */
}

.dropdown-button:last-child::after {
  display: none; /* Hide the line for the last button */
}

@media(max-width:992px){
  /* CSS rules for tablet devices */
  .dropdown-menu {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px;
  }
  .dropdown1 .dropdown-menu.show {
    display: none;
}
.dropdown1:hover .dropdown-menu {
    display: contents;
    /* padding: 0px; */
    width: auto;
    max-height: 400px;
    /* overflow-x: scroll; */
    margin: 0px;
}
.dropdown-item {
  color: #ffffff !important;
}
}
@media (min-width: 1023px) and (max-width: 1366px)  {
  /* CSS rules for tablet devices */
  .dropdown-menu {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px;
  }
}



/* Social Media Start */
.Social-media{
  display: flex;
  justify-content: center;
}
.Social-media a{
  display: flex;
    background: #fff;
    height: 39px;
    width: 35px;
    margin: 15px 9px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0, 124, 196, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 124, 196, 0);
    transition: transform 0.5s;
    padding: 0px 8px;
}
.Social-media a i{
  font-size: 22px;
  color:var(--gold-col);
  transition: transform 0.5s;
}
.Social-media a:hover{
  box-shadow:inset 4px 4px 6px -2px rgba(0,0,0,0.2),
              inset -4px -4px 6px -1px rgba(255,255,255,0.7),
                    -0.5px -0.5px 0px -1px rgba(255,255,255,1),
                    0.5px 0.5px 0px rgba(0,0,0,0.15),
                    0px 12px 10px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0, 124, 196, 0.1);
  transform: translateY(2px);
}
.Social-media a:hover i{
  transform: scale(0.90);
}
.Social-media a:hover .fa-facebook{
  color: #3b5998;
}
.Social-media a:hover .fa-twitter{
  color: #00acee;
}
.Social-media a:hover .fa-whatsapp{
  color: #4fce5d;
}
.Social-media a:hover .fa-instagram{
  color: #f14843;
}
.Social-media a:hover .fa-youtube{
  color: #f00;
}
/* Social Media End */

.footer-links .strong-footer{
  line-height: 23px;
}
/* .footer-links{
  border-right: 1px solid #d0d0ce;
} */

.disflex22{
  display: flex;
  column-gap: 10px;
}
.disflex22 img{
  width: 33%;
}
.footer-middle-menu{
  border-top: 1px solid #d0d0ce;
  margin-top: 30px;
  text-align: center;
}
.footer-middle-menu ul{
  padding-top: 20px;
}
.footer-middle-menu ul li a{
  border-right: 1px solid #d0d0ce;
  padding: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-family: Oxanium, sans-serif;
}
.footer-middle-menu ul li{
  display: inline-block;
}
.credits p{
  color: white;
  margin-top: 8px;
  text-align: justify;
  font-size: 13px;
}


/* Dropdown */
/* .dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
} */

/* Custom styles for the multi-level dropdown */
/* New */
.dropdown-menu{
  position: relative;
}

  .dropdown-submenu {
    position: relative;
  }
  
  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }

.dropdown-menu.show {
  display: contents !important;
}


@media only screen and (max-width: 575px) {
  nav ul.active {
    left: inherit;
    width: 100vw;
    position: absolute;
    margin-top: 50PX;
    right: 0px;
}
}
.totalwid{
  display: flex;
}
.left-side-bar {
  display: flex;
  flex-direction: column;
  width: 23%;
  padding-right: 30px;
  border-right: 3px solid #e9b545 !important;
}
.right-side-bar {
  /*width: 75%;*/
}

.left-side-bar h4, .right-side-bar h4{
  font-size: 19px;
  font-weight: 700;
}
.right-side-bar a {
  font-family: Oxanium, sans-serif;
  margin-right: 0px;
  padding: 2px 0px;
  font-weight: 500;
  transition: transform 0.5s ease, font-weight 0.5s ease, text-decoration 0.5s ease; /* Smooth transition for transform, font-weight, and text-decoration */
}

.right-side-bar a:hover {
  transform: translateX(10px) scale(1.05); /* Move slightly to the right and scale up */
  text-decoration: underline;
  font-weight: 700;
  box-shadow: none !important;
}

.right-side-bar a i{
  margin-right: 10px;
}

.dropdown-iconsize{
  width:10%;
  margin-right: 10px;
}
.dropdown-item:focus, .dropdown-item:hover{
  background-color: transparent !important;
}
/* Default styles */
.dropdown-submenu .dropdown-menu {
  display: none; /* Hidden by default */
  transition: all 0.3s ease;
}

/* Style when sub-dropdown is opened */
.dropdown-menu.show .dropdown-submenu {
  display: block;
    border-bottom: 2px solid rgb(255 255 255 / 30%);
    background: black;
}

/* Change the color of the clicked sub-dropdown */
.dropdown-submenu > a.active {
  color: #916711 !important; /* Change the color to blue */
  font-weight: 700;
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: transparent !important;
}
.fixed-top {
  /*position: absolute !important;*/
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
#header.header-scrolled {
  background: rgb(0 0 0 / 90%);
  padding: 12px;
}
.dropdown-iconsizemob{
  width: 7%;
  margin-right: 10px;
}

@media(max-width:768px){
  .dropdown-item{
    width: 76vw !important;
    font-size: 13px !important;
  }
  .fontmob li a{
    font-size: 10px !important;
    padding: 2px 16px;
  }
  .disflex22 img {
    width: 27%;
}
.Social-media {
  display: flex;
  justify-content: left;
}
}




.dropdown-item {
  color: #000 !important;
}

@media (max-width: 992px) {
  .dropdown-item {
      color: #fff !important;
  }
  .credits p {
    color: white;
    margin-top: 8px;
    text-align: justify;
    font-size: 0.8em;
  }
  .text {
    color: transparent;
    font-size: 30px;
}
.text_center1{
  text-align: center;
}
}
/* New Dropdown End */

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: .3s;
  display: inline-block;
  line-height: 21.2px;
  font-family: Oxanium, sans-serif;
  text-decoration: none;
  font-size: 13px;
}
body{
  font-family: Oxanium, sans-serif;
}

#footer .copyright, #footer .footer-top .footer-contact p, #footer .footer-top h4, .btn .btn-primary, .footer-links p, .pricing-card .features li, .pricing-card .heading p {
  font-family: Oxanium, sans-serif;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Oxanium, sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color, inherit);
  font-family: Oxanium, sans-serif;
}

.dropdown-item:hover {
  box-shadow: none !important;
  cursor: pointer;
}

a {
  color: #fff;
  letter-spacing: 0;
  /*cursor: none;*/
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  /* CSS rules for tablet devices */
  .Social-media {
    display: flex;
    justify-content: left;
}

}


/* New */
@media (min-width: 968px) {
  .dropdown-about:hover .dropdown-menu {
    position: absolute !important;
    width: auto;
    left: 0;
  }
}




/* Team Section Start */

.team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px 0px 20px 0px;
}

.team-member {
  width: 100%;
    max-width: 500px;
  text-align: center;
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 73%);
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member h3 {
  font-weight: 700;
  margin: 0;
  color: #daa520;
}

.team-member .role {
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

.fa {
  font-size: 24px;
  margin: 0 10px;
  color: #000;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  text-decoration: none;
}

.team-member:hover .fa {
  transform: scale(1.2);
  color: #007AFF;
}

.team-member h3{
  font-size: 1.4em;
}
.team-member .parajustify{
  text-align: justify;
}
/* Team Section End */






















/* cookies  */
/* Unique Accept Cookies Styling Start */
.unique-cookie-popup {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #536576;
  color: white;
  padding: 15px;
  z-index: 9999;
}

.unique-cookie-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.unique-cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.unique-cookie-content {
  flex: 1 1 75%;
}

.unique-cookie-font p {
  color: white;
  font-size: 18px;
  text-align: justify;
  margin: 0;
}

.unique-text-link {
  color: #ffd700;
  text-decoration: underline;
}

.unique-cookie-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}


.unique-cookie-btn {
  min-width: 10rem;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.accept-all-btn {
  background-color: #28a745;
  color: white;
}

.essential-btn {
  background-color: #17a2b8;
  color: white;
}

.decline-btn {
  background-color: #dc3545;
  color: white;
}



@media (max-width: 600px) {
  .unique-cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
  .unique-cookie-font p {
    line-height: 1.6rem;
    font-size: 8px !important;
  }

  .unique-cookie-btn {
      /* font-size: 14px; */
      font-size: 1rem ;
  }
  .unique-cookie-btn {
    min-width: 8rem;
    padding: 6px 12px !important;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.unique-cookie-popup h1 {
    font-size: calc(1.5rem + 1vw);
}
.unique-text-link {
  color: #ffd700;
  text-decoration: underline;
  font-size: 8px;
}

}

@media only screen and (min-width: 601px) and (max-width: 1100px) {
  .unique-cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
  .unique-cookie-font p {
      font-size: 16px;
  }

  .unique-cookie-btn {
      font-size: 15px;
  }
}
/* Unique Accept Cookies Styling End */



.dropdown-menu {
  border: 7px solid #e9b545;
  /* background: linear-gradient(to bottom, #e4d09a, #b8b8b8); */
}


.newww1 ul li{
  list-style-type: disc;
}
.bgpri{
  background-color: #fff9e9;
}
.martopneww1{
    padding-top:150px !important;
}
.anch1 a{
    color:gold;
}


/* team */
section.our-team:after{
background-image: none;
}
section.our-team:before{
background-image: none;
}
section.our-team {
  position: relative;
  /* margin: 50px 0px; */
}

section.our-team .section-heading p {
  padding: 0px 60px;
}

section.our-team:before {
  position: absolute;
  content: '';
  background-image: url(../images/our-courses-left-dec.png);
  left: 45px;
  top: -140px;
  width: 291px;
  height: 231px;
  z-index: 1;
}

section.our-team:after {
  position: absolute;
  content: '';
  background-image: url(../images/our-courses-right-dec.png);
  right: 45px;
  top: -140px;
  width: 291px;
  height: 231px;
  z-index: 1;
}

section.our-team .naccs {
  position: relative;
  text-align: center;
}

section.our-team .naccs .menu {
  position: relative;
  /* display: inline-block; */
}

section.our-team .naccs .menu div {
  margin: 0px 15px;
  text-align: center;
  display: inline-block;
  width: 15%;
  text-align: center;
  font-size: 20px;
  color: #111;
  background-color: #fff;
  cursor: pointer;
  vertical-align: middle;
  font-weight: 900;
}

section.our-team .naccs .menu div img {
  border-radius: 50%;
     width: 120px;
    height: 120px;
    object-fit: cover;
}

section.our-team .naccs .menu div h4 {
    font-size: 14px;
    font-weight: 900;
    margin-top: 15px;
    margin-bottom: 5px;
}

section.our-team .naccs .menu div span {
    font-size: 11px;
    text-transform: uppercase;
    color: #bf9222;
    font-weight: 500;
    display: block;
}

section.our-team .naccs .menu div.active h4 {
  color: #dc8cdb;
}

section.our-team ul.nacc {
  /* margin-top: 40px !important; */
  position: relative;
  min-height: 100%;
  height: 100% !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

section.our-team ul.nacc li {
  z-index: -1;
  opacity: 0;
  transform: translateX(50px);
  background-color: #fff;
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: 15px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

section.our-team ul.nacc li.active {
  position: relative !important;
  overflow: hidden;
}

section.our-team ul.nacc li .right-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

section.our-team ul.nacc li .right-image img {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

section.our-team ul.nacc li .left-content {
  text-align: left;
  margin-right: 380px;
}

section.our-team ul.nacc li .left-content h4 {
  font-size: 20px;
  color: #111;
  margin-bottom: 25px;
  font-weight: 800;
}

section.our-team ul.nacc li .left-content span a {
  font-size: 14px;
  font-weight: 600;
  margin-right: 30px;
  padding-right: 30px;
  color: #111;
  border-right: 2px solid #111;
  transition: all .3s;
}

section.our-team ul.nacc li .left-content span a:hover {
  color: #dc8cdb;
}

section.our-team ul.nacc li .left-content .last-span a {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

section.our-team ul.nacc li .left-content p {
  margin-bottom: 30px;
}

section.our-team ul.nacc li .left-content .text-button {
  margin-top: 30px;
}

section.our-team ul.nacc li.active {
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}

section.our-team ul.nacc li p {
  margin: 0;
}
.section-heading {
    position: relative;
    z-index: 2;
    padding-top: 2px;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 0px;
}

.section-heading h6 {
  font-size: 13px;
  text-transform: uppercase;
  color: #7a7a7a;
  font-weight: 600;
}

.section-heading h4 {
  margin-top: 10px;
  line-height: 40px;
  font-size: 28px;
  font-weight: 900;
  text-transform: capitalize;
  color: #111;
}

.section-heading h4 em {
  font-style: normal;
  color: rgb(225 165 32);
}

.section-heading p {
  margin-top: 30px;
}
.app-wrapper {
  font-family: Exo;
  padding: 20px;
}

@font-face {
  font-family: Exo;
  src: url(./fonts/Exo2.0-Medium.otf);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.profile-card {
  position: relative;
  background-image: linear-gradient(45deg, rgb(252, 252, 122), rgb(245, 218, 136));
  padding: 20px;
  border-radius: 8%;
  box-shadow: 0 0 18px #3336;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-card .profileimg {
  width: 100%;
  transition: 0.4s;
  z-index: 1;
}

.profile-card:hover .profileimg {
  transform: translateY(-40px);
}

.profileimg img {
  width: 38%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 56%;
  box-shadow: 0 0 18px #3336;
  transition: 0.4s;
}

.profile-card:hover img {
  border-radius: 10px;
}

/* Hover box always visible */
.hover-box {
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: none;
  margin-top: 10px;
}

.hover-box .designation {
  font-size: 13px;
  margin: 2px 0;
  color: black;
  text-align: center;
}

.hover-box .social-links a {
  color: #333;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.4s;
}

.hover-box .social-links a:hover {
  color: #e1a520;
}

/* Name and description always visible */
.caption {
  text-align: center;
  margin-top: 10px;
}

.caption h3 {
  font-size: 18px;
}

.caption .description {
  font-size: 13px;
  color: black;
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-card {
    padding: 15px;
  }

  .caption h3 {
    font-size: 16px;
  }

  .caption .description,
  .hover-box .designation {
    font-size: 12px;
  }

  .hover-box .social-links a {
    font-size: 16px;
  }
}

/* .hover-box {
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.4s ease;
  margin-top: 10px;
}

.profile-card:hover .hover-box {
  opacity: 1;
  transform: translateY(0);
}

.hover-box .designation {
  font-size: 13px;
  margin: 2px 0;
  color: black;
}

.hover-box .social-links a {
  color: #333;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.4s;
}

.hover-box .social-links a:hover {
  color: #e1a520;
} */

@media (max-width: 767px) {
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
  }
  section.our-courses ul.nacc li .left-image,
  section.our-team ul.nacc li .right-image {
    position: relative;
    margin-right: 0px;
    margin-left: 0px;
    transform: translateY(-0%);
  }
  section.our-courses ul.nacc li .left-image img,
  section.our-team ul.nacc li .right-image img {
    border-radius: 15px;
  }
  section.our-courses ul.nacc li,
  section.our-team ul.nacc li {
    padding: 0px;
  }
  section.our-courses ul.nacc li .right-content {
    margin-left: 0px;
    padding: 30px;
  }
  section.our-team ul.nacc li .left-content {
    margin-right: 0px;
    padding: 30px;
  }
  section.our-team .naccs .menu div {
    width: 50%;
    margin: 8px 5px;
  }
  section.our-team .naccs .menu div.active img {
    border: 3px solid #dc8cdb;
  }
  section.our-team .naccs .menu div h4,
  section.our-team .naccs .menu div span {
    /* display: none; */
  }
  section.more-info .count-area-content .count-title {
    font-size: 22px;
  }
}
@media (max-width: 992px) {

  
  section.our-team ul.nacc li .left-content span a,
  section.our-courses ul.nacc li .right-content span {
    margin-right: 15px;
    padding-right: 15px;
  }
}
.md-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1310px;
  margin: auto;
 background-image: linear-gradient(45deg, rgb(144 134 50), rgb(245 218 136), rgb(26 26 26 / 62%));
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Photo section */
.md-photo {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.md-photo-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  max-width: 270px;
  transition: transform 0.3s ease;
}

.md-photo-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.md-photo-wrapper:hover img {
  transform: scale(1.1);
}

/* Overlay on image */
.md-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(220 205 88 / 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.md-photo-wrapper:hover .md-overlay {
  opacity: 1;
}

/* Content section */
.md-content {
  flex: 2 1 500px;
  padding: 10px;
}

.md-content h2 {
  font-size: 28px;
  color:white;
  margin-bottom: 5px;
}

.md-content h4 {
  color: white;
  margin-bottom: 15px;
  font-weight: normal;
}

.md-content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

/* Social Icons */
.md-socials {
  margin-top: 15px;
}

.md-socials a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  background: #e3e9f5;
  color: #e1a520;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.md-socials a:hover {
  background: #e1a520;
  color: #0d0d0d;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .md-section {
    flex-direction: column;
    text-align: center;
  }

  .md-content {
    padding: 0;
  }

  .md-socials {
    justify-content: center;
  }
}
p{
  text-align: justify;
}
