/* -----------------utility class-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =============chat-now----- */

.chat a {
  position: fixed;
  z-index: 500;
  width: 7.5rem;
  display: flex;
  justify-content: center;
  height: 2.7rem;
  bottom: 2rem;
  right: 1rem;
  background-color: white;
  border-radius: var(--border-radius-10px);
  border: 1px solid green;
  box-shadow: 0px 0px 10px 0px rgb(37, 104, 37, 0.3);
}

a .w-chat {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}

a .w-chat i {
  color: white;
  font-size: 1.9rem;
  padding: 0.1rem 0.2rem;
  border-radius: 5px;
  background-color: #25d366;
}

a .w-chat p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  align-items: center;
  font-weight: 800;
}

@media (max-width: 530px) {
  .chat a {
    width: 8rem;
    height: 2.7rem;
    bottom: 1rem;
    right: 0.5rem;
  }

  a .w-chat i {
    font-size: 2rem;
  }
}

:root {
  --primary-color: #63e5ff;
  --secondary-color: #b1f1ff;
  --section-margin: 1rem;
  --section-pading: 1rem;
  --nav-padding: 1vw 3vw;
  --botton-border-radius: 5px;
  --border-radius-10px: 6px;
  --container-border: 1px solid #cccccc;
  --container-background-color: white;

}

:root body.dark {
  --primary-color: #63e5ff;
  --secondary-color: #b1f1ff;
  --section-margin: 1rem;
  --section-pading: 1rem;
  --nav-padding: 1vw 3vw;
  --botton-border-radius: 5px;
  --border-radius-10px: 6px;
  --container-border: 1px solid #cccccc;
  --container-background-color: black;
}

h1 {
  --heading-size: 2.5rem;
  --font-weight: 900;
}

p {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: justify;
  line-height: 2rem;
  color: black;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  font-size: 1rem;
  color: black;
}

/* ---------------------------navigation-start--------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  box-shadow: 0 0 10px inset var(--secondary-color);
  z-index: 100;
}

.nav-left {
  max-width: 24rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 4.3rem;
}

.logo-text {
  flex-direction: column;
}

.can {
  font-family: 'Fredoka', sans-serif;
  text-align: start;
  padding-top: 5px;
  font-weight: 700;
  font-size: 1.6rem;
  color: rgb(0, 0, 0);
  text-shadow: 1px 1px 1px #ff0404;
}

.nav-data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  position: relative;
  width: 40px;
  height: 40px;
}

.bar,
.close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity .1s, transform .2s;
}

.nav-toggle i {
  font-size: 1.3rem;
}

.close {
  opacity: 0;
}

@media screen and (max-width:769px) {

  .nav-left {
    max-width: 30rem;
  }

  .logo {
    width: 3rem;
  }

  .logo-text {
    align-items: start;
  }

  .can {
    font-size: 1rem;
    padding-top: 1px;
  }

  .nav-link {
    padding-inline: 1rem;
  }
}

@media screen and (max-width:769px) {
  .nav-left {
    max-width: 30rem;
  }

  .logo {
    width: 3.8rem;
  }

  .logo-text {
    align-items: start;
  }

  .can {
    padding-top: 5px;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 1px 0.5px 1px #ff0404;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    top: 4.4rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav-menu::-webkit-scrollbar {
    width: 0;
  }

  .nav {
    padding: 0.8rem 0.5rem;
  }
}

.nav-link {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  background-color: var(--primary-color);
}

.nav-link:hover {
  background-color: var(--secondary-color);
  color: red;
  border-radius: var(--botton-border-radius);
}

/* Show menu */
.show-menu {
  opacity: 1;
  pointer-events: initial;
}

.show-icon .bar {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .close {
  opacity: 1;
  transform: rotate(90deg);
}

@media screen and (min-width: 769px) {
  .nav {
    padding: var(--nav-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    height: 100%;
    display: flex;
  }

  .nav-link {
    background-color: var(--primary-color);
    height: 100%;
    padding: 1vw;
    justify-content: initial;
    column-gap: .5rem;
  }

  .nav-link:hover {
    background-color: var(--secondary-color);
  }
}

/* ------------------------banner-start----------------------------- */
.banner-section {
  border-radius: 10px;
  border: var(--container-border);
  margin-top: 2.6rem;
  margin-bottom: 1rem;
}

.banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}


#banners {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#banners img {
  width: 100%;
  height: 49rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

#banners img.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  /* optionally */
  display: block;
  /* unnecessary due to position absolute */
}

