@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@font-face {
  font-family: myFont1;
  src: url(../fonts/ArialMT.ttf);
}
@font-face {
  font-family: myFont2;
  src: url(../fonts/HelveticaLTStd-BoldCond.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

:root {
  --pink: #fb2f63;
  --blue: #0f76ec;
  --custom-blue: #23ace3;
  --yellow: #f5b00b;
  --cyan-blue: #01aaa5;
  --light-green: #83ba0a;
}
body {
  font-size: 1rem;
  font-family: myFont1;
  /* background-color: whitesmoke; */
  overflow-x: hidden;
}
img {
  object-fit: cover;
}
.cyan {
  color: var(--cyan-blue);
}
a {
  text-decoration: none;
  cursor: pointer;
}
p {
  margin-bottom: 0;
}
.m-25 {
  margin: 2.5rem 0;
}
ul {
  list-style: none;
  padding-left: 0;
}
.navbar-nav-scroll {
  --bs-scroll-height: 100px;
}
.top-header .fa-facebook:hover,
.top-header .fa-linkedin:hover {
  color: blue !important;
}
.top-header .fa-youtube:hover,
.top-header .fa-instagram:hover {
  color: var(--pink) !important;
}
.nav-item {
  color: rgb(16, 16, 16);
  text-transform: uppercase;
  padding: 0 13px;
}
.nav-item button {
  background-color: var(--pink);
  border-radius: 30px !important;
  font-family: myFont2;
  padding: 5px 15px;
  outline: 0;
  border: 2px solid var(--pink);
  letter-spacing: 1px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease,
    border-radius 0.3s ease;
}

.nav-item button:hover {
  border-radius: 30px !important;
  background-color: white;
  color: var(--pink) !important;
  border: 2px solid var(--pink);
}

.nav-link {
  color: var(--cyan-blue) !important;
  font-family: myfont2;
  letter-spacing: 1px;
  position: relative;
}

.dropdown-toggle::after {
  margin-left: 0 !important;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .dropdown-toggle::after {
    margin-left: 10px !important;
    position: absolute;
    bottom: 8px;
    left: unset;
    transform: translate(-50%, -50%);
  }
}
.space {
  letter-spacing: 1px;
}

.offcanvas {
  background-color: hsl(218, 63%, 17%);
}

.offcanvas-body .navbar-nav .nav-item {
  padding: 20px 0 0 0;
  border-bottom: 1px solid white;
}
.offcanvas-body .navbar-nav .nav-item a {
  color: white !important;
  padding-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
}

.dropdown .dropdown-menu li:first-child {
  padding: 0;
}

.dropdown .dropdown-menu li {
  padding: 10px 0 0 0;
  border-bottom: 1px solid white;
}

/* Custom CSS for hover dropdown */
.main-nav .nav-item .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f8f9fa; /* Adjust based on your theme */
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  left: 50%;
  transform: translate(-50%, 0px);
}

.main-nav .nav-item:hover .dropdown-menu {
  display: block;
}
.main-nav .nav-item .dropdown-menu li a:hover {
  display: block;
  background-color: rgb(237, 237, 237);
}
.main-bg {
  height: 70vh;
  object-fit: cover;
}
.slick-list {
  max-height: 500px;
}
.fa {
  cursor: pointer;
}
.home-services p {
  color: var(--cyan-blue);
}
/* .home-services p:first-child {
  font-weight: 700;
} */
.sub-heading {
  letter-spacing: 2px;
  font-size: 1.1rem;
}
.card-title {
  letter-spacing: 2px;
}
.photography-service {
  background-color: var(--pink);
}
/* .service-btn {
  font-size: 0.8rem;
  color: var(--pink);
} */

.service-btn {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  margin: 0;
  font-family: myFont1;
  font-weight: bold;
  font-size: 0.8rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.05rem;
  border-radius: 500px;
  overflow: hidden;
  background: rgb(33, 33, 33);
  color: var(--pink);
}

.service-btn span {
  position: relative;
  z-index: 10;
  transition: color 0.8s;
}

.service-btn:hover span {
  color: white;
}

.service-btn::before,
.service-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-btn::before {
  content: "";
  background: #fefefe;
  color: var(--pink) !important;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.8s cubic-bezier(0.3, 1, 0.8, 1);
}

.service-btn:hover::before {
  transform: translate3d(100%, 0, 0);
}

.videography-service {
  background-color: var(--yellow);
}
.creative-service {
  background-color: var(--light-green);
}
.folded-card {
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease-in-out;
}

.folded-card:hover {
  transform: scale(1);
}
.folded-card::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  border-width: 30px 30px 0 0;
  border-style: solid;
  border-color: rgb(98, 93, 93) white;
}

