* {
  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;
}

/* 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: 10px;
    margin: 0;
    width: 180px;
    height: 77px;
  }
}

/**
* 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: "Raleway", sans-serif; */
  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); */
  background-color: black;
}

/**
  * 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;

  }



  .navbar ul {
    position: fixed;
    left: -200vw;
    margin-top: 10%;
    /* 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 {
    top: 0px;
    left: inherit;
    width: 80vw;
    position: absolute;
    /* background-color: red; */
    margin-top: 50px;
    right: 63px;
    height: auto;
}
}
@media only screen and (max-width: 991px) {
  #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: 0px 0px 0px -537px; */

  }

  #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;
}

  .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: inherit;
    width: 80vw;
    position: absolute;
    margin-top: 50px;
    /* right: 0px; */
}

}

@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;
    width: 100;
    margin-top: 50px;
    left: -200vh;
  }

  nav ul.active {
    left: inherit;
    width: 80vw;
    position: absolute;
    margin-top:50px;
    right: 22px;
    margin-left: 0px;
  

  }

}

/* nav end */
/* card section */
@media (max-width: 35em) {
  #header .logo img {
      padding-left: 38px;
      margin: 0;
      width: 176px;
      height: 53px;
  }
}




/* 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;
  width: auto;
}

.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 !important;

}

/* SocialMediaIcons Section CSS END Here */

/* First Section CSS Start Here */
.firstSection {
  background-color: gray;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.firstSection-cntainer-header #element {
  font-size: 3rem;
  font-weight: 600;
}

#element {
  color: goldenrod;
  position: relative;
}

#particles-js {
  background-color: rgb(30, 30, 31);
  width: 100%;
  height: 60vh;
  z-index: 0;
  /* position: absolute; */
}



/* 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 screen and (max-width: 64em) {

  #particles-js {
    height: 40vh;
  }

  .firstSection {
    height: 40vh;
  }

  .firstSection-cntainer-header #element {
    font-size: 1rem;
  }

  .SocialMediaIcons-container .container-menu {
    padding-left: 4rem;
    margin-top: -32px;

  }


}

@media(max-width:600px) {
  .mobilesocial {
    margin: 0px 0px 0px 0px;
  }
}

@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: 81vh;
  }

  .firstSection {
    height: 40vh;
  }

  .pric-card {
    max-width: 100%;
  }

  .profile {
    height: 524px;
    width: 341px;
  }
}





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  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: -40px;
  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: white;
  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;
}

@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;
  }

  #particles-js {
    position: static;
  }
}

.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;
    /*margin: 0px 544px 0px 0px;*/
  }

  .whatsapp_float span {
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: sans-serif;
    padding-left: 5px;
  }
}

.service-item rounded {
  background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../logbounimg/Logbounabout.jpg) center center no-repeat;
  background-size: cover;
}






.inner {
  margin: -53px 0px 0px 0px;
  height: 488px;

  line-height: 1;
}

.inner01 {
  margin: -53px 0px 0px 0px;
  height: 488px;

  line-height: 1.5;
}




/* 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: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 5px solid goldenrod;
  box-shadow: 10px 7px 10px 7px rgb(126 108 65);
}

/* #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 button {
  padding: 10px 20px;
  /* background-color: #007bff; */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.formpop input {
  margin-bottom: 10px;
}

.popupimg {
  width: 300px;
  height: 271px;
  margin: -18px 34px 0px -65px;
}

.main-button-gradient button {
  font-size: 13px;
  color: #fff;
  /* background: rgb(219, 138, 222); */
  background: linear-gradient(-145deg, rgb(242 195 77 / 60%) 0%, rgb(22 21 20) 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 -36px;
}

@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: #fff;
    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: #fff;
    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: #fff;
    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 */



@media(max-width:600px) {
  .profile {
    height: 492px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 10px;
    width: 365px;
    border-radius: 15px;
    position: relative;
    border: var(--border);
    background-image: var(--back);
    overflow: hidden;
    margin: 0px 0px 0px 0px;
  }

  .profile-image {
    border: var(--border);
    border-radius: 50%;
    overflow: hidden;
    width: 88px;
    height: 141px;
    position: relative;
    display: flex;
    justify-content: center;
  }

  #particles-js {
    position: static;
  }

  .hero13 {
    margin: 0px 38px 0px 37px;
    padding: 4px;
  }
}

.firstpara {
  text-align: justify;
  width: 963px;
}

.secondpara {
  text-align: justify;
  width: 1047px;

}

@media(max-width:600px) {
  .firstpara {
    text-align: justify;
    width: 256px;
  }

  .secondpara {
    text-align: justify;
    width: 273px;
  }

}

/* all serv button */


@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700");

*,
html {
    padding: 0;
    margin: 0;
    font-family: Oxanium, sans-serif;
}

.shape-box {
    display: inline-block;
    position: relative;
    z-index: 1;
    max-width: 500px;
    height: 430px;
    margin: 30px 10px 30px;
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
    overflow: hidden;
    width: 23%;
}

.shape-box_half {
    overflow: hidden;
    text-align: left;
}

.shape-box_half:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: skewY(53.5deg);
    transform-origin: top left;
    transition: \transform .4s;
    background: linear-gradient(45deg, black, transparent);
    z-index: 1;
}