#prev,
#next {
  position: absolute;
  top: 45%;
  background-color: var(--primary-color);
  color: black;
  border-radius: 50%;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  transition: transform 0.2s;
}

#prev {
  left: 1rem;
}

#next {
  right: 1rem;
}

.fa-solid {
  font-size: 1rem;
}

#prev:hover,
#next:active {
  opacity: 1;
  transform: scale(0.91);
  background-color: var(--secondary-color);
  color: white;
  cursor: pointer;
}

.dot-container {
  position: absolute;
  bottom: 1rem;
  left: 45%;
}

.dot {
  height: 12px;
  width: 12px;
  cursor: pointer;
  background-color: rgb(25, 24, 24);
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.2s;
}

.dot:active {
  background-color: white;
  transform: scale(0.91);
}

.dot-container .activedot {
  background-color: white;
}

@media screen and (max-width: 768px) {
  .banner-section {
    margin-top: 3rem;
  }

  #banners img {
    height: 30rem;
  }
}

@media screen and (max-width: 570px) {
  .banner-section {
    margin-top: 3rem;
    margin-bottom: 0.5rem;
  }

  #banners img {
    height: 18rem;
  }

  #prev,
  #next {
    top: 50%;
    height: 2rem;
    width: 2rem;
  }

  .fa-solid {
    font-size: 0.8rem;
  }

  .dot {
    height: 10px;
    width: 10px;
  }
}

/* -----------history of company----------------------- */
.history-section {
  background-color: var(--container-background-color);
  border-radius: var(--border-radius-10px);
  padding: var(--section-pading);
  margin: var(--section-margin);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border: var(--container-border);

}

.photo {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-inline: 0.5rem;
}

.photo img {
  width: 28rem;
  height: 25rem;
  border-radius: 50%;
  object-fit: fill;
  border: 3px solid rgb(71, 34, 34);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.photo img.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.para {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 1.5rem;
}

.para h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 2px;
  text-shadow: 1px 0.5px 1px #ff0404;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.para p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2.1rem;
  word-wrap: break-word;
  color: #333333;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.para.visible h1,
.para.visible p {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width:768px) {

  .history-section {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }

  .para {
    align-items: center;
    gap: 0;
  }

  .para h1 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
    text-align: center;
  }

  .para p {
    font-size: 1.1rem;
    line-height: 2.2rem;
  }
}

@media screen and (max-width:570px) {

  .history-section {
    padding: 0.5rem;
    margin: 0.5rem;
    gap: 0.5rem;
    margin-top: 0;
  }

  .photo img {
    border-radius: var(--border-radius-10px);
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    border: 2px solid rgb(71, 34, 34);
  }

  .para h1 {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.2rem;
    padding-block: 1rem;
  }

  .para p {
    font-size: 0.9rem;
    line-height: 1.8rem;
  }
}

/* -----------------link-------------------- */
.link-section {
  background-color: var(--container-background-color);
  border-radius: var(--border-radius-10px);
  padding: var(--section-pading);
  margin: var(--section-margin);
  border: var(--container-border);
}

.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 1rem 1.5rem;
}

.heading h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-shadow: 1px 0.5px 1px #ff0404;
}

.heading-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-1 h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0px;
  text-shadow: 1px 0.5px 1px #ff0404;
}

.link-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.links img {
  align-items: center;
  width: 8rem;
  height: 8rem;
  object-fit: fill;
  border-radius: 50%;
  border: 1px solid brown;
}

.links p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(109, 15, 15);
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {

  .heading,
  .heading-1 {
    margin-block: 0rem 1rem;
  }

  .heading h1,
  .heading-1 h1 {
    font-size: 1.5rem;
  }

  .link-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
  }

  .links {
    gap: 0.2rem;
  }

  .links img {
    width: 5rem;
    height: 5rem;
  }

  .links p {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgb(109, 15, 15);
  }
}

@media screen and (max-width:570px) {
  .link-section {
    padding: 0.5rem;
    margin: 0.5rem;

  }

  .heading,
  .heading-1 {
    margin-block: 1rem 1rem;
  }

  .heading h1,
  .heading-1 h1 {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.2rem;
  }

  .link-container {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
  }

  .links {
    gap: 0rem;
  }

  .links img {
    width: 5rem;
    height: 5rem;
  }

  .links p {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgb(109, 15, 15);
  }
}