.image-content .row {
  padding: 7.5rem 0;
}
.content h2 {
  letter-spacing: 2px;
  font-family: myFont2;
  font-size: 2.5rem;
}
.content p:last-child {
  font-family: myFont1;
}
.custom-blue {
  color: var(--custom-blue);
}
.pink {
  color: var(--pink);
}
.parents-head {
  color: var(--pink);
  font-family: myFont2;
  font-size: 2.5rem;
}
.parents-head-subheading {
  font-family: myFont2;
}
.circular-img img {
  border: 25px solid #90d2ec;
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  0% {
    box-shadow: 0 0 30px #90d2ec;
  }
  50% {
    box-shadow: 0 0 70px #90d2ec;
  }
  100% {
    box-shadow: 0 0 9px #90d2ec;
  }
}
.bigCircle1 {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 12px solid #90d2ec;
  border-radius: 50%;
  left: -12%;
  bottom: 20px;
  z-index: 1;
  opacity: 0.7;
  animation: zoom 4s infinite ease-in-out;
}
.bigCircle2 {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 12px solid var(--yellow);
  border-radius: 50%;
  left: 48%;
  bottom: 0;
  opacity: 0.5 !important;
  animation: zoom 4s infinite ease-in-out;
}
.bigCircle3 {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 12px solid var(--yellow);
  border-radius: 50%;
  right: -190px;
  bottom: 73px;
  animation: zoom 4s infinite ease-in-out;
}
.smallCircles1 {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--yellow);
  border-radius: 50%;
  left: -45px;
  /* bottom: 56px; */
  top: 45%;
  opacity: 0.5;
  animation: zoom 4s infinite ease-in-out;
}
.smallCircles2 {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #23a9e0;
  border-radius: 50%;
  top: 10%;
  left: 35%;
  animation: zoom 4s infinite ease-in-out;
}
.smallCircles3 {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #90d2ec;
  border-radius: 50%;
  top: 30%;
  right: 80px;
  animation: zoom 4s infinite ease-in-out;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.smallCircles4 {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--yellow);
  border-radius: 50%;
  top: 10%;
  right: 20%;
  opacity: 0.5;
  animation: zoom 4s infinite ease-in-out;
}

@media (max-width: 1100px) {
  .smallCircles3 {
    right: 0;
  }
}
@media (max-width: 431px) {
  .bigCircle1 {
    left: -12%;
    top: 20%;
  }
  .circular-img img {
    width: 300px;
    height: 300px;
  }
}

.camera-content {
  top: 8%;
}
.team-bg {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  object-fit: cover;
  font-family: myFont2;
}
.team-bg div {
  bottom: 30px;
}
.team-bg span {
  background: #2e2f2e7a;
  font-size: 2.2rem;
}

@media (max-width: 430px) {
  .team-bg span {
    font-size: 1.1rem;
  }
}

.associations p {
  font-size: 1.1rem;
}
.associations h2 {
  font-family: myFont2;
  font-size: 2.5rem;
}

.parent-section {
  /* height: 80vh; */
}
@media (max-width: 1024px) {
  .parent-section {
    height: auto;
  }
}