.shape-box>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bg-black {
    background-color: #000;
}

.shape-box_half figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px 30px;
    transition: \transform .4s;
    transform: translateY(100%);
    z-index: 3;
}

.shape-box_half figcaption .show-cont {
    position: absolute;
    bottom: calc(100% + 30px);
    left: 30px;
    right: 30px;
    transition: bottom .4s;
}

.card-no {
    font-size: 36px;
    color: #ffc107;
    padding: 0;
    margin: 10px 0;
}

.card-main-title {
    margin-top: 8px;
    font-weight: 700;
    font-size: 1.2em;
    text-transform: uppercase;
    color: rgb(255 255 255);
}

.card-content {
    color: #000000;
    margin-top: 20px;
    line-height: 22px;
    font-size: 15px;
    text-align: justify;
}

.read-more-btn {
    border: 2px solid #db3236;
    font-size: 12px;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: #db3236;
    color: #fff;
    border-radius: 2px;
    margin-top: 25px;
    text-decoration: none;
}

.read-more-btn:hover {
    background: transparent;
    color: #ffffff;

}

.shape-box_half>.after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fdd744;
    opacity: 0;
    transition: opacity .4s;
}

/*On hover*/
.shape-box_half:hover:before {
    transform: skewY(20deg);
}

.shape-box_half:hover figcaption {
    transform: translateY(0);
}

.shape-box_half:hover figcaption .show-cont {
    bottom: 100%;
}

.shape-box_half:hover>.after {
    opacity: 1;
}

.show-cont p{
  font-weight: 700;
  color: #ffffff;
}



/*technology Review Section Start */
.wrapper {
	max-width: 1100px;
	width: 100%;
	position: relative;
}
.wrapper i {
	top: 50%;
	height: 50px;
	width: 50px;
	cursor: pointer;
	font-size: 1.25rem;
	position: absolute;
	text-align: center;
	line-height: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
	transform: translateY(-50%);
	transition: transform 0.1s linear;
  z-index: 99;
}
.wrapper i:active {
	transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child {
	left: -22px;
}
.wrapper i:last-child {
	right: -22px;
}
.wrapper .carousel {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% / 3) - 12px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 16px;
	border-radius: 8px;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
	display: none;
}
.carousel.no-transition {
	scroll-behavior: auto;
}
.carousel.dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
}
.carousel.dragging .card {
	cursor: grab;
	user-select: none;
}
.carousel :where(.card, .img) {
	display: flex;
	justify-content: center;
	align-items: center;
}
.carousel .card {
	scroll-snap-align: start;
	height: 342px;
	list-style: none;
	background: #fff;
	cursor: pointer;
	padding-bottom: 15px;
	flex-direction: column;
	border-radius: 8px;
}
.carousel .card .img {
	background: #ffffff;
	height: 148px;
	width: 148px;
	border-radius: 50%;
}
.card .img img {
	width: 80px;
	height: 80px;
	/* border-radius: 50%; */
	object-fit: cover;
	border: 4px solid #fff;
}
.carousel .card h2 {
  color: #eebf4b;
	font-weight: 700;
  font-size: 1.4em;
	margin: 30px 0 5px;
}
.carousel .card span {
	color: #6a6d78;
	font-size: 1rem;
}
.carousel .card p {
	color: #6a6d78;
	font-size: 1rem;
  padding: 20px;
  text-align: justify;
}

@media screen and (max-width: 900px) {
	.wrapper .carousel {
		grid-auto-columns: calc((100% / 2) - 9px);
	}
}

@media screen and (max-width: 600px) {
	.wrapper .carousel {
		grid-auto-columns: 100%;
	}
}



