/* Parent container must be relative for absolute positioning to work */


/* Main container setup */
.header-logo2 a img{
    height: 70px;
    display: block;
    padding-top: 17PX;
}

.about-card-shape {
    position: absolute;
    left: -16px;
    top: -2px;
    display: flex;
    align-items: center;
    z-index: 1;
}
.about-card-shape img{
    height:80px;
}
.about-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: url('../img/dvk-icons/Untitled-1_0009_Shape-1-copy.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
   
    transform: translate(-10%, -10%); /* move slightly outwards for effect */
    animation: floatShape 6s ease-in-out infinite;
}


/* Floating background shape */
.tm-floating-objects .floating-object-1 {
  position: absolute;
  width: 130%;
  height: 130%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: -1;
  mask-size:90%;
  -webkit-mask-image:url('../img/dvk-icons/Untitled-1_0009_Shape-1-copy.png');
   
}

/* Main masked image */
.about-two__image__one {
    position: relative;
      width: 380px;
      height: 320px;
      /* background: #e7141a; */
      border-radius: 60% 40% 60% 40% / 55% 45% 55% 45%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
}

.about-two__image__one img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

/* Hover zoom effect */
.mega-hover img {
  transition: transform 0.5s ease;
}

.mega-hover:hover img {
  transform: scale(1.05);
}

/* Floating animation for shape */
@keyframes floatShape {
  0%, 100% { transform: translate(-10%, -10%) rotate(0deg); }
  50% { transform: translate(-12%, -8%) rotate(3deg); }
}

/* z-index helper */
.z-index--1 {
  z-index: -1 !important;
}




/* Floating objects container */
.tm-floating-objects {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none; /* so images don’t block text selection */
}

/* Common floating style */
.tm-floating-objects > span {
  position: absolute;
  width: 110px;
  height: 110px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
}
.tm-floating-objects .floating-object-4{
  width:100%;
}
/* Top-right floating object */
.floating-object-2 {
  top: -17%;
  right: 5%;
  background-image: url('../img/dvk-icons/Untitled-1_0000s_0022_rocket.png');
  animation: floatTop 5s ease-in-out infinite;
}

/* Bottom-right floating object */
.floating-object-3 {
  bottom:2%;
  right: 5%;
  background-image: url('../img/dvk-icons/Untitled-1_0000s_0006_Layer-8.png');
  animation: floatBottom 6s ease-in-out infinite;
}
.floating-object-4 {
  bottom: -16%;
  right: 5%;
  background-image: url('../img/dvk-icons/Untitled-1_0010_Layer-28-copy.png');
  /* animation: floatBottom 6s ease-in-out infinite; */
}

/* z-index helper */
.z-index--1 {
  z-index: -1 !important;
}

/* Optional floating animations */
@keyframes floatTop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatBottom {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}


/* === Container === */
.smart-activities-section{
  position: relative;
    z-index: 1;
}
.smart-activities-section::before{
  content: "";
    position: absolute;
    inset: 0;
    background: url("../img/choose/choose-background-img.jpg") no-repeat center;
    z-index: -2;
    opacity: 0.4; /* Full visibility */
}
.smart-activities-section::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.6); 
    
    /* adjust opacity: 0.4 = more visible bg, 0.8 = whiter overlay */
    z-index: -1;
}
.smart-activities-section .smart-activities-programs {
    position: relative;
    z-index: 2; /* THIS MAKES YOUR DATA VISIBLE */
}


/* === Container === */
.floating-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background: transparent; */
   background-image: url('../img/dvk-icons/Untitled-1_0005_Layer-18.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
     z-index: 1;
}

/* === Common styles for both characters === */
.floating-character {
  position: absolute;
  /* z-index: 2; */
  z-index: 10; 
}

.floating-character img {
  width: 200px;
  height: auto;
  animation: floatUpDown 6s ease-in-out infinite;
}

/* === Left character (Girl) === */
.floating-character.left {
  left: 5%;
  top: 10%;
  transform: translate(-10%, -10%);
}

/* === Right character (Boy) === */
.floating-character.right {
  right: 5%;
  bottom: 10%;
  transform: translate(10%, 10%);
}

/* === Floating animation === */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* === Responsive adjustments === */
@media (max-width: 1024px) {
  .floating-character img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .floating-character img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .floating-section {
    min-height: 250px;
  }
  .floating-character {
    display: none; /* hide on small screens like Elementor did */
  }
}
.testimonial-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background: transparent; */
   background-image: url('../img/dvk-icons/Untitled-1_0002_Layer-19.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
     z-index: 1;
}