.terms a {
  color: var(--cyan-blue);

  font-weight: 700;
}
.footer h6 {
  color: var(--cyan-blue);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.footer h6::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cyan-blue);
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* .footer h6::after {
  content: '';
  display: block;
  width: 82%;
  height: 2px; 
  background: var(--cyan-blue); 
  position: absolute;
  left: 0;
  bottom: -5px; 
} */

footer {
  background: rgb(216, 241, 244);
  background: linear-gradient(
    0deg,
    rgba(216, 241, 244, 1) 30%,
    rgba(245, 245, 245, 1) 57%
  );
}
.shaaa {
  border-top: 3px solid rgb(187 187 187 / 35%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer ul li {
  padding: 3px 0;
}
.footer-ul li a {
  color: #696a6c;
  font-weight: 500;
}
.nodataimg {
  mix-blend-mode: multiply;
}
.bottom-footer {
  font-size: 0.8rem;
}

.swiper-button-prev,
.swiper-button-next {
  opacity: 0.3;
  background: #b9b7b1;
  padding: 20px !important;
  font-size: 20px !important;
  color: #01aaa5;
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
  color: #01aaa5;
}
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}

.client-block-two {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.client-block-two a {
  position: relative;
  padding: 0;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
.client-block-two a:hover {
  /* background-color: #f6f6f6; */
}
.client-block-two a:hover img,
.product-details .bxslider .thumb-box li a.active:before {
  opacity: 1;
}
.client-block-two img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.client-image {
  display: grid;
  place-items: center;
}

.client-block-two.client-image {
  border-right: 3px dotted black;
}
@media (max-width: 430px) {
  .client-block-two.client-image {
    border-right: none;
  }
}

/* about page */

.banner-content {
  position: absolute;
  bottom: 20px;
  width: auto;
}
@media (max-width: 1024px) {
  .banner-content span {
    font-size: 2.5rem;
  }
}

.banner-content span {
  color: black;
  font-family: myFont2;
  background: #f5f5f59e;
  font-size: 2rem;
}

@media (max-width: 430px) {
  .banner-content span {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .banner-content span {
    font-size: 1.1rem;
  }
}
.about-page-content .left p:first-child,
.about-page-content .why-choose-us,
.our-leadership .left p:first-child {
  color: var(--cyan-blue);
  font-size: 1.5rem;
  z-index: 10;
}
.our-approach {
  font-size: 1.1rem;
  color: #959595;
}
.about-page-content .left,
.about-page-content .right {
  z-index: 10;
}
.about-page-content .right h6 {
  cursor: pointer;
  font-family: myFont2;
}

.about-page-content .smallCircles1.first {
  width: 20px;
  height: 25px;
  right: 3%;
  left: unset;
  top: -1%;
}
.about-page-content .smallCircles1.second {
  width: 40px;
  height: 40px;
  right: 0;
  left: unset;
  top: 10%;
  background-color: #90d2ec !important;
}
.about-page-content .smallCircles1.third {
  width: 40px;
  height: 40px;
  right: 21%;
  left: unset;
  top: 1%;
  background-color: var(--blue) !important;
}
.about-page-content .smallCircles1.fourth {
  width: 40px;
  height: 40px;
  right: 8%;
  left: unset;
  top: 45%;
  background-color: #90d2ec !important;
}
.about-page-content .smallCircles1.fifth {
  width: 15px;
  height: 25px;
  right: 10%;
  left: unset;
  top: 60%;
  background-color: var(--yellow) !important;
}
.about-page-content .smallCircles1.six {
  width: 15px;
  height: 25px;
  height: 25px;
  bottom: 25%;
  left: -60px;
  top: unset;
  background-color: var(--blue) !important;
}
.about-page-content .bigCircle3 {
  border: 15px solid var(--light-green);
  border-radius: 50%;
  right: -180px;
  bottom: unset;
  top: 57%;
}
.about-page-content .bigCircle1 {
  z-index: 11 !important;
  opacity: 0.6 !important;
}

.hr-dotted {
  border-bottom: 5px dotted black;
  border-top: 0;
}

.testimonial .top {
  font-size: 2.8rem;
  color: #656565;
}
.testimonial .mid {
  font-size: 3rem;
  color: var(--pink);
}
.testimonial .bottom {
  font-size: 4rem;
}
.testimonial h1 {
  margin-bottom: 0 !important;
}

.testimonial .row {
  padding: 0 180px;
}
@media (max-width: 1025px) {
  .testimonial .row {
    padding: 0;
    justify-content: center;
  }
  .testimonial-img {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 430px) {
  .testimonial .row {
    padding: 0 30px;
    justify-content: center;
  }
  .fa-quote-left {
    top: -4% !important;
    left: -2% !important;
    font-size: 1.3rem !important;
  }
  .fa-quote-right {
    font-size: 1.3rem !important;
    margin-left: 8px !important;
  }
  .testimonial .bottom {
    font-size: 3rem;
  }
}
.testimonial-img {
  width: 230px;
  height: 230px;
  background-color: red;
  border-radius: 50%;
}

.fa-quote-left {
  position: absolute;
  left: -4%;
  font-size: 2rem;
  top: -3%;
  color: var(--pink);
  pointer-events: none;
}

.fa-quote-right {
  position: absolute;
  font-size: 2.3rem;
  margin-left: 8px;
  pointer-events: none;
}

.our-leadership .row .bigCircle3 {
  bottom: unset;
}
.our-leadership .row .smallCircles1.first {
  bottom: unset;
  left: unset;
  right: 10%;
  top: 45%;
  width: 20px;
  height: 25px;
}
.our-leadership .row .smallCircles1.second {
  bottom: 0;
  left: unset;
  top: unset;
  width: 40px;
  right: 5%;
  height: 40px;
  background-color: #90d2ec !important;
}
.our-leadership .row .smallCircles1.third {
  bottom: 30%;
  left: unset;
  right: 30%;
  top: unset;
  width: 40px;
  height: 40px;
  background-color: var(--blue) !important;
}
.customer-support .row .left {
  z-index: 10;
}
.customer-support .bigCircle1 {
  bottom: unset;
}
.customer-support .smallCircles1.six {
  top: 35%;
  background-color: var(--blue) !important;
}

/* .service-page span{
  width: 10px;
  height: 20px;

} */
.service-page i.first {
  color: var(--yellow);
}
.service-page i.second {
  color: var(--cyan-blue);
}
.service-page i.third {
  color: var(--pink);
}
.service-page i.fourth {
  color: var(--blue);
}

.service-page .about-page-content .right {
  background-color: #23aae2;
  height: 230px;
  width: 230px;
  border: 20px solid #8fd1ec;
  animation: glow 2s infinite alternate;
}

#live-streaming {
  background-color: unset;
  height: unset;
  width: unset;
  animation: unset;
  border-radius: unset;
  border: unset;
}
#live-streaming img {
  background-color: #23aae2;
  height: 230px;
  width: 230px;
  border: 20px solid #8fd1ec;
  animation: glow 2s infinite alternate;
  border-radius: 50%;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for link movement and color */
  color: #000; /* Default color for the nav-link */
}

/* Style for the chevron */
.main-header::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  color: rgb(128, 124, 124);
}

.nav-item:hover .main-header::after {
  opacity: 1;
  bottom: 0;
  transform: translate(-50%, 18px);
}

.nav-item.active .main-header::after {
  opacity: 1;
  bottom: 0;
  transform: translate(-50%, 18px);
}

.nav-item.active .nav-link {
  color: grey !important; /* Change color to grey for the active link */
}

/* Adjustments for smaller screens */
@media (max-width: 991px) {
  .nav-link::after {
    margin-left: 10px; /* Adjust space between text and chevron for smaller screens */
    bottom: 8px; /* Adjust position based on your design */
    left: auto; /* Unset for mobile view */
    transform: translateX(0); /* Adjust for mobile view */
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 30px #90d2ec;
  }
  50% {
    box-shadow: 0 0 70px #90d2ec;
  }
  100% {
    box-shadow: 0 0 9px #90d2ec;
  }
}
.sample-work-btn {
  background-color: #8fd1ec;
}
.sample-work-btn span {
  color: #0e6183;
  word-spacing: 2px;
  font-size: 1rem;
  font-family: myFont2;
}

.service-img {
  padding: 0.05rem;
}

.service-page .service .smallCircles1.first {
  right: 10%;
}
.service-page .service .smallCircles1.third {
  right: 30%;
}
.service-page .service .smallCircles1.second {
  right: 2%;
  top: 60%;
}
@media (max-width: 1024px) {
  .service-page .service .smallCircles1.second {
    right: 0%;
  }
  .service-page .service .smallCircles1.first {
    right: 2%;
  }
}
@media (max-width: 768px) {
  /* .service-page .service .smallCircles1.second{
    right: 0%;
    
  } */
  .service-page .service .smallCircles1.first {
    top: 40%;
    right: 20%;
  }
  .service-page .service .smallCircles1.third {
    top: 30%;
    right: unset;
    left: 30%;
  }
}
@media (max-width: 390px) {
  .service-page .service .smallCircles1.third {
    top: 45%;
  }
}
.service-steps {
  font-family: myFont2;
}
.service-steps .col:nth-child(2) {
  border-left: 2px dotted rgb(163, 160, 160);
  padding: 0 40px;
}
.service-steps .col:nth-child(3) {
  border-left: 2px dotted rgb(163, 160, 160);

  padding: 0 40px;
}
.service-steps .col:nth-child(4) {
  border-left: 2px dotted rgb(163, 160, 160);

  padding: 0 40px;
}

@media (max-width: 1024px) {
  .service-steps .col:nth-child(3) {
    border-left: none;
  }
  .service-steps .col:nth-child(1) {
    padding: 0 0 0 42px;
  }
}

.service-steps p {
  color: #c8c2c2;
  font-size: 3rem;
}

.service-banner-img {
  height: 50%;
}

.service-page .bigCircle3 {
  top: 60%;
  right: -200px;
  border-color: var(--yellow);
}

.service-page-big-circle .bigCircle1 {
  bottom: 35px;
}

.live-streaming h6 {
  color: var(--cyan-blue);
}

.social-media-grid .firstCol,
.social-media-grid .secondCol {
  padding: 5rem;
}

.icon-container {
  position: relative;
  display: inline-flex; /* Ensure the container fits the content */
  align-items: center;
  justify-content: center;
}

.icon-container::before {
  content: "";
  position: absolute;
  top: 0%;
  left: -275%;
  width: 200%;
  height: 200%;
  background-color: #205bc1;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  z-index: 1; /* Make sure the background is behind the icon */
  border-radius: 20%; /* Optional: rounded corners */
}

.icon-container .fa-brands.fa-twitter {
  font-size: 1.8rem;
  color: rgb(255, 255, 255);
  position: relative;
  left: -322%;
  top: -12px;
  z-index: 10;
}

.social-media-grid .firstCol .fa-brands.fa-facebook-f {
  position: absolute;
  top: -26px;
  left: 82%;
  font-size: 2rem;
  background-color: darkblue;
  color: white;
  border-radius: 50%;
  padding: 15px 20px;
}

.social-media-grid .firstCol .fa-brands.fa-youtube {
  position: absolute;
  bottom: -39px;
  left: 111px;
  font-size: 3.2rem;
  color: #e91818;
  border-radius: 50%;
  padding: 15px 20px;
}

.social-media-grid .firstCol .fa-brands.fa-youtube::after {
  position: absolute;
  content: "";
  background: white;
  width: 10px;
  height: 5px;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social-media-grid .secondCol .fa-brands.fa-instagram {
  position: absolute;
  top: -27px;
  right: -42px;
  font-size: 2.2rem;
  color: white;
  border-radius: 10px;
  background-color: #cf3665;
  padding: 10px;
}

.social-media-grid .secondCol .fa-brands.fa-linkedin-in {
  position: absolute;
  right: -26%;
  bottom: -25px;
  font-size: 2rem;
  background-color: rgb(8, 8, 216);
  color: white;
  border-radius: 50%;
  padding: 12px 16px;
}

.live-streaming-cirlce {
  top: 0;
}
.live-streaming-bigCircle {
  right: 20%;
  bottom: -45%;
  left: unset;
  opacity: 0.5 !important;
}
.social-media-starter {
  /* padding-top: 60px; */
}
.social-media-starter .about-page-content {
  padding-bottom: 10px;
}

@media (max-width: 1024px) {
  .social-media-grid .secondCol .fa-brands.fa-linkedin-in {
    right: -22%;
  }
  .social-media-grid .firstCol .fa-brands.fa-facebook-f {
    left: 88%;
  }
  .social-media-grid .firstCol .fa-brands.fa-youtube {
    left: 186px;
  }
}

@media (max-width: 430px) {
  .social-media-grid .firstCol,
  .social-media-grid .secondCol {
    padding: 4rem;
  }
  .icon-container::before {
    left: -220%;
  }
  .icon-container .fa-brands.fa-twitter {
    left: -75px;
  }
  .social-media-grid .firstCol .fa-brands.fa-facebook-f {
    left: 81%;
  }
  .social-media-grid .firstCol .fa-brands.fa-youtube {
    left: 110px;
  }
  .social-media-grid .secondCol .fa-brands.fa-linkedin-in {
    right: -38%;
  }
}

.service-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.service-img:hover {
  opacity: 0.8;
}

/* Lightbox.css */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: block;
}

.lightbox-caption {
  margin: 10px auto;
  text-align: center;
  color: #ccc;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ccc;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-close:hover {
  color: #fff;
}

/* login page */

.login-form {
  background-color: #ffffffc7;
  padding: 30px;
  max-width: 600px;
  width: 550px;
}

/* form {
  padding: 1rem;
} */
.school-select {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 30px 10px 20px;
  border: 2px solid black;
}
.form-control {
  font-size: 1rem;
}

.alert-success {
  font-size: 0.9rem;
}

.vertical-line {
  width: 1px;
  height: 70px;
  background-color: black;
}

.content-section-border {
  height: 100%;
}

@media (min-width: 992px) {
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 0.5rem !important;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 0.5rem !important;
    justify-content: center;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  border: none;
  border-radius: 0;
}

.modal-body {
  padding: 0;
}

/* product page */

.chevron-product img {
  transform: rotate(-90deg);
}

.school-days {
  padding: 0.05rem;
  position: relative;
}

.upper-img {
  position: absolute;
  top: -99px;
}
.upper-img:nth-child(1) {
  padding: 0 0.05rem;
}

@media (max-width: 767px) {
  .school-days img {
    height: 100%;
    width: 100%;
  }
  .upper-img {
    position: relative;
    top: unset;
  }
}

.contact-form .col input,
.contact-form .col-12 textarea,
.PhoneInput {
  border-color: #c3bebe !important;
  border-radius: 0 !important;
}
.PhoneInputInput {
  border: 0;
}

.PhoneInputInput:focus {
  outline: 0;
  /* border: 0;   */
}
.PhoneInputCountry {
  margin-right: 10px !important;
}

.wrapper {
  max-width: 1350px;
  padding: 0px 60px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

@media (max-width: 430px) {
  .wrapper {
    padding: 0px 20px;
  }
}

.wrapper img {
  cursor: pointer;
}

/* modal */
.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 27, 0.541);
  display: flex;
  align-items: center;
  z-index: 199;
}
.image-overlay img {
  display: block;
  max-width: 60%;
  max-height: 60%;
  margin: 60px auto;
  box-shadow: 3px 5px 7px rgba(0, 0, 0, 0.5);
}
.image-overlay > span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #ffffff;
  z-index: 999;
  cursor: pointer;
}
.overlay-arrows_left {
  display: flex;
  /* background-color: #6d6d6d; */
  color: white;

  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  left: 10%;
  z-index: 999;
  cursor: pointer;
}