.title-a {
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
}
.title-a1 {
  text-align: center;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.webhead{
  margin: -88px 0px 0px 0px;
}
/* .webhead1{
  margin: -50px 0px 0px 0px;
} */
.techuse{
  margin: 20px 0px 20px 0px;
}
/*technology Section End*/

@media(max-width:600px){
  .box-wrapper{
    display: grid;
  }
  .shape-box_half {
    width: auto;
}
/* .techhead{
  margin: -237px 0px 0px 0px;
} */
}


@media (min-width: 768px) and (max-width: 1280px) {
  .box-wrapper{

    display: flex;

    justify-content: space-between !important;
  }
}


.pricetag{
  width: 50px;
  height: 50px;
}

.indprice{
  float: right;
  width: 50%;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin: 0px 0px 0px 0px;
}
.usaprice{
  width: 47%;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin: 0px 0px 0px 0px;
}


.indianflag{
  width: 20px;
  height: 20px;
}

/* Review Section */

.testsec {
  display: grid;
  /* grid-template-columns: repeat(12, 1fr); */
  width: calc(min(90rem, 85%));
  margin: 20px auto;
  
}
@media screen and (min-width: 61.25rem) {
  .testsec {
    column-gap: 5rem;
  }
}
.testsec h1 {
  grid-column: span 12;
  text-transform: capitalize;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 61.25rem) {
  .testsec h1 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
.testsec .cards {
  grid-column: span 12;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 61.25rem) {
  .testsec .cards {
    grid-column: span 5;
  }
}
.testsec .cards .card {
  cursor: pointer;
  padding: 2em;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2.188rem;
  align-items: center;
  transition: 0.3s;
  position: relative;
  border: 0.094rem solid transparent;
}
.testsec .cards .card img {
  display: block;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  filter: grayscale(1);
  transition: 0.5s;
}
.testsec .cards .card > div h3 {
  text-transform: capitalize;
  font-size: 1.025rem;
}
.testsec .cards .card > div p {
  text-transform: capitalize;
  color: #767676;
  font-size: 0.9rem;
}
.testsec .cards .card.active {
  background: #fff;
  border: 0.094rem solid #0f172a14;
}
.testsec .cards .card.active .gradient {
  background-image: linear-gradient(to right, #4755690a, #9d0cb28a, #4343c899, #4755690a);
  width: 50%;
  height: 0.094rem;
  position: absolute;
  content: "";
  bottom: -0.063rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0.125rem 0.75rem #4343c84d;
}
.testsec .cards .card.active img {
  filter: grayscale(0);
}
.testsec .content {
  grid-column: span 12;
  position: relative;
  width: 100%;
  overflow: inherit;
  margin-top: 2rem;
}
@media screen and (min-width: 61.25rem) {
  .testsec .content {
    grid-column: span 7;
    margin-top: 0;
    height: auto;
  }
}
/* .testsec .content .contentBox{
  display: none;
} */
.testsec .content .contentBox{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  /* overflow: hidden; */
}
/* @media screen and (min-width: 61.25rem) {
  .testsec .content .contentBox {
    align-items: center;
  }
} */
.testsec .content .contentBox .text {
  padding-bottom: 2rem;
}
@media screen and (min-width: 61.25rem) {
  .testsec .content .contentBox .text {
    padding-bottom: 0;
  }
}
.testsec .content .contentBox h2 {
  transition: 0.5s;
  opacity: 0;
}
.testsec .content .contentBox p {
  transition: 0.5s;
  opacity: 0;
  margin-top: 1.25rem;
}
.testsec .content .contentBox span {
  display: inline-block;
  transition: 0.5s;
  opacity: 0;
  margin-top: 0.625rem;
}
.testsec .content .contentBox span svg {
  width: 1.25rem;
  color: #eca633;
}
.testsec .content .contentBox.active h2 {
  opacity: 1;
  transition-delay: 0.5s;
}
.testsec .content .contentBox.active span {
  opacity: 1;
  transition-delay: 0.7s;
}
.testsec .content .contentBox.active p {
  opacity: 1;
  transition-delay: 0.9s;
}

@media(max-width:600px){
  .testtext{
    height: 800px;
  }
}

/* all countries */

.container12 {
  width: 90%;
  max-width: 1200px;
  background-color: #efaa02;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
}
h2 {
  text-align: center;
  margin-bottom: 20px;
}
.country-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.country-box {
  width: 107px;
  padding: 10px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.country-box img {
  width: 97%;
  height: 44%;
  border-radius: 8px;
  margin: 10px 0px 0px 0px;
}
.country-box p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .country-box {
      width: 100px;
      padding: 8px;
  }
  .country-box p {
      font-size: 12px;
  }
}

.sircountry{
  margin: 50px 0px 0px 0px;
}

.animated {
  animation-name: fadeInUp;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


@media (min-width: 768px) and (max-width: 1300px) {
.techuse{
  margin: 50px 0px 20px 0px;
}
}



/* New Dropdown Start */
/* New Add */
.dropdown-menu {
  display: none; /* Hide dropdown by default */
  position: absolute;
  background-color: #fff; /* Background color */
  border: 7px solid #e9b545 !important; /* Border */
  z-index: 1000; /* Positioning */
}

.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;
}
.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;
}
}
/* 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;
}
}

@media (min-width: 1400px) {
  .containernew1 {
      max-width: 1425px !important;
  }
}

#particles-js11{
  background-color: black;
  padding: 30px;
}


.contentBox {
  display: none;
}
.contentBox.active {
  display: block;
}

@media (min-width: 1024px) and (max-width: 1366px){
  .usaprice {
    width: 100%;
  }
  .indprice {
    float: right;
    width: 100%;
    margin-top: 10px;
  }
  .testsec .content .contentBox{
    display: none;
  }
  .testsec .content .contentBox.active {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    /* overflow: hidden; */
  }
  .testsec .content .contentBox.active {
    position: relative;
    /* top: 0; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    /* overflow: hidden; */
  }
  .testsec h1{
    text-align: center;
  }
  .align-centermob{
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  /* CSS rules for tablet devices */
  .box-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.shape-box {
  display: inline-block;
  position: relative;
  z-index: 1;
  max-width: 500px;
  height: 530px;
  margin: 30px 10px 30px;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
  overflow: hidden;
  width: 95%;
}
.usaprice {
  width: 100%;
}
.indprice {
  float: right;
  width: 100%;
  margin-top: 10px;
}
.testsec .content .contentBox{
  display: none;
}
.testsec .content .contentBox.active {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  /* overflow: hidden; */
}
.testsec .content .contentBox.active {
  position: relative;
  /* top: 0; */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  /* overflow: hidden; */
}
.testsec h1{
  text-align: center;
}
.align-centermob{
  align-items: center;
}
}

