/*Fonts*/
@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-Regular.woff2') format('woff2'),
        url('../fonts/Baloo2-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-Bold.woff2') format('woff2'),
        url('../fonts/Baloo2-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-Medium.woff2') format('woff2'),
        url('../fonts/Baloo2-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*Fonts End*/


body{ font-size: 20px;}
h1, h2, h3, h4, h5{font-family: 'Baloo 2'; font-weight: bold;}

h1{ font-size: 52px;}
h2{ font-size: 52px;}
p{ line-height: 35px;}

.title-inner-h1{ text-align: center; margin-bottom: 20px;}


.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 90px;
	z-index:9991;
	right: 29px;
	font-size: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 23px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
@media screen and (max-width: 991px) {
	.btn-whatsapp-pulse { right: 13px; bottom: 115px; }
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}


#toTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #000066;
    color: #fff;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 17px;
    width: 42px;
    height: 42px;
    line-height: 14px;
    transition: background 0.3s, transform 0.3s;
  }

  /* Hover effect */
  #toTopBtn:hover {
    background-color: #21218b;
    transform: scale(1.1);
  }

/*Common CSS End*/

/*CALENDER*/
a.supBookBtn{
    width: 154px;
    height: 50px;
    border-radius: 25px;
    background: #000066;
    text-decoration: none;
    font-size: 17px;
    border: 0;
    line-height: 1.5;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
a.supBookBtn:hover{ background: #f51422; color:#fff;}



.bkCard {
      background: white;
      border-radius: 22px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 30px 30px 30px 30px;
      max-width: 700px;
      margin: 0 auto  40px auto;
    }

    .bkHeader {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .bkHeader h4 {
      font-weight: 600;
      color: #343a40;
    }

    .bkNavBtn {
      border-radius: 50%;
      border: 1px solid #dee2e6;
      background: white;
      color: #495057;
      width: 32px;
      height: 32px;
      line-height: 30px;
      text-align: center;
      cursor: pointer;
      transition: 0.3s;
    }
    .bkNavBtn:hover {
      background-color: #dc3545;
      color: white;
    }

    .bkCalendarTable th {
      font-weight: 600;
      color: #6c757d;
    }
    .bkCalendarTable td{ border: 0!important;}

    .bkDay {
      border: 1px solid #dee2e6;
      border-radius: 7px;
      width: 40px;
      height: 40px;
      line-height: 38px;
      display: inline-block;
      cursor: pointer;
      transition: 0.3s;
      color: #495057;
    }

    .bkDay:hover {
      background-color: #f8d7da;
      border-color: #dc3545;
    }

    .bkDay.bkActive {
      background-color: #dc3545;
      color: #fff;
      font-weight: 600;
      border-color: #dc3545;
    }

    .bkTimeSlot {
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding: 10px;
      margin: 6px;
      cursor: pointer;
      min-width: 90px;
      text-align: center;
      transition: 0.3s;
      font-weight: 500;
      color: #495057;
      background-color: white;
    }

    .bkTimeSlot:hover {
      background-color: #f1f1f1;
      border-color: #dc3545;
      color: #dc3545;
    }

    .bkTimeSlot.bkSelected {
      background-color: #dc3545;
      color: white;
      border-color: #dc3545;
    }

    .bkBookBtn {
      background-color: #dc3545;
      border: none;
      color: white;
      padding: 12px 40px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      margin-top: 25px;
      transition: 0.3s;
      display: none;
      margin-left: auto;
      margin-right: auto;
          font-size: 18px;
    }
    .bkBookBtn:hover {
      background-color: #bb2d3b;
    }

    .bkTimezone {
      font-size: 0.9rem;
      color: #6c757d;
      margin-top: 10px;
      text-align: center;
    }
    .calImageWrapper{
        max-width: 100%;
        border-radius: 22px;
        overflow: hidden;
    }





    .bkCard {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      max-width: 400px;
      margin: 20px auto 0 auto;
      padding: 25px;
      text-align: center;
    }

    .bkHeader {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .bkHeader h4 {
      font-weight: 700;
      font-size: 20px;
    }

    .supPersonalized .bkNavBtn {
      font-size: 22px;
      cursor: pointer;
      color: #00018b;
      transition: 0.2s;
      line-height: 27px
    }

    .supPersonalized .bkNavBtn:hover {
      color: #fefefe;
    }

    .bkCalendarTable {
      width: 100%;
      border-collapse: collapse;
    }

    .bkCalendarTable th {
      color: #9b9b9b;
      font-weight: 600;
      padding-bottom: 5px;
    }

    .bkCalendarTable td {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      color: #333;
    }

    .bkCalendarTable td:hover {
      background: #ebe6ff;
    }

    .bkCalendarTable td.inactive {
      color: #ccc;
      cursor: default;
    }

    .bkCalendarTable td.active {
      background: #ed1c24;
      color: #fff;
      font-weight: 600;
    }

    .bkTimezone {
      font-size: 0.85rem;
      color: #777;
      margin-top: 8px;
    }
    .bkCalendarTable th{ font-weight: bold; color:#00018b;}
    .bkBookBtn {
      display: none;
      background: #00018b;
      color: #fff;
      font-weight: 600;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      margin-top: 15px;
      width: 100%;
      transition: 0.2s;
    }

    .bkBookBtn:hover {
      background: #6a4cf4;
    }

    /* Time Slot Modal */
    .bkTimeSlot {
      width: 214px;
      border: 1px solid #4040a8;
      border-radius: 8px;
      color: #4040a8;
      padding: 10px 16px;
      margin: 6px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s;
    }

    .bkTimeSlot:hover, .bkTimeSlot.active {
      background: #00018b;
      border-color: #00018b!important;
      color: #fff;
    }
    .timePopup .modal-footer button{ padding: 9px 17px;}
    .timePopup .modal-footer .btn-secondary{ background: #e7e7e7; color: #424242; border:0;}
    .timePopup .modal-footer .btn-primary{ border:0;}
    .bg-blue{ background: #00018b; border-color: #00018b;}
/*CALENDER END*/

/*Home*/

.instaCover{ display: flex; gap:1px; margin: 0 auto;}
.instaImg img{ width: 100%;}

.header-section .navbar-nav a{ font-size: 16px;text-transform: uppercase;}
.supTopBar {
    background-color: #f51422;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-weight: 500;
}
.supTopBar a{ color: #fff; text-decoration: none;}
.supNavLink {
    color: #000066;
    font-weight: 500;
}

.supNavLink:hover {
    color: #ff0000;
}

.supLogo {
    height:74px;
}
.supLogo img{ height: 100%;}

.supCartIcon {
    font-size: 24px;
    color: #000066;
    text-decoration: none;
    position: relative;
}
.supCartIcon span{ background: #cfd0ef; width: 16px; height: 16px; border-radius: 100px; font-size: 13px; font-weight: 600; line-height: 15px;
position: absolute; top: 0; right: -2px; text-align: center; color:#00038a;
}

  .supSliderWrapper .supSliderItem img {
    height: 500px;
    object-fit: cover;
  }



.htbSpace{ padding-top: 65px; padding-bottom: 65px;}

.imgwithRadius{ border-radius: 25px;}


  .ahImg img{ width: 100%;}
  .ahContent{ padding:30px 25px 10px 25px;}
  .bringth{ background: #fde9ea;}
  .bringth p{ width: 100%; max-width: 800px; text-align: center; margin: 0 auto; padding-bottom: 25px;}

  .hmAgilityAndMovement {
  width: 300px;
  border-radius: 15px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  margin: 20px;
}
.hmAgilityAndMovement a{ text-decoration: none; color:#fff;}

.hmAgilityAndMovement img {
  width: 100%;
  display: block;
}

.hmCaption {
  background-color: #0023a1;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.ttHome{ background: #f0f0fa;}
.ttHome p{ width: 100%; max-width: 800px; text-align: center; margin: 0 auto; padding-bottom: 25px;}
.ttHome a{ text-decoration: none;}
.hpContainer {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 70px auto;
  padding: 0;
  background-color: #f2f2fc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hpImageWrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hpImage {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
 .hpImage::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 133px;
  background: url(../images/banner-shadow.png) repeat-x 100%;
  z-index: 0;
}

.hpTextBox {
  position: absolute;
  bottom: 0;

  background-color: #ed1c24;
  color: white;
  padding: 32px 40px;
  border-top-left-radius: 30px;
  max-width: 440px;
  width: 100%;
  height: 174px;

  display: flex;
  align-items: center;

}
.hpTextBoxLeft{left: 0;}
.hpTextBoxRight{right: 0;}
.smLogo{ position: absolute; top: -36px; left: -33px; width: 60px;}
.smLogoTwo{ position: absolute; top: -36px; right: -33px; width: 60px;}
.smRedTitle{ font-size: 37px; color:#f81624; font-family: 'Baloo 2';}
.hpTextBox h2{font-size: 40px; text-shadow: 2px 4px 1px rgb(175 8 20 / 50%);}


.hero-slider{ position: relative;}
.hero-slider .supTestimonialItem img{ min-height: 600px;}
.hero-slider::before{ 
  content: "";
  display: block;
  background: url(../images/banner-wave-new.png) repeat-x 100%;
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 18px;
  z-index: 9;
}

 .supTestimonialSection {
      text-align: center;
      padding: 65px 20px;
      background: url(../images/testi-bg.jpg) repeat-x 100%;
      background-size: cover;
    }

    .supTestimonialSection h2 {
      font-size: 42px;
      font-weight: 700;
      color: #072c33;
      margin-bottom: 20px;
    }

    .supCarouselWrapper .supTestimonialItem {
      background: #fff;
      border-radius: 30px;
      padding: 40px 30px;
      margin: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      position: relative;
    }

    .supStars {
      color: #ff6b00;
      margin-bottom: 15px;
    }

    .supTestimonialItem p {
      color: #4a4a4a;
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .supAuthor {
      font-weight: 700;
      color: #222;
    }

    .supCarouselWrapper  .owl-dots {
      margin-top: 25px;
    }

    .supCarouselWrapper  .owl-dot span {
      width: 12px !important;
      height: 12px !important;
      background: #fff !important;
      border: 1px solid #959595;
      border-radius: 50%;
      display: block;
      margin: 0 5px;
    }

    .supCarouselWrapper  .owl-dot.active span {
      width: 15px !important;
      height: 15px !important;
      background: #ff3333 !important;
      border: 0;
    }


    /* Footer Section */
    .supFooter {
      position: relative;
      background-color: #323232;
      color: #fff;
      padding: 100px 10% 0;
      overflow: hidden;
    }
    .supFooter h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .supFooter .supFooterAbout{ padding: 0 32px;}
    .supFooter .supFooterLinks{ padding: 0 32px;}
    .supFooter .supFooterContact{ padding: 0 32px;}

    /* Top Curve */
    .supFooter::before {
      content: "";
      position: absolute;
      top: -20px;
      left: 0;
      width: 100%;
      height: 120px;
      background: url(../images/footer-bg.jpg) repeat-x 100%;
      border-bottom-left-radius: 50% 40%;
      border-bottom-right-radius: 50% 40%;
      z-index: 0;
    }

    .supFooterContent {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      z-index: 1;
    }

    /* Left Column */
    .supFooterAbout {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
    }

    .supFooterLogo {
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .supFooterLogo img{ max-width: 180px;}

    .supFooterAbout p {
      font-size: 16px;
      line-height: 1.8;
      color: #f1f1f1;
    }

    /* Middle Column */
    .supFooterLinks {
      flex: 1;
      min-width: 200px;
      margin-bottom: 30px;
    }

    

    .supFooterLinks ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .supFooterLinks ul li {
      margin-bottom: 15px;
    }

    .supFooterLinks ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      transition: color 0.3s;
    }

    .supFooterLinks ul li a:hover {
      color: #ff3333;
    }

    /* Right Column */
    .supFooterContact {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
    }


    .supContactItem {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .supContactItem i {
      color: #fff;
      font-size: 18px;
      width: 30px;
    }

    .supContactItem span, 
    .supContactItem a {
      color: #fff;
      font-size: 16px;
      text-decoration: none;
    }

    .supContactSocial {
      margin-top: 20px;
    }

    .supContactSocial a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: #fff;
      color: #000;
      border-radius: 50%;
      margin-right: 10px;
      transition: background 0.3s, color 0.3s;
      text-decoration: none;
    }
    .supContactSocial a i{ font-size: 20px;}

    .supContactSocial a:hover {
      background: #ff3333;
      color: #fff;
    }
.copyRight{ background: #f81624; max-width: 450px; width: 100%; height: 48px; line-height: 48px; text-align: center; margin: 40px auto  0 auto;
-webkit-border-top-left-radius: 32px;
-webkit-border-top-right-radius: 32px;
-moz-border-radius-topleft: 32px;
-moz-border-radius-topright: 32px;
border-top-left-radius: 32px;
border-top-right-radius: 32px;
}



/*Home End*/


/*OUR PROGRAM*/
.sup-card {
  background: #f6f6f6;
  border-radius: 24px 24px 24px 48px;
  padding: 48px 48px 48px 308px;
  margin: 24px 0;

  display: flex;
  flex-direction: row;
  align-self: flex-start;
  position: relative;
  box-shadow: 5px 0 0 0 rgba(204, 204, 204, 0.3),
              -5px 0 0 0 rgba(204, 204, 204, 0.3),
              0 5px 0 0 rgba(204, 204, 204, 0.3);
}

.sup-text {
  display: flex;
  flex-direction: column;
}

.sup-text h3 {
  margin: 0;
  font-size: 1.5em;
}

.sup-text p {
  margin: 16px 0 24px;
}

.sup-text a {
  border: 3px solid #000;
  color: #000;
  align-self: flex-start;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.sup-text a:hover {
  background: #000;
  color: #fff;
}

.sup-visual {
  width: 240px;
  height: 260px;
  position: absolute;
  top: -24px;
  left: 24px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 1px 2px 6px rgba(255, 255, 255, 0.25),
              2px 6px 12px rgba(0, 0, 0, 0.25);
}

.sup-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sup-card:nth-of-type(odd) {
  border-radius: 24px 24px 48px 24px;
  padding: 48px 308px 48px 60px;
}

.sup-card:nth-of-type(odd) .sup-visual {
  right: 0;
  left: auto;
}

.sup-article {
  margin: auto;
  display: block;
  width: calc(60vw + 248px);
  max-width: calc(920px + 248px);
  min-width: calc(640px + 248px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1400px) {
  .bringth .col-md-3 { width: 50%; }
  .hmAgilityAndMovement { width: 100%;}
}

@media (max-width: 1100px) {


  .sup-article,
  .sup-card {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .sup-text {
    width: 100%;
  }

  .sup-card:nth-of-type(odd) {
    margin: 0;
  }
}

@media (max-width: 720px) {
  body {
    padding: 0 0 0;
  }

  .sup-card {
    margin: 64px 0;
    padding: 88px 36px 36px;
    flex-direction: column;
    border-radius: 24px;
  }

  .sup-card:nth-of-type(odd) {
    padding: 88px 36px 36px;
    border-radius: 24px;
  }

  .sup-text h3 {
    max-width: calc(100% - 150px);
    font-size: 1em;
  }

  .sup-text p,
  .sup-text a {
    font-size: 0.8em;
  }

  .sup-visual,
  .sup-card:nth-of-type(odd) .sup-visual {
    width: 150px;
    height: 150px;
    right: 16px;
    left: auto;
  }

  .sup-visual img,
  .sup-card:nth-of-type(odd) .sup-visual img {
    width: 100%;
    height: auto;
  }
}
/*OUR PROGRAM END*/

/*SPECIALITY CLASSES*/
.supClassBox{ display: flex;}

.supContainer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #f0f0fa;
      border-radius: 28px;
      padding: 20px;
      
      margin: 0 auto 40px auto;

    }

    .supImageWrapper {
      flex: 1;
      max-width: 45%;
      border-radius: 22px;
      overflow: hidden;
    }

    .supImageWrapper img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 22px;
    }

    .supContent {
      flex: 1;
      max-width: 50%;
      padding-left: 30px;
    }

    .supHeading {
      margin-bottom: 12px;
      color: #1a1a1a;
    }

    .supText {
      margin-bottom: 20px;
    }

    .supButton {
      display: inline-block;
      background-color: #ffde59;
      color: #000;
      font-weight: 600;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 25px;
      transition: background-color 0.3s;
    }

    .supButton:hover {
      background-color: #ffd633;
    }
/*SPECIALITY CLASSES END*/


/*PACKAGES*/

.sup-card-pack{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sup-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sup-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.sup-image{ padding: 20px;}
.sup-image img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
}

.sup-content {
  padding: 20px;
}

.sup-content h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 8px;
}

.sup-price {
  font-size: 1.2em;
  font-weight: bold;
  color: #ff3b3f;
  margin-bottom: 10px;
}

.sup-content p {
  margin: 4px 0;
  line-height: 1.5;
}

.sup-extension {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
}
/*PACKAGES END*/


/*CONTACT US*/
.contact100-form {
  width: 390px;
}

.contact100-form-title {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
  text-align: left;
  padding-bottom: 16px;
}

input.input100 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 44px;
}

input.input100[name="email"] {
  padding: 0 30px 0 44px;
}

textarea.input100 {
  min-height: 150px;
  border-radius: 25px;
  padding: 14px 30px 14px 44px;
}

/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input100 {
  display: block;
  width: 100%;
  background: #e6e6e6;
  
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(132,106,221, 0.5);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}


.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input100 {
  display: block;
  width: 100%;
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
  border: 1px solid #ccc;
}
.symbol-input100 {
    display: flex;
    position: absolute;
    border-radius: 25px;
    top: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 17px;
    pointer-events: none;
    color: #aaaaaa;
    font-size: 15px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #846add;
  padding-left: 22px;
}

.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.contact100-form-btn {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #000066;
  
  font-size: 18px;
  border: 0;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background: #333333;
}

/*CONTACT US END*/

/*RESPONSIVE*/
@media (max-width: 1199px) {
.supLogo { height: 55px; margin-right: 20px!important;}
.header-section .navbar-nav{ padding-left: 10px; padding-right: 10px;}
.header-section .navbar-nav a { font-size: 14px; padding: 0; }
}

@media (max-width: 1010px) {
body {
    font-size: 16px;
}
p {
    line-height: 28px;
}
.supContent{padding-left: 20px;}

}

@media (max-width: 991px) {
.supPersonalized .col-md-6 img{ border-radius: 24px; margin: 20px auto auto auto; display: block;}


.navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav-item {
    margin: 8px 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    color: #001a66;
    background-color: #f8f9fa;
    border-radius: 6px;
  }

  .nav-link:hover {
    background-color: #e8ecff;
    color: #001a66;
    transform: none;
  }

  /* Optional: Add subtle shadow to mobile menu */
  .navbar-collapse.show {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  }

  
.htbSpace {
    padding-top: 40px;
    padding-bottom: 40px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}

.navbar .navbar-collapse{padding: 20px 0; box-shadow: none;}

.navbar .nav-link{ background: none;}

.aboutHome .col-md-6{ width: 100%;}
.aboutHome .col-md-6 img{ max-width: 400px;}
.bringth .col-md-3{width: 50%;}

.hmCaption{min-height: 45px;}

.hpImage{ border-radius: 0;}

.supPersonalized .col-md-6{ width: 100%;}
.supPersonalized .col-md-6 img{ max-width: 400px;}
.supFooterLogo img { max-width: 128px;}

.hmAgilityAndMovement{ margin: 0 auto 20px auto!important;}
.hpContainer{ margin: 0 auto 20px auto;}
img.suppPhoto{ width: 100%;}

.smRedTitle {font-size: 25px;}
.supCarouselWrapper .owl-item{  }

.supFooter{padding: 100px 4% 0;}
.supFooterAbout, .supFooterLinks, .supFooterContact{ padding: 0 12px!important;}
.supCartIcon {
    position: absolute;
    right: 100px;
    top: 11px;
}
.supLogo{ height: 50px;}

.supPersonalized .row .col-md-4{ width: 100%; margin-bottom: 20px;}

}



@media (max-width: 768px) {
.supFooterContent {
  flex-direction: column;
}

.supFooterAbout,
.supFooterLinks,
.supFooterContact {
  flex: 1 1 100%;
}

.supContainer{ display: block; max-width: 100%;}
.supImageWrapper{ max-width: 100%; margin-bottom: 25px;}
.supContent{ max-width: 100%;}

.ahImg{text-align: center;}
.aboutHome .col-md-6 img{ display: block; margin:0 auto;}
.ahContent{text-align: center;}

.instaCover{ flex-wrap: wrap;}
.instaCover .instaImg{ width: 33.10%;}

}


@media (max-width: 480px) {
h1 { font-size: 28px; }
h2 { font-size: 25px; }


.supTestimonialSection h2{font-size: 27px;}
.hpTextBox{ width: 100%;}
.hmCaption{ font-size: 13px; min-height: 54px; padding: 7px 10px;}
.hpTextBox h2{ font-size: 18px; margin-bottom: 0; text-align: center; }
.smLogo, .smLogoTwo{ display: none;}
.hpTitle br{ display: none;}
.hpTextBox{
  height: 45px; padding: 10px 18px;
  position: relative;
  border-radius: 0;
   text-align: center;
   justify-content: center;
}
.sup-text h3{ max-width: 100%;}
.sup-card{ width: 100%!important; padding: 200px 26px 26px!important;}
.sup-card .sup-visual{
  width: 268px!important;
  height: 200px!important;
}
.sup-visual img{ height: 100%; object-fit: cover;}

.supFooter{ padding: 80px 2px 0;}

.contact100-form{ width: 100%;}

.aboutHome .col-md-6 img{ max-width: 300px;}

.supTestimonialSection .col-md-12{padding-left:0; padding-right: 0;}
.supCarouselWrapper .supTestimonialItem{ margin: 0;}

}

/*RESPONSIVE END*/