/* Base section styling */


/* Text area */
.highlight-section .content {
  flex: 1 1 40%;
  max-width: 500px;
  color: #333;
}

.highlight-section h2 {
  color: #673ab7;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 25px;
}

.enroll-btn {
  background: #7b1fa2;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.enroll-btn:hover {
  background: #9c27b0;
}

/* Numbers section */
.numbers {
  flex: 1 1 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.highlight-circle {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.highlight-circle h3 {
  font-family: var(--title-font);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 15px 0;
  font-size: 60px;
  margin: 0;
  color: #fff;
  
}
.highlight-circle p {
    font-size: 17px;
    line-height: 1.3;
    margin-top: 5px;
    color: #fff;
}
/* Circle colors */
.orange { background: #f77f00; }
.blue { background: #0077b6; }
.purple { background: #7b2cbf; }
.yellow { background: #fcbf49; }

/* Boy illustration */
.boy-img {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 150px;
  animation: float 5s ease-in-out infinite;
  z-index: 5;
}

.bottom-illustration{
      position: absolute;
    top: 68%;
    z-index: -1;
}
.boy-illustration{
    position: absolute;
    top: 16%;
    z-index: 0;
  }
/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .highlight-section {
    flex-direction: column;
    text-align: center;
  }

  .numbers {
    justify-content: center;
    margin-top: 40px;
  }

  .boy-img {
    position: static;
    margin-top: 30px;
  }
  .highlight-circle p {
    font-size: 12px;
    line-height: 1.3;
  
}
}
.icon-heading {
  display: flex;
  justify-content: left;
  align-items: baseline;
  gap: 8px;
}

.icon-heading img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.hat-icon{
  width:32px !important;
  height:32px !important;
 
  margin-bottom: 6px !important;
}


.creative-section {
  position: relative;
}
.side-illustration {
  position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.side-illustration img {
  width: 100px;
}

.vision-mission-section {
    background-color: #7b4fd6;
    padding: 14px 1%;
}

.mvv-box {
  flex: 1 1 33.3%;
  padding: 30px 25px;
  
  border-right: 2px dotted #fff !important;
}
.mvv-box:last-child {
  border-right: none !important;
}
.mvv-box h3 {
  
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}
.mvv-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #f8f8f8;
}

.education-section {
      position: relative;
      padding: 80px 0 160px;
      text-align: left;
    }

    .left-character img {
      width: 250px;
      max-width: 100%;
      z-index: 3;
      position: relative;
    }

    .right-content h4 {
      color: #7b4fd6;
      font-weight: bold;
      text-transform: uppercase;
      
    }

    .right-content h2 {
      
      font-size: 32px;
      margin-top: 10px;
      color: #000;
    }

    .right-content p {
      color: #555;
      font-size: 15px;
      margin: 15px 0 30px;
      max-width: 550px;
    }

    .image-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .image-gallery img {
      width: 100%;
      border-radius: 15px;
      
    }

    .rocket {
      position: absolute;
      top: 30px;
      right: 10%;
      width: 70px;
      animation: rocketFly 3s ease-in-out infinite alternate;
    }

    @keyframes rocketFly {
      0% { transform: translateY(0); }
      100% { transform: translateY(-20px); }
    }

    .bottom-bg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1;
    }

    .bottom-bg img {
      width: 100%;
      height: auto;
    }

    @media (max-width: 992px) {
      .image-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .education-section {
        text-align: center;
        padding-bottom: 200px;
      }
      .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
      }
    }

    .info-box {
      background-color: #e83e8c; /* pink background */
      border: 2px dashed #fff;  /* white dashed border */
      border-radius: 20px;
      padding: 25px 30px;
      color: #fff;
      max-width: 420px;
      margin: 0 auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .info-item:last-child {
      margin-bottom: 0;
    }
    .info-icon {
      width: 45px;
      height: 45px;
      background-color: #fff;
      border-radius: 50%;
      flex-shrink: 0;
    }
.info-text {
      margin-left: 15px;
      font-size: 15px;
      line-height: 1.4;
    }


     .form-control::placeholder {
      color: rgba(255, 255, 255, 0.8);
    }

    .form-style3{
      background: transparent;
      
    }

    .vs-btn2 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  padding: 19px 40px 20px 40px;
  background-color: var(--theme-color2);
  color: var(--black-color);
  text-transform: capitalize;
  border-radius: 9999px;
  line-height: 1;
  transition: all ease 0.4s;
  z-index: 2;
  /* Small devices */
}

@media (max-width: 767px) {
  .vs-btn2 {
    padding: 16px 30px;
  }
}

.vs-btn2:after, .vs-btn2:before {
  content: "";
  position: absolute;
  top: var(--border-size, 3px);
  bottom: var(--border-size, 3px);
  left: var(--border-size, 3px);
  width: calc(50% - var(--border-size, 3px));
  background-color: var(--vs-secondary-color);
  z-index: -1;
  transform: scaleY(0.4);
  transform-origin: 100% 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  border-radius: 9999px 0 0 9999px;
}
.vs-btn2:after {
  left: auto;
  right: var(--border-size, 3px);
  transform-origin: 100% 100%;
  border-radius: 0 9999px 9999px 0;
}

.cards-layout{
  background: linear-gradient(to bottom, #eaf7ff, #ffffff);
      position: relative;
      overflow-x: hidden;
}

.section-title {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .section-subtitle {
    background: #8d4dfc;
    color: #fff;
    /* display: inline-block; */
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 25%;
}
    .section-title h2 {
      
      color: #1a1a1a;
      font-size: 42px;
    }

    .section-title p {
      max-width: 600px;
      margin: 10px auto;
      color: #555;
    }

    /* Card Styling */
    .class-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .class-card:hover {
      transform: translateY(-10px);
    }

    .class-card img {
      width: 100%;
      border:5px solid #fff;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
    }

    .class-card h5 {
      color: #7a35e9;
    
      margin-top: 15px;
    }

    .class-card p {
      color: #555;
      padding: 0 15px;
    }

 .class-footer {
    color: #7a35e9;
    font-weight: 600;
    padding: 10px 0;
    margin: 10px;
    font-size: 10px;
}

    /* Decorative Circles */
    .circle {
      position: absolute;
      background-color: #7a35e9;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      z-index: 0;
    }

    .circle.left {
      top: 50%;
      left: 30px;
    }

    .circle.right {
      top: 50%;
      right: 30px;
    }

    /* Star Image */
    .star-decor {
          position: absolute;
        right: -80px;
        top: -50px;
        width: 150px;
        z-index: 2;
        opacity: 0.95;
    }

    @media (max-width: 767px) {
      .star-decor {
        display: none;
      }
    }

    .gallery-section{
      position:relative;
    }
    .biculture-bg {
      position: absolute;
    bottom: -81px;
    left: 0;
    width: 100%;
    z-index: -1;
}

.biculture-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.middle-image {
    margin-top: -120px;
    /* margin-bottom: -120px; */
    text-align: center;
    position: absolute;
    top: 183%;
    left: -6px;
    width: 84%;
    z-index: -12;
}
.middle-image img {
  position: relative;
  z-index: 0; /* Behind the text sections */
  width: 90%;
  
  height: auto;
  display: block;
  
}
.about-us-session {
    margin-top: 42px;
    z-index: 2;
}

.vs-btn3 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  padding: 19px 40px 20px 40px;
  background-color: var(--theme-color3);
  color: var(--white-color);
  text-transform: capitalize;
  border-radius: 9999px;
  line-height: 1;
  transition: all ease 0.4s;
  z-index: 2;
  /* Small devices */
}

@media (max-width: 767px) {
  .vs-btn3 {
    padding: 16px 30px;
  }
}

.vs-btn3:after, .vs-btn3:before {
  content: "";
  position: absolute;
  top: var(--border-size, 3px);
  bottom: var(--border-size, 3px);
  left: var(--border-size, 3px);
  width: calc(50% - var(--border-size, 3px));
  background-color: var(--vs-secondary-color);
  z-index: -1;
  transform: scaleY(0.4);
  transform-origin: 100% 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  border-radius: 9999px 0 0 9999px;
}
.vs-btn3:after {
  left: auto;
  right: var(--border-size, 3px);
  transform-origin: 100% 100%;
  border-radius: 0 9999px 9999px 0;
}
.vs-btn3:hover{
      color: var(--yellow-color);
}

@media (max-width: 1200px) {
  .title-area .sec-title {
    font-size: 28px;
  }

  .img-box2 img {
    max-width: 380px;
  }

  .middle-image img {
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .about-section,
  .about-us-session {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .middle-image {
    margin-top: -60px;
    margin-bottom: -60px;
  }

  .title-area .sec-title {
    text-align: center;
    font-size: 26px;
  }

  .title-area .sec-subtitle {
    text-align: center;
    display: block;
  }

  .text-xl-start {
    text-align: center !important;
  }

  .img-box2 {
    margin-bottom: 40px;
  }

  .vs-btn {
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .middle-image img {
    max-width: 250px;
  }

  .about-card-shape img {
    width: 80px;
    top: -20px;
    left: -20px;
  }

  .sec-title {
    font-size: 24px;
    
  }

  .sec-text {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .about-section,
  .about-us-session {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .middle-image {
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .middle-image img {
    max-width: 200px;
  }

  .title-area .sec-title {
    font-size: 22px;
  }

  .icon-heading img {
    width: 40px;
  }
}

@media (max-width:546px) {
    .img-box2 img {
        max-width:100%;
    }
    .side-illustration{
      display:none;
    }
}

 .z-index--0{
  z-index:0;
 }


/*  
.timeline-section {
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #f7b4c7;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #f7b4c7;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.timeline-img {
  position: relative;
  width: 200px;
  height: 200px;
  border: 3px dashed #f7b4c7;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.timeline-content .time {
  color: #45b2e8;
  font-weight: 700;
  font-size: 1.5rem;
}

.timeline-content .title {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.2rem;
}

.timeline-content p {
  max-width: 400px;
  margin: 10px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-icon {
  position: absolute;
  right: -60px;
  bottom: -30px;
  width: 120px;
  max-width: 25%;
  opacity: 0.9;
  z-index: 0;
}

.timeline-balloon {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 140px;
  opacity: 1;
  z-index: 1;
}
.timeline-bear {
  position: absolute;
  left: -110px;
  bottom: -40px;
  width: 160px;
  opacity: 1;
  z-index: 0;
}
@media (max-width: 767px) {
  .timeline-line {
    left: 10px;
  }
  .timeline-item::before {
    left: 10px;
  }
  .timeline-content {
    text-align: left !important;
    padding: 0 !important;
  }
  .timeline-balloon {
    display: none;
  }
} */



.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline .timeline{
    width: 50%;
    padding: 0 70px 0 0;
    margin: 0 5px 25px 0;
    float: left;
}
.main-timeline .timeline-content{
    color: #999;
    background: var(--main-color);
    min-height: 120px;
    padding: 0 30px 0 0;
    border-right: 2px solid var(--theme-color);
    display: block;
    position: relative;
    z-index: 1;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after{
    content: '';
    background-color: var(--black-color);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: 0;
}
.main-timeline .timeline-content:after{
    top: auto;
    bottom: 0;
}
.timeline-icon img{
  border-radius:18px;
}
/* .main-timeline .timeline-icon{
    color: #fff;
   
    font-size: 40px;
    text-align: center;
    line-height: 93px;
    height: 142px;
    width: 142px;
    border-radius: 30px;
    box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.2), -8px -8px 0 var(--color2);
    transform: translateY(-50%);
    position: absolute;
    right: -173px;
    top: 50%;
} */
.main-timeline .timeline-icon:nth-child(even){
    color: #fff;
    /* background-color: var(--theme-color); */
    font-size: 40px;
    text-align: center;
    line-height: 93px;
    height: 142px;
    width: 142px;
    border-radius: 30px;
    box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.2), -8px -8px 0 var(--color2);
    transform: translateY(-50%);
    position: absolute;
    right: -173px;
    top: 50%;
}

.timeline-img {
  position: absolute;
  right: -60px;
  bottom: -30px;
  width: 120px;
  max-width: 25%;
  opacity: 0.9;
  z-index: 0;
}
.timeline-balloon {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 140px;
  opacity: 1;
  z-index: 1;
}
.timeline-bear {
  position: absolute;
  left: -110px;
  bottom: -40px;
  width: 160px;
  opacity: 1;
  z-index: 0;
}

.main-timeline .timeline-year{
    font-size: 32px;
    font-weight: 600;
    margin: 10px 0px;
    color: var(--theme-color);
}
.main-timeline .title{
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 7px;
}
.main-timeline .description{
    color: #444;
    font-size: 13px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.5px;
    margin: 0;
}
.main-timeline .timeline:nth-child(even){
    padding: 0 0 0 70px;
    margin: 0 0 15px 5px;
    float: right;
}
.main-timeline .timeline:nth-child(even) .timeline-content{
    padding: 0 0 0 30px;
    border-left: 2px solid var(--theme-color);
    border-right: none;
}
.main-timeline .timeline:nth-child(even) .timeline-content:before,
.main-timeline .timeline:nth-child(even) .timeline-content:after{
    right: auto;
    left: -5px;
}
.main-timeline .timeline:nth-child(even) .timeline-icon{
    box-shadow: 5px -5px 5px rgba(0,0,0,0.2), 8px -8px 0 var(--color2);
    left: -181px;
    right: auto;
}

@media screen and (max-width:767px){
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 100%;
        padding: 115px 0 0;
        margin: 0 0 50px;
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content{
        text-align: center;
        padding: 15px 0 0 0;
        border: none;
        border-top: 2px solid var(--theme-color);
    }
    .main-timeline .timeline-content:before{
        right: auto;
        left: 0;
        top: -5px;
    }
    .main-timeline .timeline-content:after,
    .main-timeline .timeline:nth-child(even) .timeline-content:after{
        left: auto;
        right: 0;
        top: -5px;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(even) .timeline-icon{
        transform: translateY(0) translateX(-50%);
        top: -153px;
        left: 50%;
    }
    .main-timeline .timeline:nth-child(odd) .timeline-icon{
        transform: translateY(0) translateX(-50%);
        top: -159px;
        left: 50%;
    }
    .timeline-balloon{
      display:none;
    }
    .timeline-bear {
      display:none;
    }
}

.photo-session{
  display:flex;
}

.progress-title{
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}
.progress-outer{
    background: #fff;
    padding: 5px 60px 5px 5px;
    border: 5px solid var(--theme-color);
    border-radius: 45px;
    margin-bottom: 20px;
    position: relative;
}
.progress{
    background: #bebfbf;
    border-radius: 20px;
    margin: 0;
}
.progress .progress-bar{
    border-radius: 20px;
    box-shadow: none;
    animation: animate-positive 2s;
    background-color:#673ab7;
}
.progress .progress-value{
    font-size: 20px;
    font-weight: 700;
    color:#673ab7;
    position: absolute;
    top: 3px;
    right: 10px;
}
@keyframes animate-positive{
    0%{ width: 0; }
}
.breadcrub-class-bottom{
  margin:20px 0px;
}

.tab{ font-family: 'Jura', sans-serif; }
.tab .nav-tabs{ border: none; }
.tab .nav-tabs li a{
    color: #ff4300;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 25px 8px;
    margin: 0 5px 1px 0;
    border: none;
    border-radius: 30px 30px 0 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:hover{
    color: #fff;
    background-color: #ff4300;
    border: none;
}
.tab .nav-tabs li a:before{
    content: '';
    height: 70%;
    width: 100%;
    border: 2px solid #ff4300;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease 0s;
}
.tab .nav-tabs li.active a:before,
.tab .nav-tabs li a:hover:before{
    height: 100%;
}
.tab .tab-content{
    color: #ff4300;
    background: repeating-linear-gradient(45deg, transparent,transparent 10px,rgba(255,67,0,0.03) 10px, rgba(255,67,0,0.03) 20px);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 25px;
    padding: 25px 25px 20px;
    border: 2px solid #ff4300;
    border-radius: 0 0 30px 30px;
}
.footer-logo4 {
        text-align: left;
        display: flex;
        justify-content:left;
        align-items:left;
        margin-bottom:10px;
    }
@media only screen and (max-width: 479px){
    .tab .nav-tabs li{
        width: 100%;
        text-align: center;
        margin: 0 0 5px;
    }
}
/* MAIN BOX */
.activity-box {
    display: flex;
    align-items: center;    /* centers icon + text vertically */
    gap: 20px;              /* spacing between icon and text */
    margin-bottom: 40px;
    min-height: 120px;      /* keeps all boxes equal height */
}

/* ICON CIRCLE */
.activity-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;      /* makes circle */
    background: var(--theme-color);
    display: flex;
    justify-content: center; /* center image inside circle */
    align-items: center;
}

/* ICON IMAGE SIZE */
.activity-icon img {
    width: 55%;              /* scale icon inside circle */
    height: auto;
}

/* CONTENT BLOCK */
.activity-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ensures title + description are centered */
}

/* TITLE */
.activity-content .title {
    color: #083666;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 8px;
}

/* DESCRIPTION */
.activity-content p {
    margin: 0;
    min-height: 20px;        /* ensures consistent layout even if empty */
}

.choose-content .choose-list-area {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}
.choose-content .choose-list-area li p{
    text-align:left;
}

@media (max-width: 767px) {
  .choose-content .choose-list-area {
    margin-top: 10px;
        display: inline-block;
  }
  .choose-list-area .choose-list{
        margin: 0 0 5px 0;
        padding: 0px;
  }
  
}

@media (max-width: 767px) {
  .img-box5 {
    position: relative;
    margin-bottom: 20px;
  }
  .title-area .sec-subtitle {
    text-align: center;
    display: block;
    font-size: 24px;
  }

  .about-card-shape {
    position: absolute;
    left: -12px;
    top: -39px;
    display: flex;
    align-items: center;
    z-index: 1;
  }
  .floating-object-2 {
   display:none;
  }
  .floating-object-3 {
    bottom: -16%;
    right: 3%;
    background-image: url(../img/dvk-icons/Untitled-1_0000s_0006_Layer-8.png);
    animation: floatBottom 6s ease-in-out infinite;
  }
  .floating-object-4 {
    bottom: -39%;
    right: -1%;
    background-image: url(../img/dvk-icons/Untitled-1_0010_Layer-28-copy.png);
  }
  .img-box2 {
        margin-bottom:5px;
    }
    
  

}


/* Tablets (2 in a row) */
@media (max-width: 991px) {
  .highlight-circle {
    flex: 1 1 calc(50% - 20px);
  }
}
.footer-info-number{
  margin-left:20px;
}
/* Mobile (1 in a row & smaller circles) */
@media (max-width: 576px) {
  .highlight-circle {
    /* flex: 1 1 100%; */
    width: 160px;
    height: 148px;
    margin: 0 auto;
  }

  .highlight-circle h3 {
    font-size: 30px;
  }

  .highlight-circle p {
    font-size: 12px;
    margin-top: 1px;
    color: #fff;
  }
  .numbers{
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .bottom-illustration {
    position: absolute;
    top: 92%;
    z-index: -1;
  }
  .cls-layout6 {
    padding: 20px 0 20px;
    margin-top: -37px;
  }
  .section-subtitle {
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width:70%;
  }
  .breadcrub-class-bottom{
  margin:5px 0px;
  }
  
  .right-rainbow{
    display:none;
  }
  .footer-social{
    margin-bottom:20px;
  }
}
.banner-slide6 {
    display: flex;
    align-items: center;    /* vertically center */
    padding: 100px 0;       /* safe spacing */
    background-size: cover;
    background-position: center;
}

@media (max-width: 576px) {
 
  .banner-slide6 {
    display: flex;
    align-items: center;    /* vertically center */
    padding:2px !important; /* safe spacing */
    background-size: cover;
    background-position: center;
  }
    .banner-slide6 .banner-content {
        padding: 37px 14px 42px 85px;
    }
    

    
    .bottom-illustration{
      display: none;
    }
    .sec-title-why-choose-us{
      text-align:left;
      
    }
    .widget-area {
      padding-top: 12px;
      padding-bottom: 12px;
  }
  .header-logo2 a img {
    height: 38px;
    padding-top:0px !important;
    width: 120px !important;
}
    .footer-logo4 {
        text-align: left;
        display: flex;
        justify-content:left;
        align-items: left;
        margin-bottom:10px;
    }
}


/* breadcrub Section  */

.marquee-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
    background-color:#7b2cbf; /* optional */
}

.marquee {
    display: flex;
    flex-wrap: nowrap;
}

/* Make marquee groups flex and vertically center everything */
.marquee-group {
    display: flex;
    align-items: center;       /* vertically centers text and SVG */
    flex-wrap: nowrap;
    animation: marquee-scroll 20s linear infinite;
}

/* Text styling */
.marquee-group .text a{
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    padding: 1rem 1rem;
    white-space: nowrap;
}

/* Optional: different style for .text-style2 */
.text-style2 {
    font-weight: 700;
    color: #ff3838;
}

/* Divider (SVG) styling */
.marquee-group .divider {
    display: flex;
    align-items: center;       /* vertically centers SVGs */
    padding: 0 0.5rem;
}

/* Pause on hover */
.marquee-section:hover .marquee-group {
    animation-play-state: paused;
}

/* Keyframes for horizontal scroll */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .marquee-group .text a{
        font-size: 1.2rem;
    }
    .marquee-group .divider svg {
        width: 50px;
        height: 50px;
    }
}