/* New */
@media (min-width: 968px) {
  .dropdown-about:hover .dropdown-menu {
    position: absolute !important;
    width: auto;
    left: 0;
  }
}

/* Maintenance Support start  */

/* General Styles */
.features-section {
  /* background-color: #f9f9f9;  */
  padding: 40px 20px;
}

.features-section .col-lg-6{
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  /* justify-content: stretch !important; */

}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  /* background: #fff; */
  background-color: #eebf4b;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* text-align: center; */
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 35rem;
  min-height: 33rem;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon img {
  width: 100px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 2.1rem;
  color: black;
  margin-bottom: 20px;
  font-weight: 700;
}

.feature-box p {
  color: black;
  margin-bottom: 15px;
}

.feature-box ul {
  list-style: circle !important;
  /* padding: 0; */
}

/* .feature-box ul li {
  color: black;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 700;
} */

/* Bullet Styling */
.feature-box ul {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  text-align: left; /* Aligns text for readability */
}

.feature-box ul li {
  position: relative; /* Enable pseudo-element positioning */
  color: black;
  margin-bottom: 17px;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 25px; /* Space for bullet */
}

.feature-box ul li::before {
  content: "☆"; /* Bullet character */
  position: absolute;
  left: 0; /* Position the bullet */
  top: 0;
  color: black; /* Custom bullet color */
  font-size: 1.5rem;
  line-height: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .feature-box {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .feature-box {
    padding: 15px;
  }

  .feature-box h3 {
    font-size: 1.25rem;
  }

  .feature-box ul li {
    font-size: 0.9rem;
  }
}


.service-item:hover  h4, .service-item:hover p{
  color: white;
}



/* step cards  */
.maintenance-process {
  text-align: center;
  padding: 50px;
  /* background-color: #f9f9f9; */
  /* background: linear-gradient(to bottom, #f0f5fd, #ffffff); */

}

.maintenance-process h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.maintenance-process p {
  /* margin-bottom: 40px; */
  font-size: 1rem;
  /* color: #666; */
}

.steps-container {

  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1 1 calc(25% - 20px); /* Base width for the cards */
  max-width: 280px;
  text-align: center;
  /* background-color: #fff; */
  /* border: 1px solid white; */
  border-radius: 8px;
  padding: 10px;
  box-shadow: none; /* No shadow in default state */
  transition: all 0.3s ease-in-out; /* Smooth animation */
}

.step img {
  width: 70px;
  margin-bottom: 15px;
}

.step h3 {
  color: black;
  margin-bottom: 5px;
  font-weight: 700;
}

.step:hover h3 {
  color: black;
  margin-bottom: 5px;
}

.step h4 {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: black;
}

.step:hover h4 {
  /* font-size: 1.2rem; */
  margin-bottom: 10px;
  color: black;
}

.step p {
  font-size: 0.9rem;
  color: black;
  font-weight: 600;
}

.step:hover p {
  font-size: 0.9rem;
  color: black;
}

/* .step.highlighted {
  background-color: #f0f8ff;
  border: 2px solid #007bff;
} */

/* Hover effect to highlight the step */
.step:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
  transform: scale(1.05); /* Slightly enlarge the card */
  z-index: 10; /* Bring the hovered card to the front */
  border: 3px solid #312f2b;
  /* background-color: #fff; */


}

/* Responsive Styles */
@media (max-width: 1024px) {
  .step {
    flex: 1 1 calc(33.33% - 20px); /* Adjust for tablets */
  }
}

@media (max-width: 768px) {
  .step {
    flex: 1 1 calc(50% - 20px); /* Adjust for smaller tablets and large phones */
  }
}

@media (max-width: 576px) {
  .step {
    flex: 1 1 100%; /* Full width for small devices */
    max-width: none;
  }

  .steps-container {
    gap: 15px; /* Reduce spacing for small screens */
  }
}