.overlay-arrows_left svg {
  width: 50px;
  height: 50px;
}

.overlay-arrows_right svg {
  width: 50px;
  height: 50px;
}

.overlay-arrows_right {
  display: flex;
  color: white;
  justify-content: space-between;
  position: absolute;
  right: 10%;
  width: 50px;
  height: 50px;
  top: 50%;
  z-index: 999;
  cursor: pointer;
}

@media (max-width: 430px) {
  .overlay-arrows_left svg {
    width: 30px;
    height: 30px;
  }

  .overlay-arrows_right svg {
    width: 30px;
    height: 30px;
  }
  .overlay-arrows_right {
    right: 0;
  }
  .overlay-arrows_left {
    left: 0;
  }
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  width: 300px;
  z-index: 999999;
}
.mobile-menu,
.mobile-menu .menu-backdrop {
  position: fixed;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
}

.full-container,
.mobile-menu {
  max-width: 100%;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mobile-menu .menu-backdrop {
  width: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.mobile-menu,
.mobile-menu .menu-backdrop {
  position: fixed;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.4s 0.2s;
  transition: 0.4s 0.2s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  border-bottom: 1.5px solid var(--pink);
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  background: rgba(0, 0, 0, 0.7);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}
.mobile-menu .navigation li > ul > li {
  padding-left: 20px;
}

.mobile-menu .menu-box,
.mobile-menu .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
}

.mobile-menu .menu-box {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #292929;
  padding: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu .upper-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  border-bottom: 2px solid black;
  background-color: whitesmoke;
}

.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.mobile-menu .nav-logo img {
  max-height: 50px;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mobile-menu .close-btn {
  position: relative;
  top: 0;
  right: -5px;
  text-align: center;
  color: #fff;
  height: 30px;
  width: 30px;
  background-color: rgb(0 0 0 / 40%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.hidden-bar .upper-box .close-btn,
.mobile-menu .close-btn {
  line-height: 30px;
  z-index: 10;
  font-size: 18px;
  cursor: pointer;
}

.mobile-menu .nav-logo img {
  max-height: 50px;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
}

.mobile-menu .navigation,
.mobile-menu .navigation li > ul > li:first-child,
.mobile-menu .social-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown {
  position: relative;
}

.mobile-menu .navigation li > ul {
  display: none;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.card-contact-head {
  border-bottom: 2px dotted white;
  padding-bottom: 30px;
}

.card-scale-hover {
  transition: transform 0.5s ease;
}

.card-scale-hover:hover {
  transform: scale(1.02);
}

.custom-disabled {
  background-color: #dfdfdf !important;
  color: #495057;
  border-width: 0px;
}
.non-editable {
  background-color: #dfdfdf !important;
}
.fs-09 {
  font-size: 0.9rem;
}
.fs-08 {
  font-size: 0.8rem;
}

.profile-page-title {
  font-size: 1rem;
  text-transform: unset !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .profile-page-title {
    font-size: 1rem;
  }
}

.color-code-editable {
  width: 30px;
  height: 25px;
  border: 2px solid rgb(201, 201, 201);
}

.admission-number::placeholder {
  color: rgb(189, 187, 187); 
}


.school-21-condition-li{
  text-align: center;
  list-style-position: inside;
}

.mt-55{
  margin-top: 0;
}
@media (max-width:991px) {

  .mt-55{
    margin-top: 5rem;
  }
  
}

.form-control:focus {
  outline: 2px solid #5b9bd5; 
  box-shadow: 0 0 5px rgba(91, 155, 213, 0.5); 
}

.cyan-blue{
  color: var(--cyan-blue);
}