/* ---------------------staff-section------------------------------- */
.staff-section {
  background-color: var(--container-background-color);
  border-radius: var(--border-radius-10px);
  padding: var(--section-pading);
  margin: var(--section-margin);
  border: var(--container-border);
}

.staff-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.staff-card {
  padding: 0.5rem;
  border-radius: var(--border-radius-10px);
  transition: 0.3s ease-in-out 0.1s;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
   opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.staff-card img {
  align-items: center;
  width: 11rem;
  height: 11rem;
  object-fit: fill;
  border-radius: 50%;
  border: 1px solid rgb(30, 11, 11);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.staff-card h1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-block: 1rem 0.5rem;
  text-align: center;
  color: #111;
  margin-block: 0.5rem 1rem;
  text-align: center;
  text-shadow: 1px 0.5px 1px #ff0404;
}

.staff-card p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.3rem;
  text-align: center;
  color: #333333;
}

.animated-border-btn {
  width: 100%;
  position: relative;
  background: transparent;
  border: 2px solid #1e90ff;
  color: #1e90ff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.animated-border-btn a {
  text-decoration: none;
  color: inherit;
}

.animated-border-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1e90ff;
  z-index: -1;
  transition: all 0.4s ease;
}

.animated-border-btn:hover::before {
  left: 0;
}

.animated-border-btn:hover {
  color: white;
}

@media screen and (max-width: 768px) {
  .staff-head h1 {
    font-size: 1.5rem;
    margin-block: 0rem;
  }

  .staff-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    gap: 1rem;
  }

  .staff-card img {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
  }

  .staff-card h1 {
    font-size: 1.2rem;
    margin-block: 0.8rem;
  }

  .staff-card p {
    font-size: 1rem;
  }

  .animated-border-btn {
    padding: 10px 20px;
    border-radius: 5px;
  }
}

@media screen and (max-width: 570px) {
  .staff-section {
    padding: 0.5rem;
    margin: 0.5rem;
  }

  .staff-container {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
  }

  .staff-head h1 {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.2rem;
  }

  .staff-card p {
    font-size: 1rem;
  }

  .animated-border-btn {
    padding: 8px 10px;
    border-radius: 5px;
  }

  .animated-border-btn a {
    font-size: 0.9rem;
  }

}
/* ---------------------client-section------------------------------- */
.client-section {
  background-color: var(--container-background-color);
  border-radius: var(--border-radius-10px);
  padding: var(--section-pading);
  margin: var(--section-margin);
  border: var(--container-border);
}

.client-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.client-card {
  padding: 0.5rem;
  border-radius: var(--border-radius-10px);
  transition: 0.3s ease-in-out 0.1s;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
   opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.client-card img {
  align-items: center;
  width: 11rem;
  height: 11rem;
  object-fit: fill;
  border-radius: 50%;
  border: 1px solid rgb(30, 11, 11);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.client-card h1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-block: 1rem 0.5rem;
  text-align: center;
  color: #111;
  margin-block: 0.5rem 1rem;
  text-align: center;
  text-shadow: 1px 0.5px 1px #ff0404;
}

.client-card p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.3rem;
  text-align: center;
  color: #333333;
}

.animated-border-btn {
  width: 100%;
  position: relative;
  background: transparent;
  border: 2px solid #1e90ff;
  color: #1e90ff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.animated-border-btn a {
  text-decoration: none;
  color: inherit;
}

.animated-border-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1e90ff;
  z-index: -1;
  transition: all 0.4s ease;
}

.animated-border-btn:hover::before {
  left: 0;
}

.animated-border-btn:hover {
  color: white;
}

@media screen and (max-width: 768px) {
  .client-head h1 {
    font-size: 1.5rem;
    margin-block: 0rem;
  }

  .client-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    gap: 1rem;
  }

  .client-card img {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
  }

  .client-card h1 {
    font-size: 1.2rem;
    margin-block: 0.8rem;
  }

  .client-card p {
    font-size: 1rem;
  }

  .animated-border-btn {
    padding: 10px 20px;
    border-radius: 5px;
  }
}