/* responsive  */
@media(max-width: 1200px) {
  .title-a {
    text-decoration: none;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
}
.carousel .card h2 {
  color: #eebf4b;
  font-weight: 700;
  font-size: 3.4em;
  margin: 30px 0 5px;
}
.carousel .card p {
  color: #6a6d78;
  font-size: 2rem;
  padding: 20px;
  text-align: center;
}
.show-cont p {
  font-weight: 700;
  color: #ffffff;
  font-size: 4.5rem;
}
.card-main-title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 3em;
  text-transform: uppercase;
  color: rgb(255 255 255);
}
.card-content {
  color: #000000;
  margin-top: 20px;
  line-height: 22px;
  font-size: 16px;
  text-align: justify;
}
.read-more-btn {
  border: 2px solid #db3236;
  font-size: 13px;
}
.feature-box h3 {
  font-size: 3.5rem ;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-box p {
  color: #666;
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.feature-box ul li {
position: relative;
color: #555;
margin-bottom: 10px;
font-size: 1.5rem !important;
padding-left: 10px;
}
.feature-icon{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.service-item h4 {
  transition: 0.3s;
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-item p {
  transition: all .3s;
  font-size: 2.2em;
  margin-bottom: 20px;
}
.maintenance-process p {
  /* margin-bottom: 40px; */
  font-size: 2rem;
  color: #666;
}
.maintenance-process {
  text-align: center;
  padding: 30px;
  /* background-color: #f9f9f9; */
}
.step h3 {
  color: black;
  margin-bottom: 5px;
  font-size: 3.5rem;
}

.step:hover h3 {
  color: black;
  margin-bottom: 5px;
  
}

.step h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: black;
}

.step:hover h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: black;
}

.step p {
  font-size: 0.9rem;
  color: black;
  font-size: 1.9rem !important;
}

.step:hover p {
  font-size: 0.9rem;
  color: black;
}

.step img {
  width: 80px;
  margin-bottom: 15px;
}
.testsec h1 {
  grid-column: span 12;
  text-transform: capitalize;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.testsec .cards .card > div h3 {
  text-transform: capitalize;
  font-size: 2.025rem;
}
.testsec .content .contentBox h2 {
  transition: 0.5s;
  opacity: 0;
  font-size: 3rem;
}
/* .testtext {
  height: auto !important;
} */
.feature-box {
  /* background: #fff; */
  background-color: #f4f1ec;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* text-align: center; */
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 100%;
}
}

/* Maintenance Support end  */


/* Tax consultancy start  */

.hero-sec{
  background-color: #e6f2ea;
}
.hero-sec .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-sec .col-lg-6 i{
  font-size: 3rem;
}
.hero-sec h1{
  font-size: 2.5rem;
  font-weight: 900 !important;
}

.hero-sec p{
  font-size: 1.5rem;
}

.form-container {
  background-color: #ffffff;
  width: 350px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.form-container h2 {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.divider {
  width: 50px;
  height: 2px;
  background-color: #333;
  margin: 10px auto 20px;
  border: none;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
  min-height: 80px;
}

.captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
}

.captcha label {
  font-size: 14px;
  color: #333;
}

.captcha input[type="text"] {
  width: 80px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #eebf4b;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #c49520;
}


.tax-plan-sec {
  /* background-color: #e6f2ea; */
  background-color: #144047;
  padding: 20px;
}
.tax-plan-sec .container .card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border-radius: 8px; /* Optional: adds rounded corners */
  transition: box-shadow 0.3s ease; /* Smooth hover effect */
  border: none;
  margin-bottom: 20px;
  margin-top: 25px;
  padding: 10px;
  background-color: #c8eef5;
  text-align: center;
}

/* Add hover effect for better interaction */
.tax-plan-sec .container .card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  transform: translateY(-5px); /* Optional: slight upward movement */
  background-color: rgb(228 220 243);
}

.tax-plan-sec .container .card img{
width: 80px;
height: 80px;
margin-bottom: 20px;
  

}
.tax-plan-sec .container .card h4{

  font-size: 1.5rem;
  font-weight: 700;

}
.tax-plan-sec .container .card p{
  font-size: 14px;

}
.tax-plan-sec .container .col-lg-3 {
  display: flex;
} 

/* tax-steps  */
.tax-consultancy-process {
  text-align: center;
  padding: 2rem 1rem;
  /* background-color: #f8fafc; */
  background: linear-gradient(to bottom, #f0f5fd, #ffffff);

}
.tax-consultancy-process .container {
  width: 65%;
}

.tax-consultancy-process h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1f2937;
}

.tax-consultancy-process h2 span {
  color: #eebf4b;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px; /* Ensures items don't shrink too much on small screens */
}

.process-item .process-icon {
  font-size: 2rem;
  color: #eebf4b;
  background-color: #e5f4e3;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.process-item p {
  font-size: 1.2rem;
  color: #374151;
  margin: 0;
}

.process-separator {
  width: 2rem;
  height: 1px;
  background-color: #eebf4b;
}

.cta-button {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: #ffffff;
  background-color: #eebf4b;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #dcab2e;
}

.cta-button::after {
  content: "➔";
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
  }

  .process-separator {
    display: none; /* Hide separators on smaller screens */
  }

  .process-item {
    margin-bottom: 1rem;
  }

  .cta-button {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .tax-consultancy-process h2 {
    font-size: 1.5rem;
  }

  .process-item .process-icon {
    font-size: 1.5rem;
    padding: 0.75rem;
  }

  .process-item p {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
}


/* why choose us  */
.why-choose-sec {
  background-color: #e6f2ea;
}


/* faq  */
.faq-sec {
  background-color: #e4dcf3;
}

.faq {
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0 0 12px rgba(0, 0, 0, 0.25); */
}

.faq__title {
  text-transform: uppercase;
  color: #eebf4b;
}

details {
  /* background-color: #eebf4b; */
  background-color: #0d2b2f;
  /* background-color: #e6f0b2; */
  border-radius: 10px;
  cursor: pointer;
  padding: 20px 30px;
  margin-block: 30px;
}
details summary{
  text-align: left !important;
  color: white;
}
details p {
  text-align: left;
  color: white;
}

summary {
  margin-inline-start: 1rem;
  list-style-position: outside;
}

summary::marker {
  color: #eebf4b;
  font-size: 18px;
}

details summary {
  display: flex;
  align-items: center;
  cursor: pointer;
}
details summary::before {
  content: '\25B6'; /* Right arrow symbol */
  font-size: 18px;
  margin-right: 10px; /* Space between arrow and text */
  transition: transform 0.3s ease; /* Smooth rotation */
}

details[open] summary::before {
  transform: rotate(90deg); /* Rotate the arrow when the details are open */
}

/* banner-btn  */
.banner-btn-sec {
  padding: 20px 0; /* Optional padding for spacing */
}

.banner-btn-sec .container {
  background-color: #a45f0c;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between !important; /* This will push the text and button to opposite sides */
  align-items: center; /* This vertically centers the content */
}

.banner-btn-sec h4 {
  margin: 0; /* Remove default margin */
  color: white;
  font-weight: 900;
}

.banner-btn-sec button {
  margin-left: 20px; /* Optional margin for spacing between text and button */
}


.cta-now-button {
  /* margin-top: 2rem; */
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: black;
  background-color: white;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.cta-now-button:hover {
  background-color: #deaf37;
  color: white;
}



@media(max-width: 600px) {
.tax-plan-sec .card {
  min-width: 90vw;
}
.hero-sec h1 {
  font-size: 3.5rem;
  font-weight: 900 !important;
}
.hero-sec p {
  font-size: 2rem;
}
.form-container h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}
button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #eebf4b;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.step h3 {
  color: black;
  margin-bottom: 5px;
  font-size: 4.5rem !important;
  
}
.step p {
  font-size: 0.9rem;
  color: black;
  font-size: 2.9rem !important;
}
.tax-plan-sec .container .card h4 {
  font-weight: 700;
  font-size: 3.2rem !important;
}
.tax-consultancy-process h2 {
  font-size: 4rem !important;
}
.process-item .process-icon {
  font-size: 7.5rem !important;
  padding: 0.75rem;
}
.process-item p {
  font-size: 2.9rem !important;
}
.cta-button {
  font-size: 2rem;
  padding: 0.6rem 1.5rem;
}
.feature-box ul li {
  position: relative;
  color: black;
  margin-bottom: 10px;
  font-size: 2.5rem !important;
  padding-left: 10px;
}
.feature-box ul li::before {
  content: "☆";
  position: absolute;
  left: 0;
  top: 8px;
  color: black;
  font-size: 1.5rem;
  line-height: 1;
}
details summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 2rem;
}
.banner-btn-sec .container {
  background-color: #a45f0c;
  border-radius: 20px;
  padding: 30px;
  display: block;
  justify-content: space-between !important;
  align-items: center;
}
.banner-btn-sec h4 {
  margin: 0;
  color: white;
  font-weight: 900;
  font-size: 3rem;
}
.banner-btn-sec button {
  
  margin-left: 0px;
}
.cta-now-button {
  /* margin-top: 2rem; */
  padding: 0.75rem 2rem;
  font-size: 2rem;
  color: black;
  background-color: white;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.hero-sec .col-lg-6 i {
  font-size: 5rem;
}
}





@media (min-width: 601px) and (max-width: 1100px) {
  .tax-plan-sec .card {
    min-width: 90vw;
  }
  .hero-sec h1 {
    font-size: 4.5rem;
    font-weight: 900 !important;
  }
  .hero-sec p {
    font-size: 2.5rem;
  }
  .form-container h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
  }
  button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #eebf4b;
    color: #fff;
    font-weight: bold;
    font-size: 2.3rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .step h3 {
    color: black;
    margin-bottom: 5px;
    font-size: 5rem !important;
    
  }
  .step p {
    font-size: 1.9rem;
    color: black;
    font-size: 3.5rem !important;
  }
  .tax-plan-sec .container .card h4 {
    font-weight: 700;
    font-size: 4.5rem !important;
  }
  .tax-consultancy-process h2 {
    font-size: 5rem !important;
  }
  .process-item .process-icon {
    font-size: 7.5rem !important;
    padding: 0.75rem;
  }
  .process-item p {
    font-size: 3.9rem !important;
  }
  .cta-button {
    font-size: 3rem;
    padding: 0.6rem 1.5rem;
  }
  .feature-box ul li {
    position: relative;
    color: black;
    margin-bottom: 10px;
    font-size: 2.5rem !important;
    padding-left: 10px;
  }
  .feature-box ul li::before {
    content: "☆";
    position: absolute;
    left: 0;
    top: 8px;
    color: black;
    font-size: 1.5rem;
    line-height: 1;
  }
  details summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 2rem;
  }
  .banner-btn-sec .container {
    background-color: #a45f0c;
    border-radius: 20px;
    padding: 30px;
    display: block;
    justify-content: space-between !important;
    align-items: center;
  }
  .banner-btn-sec h4 {
    margin: 0;
    color: white;
    font-weight: 900;
    font-size: 3rem;
  }
  .banner-btn-sec button {
    
    margin-left: 0px;
  }
  .cta-now-button {
    /* margin-top: 2rem; */
    padding: 0.75rem 2rem;
    font-size: 2rem;
    color: black;
    background-color: white;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 20px;
  }
  .hero-sec .col-lg-6 i {
    font-size: 5rem;
  }
  .feature-box {
    /* background: #fff; */
    background-color: #eebf4b;
    /* border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    /* text-align: center; */
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 35rem;
    height: 61rem;
}
.tax-plan-sec .container .card p {
  font-size: 23px;
}
details summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 3rem;
}
details p {
  font-size: 2.5rem;

}
.banner-btn-sec h4 {
  margin: 0;
  color: white;
  font-weight: 900;
  font-size: 4rem;
}
.cta-now-button {

  font-size: 3rem;
}
  }


