@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");


:root {
  /* define all the color variables */
  --primary: #012c6e;
  --heading-font: "Roboto Flex", sans-serif;
  --text-font: "Roboto", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--text-font);
}

*:focus {
  box-shadow: none !important;
  outline: none !important;
}

svg {
  flex: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}

.container-lg,
.container-fluid {
  padding: 0 !important;
}

a {
  display: inline-block !important;
  text-decoration: none !important;
  color: inherit;
}

.row {
  margin: 0 !important;
}

[class*="col-"] {
  padding: 0 !important;
}

.swiper-slide {
  user-select: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus {
  outline: none;
}

/* for hiding the scroller */
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}

nav .navbar-nav li a {
  padding: 0 !important;
}

/* .navbar-toggler-icon {
    background-image: url(../images/menu.png);
} */

.image-reveal {
  position: relative;
  margin: 2rem auto;
  overflow: hidden;
  background: transparent;
}

.text-reveal {
  display: inline-block;
  overflow: hidden;
  padding: 4px;
}

.text-reveal span {
  display: inline-block;
  white-space: pre;
}

ul {
  margin-bottom: 0 !important;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: var(--lines, 3);
  line-clamp: var(--lines, 3);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: flex;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.parallax {
  position: relative;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.neu_shadow {
  background: #f0f0f0;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1),
    -6px -6px 10px rgba(255, 255, 255, 0.7);
}

.logo_img{
    width:160px; 
}

.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out, width 0.2s, height 0.2s;
}

.hover-target:hover ~ .custom-cursor {
  width: 40px;
  height: 40px;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.nav_contact_btn {
  background: var(--primary);
  color: white;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  &:hover {
    transform: scale(1.03);
  }
}

.tab_btn.active {
  background: var(--primary);
  color: white;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.tab_btn {
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid var(--primary);
}

.tab_btn_2.active {
  background: white;
  color: var(--primary);
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid white;
}

.tab_btn_2 {
  background: transparent;
  color: white;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid white;
}

.border_btn {
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  &:hover {
    transform: scale(1.03);
  }
}

.navbar-nav li a {
  color: #1f1f1f !important;
  font-weight: 500 !important;
}

.navbar-nav li a.active {
  color: var(--primary) !important;
}

.banner_heading {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 6.2rem;
}

.banner_subheading {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 450;
}

.counter_numbers {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
}

.curve_section {
  background: url("../images/curve_section.png") no-repeat center center;
  background-size: cover;
  min-height: 500px;
  width: 100%;
}

.curve_cards {
  background: #d8e4ef;
  height: 100%;
  user-select: none;
  transition: all 0.3s ease;
  &:hover {
    transform: scale(1.03);
  }
}

.curve_cards svg {
  width: 45px;
  height: 45px;
}

.curve_cards svg path {
  stroke: var(--primary);
  fill: var(--primary);
  stroke-width: 1px;
}

.curve_cards h4 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.8rem;
  font-family: var(--heading-font);
}

.curve_cards p {
  color: var(--primary);
  font-size: 18px;
  font-weight: 450;
}

.border_white_btn {
  background: transparent;
  color: white;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 12px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  user-select: none;
  cursor: pointer;
  border: 2px solid white;
  white-space: nowrap;
  transition: all 0.3s ease;
  &:hover {
    transform: scale(1.03);
  }
}

.network_card {
  border: 2px solid var(--primary);
  height: 100%;
  user-select: none;
}

.network_card a {
  text-decoration: underline !important;
  color: var(--primary);
  font-weight: 450;
  white-space: nowrap;
}

.network_card .svg_box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: var(--primary);
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.network_card .svg_box svg {
  width: 35px;
  height: 35px;
}

.mix_bg {
  background: url("../images/mix-bg.png") no-repeat center center;
  background-size: cover;
  min-height: 500px;
}

.icon_box img {
  width: 90px;
  height: 90px;
}

.swiper_Program_card {
  border: 2px solid var(--primary);
  height:100%;
  min-height: 322px;
}

.swiper_Program_card h4 {
  color: var(--primary);
  font-weight: 750;
  font-size: 3.8rem;
}

.swiper_Program_card h6 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--heading-font);
}

.program_btns {
  border: 2px solid var(--primary);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.program_btns svg {
  width: 16px;
  height: 16px;
}

.program_btns svg path {
  stroke: var(--primary);
  fill: var(--primary);
  stroke-width: 1px;
}

.design_btns {
  border: 2px solid white;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.design_btns svg {
  width: 16px;
  height: 16px;
}

.design_btns svg path {
  stroke: white;
  fill: white;
  stroke-width: 1px;
}


.tab_cards {
  background: var(--primary);
  user-select: none;
}

.design_card{
    height:100%;
    min-height:330px;
}

.design_card img {
  width: 70px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
}

.accordion-button {
  user-select: none;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--primary) !important;
}

.testimonial_video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}

.video-container {
  position: relative;
  display: inline-block;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.video-play-btn.hide {
  opacity: 0;
  pointer-events: none;
}

.blog_card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

.swiper-scrollbar-drag {
  background: var(--primary) !important;
}

.svg_links svg{
  width: 24px;
  height: 24px;
}

.svg_links a{
  color: #3A3A3A;
  font-weight: 500;
}

.social_icon{
  transition: all 0.2s linear;
  &:hover{
    transform: scale(1.07);
  }
}

.social_icon img{
  width: 40px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
}

.top_bottom_btn{
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  z-index: 100;
  position: fixed;
  bottom: 5%;
  right: 5%;
  border: none;
}

.top_bottom_btn svg{
  width: 25px;
  height: 25px;
}

#scrollToggle.rotate svg{ transform:rotate(180deg); }

#scrollToggle svg{ transition:transform .25s ease; }

.border_bottom{
    border-bottom: 1.5px solid #95959552;
}

.card_icons{
    width:100px;
    aspect-ratio:1/1;
    object-fit:contain;
    object-position:center;
}

.gallery_section img{
    min-height: 260px;
    max-height: 300px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.custom-hd {
    font-weight: 800;
    font-style: italic;
    font-size: 20px;
}
.ts{
    font-size: 15px;
    padding-top: 10px;
}
.date p {
    text-align: center;
}
.footer-links{
    font-size: 12px;
    text-decoration:underline !important;
    color: #3a3a3a;
}

.iframe_height{
    height:560px;
}