@media screen and (max-width: 570px) {
  .client-section {
    padding: 0.5rem;
    margin: 0.5rem;
  }

  .client-container {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
  }

  .client-head h1 {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.2rem;
  }

  .client-card p {
    font-size: 1rem;
  }

  .animated-border-btn {
    padding: 8px 10px;
    border-radius: 5px;
  }

  .animated-border-btn a {
    font-size: 0.9rem;
  }

}

/* -------------------------gellary start------------------------ */
.container {
  background-color: var(--container-background-color);
  border-radius: var(--border-radius-10px);
  padding: 1rem 0;
  margin: var(--section-margin);
  border: var(--container-border);
}
.gellary .img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background-color: white;
  border-radius: 10px;
  padding-inline: 1rem;
}

.gellary .img .under {
  background-color: #ffeeee;
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius-10px);
  transition: 0.3s ease-in-out 0.1s;
  border: var(--container-border);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
   opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}
.gellary .img .under.visible {
  opacity: 1;
  transform: translateY(0);
}

.gellary .img .under:nth-child(n+7) {
  display: none;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-10px);
}

.container h1 {
  font-weight: 900;
  color: black;
  font-size: 1.7rem;
  padding-bottom: 1rem;
  text-align: center;
}


@media screen and (max-width:768px) {
  .gellary .img {
    grid-template-columns: repeat(2, 1fr);
  }

  .gellary .img .under {
    height: 270px;
  }

  .container h1 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width:530px) {
  .container {
    padding: 0.5rem;
    margin: 0.5rem;
  }

  .gellary .img {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-inline: 0rem;
  }

  .gellary .img .under {
    height: 250px;
  }

  .container h1 {
    font-size: 1.3rem;
    padding-block: 0.5rem 1rem;
  }
}

/* -------------------------video start------------------------ */
.video {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background-color: white;
  border-radius: 10px;
  padding-inline: 1rem;
  margin-top: 1.5rem;
}

.video .under {
  background-color: #ffeeee;
  width: 100%;
  height: 230px;
  border-radius: var(--border-radius-10px);
  transition: 0.3s ease-in-out 0.1s;
  border: var(--container-border);
  position: relative;
}

.video .under:nth-child(n+7) {
  display: none;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #ff00006f;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.video .under:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.video a video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-10px);
}