/* ===================================================================================================== */
  /* tax filling service  */

  .hero-section {
    display: flex;
    /* justify-content: space-between; */
    justify-content: space-around;
    /* justify-content: space-evenly; */
    align-items: center;
    padding: 50px;
    background-color: rgb(20, 64, 71);
    padding-left: 100px;
    padding-right: 100px;
}

.hero-section .text-content {
    max-width: 50%;
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .hero-section .text-content {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 20px;
  }

  .hero-section .text-content {
    font-size: 14px;
  }

  
}


.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-section p {
  
  color: white;
}

.hero-section h1 span {
    color: #ffd700; /* Gold for emphasis */
}

.rating-section {
    font-size: 1rem;
    margin-top: 20px;
}

.rating-section img {
    width: 50px;
    margin-right: 10px;
}
.rating-section .fw-bold {
  color: white; /* Gold stars */
}
.rating-section .stars {
    color: #ffd700; /* Gold stars */
}

.form-container-cmn {
  display: flex;
  align-items: center;
}

.form-container-cmn input {
  height: 50px;
  width: 300px;
  padding: 0 15px;
  border: none;
  border-radius: 8px 0 0 8px; /* Rounded corners on the left */
  outline: none;
  font-size: 16px;
  color: #6c757d; /* Placeholder color */
  box-shadow: 10px 10px 10px -1px rgba(0, 0, 0, 0.4);

}

