* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fredoka", cursive;
}

h2 {
    font-family: "Fredoka", cursive;
    font-size: 40px;
}

h6 {
    font-family: "Fredoka", cursive;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.display-4 {
    font-family: "Fredoka", cursive;
} 

p {
    font-family: "Fredoka", cursive;
    font-size: 18px;
}

.g-headings {
    font-size: 2.3rem;
    font-weight: bold;
    color: #450e49;
}

.yellow-heading {
    color: #ffb03a;
}

@media (max-width: 768px) {
    .g-headings {
        font-size: 2rem;
    }
}

.g-sub-heading {
    font-size: 1.6rem;
    font-weight: bold;
    color: #450e49;
}

.yellow-sub-heading {
    color: #ffb03a;
}

@media (max-width: 768px) {
    .g-sub-heading {
        font-size: 1.5rem;
    }
}


/* header 02 */
/* heading 2  */
.header-gradient-heading {
    background: linear-gradient(90deg,
            #f7008c,
            #ff6f00,
            #ddb400,
            #009859,
            #007798,
            #3e039e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Fredoka", cursive;
}

.header-container{
    margin-top: 100px;
    margin-left: 200px !important;
}

.header-row {
    margin-top: 100px;
    margin-left: 80px;
}

@media (max-width: 767.98px) {
    .header-gradient-heading {
        margin-top: -50px;
    }

    .header-row {
        margin-top: 0px;
        margin-left: 0px;
    }
    .header-container{
    margin-top: -20px !important;
    margin-left: 0px !important;
}

}

.header-gradient-description {}

.header-button-1,
.header-button-2 {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Purple button */
.header-button-1 {
    background-color: #450e49;
    color: white;
}

.header-button-1:hover {
    background-color: #4d094a;
    box-shadow: 0 6px 18px rgba(100, 13, 95, 0.4);
}

/* Yellow button */
.header-button-2 {
    background-color: #ffc107;
    color: black;
}

.header-button-2:hover {
    background-color: #e6ac00;
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
}

.lottie-container {
    height: 500px;
}








/* Adjust column width for larger screens */
@media (min-width: 992px) {

    .col-md-6.content-column {
        flex: 0 0 45%;
        /* Decreased from default 50% */
        max-width: 45%;
    }
}

/* header end */



/* heading 2  */
.gradient-heading {
    background: linear-gradient(90deg,
            #f7008c,
            /* Pink */
            #ff6f00,
            /* Orange */
            #ddb400,
            /* Yellow */
            #009859,
            /* Mint */
            #007798,
            /* Sky Blue */
            #3e039e
            /* Purple */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}





/* custom caraousel start */
/* Custom Styles */
.text- {
    color: #450e49;
    font-size: 2rem;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 215, 0, 0.4);
    z-index: -1;
    transform: rotate(-1deg);
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.08);
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.08);
}

.bg-info-light {
    background-color: rgba(13, 202, 240, 0.08);
}

.btn-pill {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    border: 2px solid #dee2e6;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.btn-pill.active {

    background: linear-gradient(135deg, #ff9f00 0%, #ff6b9e 100%);
    color: white !important;
    border-color: none !important; 
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    padding-left: 2rem;
    position: relative;
}

.list-check li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.2rem;
}

.btn-hover-scale {
    transition: all 0.3s ease;
}

.btn-hover-scale:hover {
    transform: scale(1.05);
}

.animation-container {
    width: 100%;
    position: relative;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float 6s infinite ease-in-out;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.icon-3 {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* custom caraousel end */

/* coding-benefits-section start */



.coding-benefits-section {
    background-color: #f8f9fa;
    padding: 6rem 1rem;
}

.coding-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 0;

}

.lesson-img {
    border-radius: 1rem;
    overflow: hidden;
    background-color: #450e49;
    padding: 1rem;
    position: relative;
}

.lesson-img img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.tag {
    position: absolute;
    background-color: #640d5f;
    color: #fff;
    border-radius: 20px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.tag1 {
    top: 8%;
    left: 8%;
}

.tag2 {
    top: 8%;
    right: 8%;
    background-color: #ffc107;
    color: #000;
}

.tag3 {
    bottom: 8%;
    left: 8%;
    background-color: #ffc107;
    color: #000;
}

.lesson-title {
    color: #450e49;
    font-weight: 700;
    font-size: 2.5rem;
}

.lesson-list {
    padding-top: 1.5rem;
}

.lesson-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.lesson-list i {
    background-color: #450e49;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 1rem;
}

.carousel-bg-1 {
    background-color: #ffe4e1;
    /* Light pink */
}

.carousel-bg-2 {
    background-color: #e0f7fa;
    /* Light cyan */
}

.carousel-bg-3 {
    background-color: #e6f9e6;
    /* Light green */
}


@media (max-width: 767px) {
    .coding-box {
        padding: 1.5rem 1rem;
    }

    .lesson-title {
        font-size: 1.5rem;
    }
}

.lesson-text-wrapper {
    margin-left: 5rem;
}

@media (max-width: 767px) {
    .lesson-text-wrapper {
        margin-left: 0;
    }
}

/* coding-benefits-section ends */

/* explore coding journey starts */
 /* Custom Styles */
      .level-card-title {
        color: white;
        font-size: 2rem;
      }

      .level-card-subtitle {

       
      }

      .text-gradient {
        font-size: 2.5rem;
        color: #450e49;
      }

      @media (max-width: 768px) {
        .text-gradient {
          font-size: 1.8rem;
        }
      }

      .heading-text {
        font-size: 1.8rem;
        font-family: "Fredoka", cursive;
      }


      .text-highlight {
        position: relative;
        display: inline-block;
        z-index: 1;
      }

      .text-highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 12px;
        background: rgba(255, 215, 0, 0.4);
        z-index: -1;
        transform: rotate(-1deg);
      }

      .card-level {
        transition: all 0.3s ease;
        border: 3px solid transparent;
      }

      .hover-scale:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      }

      .bg-gradient-primary {
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
      }

      .bg-gradient-success {
        background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
      }

      .bg-gradient-danger {
        background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
      }

      .bg-light-primary {
        background-color: rgba(106, 17, 203, 0.05);
      }

      .bg-light-success {
        background-color: rgba(17, 153, 142, 0.05);
      }

      .bg-light-danger {
        background-color: rgba(241, 39, 17, 0.05);
      }

      .level-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: white;
      }

      .floating-icons {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
      }

      .floating-icons i {
        position: absolute;
        font-size: 1.5rem;
        opacity: 0.7;
        color: rgba(255, 255, 255, 0.8);
        animation: float 6s infinite ease-in-out;
      }

      .floating-icons i:nth-child(1) {
        top: 20%;
        left: 20%;
      }

      .floating-icons i:nth-child(2) {
        top: 60%;
        left: 70%;
        animation-delay: 1s;
      }

      .floating-icons i:nth-child(3) {
        top: 40%;
        left: 10%;
        animation-delay: 2s;
      }

      @keyframes float {
        0% {
          transform: translateY(0) rotate(0deg);
        }

        50% {
          transform: translateY(-15px) rotate(5deg);
        }

        100% {
          transform: translateY(0) rotate(0deg);
        }
      }

      .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
      }

      .plus-icon {
        display: inline-flex;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
      }

      .feature-list li {
        padding-left: 0;
        position: relative;
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
      }

      .feature-list li:last-child {
        border-bottom: none;
      }

      .btn-pill {
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        padding: 8px 20px;
      }

      .btn-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }
/* explore coding journey ENDS */


/* TESTIMONIAL STARTS */
 .testimonial-section {
          background-color: #f9f9f9;
        }

        .testimonial-img {
          width: 60px !important;
          height: 60px !important;
          object-fit: cover;
          border: 3px solid #fff !important;
          position: relative;
          z-index: 2;
          margin-left: -1px;
          margin-top: -1px;
          border-radius: 50%;
        }

        .testimonial-card {
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          border: 1px solid #e0e0e0 !important;
          height: 100%;
          transition: none !important;
        }

        .testimonial-heading {
          background: #4e0d52;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-weight: bold;
        }

        .testimonial-subheading {
          letter-spacing: 2px;
        }

        .testimonial-underline {
          width: 80px;
          margin-left: 10px;
        }

        .testimonial-quote {
          font-size: 22px;
          color: #450e49;
        }

        .testimonial-indicators {
          display: flex;
          justify-content: center;
          margin-top: 30px;
        }

        .testimonial-indicator {
          width: 12px;
          height: 12px;
          border-radius: 50%;
          background: transparent;
          border: 2px solid #333;
          margin: 0 5px;
          padding: 0;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .testimonial-indicator.active {
          background: #000;
          border-color: #000;
        }

        .testimonial-content {

          margin-top: -15px;
        }

        .testimonial-img-container {
          position: relative;
          z-index: 1;
        }
/* TESTIMONIAL ENDS */



/* CTA STARTS  */
 .interactive-cta {
          background: linear-gradient(135deg, #640d5f 0%, #764ba2 100%);
        }

        .cta-container {
          background: rgba(255, 255, 255, 0.08);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        /* Animated background elements */
        .cta-bg-elements {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          overflow: hidden;
          z-index: 0;
        }

        .circle {
          position: absolute;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.03);
          animation: float 15s infinite linear;
        }

        .circle-1 {
          width: 200px;
          height: 200px;
          top: -50px;
          left: -50px;
        }

        .circle-2 {
          width: 300px;
          height: 300px;
          bottom: -100px;
          right: -100px;
          animation-delay: 5s;
        }

        .circle-3 {
          width: 150px;
          height: 150px;
          top: 30%;
          right: 20%;
          animation-delay: 8s;
        }

        .pulse-dot {
          position: absolute;
          width: 20px;
          height: 20px;
          background: rgba(255, 255, 255, 0.4);
          border-radius: 50%;
          top: 70%;
          left: 10%;
          animation: pulse 2s infinite;
        }

        @keyframes float {
          0% {
            transform: translateY(0) rotate(0deg);
          }

          50% {
            transform: translateY(-20px) rotate(5deg);
          }

          100% {
            transform: translateY(0) rotate(0deg);
          }
        }

        @keyframes pulse {
          0% {
            transform: scale(0.8);
            opacity: 0.8;
          }

          70% {
            transform: scale(1.3);
            opacity: 0;
          }

          100% {
            transform: scale(0.8);
            opacity: 0;
          }
        }

        /* Text styles */
        .cta-subtitle {
          color: rgba(255, 255, 255, 0.9);
          font-size: 1.1rem;
          max-width: 600px;
        }

        /* Contact methods */
        .cta-method {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 14px 18px;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 12px;
          text-decoration: none;
          color: white;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
          border: 1px solid rgba(255, 255, 255, 0.1);
          flex: 1 1 200px;
          z-index: 1;
        }

        .cta-method::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
          opacity: 0;
          transition: opacity 0.3s ease;
          z-index: -1;
        }

        .cta-method:hover {
          background: rgba(255, 255, 255, 0.2);
          transform: translateY(-3px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .cta-method:hover::before {
          opacity: 1;
        }

        .glow-hover:hover {
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        }

        .method-icon {
          width: 44px;
          height: 44px;
          background: rgba(255, 255, 255, 0.15);
          border-radius: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          color: white;
          flex-shrink: 0;
          transition: all 0.3s ease;
        }

        .cta-method:hover .method-icon {
          background: rgba(255, 255, 255, 0.25);
          transform: scale(1.1);
        }

        .method-label {
          font-size: 0.8rem;
          color: rgba(255, 255, 255, 0.7);
        }

        .method-value {
          font-weight: 600;
          font-size: 1rem;
        }

        .hover-arrow {
          margin-left: auto;
          opacity: 0;
          transform: translateX(-10px);
          transition: all 0.3s ease;
        }

        .cta-method:hover .hover-arrow {
          opacity: 1;
          transform: translateX(0);
        }

        /* WhatsApp CTA */
        .whatsapp-cta {
          background: rgba(255, 255, 255, 0.95);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          border: none;
          transition: all 0.3s ease;
          z-index: 1;
        }

        .whatsapp-cta:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .whatsapp-icon {
          width: 50px;
          height: 50px;
          background: #25d366;
          color: white;
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.5rem;
          flex-shrink: 0;
        }

        .online-dot {
          width: 10px;
          height: 10px;
          background: #25d366;
          border-radius: 50%;
          margin-left: auto;
          position: relative;
        }

        .online-dot::after {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          background: rgba(37, 211, 102, 0.5);
          border-radius: 50%;
          animation: pulse 1.5s infinite;
        }

        /* Fake chat UI */
        .fake-chat {
          background: #f0f2f5;
          border-radius: 8px;
          padding: 12px;
        }

        .message {
          padding: 8px 12px;
          background: white;
          border-radius: 8px 8px 8px 0;
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
          font-size: 0.9rem;
          max-width: 80%;
          margin-bottom: 8px;
        }

        .typing-indicator {
          display: flex;
          gap: 4px;
        }

        .typing-indicator span {
          width: 8px;
          height: 8px;
          background: #ccc;
          border-radius: 50%;
          display: inline-block;
          animation: bounce 1.5s infinite ease-in-out;
        }

        .typing-indicator span:nth-child(2) {
          animation-delay: 0.2s;
        }

        .typing-indicator span:nth-child(3) {
          animation-delay: 0.4s;
        }

        @keyframes bounce {

          0%,
          60%,
          100% {
            transform: translateY(0);
          }

          30% {
            transform: translateY(-5px);
          }
        }

        /* WhatsApp button */
        .btn-whatsapp {
          background: #25d366;
          color: white;
          font-weight: 600;
          padding: 12px;
          border: none;
          border-radius: 8px;
          position: relative;
          overflow: hidden;
          transition: all 0.3s ease;
        }

        .btn-whatsapp:hover {
          background: #128c7e;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
        }

        .btn-pulse {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          background: rgba(255, 255, 255, 0.4);
          opacity: 0;
          border-radius: 8px;
          animation: pulse 2s infinite;
        }

        .btn-whatsapp:hover .btn-pulse {
          opacity: 1;
        }

        @media (max-width: 992px) {
          .cta-container {
            padding: 2rem 1.5rem !important;
          }

          .whatsapp-cta {
            margin-top: 1.5rem;
          }
        }
/* CTA ENDS  */