@media screen and (max-width:768px) {


  .video {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
  }

  .heading h1,
  .heading-1 h1 {
    font-size: 1.5rem;
  }

  .video .img .under {
    height: 270px;
  }

  .container h1 {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width:530px) {

  .video {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-inline: 0rem;
    margin-top: 0.5rem;
  }

  .video .img .under {
    height: 250px;
  }

  .container h1 {
    font-size: 1.3rem;
    padding-block: 0.5rem 1rem;
  }
}



/* ----------------ask-map-section--------- */
.ask-section {
  background-color: var(--container-background-color);
  border-radius: var(--border-radius-10px);
  padding: var(--section-pading);
  margin: var(--section-margin);
  border: var(--container-border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.ask-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
   opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.para.visible h1,
.para.visible p {
  opacity: 1;
  transform: translateY(0);
}


.feed-name,
.send {
  /* width: 100%; */
  min-width: 90%;
}

.feed-name input {
  min-width: 100%;
  outline: none;
  border: 1px solid rgb(104, 104, 104);
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.feed-name input:focus {
  border: 1px solid var(--primary-color);
}

.feed-name textarea {
  min-width: 100%;
  outline: none;
  border: 1px solid rgb(104, 104, 104);
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 5px;
  transition: all 0.5s ease;
  resize: none;
  min-height: 6rem;
}

.send button {
  width: 100%;
  font-weight: 600;
  color: white;
  padding: 0.8rem 1rem;
  background-color: rgb(43, 43, 43);
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.2s;
  border: none;
}

.send button:active {
  transform: scale(0.99);
}

.map-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
   opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.ask-container.visible{
  opacity: 1;
  transform: translateY(0);
}
.map-container.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.map-container iframe {
  height: 14rem;
  width: 95%;
}

.map-name {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.map-name i {
  color: red;
  font-size: 1.3rem;
  margin-inline: 0.5rem;

}

.map-name p {
  font-size: 1.1rem;
  line-height: 1.5rem;
  text-align: start;
  text-transform: capitalize;
  color: var(--text-color);
}

@media screen and (max-width:768px) {
  .ask-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .ask-container {
    gap: 0.5rem;
  }

  .ask-heading {
    text-align: start;
    margin-bottom: 0.5rem;
  }

  .map-heading {
    margin-bottom: 0.5rem;
  }

  .feed-name input {
    font-size: 0.9rem;
    padding: 6px 8px;
  }

  .feed-name textarea {
    font-size: 0.9rem;
    padding: 6px 8px;
    min-height: 5rem;
  }

  .send button {
    padding: 0.6rem 0;
    font-size: 1rem;

  }

  .map-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .map-container iframe {
    height: 10rem;
    width: 95%;
  }

  .map-name {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .map-name i {
    font-size: 1.2rem;
    margin-inline: 0.5rem;

  }

  .map-name p {
    font-size: 1rem;
  }
}

@media screen and (max-width:530px) {
  .ask-section {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding: 0;
    margin: 0.5rem;
    margin-top: 0;
  }

  .feed-name,
  .send {
    width: 100%;
    padding-inline: 0.5rem;
  }

  .feed-name input {
    font-size: 1rem;
    padding: 6px 8px;
  }

  .feed-name textarea {
    min-width: 100%;
    padding: 6px 8px;
    min-height: 7rem;
  }

  .send button {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .send button:active {
    transform: scale(0.98);
  }

  .map-container {
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .map-container iframe {
    height: 15rem;
    width: 100%;
    border-radius: 5px;
    border: var(--botton-border-radius);
  }

  .map-name {
    justify-content: center;
  }

  .map-name i {
    font-size: 1.7rem;

  }

  .ask-heading {
    margin-block: 1rem 0.5rem;
    font-size: 1.3rem;
  }

  .map-heading {
    margin-bottom: 0rem;
    text-align: center;
    font-size: 1.3rem;
  }
}

/* ----------------raview-section------------- */
.review-section {
  margin: 1rem;
  padding: 1rem;
}

.review-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 1.5rem;
}

.r-first {
  display: flex;
  flex-direction: column;
}

.last {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
}

.r-first p {
  color: #535353;
  font-size: 1.3rem;
}

.r-first .rate {
  color: #535353;
  font-size: 2.6rem;
  font-weight: 900;
}

.r-first i {
  color: #f0d000;
  font-size: 2rem;
}

.right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}

.circle,
.circle-2,
.circle-3 {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
}

.right .a-review {
  background-color: #24a0ed;
  border: var(--container-border);
  border-radius: 5px;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease-in;
}

.right .a-review:active {
  transform: scale(0.98);

}

.right .a-review i {
  color: black;
  font-size: 1.1rem;
}

.right .a-review p {
  color: white;
  font-size: 1rem;
}

.circle img {
  width: 3rem;
  height: 2.5rem;

}

.circle-2 img {
  width: 3rem;
  height: 3rem;

}

.circle-3 img {
  width: 100%;
  height: 100%;
  margin: 2px;

}

.f-d-heading h1 {
  font-size: 1rem;
  color: var(--text-color);
}

@media screen and (max-width:768px) {
  .review-container {
    gap: 2rem;
    flex-direction: column-reverse;
  }

  .review-section {
    padding: 0;
  }

  .review-heading {
    font-size: 1.5rem;
  }

  .last {
    gap: 1.5rem;
  }

  .r-first p {
    font-size: 1.2rem;
  }

  .r-first .rate {
    font-size: 2rem;
  }

  .r-first i {
    font-size: 1.4rem;
  }

  .last {
    gap: 1rem;
  }

  .circle,
  .circle-2,
  .circle-3 {
    width: 4.5rem;
    height: 4.5rem;
  }

  .circle img {
    width: 2.5rem;
    height: 2rem;

  }

  .circle-2 img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .f-d-heading h1 {
    font-size: 0, 9rem;
  }
}

@media screen and (max-width:530px) {
  .review-section {
    margin: 2rem 0.5rem 0.5rem;
    padding: 0rem;
  }

  .review-container {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .review-heading {
    font-size: 1.3rem;
  }

  .r-first {
    gap: 0rem;
    align-items: center;
  }

  .last {
    gap: 1rem;
    flex-direction: column;
  }

  .r-first p {
    font-size: 1.1rem;
  }

  .r-first .rate {
    font-size: 2.3rem;
  }

  .r-first i {
    color: #f0d000;
    font-size: 1.8rem;
  }

  .right {
    gap: 0.5rem;
    flex-direction: column;
  }

  .circle,
  .circle-2,
  .circle-3 {
    width: 6rem;
    height: 6rem;
  }

  .circle img {
    width: 3.5rem;
    height: 3rem;

  }

  .circle-2 img {
    width: 3.5rem;
    height: 3.5rem;

  }

  .circle-3 img {
    width: 100%;
    height: 100%;

  }

  .f-d-heading h1 {
    font-size: 1rem;
  }


  /* --------------field ---------- */
  .r-heading {
    width: 100%;
  }

  .r-heading h1 {
    font-size: 1.2rem;
    padding-block: 1rem;
  }

  .review-box {
    padding: 1rem 0.5rem;
  }

  .input-name {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
  }

  .input-name label {
    width: 100%;
    font-size: 1.1rem;

  }

  .input-name input {
    width: 100%;
    font-size: 0.9rem;
  }

  .input-name .selectbox select {
    font-size: 1rem;
  }

  .input-name textarea {
    width: 100%;
    font-size: 1rem;
    height: 4rem;
  }

  .submit input {
    font-size: 1rem;
  }







}

/* ------------rating--------- */
.rating-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.rating-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-10px);
  border: var(--container-border);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.39, 0.58, 0.57, 1);
  will-change: opacity, transform;
}

.rating-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.rating-item:nth-of-type(n+7) {
  display: none;
}
.r-first,
.last {
  opacity: 0;
  transition: opacity 0.8s;
}

.r-first.visible,
.last.visible {
  opacity: 1;
}

.both {
  display: flex;
  justify-content: space-between;
}

.r-l {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}

.r-l img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit:cover;
  border: 1px solid var(--text-color);
  border-radius: 50%;
}

.n-a {
  display: flex;
  flex-direction: column;
}

.n-a h1 {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: capitalize;
}

.n-a p {
  font-size: 0.85rem;
  line-height: normal;
  margin-top: 0.2rem;
  color: #474747;
  text-transform: capitalize;
}

/* ---right */
.r-r {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 0rem;
}

.avatar-placeholder {
  width: 3.5rem;
  /* match the image width */
  height: 3.5rem;
  /* match the image height */
  background-color: #4a7deb;
  /* Tailwind's bg-blue-600 */
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 3.5rem;
  /* vertically center the letter */
  text-align: center;
  border-radius: 50%;
  user-select: none;
  flex-shrink: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.r-r p {
  font-size: 0.85rem;
  line-height: normal;
  color: #474747;
}

.star {
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.2rem;
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  border-radius: 4px;
  border: var(--container-border);
  background-color: green;
  margin-top: 0.3rem;
}

.star p,
.star i {
  font-size: 0.9rem;
  color: white;
}

.rating-para {
  margin-top: 0.1rem;
}

.rating-para p {
  font-size: 0.9rem;
  align-items: start;
  line-height: 1.3rem;
  word-wrap: break-word;
  color: #474747;
}

.see-more {
  text-align: center;
  margin-top: 1.5rem;
}

.see-more a {
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: none;
  font-weight: 700;
  background-color: #24a0ed;
  color: white;
  display: inline-block;
  text-align: center;
  border-radius: var(--botton-border-radius);
  cursor: pointer;
  width: 8rem;
  transition: transform 0.2s ease-in;
}

.see-more a:active {
  transform: scale(0.98);

}

@media screen and (max-width:1024px) {
  .rating-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
}

@media screen and (max-width:768px) {
  .rating-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
}

@media screen and (max-width:530px) {
  .see-more {
    margin: 1rem 0.5rem;
  }

  .rating-container {
    margin-top: 1rem;
  }

  .n-a h1 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
  }

  .see-more a {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    font-weight: 500;
    width: 8rem;
  }

  .see-more a:active {
    transform: scale(0.97);

  }
}
/* ///---------------------------------quete-section---------------------------- */

.quote-section {
  padding: 1rem 1rem 1rem;
  background-color: #fae6e7;
}

.quote-form {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 3px 12px -8px rgba(234, 26, 100, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(.47, .14, .41, .81), transform 0.8s cubic-bezier(.47, .14, .41, .81);
}

.quote-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 2px;
}

.form-row input {
  flex: 1 1 0;
  padding: 14px 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 8px 0 #f8b2da47;
  outline: none;
  transition: box-shadow .2s;
}
.form-row select{
  flex: 1 1 0;
  padding: 14px 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 8px 0 #f8b2da47;
  outline: none;
  transition: box-shadow .2s;
}
textarea {
  resize: none;
  padding: 13px 12px;
  border-radius: 10px;
  min-height: 50px;
  border: none;
  background: #fff;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 1px 8px 0 #f8b2da47;
}
.success-msg {
    padding-block: 1rem;
    font-size: 1.15rem;
    color: #2a7a2a;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 12px 16px;
    border-radius: 6px;
    max-width: 400px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Error message style */
.error-msg {
    padding-block: 1rem;
    font-size: 1.15rem;
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    padding: 12px 16px;
    border-radius: 6px;
    max-width: 400px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.read{
  text-align: center;
  margin-block:2rem 1rem;
}
.read-more {
  background-color: #ff6b10;
  color: white;
  border: none;
  padding: 0.6rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 5px 6px rgba(255, 107, 16, 0.45);
  transition: background-color 0.3s ease;
}
.read-more:hover {
  background-color: #e64900;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .quote-form {
    padding: 24px 12px;
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 530px) {
  .quote-section {
    padding: 0.5rem 0rem 0.5rem;
  }
  .read-more {
    padding: 0.5rem 1.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 0 5px 4px rgba(255, 107, 16, 0.45);
  }
  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .quote-form {
    padding: 2px 6px;
  }

  .get-quote-btn {
    width: 100%;
    padding: 11px 0;
    font-size: 1.07rem;
  }
  .read{
  margin-block:1rem;
}
}

/* <!-- ----------------------------------footer-start--------------------------------- --> */
.footer-section {
  background-color: #393999;
  padding: 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.footer-heading h1 {
  color: white;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.c-n {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}

.c-n h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.5rem;
  color: rgb(201, 198, 201);
  letter-spacing: 0px;
  text-shadow: 1px 0.5px 1px #ff0404;

}

.c-n img {
  height: 5rem;
  width: 6rem;
  background-color: white;
}

.contract-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.contract-list a {
  text-decoration: none;
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.contract-list a:hover {
  text-decoration: underline;
  color: white;
  padding-left: 0.5rem;
}

.link {
  font-weight: bold;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  line-height: 3rem;
  gap: 0.5rem;
  display: flex;
}

.link a {
  display: inline-block;
  height: 44px;
  width: 44px;
  background-color: white;
  margin: 0 8px 8px 0;
  text-align: center;
  border-radius: 50px;
  transition: 0.4s;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

#face {
  color: #3b5998;
}

#face:hover {
  background-color: #316ff6;
  color: white;
}

#inst {
  color: #fe44a1;
}

#inst:hover {
  background-color: rgba(224, 78, 103, 0.776);
  color: white;
}

#twit {
  color: #da0808;
}

#twit:hover {
  background-color: #d73e3e;
  color: white;
}

#linkin {
  color: #0077b5;
}

#linkin:hover {
  color: white;
  background-color: #0077b5;
}