.form-container-cmn input::placeholder {
  color: #adb5bd; /* Lighter placeholder color */
}

.form-container-cmn button {
  height: 50px;
  padding: 0 20px;
  background-color: #00bcd4; /* Bright blue button */
  border: none;
  border-radius: 0 8px 8px 0; /* Rounded corners on the right */
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container-cmn button:hover {
  background-color: #0097a7; /* Darker blue on hover */
}

.hero-section .image-section img {
    max-width: 400px;
    width: 100%;
    box-shadow: 10px 10px 10px -1px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.tik-point{
  /* display: flex !important; */
  margin-bottom: 30px;
}
 
.tik-point ul {
  display: flex; /* Arrange list items side by side */

  list-style: none; /* Remove default list styles */
  padding: 0;
  margin: 0;
}

.tik-point ul li {
  position: relative;
  padding-left: 30px; /* Space for the tick mark */
  margin-bottom: 10px; /* Add spacing between list items */
  margin-right: 20px;
}

.tik-point ul li::before {
  content: '\2713'; /* Unicode for tick mark */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000000; /* Circle background color */
  color: white; /* Tick mark color */
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}


.purple-sec{
  background-color: rgb(228, 220, 243);
  padding-bottom: 50px;
  /* background: linear-gradient(to bottom, rgb(228, 220, 243), #ffffff); */

}

.reduce-tax h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.reduce-tax .container .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reduce-tax .container .col-lg-6 img {
  /* width: 80%; */
  /* box-shadow: 10px 10px 10px -1px rgba(0, 0, 0, 0.1); */
  border-radius: 20px;
}

.title-box p {
  font-size: 1.3rem;
}



/* Section Styling */
.itr-section {
  background-color: #e6f0b2;
  padding: 40px 0;
}

/* Container and Row */
.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Left Content */
.text-content {
  flex: 1 1 50%;
  padding: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.intro-text {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.description {
  margin-bottom: 20px;
  font-size: 1rem;
}


/* Right Content */
.image-content {
  flex: 1 1 50%;
  padding: 20px;
}

.step-itr {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
  
}

.expert-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.step-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 20px;
}



/* Responsive Styling */
@media (max-width: 768px) {
  .custom-row {
      flex-direction: column;
  }

  /* .text-content,
  .image-content {
      flex: 1 1 100% !important;
  } */

  .text-content,
  .image-content {
      flex: 0 1 auto !important;
  }

  
}



.portfolio-section {
  background-color: #0d2b2f;
  /* min-height: 100vh; */
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center; /* Space visible on both sides */
  padding: 0 5%; /* Add space on the sides */
}

.portfolio-heading {
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.portfolio-subheading {
  font-size: 1.25rem;
  color: white;
}

.portfolio-description {
  font-size: 0.8rem;
  color: white;

}

.portfolio-image1 {
  width: 60%;
}

/* ----------------------------- */

.portfolio-section-light {
  background-color: #e6f0b2;
  /* min-height: 100vh; */
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center; /* Space visible on both sides */
  padding: 0 5%; /* Add space on the sides */
}

.portfolio-heading-light {
  font-size: 3rem;
  font-weight: bold;
  color: black;
}

.portfolio-subheading-light {
  font-size: 1.25rem;
  color: black;
}

.portfolio-description-light {
  font-size: 0.8rem;
  color: black;

}



.tik-point-2{
  /* display: flex !important; */
  margin-bottom: 30px;
}
 
.tik-point-2 ul {
  display: flex; /* Arrange list items side by side */

  list-style: none; /* Remove default list styles */
  padding: 0;
  margin: 0;
}

.tik-point-2 ul li {
  position: relative;
  padding-left: 30px; /* Space for the tick mark */
  margin-bottom: 10px; /* Add spacing between list items */
  margin-right: 20px;
}

.tik-point-2 ul li::before {
  /* content: '\2713';  */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000000; /* Circle background color */
  color: white; /* Tick mark color */
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}

.tik-point-2 ul .li1::before {
  content: '\2605'; /* Unicode for ★ */
}
.tik-point-2 ul .li2::before {
  content: '\1F465'; /* Unicode for 👥 */
  color: rgb(255, 255, 255) !important;
}
.tik-point-2 ul .li3::before {
  content: '\20B9'; /* Unicode for ₹ */
}




@media(max-width: 600px) {
  .hero-section .image-section img {
    max-width: 300px;
   
}
.reduce-tax {
  /* width: 70%; */
  padding: 20px;
}
.reduce-tax-content-div {
  width: 100%;
}
.reduce-tax h1 {
  font-size: 4rem;
}
.tik-point ul{
  /* display: flex !important; */
  flex-direction: column !important;
}
.tik-point ul li{
  /* display: flex !important; */
  font-size: 2rem;
}

.hero-section h1 {
  font-size: 4.5rem !important;
}
.hero-section p {
  color: white;
  font-size: 2rem !important;
}
.rating-section {
font-size: 2rem !important;
margin-top: 20px;
}

.title-box p {
  font-size: 2.3rem;
}
.just-end {
  display: flex !important;
  justify-content: center !important;
}
.just-start {
  display: flex !important;
  justify-content: center !important;
}
.portfolio-heading {
  font-size: 5rem !important;
  font-weight: bold;
  color: white;
}
.portfolio-subheading {
  font-size: 3rem !important;
  color: white;
}
.portfolio-description {
  font-size: 1.8rem !important;
  color: white;
}
.tik-point-2 ul li {
  font-size: 1.5rem !important;
}
.portfolio-heading-light {
  font-size: 5rem !important;
 
}
.portfolio-subheading-light {
  font-size: 3rem !important;
  
}
.portfolio-description-light {
  font-size: 1.8rem !important;
  
}
.section-title {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.intro-text {
  margin-bottom: 10px;
  font-size: 3rem;
}
.description {
  margin-bottom: 20px;
  font-size: 2rem;
}
 .image-content {
  flex: 0 1 auto !important;
}

.step-text {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 20px;
  margin: 20px;
}

.itr-section .text-content {
  max-width: 90%;
  padding: 0px;
}

.cross-div {
  max-width: 100% !important;
  /* padding: 0px; */
}
}


.just-end {
  display: flex;
  justify-content: end;
}
.just-start {
  display: flex;
  justify-content: start;
}




@media (min-width: 601px) and (max-width: 1100px) {
  .hero-section .image-section img {
    max-width: 450px;
   
}
.reduce-tax {
  /* width: 70%; */
  padding: 20px;
}
.reduce-tax-content-div {
  width: 100%;
}
.reduce-tax h1 {
  font-size: 4rem;
}
.tik-point ul{
  /* display: flex !important; */
  flex-direction: column !important;
}
.tik-point ul li{
  /* display: flex !important; */
  font-size: 2rem;
}

.hero-section h1 {
  font-size: 5.5rem !important;
}
.hero-section p {
  color: white;
  font-size: 3rem !important;
}
.rating-section {
font-size: 3rem !important;
margin-top: 20px;
}

.title-box p {
  font-size: 2.3rem;
}
.just-end {
  display: flex !important;
  justify-content: center !important;
}
.just-start {
  display: flex !important;
  justify-content: center !important;
}
.portfolio-heading {
  font-size: 5rem !important;
  font-weight: bold;
  color: white;
}
.portfolio-subheading {
  font-size: 3rem !important;
  color: white;
}
.portfolio-description {
  font-size: 1.8rem !important;
  color: white;
}
.tik-point-2 ul li {
  font-size: 1.5rem !important;
}
.portfolio-heading-light {
  font-size: 5rem !important;
 
}
.portfolio-subheading-light {
  font-size: 3rem !important;
  
}
.portfolio-description-light {
  font-size: 1.8rem !important;
  
}
.section-title {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.intro-text {
  margin-bottom: 10px;
  font-size: 3rem;
}
.description {
  margin-bottom: 20px;
  font-size: 2rem;
}

 .image-content {
  flex: 0 1 auto !important;
}

.expert-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 15px;
}
.step-text {
  font-size: 2.3rem;
  line-height: 1.5;
  margin-top: 20px;
  margin: 20px;
}

}



@media (width: 375px) {
  .just-end {
    display: block !important; /* Change to block or inline-block as needed */
    justify-content: unset !important; /* Remove justification */
  }
  .just-start {
    display: block !important; /* Change to block or inline-block as needed */
    justify-content: unset !important; /* Remove justification */
  }
}


@media (max-width: 375px) {
  .just-end {
    display: block !important;
    justify-content: left !important;
  }
  .just-start {
    display: block !important;
    justify-content: left !important;
  }
}





















/* 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 */