#you-tube {
  color: rgb(63, 157, 63);
}

#you-tube:hover {
  color: white;
  background-color: rgb(93, 247, 93);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-bottom: 2.5rem;
  }

  .footer-heading h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .c-n {
    gap: 1.5rem;
  }

  .c-n h1 {
    font-size: 1.2rem;

  }

  .c-n img {
    height: 6rem;
    width: 6rem;
  }

  .contract-list {
    gap: 1rem;
  }

  .contract-list a {
    font-size: 1rem;
  }

  .link {
    gap: 1rem;
  }

  .link a {
    font-size: 1.3rem;
  }
}

@media (max-width: 530px) {
  .footer-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-heading h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .c-n {
    gap: 0.5rem;
  }

  .c-n h1 {
    font-size: 1.1rem;

  }

  .c-n span {
    color: var(--secondary-color);
  }

  .c-n img {
    height: 6rem;
    width: 6rem;
    background-color: white;
  }

  .contract-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
  }

  .contract-list a {
    text-decoration: none;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    transition: 0.2s ease-in-out;
  }

  .contract-list a:hover {
    text-decoration: underline;
    color: white;
    padding-left: 0.5rem;
  }

  .link {
    font-weight: bold;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    line-height: 3rem;
    gap: 1rem;
    display: flex;
  }

  .link a {
    display: inline-block;
    height: 44px;
    width: 44px;
    background-color: white;
    margin: 0 8px 8px 0;
    text-align: center;
    border-radius: 50px;
    transition: 0.4s;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
  }
}