/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}

/* Fonts */

/*
 * Quicksand
================================================================================ */
@font-face {
    font-family: "Quicksand-regular";
    src: url("../css/fonts/Quicksand/Quicksand-Regular.ttf") format("truetype"), url("../css/fonts/Quicksand/Quicksand-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Quicksand-bold";
    src: url("../css/fonts/Quicksand/Quicksand-Bold.ttf") format("truetype"), url("../css/fonts/Quicksand/Quicksand-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Quicksand-light";
    src: url("../css/fonts/Quicksand/Quicksand-Light.ttf") format("truetype"), url("../css/fonts/Quicksand/Quicksand-Light.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Quicksand-extrabold";
    src: url("../css/fonts/Quicksand/Quicksand-ExtraBold.ttf") format("truetype"), url("../css/fonts/Quicksand/Quicksand-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Quicksand-medium";
    src: url("../css/fonts/Quicksand/Quicksand-Medium.ttf") format("truetype"), url("../css/fonts/Quicksand/Quicksand-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

/*
 * Montserrat
================================================================================ */
@font-face {
    font-family: "Montserrat-regular";
    src: url("../css/fonts/Montserrat/Montserrat-Regular.ttf") format("truetype"), url("../css/fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat-bold";
    src: url("../css/fonts/Montserrat/Montserrat-Bold.ttf") format("truetype"), url("../css/fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat-light";
    src: url("../css/fonts/Montserrat/Montserrat-Light.ttf") format("truetype"), url("../css/fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat-extrabold";
    src: url("../css/fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype"), url("../css/fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat-medium";
    src: url("../css/fonts/Montserrat/Montserrat-Medium.ttf") format("truetype"), url("../css/fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

.container-xxl {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/blob-top-right.png), url(../img/blob-center.png) var(--secondary);
    background-position: right 0px top 0px, left 130px top 44%;
    background-repeat: no-repeat;
    z-index: 100;
}


/* Intro Container */

.hide {
    display: none;
}

.container-intro-form {
    width: 100%;
    max-width: 100% !important;
    background:#1a1a2e;
}


.intro-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 !important;
    margin: 0 !important;
}

.intro-center {
    text-align: center;
}

.intro-container .model-info .model-container:before {
    display: none;
}

.intro-box {
    display: flex;
    flex-direction: column;
}

.intro-box h2 {
    color: #fff;
    line-height: 42px;
}

.intro-box .yes-no-box {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
}

@media (min-width: 920px) {

    .sign-up-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .intro-title {
       text-align: center;
    } 
}

@media (min-width: 767px) {
    .intro-box .yes-no-box {
    justify-content: space-around;
    max-width: 600px;
    margin: 50px auto;
    }

    .trigger {
    max-width: 250px;
    }
}

.intro-container .service-item {
    background-color:#6222CC;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .3);
}

.intro-container .service-item .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
   
}

.intro-container .service-item-container a.btn {
    color: var(--dark);
    background: var(--secondary);
    transition: .5s;
}

.trigger {
    display: inline-block;
    width: 48%;
    padding: 12px 24px !important;
    margin: 0 10px !important;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.trigger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}
.trigger-yes {
    color: #4ade80;
    border-color: #4ade80 !important;
}
.trigger-no {
    color: #f87171;
    border-color: #f87171 !important;
}
.trigger-yes:hover {
    background-color: #4ade80 !important;
    color: #000;
    box-shadow: 0 0 15px #4ade80;
}
.trigger-no:hover {
    background-color: #f87171 !important;
    color: #000;
    box-shadow: 0 0 15px #f87171;
}

.trigger-next, .trigger-restart, .trigger-home, .trigger-email {
    border-color: #fff !important; 
    margin: 50px auto 0 !important;
    color: #fff;
    background-color: transparent !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.trigger-restart, .trigger-home, .trigger-email { 
    width: 235px;
}

.trigger-next:hover, .trigger-restart:hover, .trigger-home:hover, .trigger-email:hover, .cta-button:hover { 
    box-shadow: 0 0 15px #fff !important;
    color: #fff !important;
}

.no-options-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}


@media (max-width: 800px) {
    .trigger-next {
        box-shadow: 0 0 5px #531dad;
    }
}

.stat-box {
    margin-bottom: 25px;
}

@media (min-width: 767px) {
   .intro-stats-container {
    width: 100% !important;
   }

   .intro-stats-container p {
    text-align: center !important;
   }
}


.service-item-container-intro {
    margin: 50px auto 70px !important;
}

.service-item-container-intro .flip-container.hover .service-item {
    padding: 10px 30px 60px !important;
}

.intro-form-flip-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

@media (min-width: 767px) {
    .intro-form-flip-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 50px;
        justify-content: center;
    }

    .intro-form-flip-container .service-item-container-intro {
        margin: 50px 0 20px !important;
    }
 }

/* .progress-dots {
    margin-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}

.dot.active {
    background-color: #8e44ad;
} */


.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
    margin: auto;
}

.testimonial-slider {
    position: relative;
    width: 85%;
    overflow: hidden;
    margin: 20px 0 0;
}

.testimonial {
    display: none;
    padding: 20px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-height: 150px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

button.prev-btn, button.next-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

button.prev-btn { left: -10px; }
button.next-btn { right: -10px; }

.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dots-container .dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.dots-container .dot.active {
    opacity: 1;
}

.cta-section {
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.cta-subtext {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 920px) {

    .cta-subtext {
        text-align: center !important;
        font-size: 25px !important;
    }

 }



#fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Allows clicks to pass through */
    z-index: 9999; /* Ensures fireworks are on top */
}









/* Pixel Animation */

/* Container */
.pixel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  /* Grid */
  .pixel-grid {
    display: grid;
    grid-template-columns: repeat(7, 30px);
    grid-template-rows: repeat(6, 30px);
    gap: 3px;
    margin-bottom: 0.5rem;
  }
  
  /* Pixel Animation */
  .pixel {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff6f61, #ffd700);
    border-radius: 3px;
    opacity: 0;
    animation: appear 0.5s forwards;
    animation-delay: var(--delay);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  /* Message */
  .message {
    font-size: 1.8rem;
    font-family: 'Montserrat-bold', sans-serif;
    font-weight: bold;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    animation-delay: 2.7s;
  }
  
  /* Animations */
  @keyframes appear {
    from {
      opacity: 0;
      transform: scale(0.8) rotate(15deg);
    }
    to {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* Typewriter Styles */

  .typewriter {
    margin: 30px 0;
  }

  .typewriter h1 {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid white; /* The typwriter cursor */
    white-space: nowrap;
    color: var(--secondary);
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: 
      typing 3.5s steps(40, end),
      blink-caret .75s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white; }
  }

/* .overlay.active {
    display: block;
    transition: visibility 0.5s, opacity 0.5s linear;
} */


#mobile-indicator {
    display: none;
}

@media (max-width: 991.98px) {
    #mobile-indicator {
        display: block;
    }
}

.navbar-collapse {
    z-index: 1000;
    transition: .5s ease-out;
}

.navbar-close {
    display: none;
    z-index: 1000;
    background: transparent;
    border: none;
    transition: visibility 0.5s, opacity 0.5s linear;
    margin: 0px 8px 0px 0px;
}


.navbar-close span {
    font-size: 35px;
}
.navbar-close span:before {
    color: #000;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat-bold', sans-serif;
}

p {
    font-family: 'Quicksand-regular', sans-serif;
    color: #3A3B3C;
}

.letter-spacing {
    letter-spacing: 1px;
}

@media (max-width: 500px) {

    .g-5 {
        --bs-gutter-x: none;
    }

}


/*** Heading ***/
h1 {
    margin: 0 20px;
}

@media (min-width: 768px) { 
    h1 {
        margin: 0;
    }
}

h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


.side-padding {
    padding: 0 20px;
}

.margin-fix {
    margin: 0 0 20px;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar Container for Centering ***/
.navbar-container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.navbar-container.sticky {
    position: fixed;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/*** Navbar Base Styles ***/
.navbar {
    width: 100%;
    max-width: 1320px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar-container.sticky .navbar {
    border-bottom: none;
}

@media (min-width: 992px) {
    .navbar {
        padding-left: 1rem !important;
    }
}

/*** Mobile Toggle Button ***/
.navbar-light .navbar-toggler {
    color: #fff;
    font-size: 2rem;
    border: none;
}

.navbar-close {
    display: none;
    color: #fff;
    font-size: 2rem;
    border: none;
    background: transparent;
}

@media (min-width: 992px) {
    .navbar-light .navbar-toggler,
    .navbar-close {
        display: none !important;
    }
}

/*** Dropdown Styling ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

/*** Navigation Links ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Quicksand-regular', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: all 0.3s ease;
}

.navbar-container.sticky .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

/* Hover effects only on mobile */
@media (max-width: 991px) {
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #000 !important;
        font-weight: bold;
    }
}

/*** Logo System ***/
ul.logos {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar-light .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-light .navbar-brand h1 {
    color: #000000;
    margin: 0;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.navbar-container.sticky .navbar-light .navbar-brand img {
    max-height: 45px;
}

/* Logo visibility controls */
.navbar-light .logo-mobile,
.navbar-light .logo-color,
.navbar-light .logo-color-text {
    display: none;
}

.navbar-light .logo-white {
    display: block;
}

/*** Mobile Styles ***/
@media (max-width: 991px) {
    
    .navbar-container.sticky {
        position: relative;
        background: #FFFFFF;
        box-shadow: none;
    }

    .navbar {
        width: 100%;
        max-width: none;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-container.sticky .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #000 !important;
    }

    .navbar-light .navbar-brand h1,
    .navbar-container.sticky .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    /* Mobile logo system */
    .navbar-light .logo-white {
        display: none;
    }
    
    .navbar-light .logo-mobile {
        display: block;
    }

    .navbar-light .navbar-brand .logo-mobile {
        max-height: 75px;
        width: 75px;
    }
}

/*** Desktop Styles ***/
@media (min-width: 992px) {
    /* Sticky state logo changes */
    .navbar-container.sticky .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-container.sticky .navbar-light .navbar-collapse { 
        margin-left: 15%;
    }

    .navbar-container.sticky .navbar-light .logo-white {
        display: none;
    }

    .navbar-container.sticky .navbar-light .logo-color {
        display: block;
        position: absolute;
        top: 2px;
        left: -12px;
    }

    .navbar-container.sticky .navbar-light .logo-color img {
        width: 125px;
        max-height: 60px;
    }

    .navbar-container.sticky .navbar-light .logo-color-text {
        display: block;
        position: absolute;
        top: 12px;
        left: 35px;
        max-height: 21px !important;
        width: auto;
    }

    /* Dropdown menus */
    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }

    /* CTA Button */
    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
        transition: all 0.3s ease;
    }

    .navbar-container.sticky .navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}

/*** Additional Improvements ***/

/* Smooth navbar transitions */
.navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 20px;
    left: 50%;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 80%;
    }
}

/* Improve mobile menu toggle animation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        margin-top: 1rem;
        border-radius: 10px;
        padding: 1rem;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 3rem;
    padding: 8rem 0;
    background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png), url(../img/bg-bottom.png);
    background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center, center bottom;
    background-repeat: no-repeat;
    background-size: auto, auto, auto, auto, auto, 100% auto;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 8rem 0 4rem;
        margin: 0 0 40px;
    }

    .navbar-collapse {
        padding-left: 30px;
    }
}

    @media (max-width: 991.98px) {
        .hero-header .container div div .gallery-img {
            padding: 0 0 120px;
        }
    }

/* Student Gallery Styling - Responsive Version */
.student-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vw, 0); /* Responsive gap */
    padding: 2rem 0;
}

.main-student {
    position: relative;
    z-index: 2;
}

.main-student img {
    width: clamp(250px, 25vw, 400px); /* Responsive between 250px-400px */
    height: clamp(250px, 25vw, 400px);
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    box-shadow: 0 15px 35px rgba(251, 165, 4, 0.4);
}

.secondary-students {
    position: relative;
    display: flex;
    gap: clamp(2rem, 15vw, 12rem); /* Responsive gap between images */
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 100%;
    height: 150px;
}

.secondary-students img {
    width: clamp(120px, 12vw, 200px); /* Responsive between 120px-200px */
    height: clamp(120px, 12vw, 200px);
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 20px rgba(251, 165, 4, 0.4);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevent images from shrinking too much */
    position: absolute;
}

.secondary-students .one {
    left: -30px;
    top: 45px;
}
.secondary-students .two {
    right: -50px;
    height: 225px;
    width: 225px;
}
.secondary-students .three {
    left: -35px;
    height: 225px;
    width: 225px;
}
.secondary-students .four {
    right: -50px;
    top: -95px;
}

.secondary-students img:hover {
    transform: scale(1.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .student-gallery {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .secondary-students {
        display: none;
    }
    
   
}

@media (min-width: 900px) {
   
    .main-student {
        display: flex;
        justify-content: center;
    }
   
}

/* Large screen optimization */
@media (min-width: 1400px) {
    .secondary-students {
        gap: clamp(8rem, 20vw, 15rem);
    }
    .secondary-students .one {
        left: -60px;
        top: 45px;
    }
}

/* Enhanced image styling for model and age sections */

 
.age-image {
display: flex;
align-items: center;
justify-content: center;
}

.model-img-container img,
.age-image img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(98, 34, 204, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-img-container img:hover,
.age-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(98, 34, 204, 0.5);
}

/* Modal Styling */

.course {
    margin: 0 0 40px !important;
}

 .course-container {
    margin: 0 0 30px;
} 

.course-desc {
    margin-bottom: 1rem;
}

.course-bold {
    font-family: 'Quicksand-Bold';
    margin-bottom: 2rem;
}

.courses-container {
    display: flex;
    align-items: flex-start;
    margin: 0 0 25px;
}

.courses-container h5 {
    width: 75%;
    margin-bottom: 10px !important;
}

.courses-container i {
    font-size: 35px;
    color: var(--secondary);
    margin: 0 0 0 10px;
}

@media (min-width: 750px) { 
    .model-container h5 {
        font-size: 26px;
    }

    .courses-container {
        width: 33.3%;
    }
}


.model-img-container {
    margin-top: 23px;
}

@media (max-width: 991.98px) {

.model-info {
    margin-top: 2rem !important;
    text-align: center;
}

}

.model-img-title {
    margin: 0 0 -2rem !important;
    z-index: 1;
    position: relative;
    display: block;
}


        /* Modern tile container */
        .modern-tiles-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; /* Center the tiles */
            gap: 2rem;
            padding: 2rem 0;
          }
          
         

        /* Individual tile styling */
        .modern-tile {
            flex: 1 1 350px; /* Allows tile to grow/shrink and sets base width */
            max-width: 400px; /* Prevents overly wide tiles on big screens */
            background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(98, 34, 204, 0.1);
            border: 1px solid rgba(98, 34, 204, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-sizing: border-box; /* Important for padding inside max-width */
          }

        .modern-tile::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 20px 20px 0 0;
        }


        /* Icon styling */
        .tile-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), #8a4fd6);
            border-radius: 20px;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .tile-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .modern-tile:hover .tile-icon::after {
            left: 100%;
        }

        .tile-icon i {
            font-size: 2rem;
            color: white;
            z-index: 1;
        }

        /* Typography */
        .tile-title {
            font-family: 'Montserrat-bold', sans-serif;
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .tile-subtitle {
            font-family: 'Montserrat-medium', sans-serif;
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .tile-content {
            font-family: 'Quicksand-regular', sans-serif;
            font-size: 1rem;
            color: #5a5a5a;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Feature list styling */
        .tile-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tile-features li {
            font-family: 'Quicksand-regular', sans-serif;
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.5;
        }

        .tile-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
        }

        /* Badge styling */
        .trust-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #e8f5e8, #d4edda);
            color: #155724;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-family: 'Quicksand-bold', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        .trust-badge i {
            margin-right: 0.5rem;
            color: #28a745;
        }

        /* Highlight badge for AI tile */
        .highlight-badge {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            color: #856404;
        }

        .highlight-badge i {
            color: var(--secondary);
        }
         /* Center single tile rows on smaller screens */
         @media (max-width: 1024px) {
            .modern-tiles-container {
              justify-content: center;
            }
          }

        /* Responsive design */
        @media (max-width: 768px) {
            .modern-tiles-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem 0;
            }

            .modern-tile {
                padding: 2rem;
            }

            .tile-title {
                font-size: 1.3rem;
            }
        }

        /* Animation for progressive loading */
        .modern-tile {
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.6s ease-out forwards;
        }

        .modern-tile:nth-child(1) { animation-delay: 0.1s; }
        .modern-tile:nth-child(2) { animation-delay: 0.2s; }
        .modern-tile:nth-child(3) { animation-delay: 0.3s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Container styling to match your layout */
        .course-container {
            margin: 0 0 30px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 15px;
        }

        .discover-more-btn {
            border: none;
            color: #fff;
            font-size: 1.125rem;
            font-weight: 600;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            transition: transform 0.2s ease, background-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        
        .discover-more-btn:hover {
            transform: scale(1.05);
            text-decoration: none;
        }
        
        .discover-more-btn i {
            transition: transform 0.2s ease;
        }
        
        .discover-more-btn:hover i {
            transform: translateX(4px);
        }

/* Modal Styling */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/blob-top-right.png) var(--primary);
    background-position: right 0px top 0px;
    background-repeat: no-repeat;
    z-index: 1000;
    margin: 0;
    overflow: auto;
}

.model-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 0 25px;
}

.model-container-one {
    position: relative;
}

.model-container-one::before {
    content: 'Tap for more';
    width: 145px;
    height: 55px;
    color: var(--primary);
    position: absolute;
    right: 15px;
    font-family: 'Quicksand-Bold';
    font-size: 17px;
    padding: 11px 25px 0 0;
    top: -66px;
    background: url(../img/arrow-turn-down-solid.svg) right bottom no-repeat;
    background-size: 25px;
}

@media (min-width: 600px) { 
    .model-container-one::before {
        right: 34px;
        top: -80px;
    }
}

@media (min-width: 900px) { 
    .model-container-one::before {
        content: 'Click for more';
        right: 16px;
        top: -65px;
        width: 150px;
    }
}

.model-container h5 {
    width: 75%;
    margin-bottom: 0 !important;
}

@media (min-width: 750px) { 
    .model-container h5 {
        font-size: 26px;
    }
}

.model-container button {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

.model-container button i {
    font-size: 35px;
}

.model-container button .fa-circle-info:before { 
    color: #6222CC;
}


.modal {
    display: none;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    width: 100%;
    height: 100%;
    color: #fff;
    overflow: auto;
    text-align: center;
}

.modal h5 {
    width: 100%;
    margin: 40px 0 20px !important;
    color: #fff;
    padding: 0 20px;
}

@media (min-width: 900px) { 
    .modal h5 {
        margin: 40px 0 !important;
        padding: 0; 
    }
}

.modal p {
    line-height: 33px;
    font-size: 18px;
    color: #fff;
    text-align: left;
}

.modal .course-list {
    padding: 0;
    text-align: left;
}
.modal .course-list li {
    list-style: none;
    line-height: 33px;
    font-size: 18px;
    color: #fff;
    font-family: 'Quicksand-Medium';
    margin: 0 0 20px;
}

@media (min-width: 750px) { 
    .modal p {
        line-height: 35px;
        font-size: 20px;
        padding: 0 20px;
        text-align: left;
    }
}

.modal .close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 20px;
    font-size: 40px;
}

@media (max-width: 800px) { 
.age-image {
    margin: -1rem 0 0 !important;
}
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}


.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-secondary-light span:first-child,
.section-title.text-secondary-light span:last-child,
.section-title.text-secondary-light span:first-child::after,
.section-title.text-secondary-light span:last-child::after {
    background: #f9ca73;
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}

.section-title.text-secondary-light {
    color: #f9ca73;
}

/* HTML / CSS / Web */
.fa-html {
    background-image:  url(../img/html-icon.jpg;)
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}

/* Form Progress Bar */
.form-progress-container {
    margin: 60px 0 0;
    padding: 0 20px;
    width: 100%;
}

.form-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #34ce57);
    border-radius: 10px;
    width: 14.28%; /* Start at 1/7 = 14.28% */
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.form-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.form-progress-fill.completed {
    background: linear-gradient(90deg, #28a745, #34ce57);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

.form-progress-fill.completed::after {
    animation: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.form-progress-text {
    text-align: center;
    margin-top: 12px;
    font-size: 22px;
}

.form-progress-text span {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-progress-container {
        margin: 60px 0 0;
        padding: 0 20px;
    }
    
    .form-progress-bar {
        height: 6px;
    }
    
    .form-progress-text span {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .form-progress-container {
        margin: 60px 0 0;
        padding: 0 20px;
    }
    
    .form-progress-bar {
        height: 5px;
    }
    
    .form-progress-text {
        margin-top: 8px;
    }

    .form-progress-text span {
        font-size: 18px;
    }
}

/* Footer Enhancements */
.footer-section {
    height: 100%;
}

.footer-logo img {
    max-height: 45px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-stats .stat-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-info .contact-item i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary) !important;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    font-size: 0.9rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-badges .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

/* Mobile/Tablet Only Elements (Hide on Desktop) */
@media (min-width: 992px) {
    .mobile-tablet-only {
        display: none !important;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-badges {
        margin-top: 1rem;
    }
}

.py-5 {
    padding-top: 1rem !important;
}


/*** Fact ***/
.fact {
    margin: 1rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/

.service-item-container {
    position: relative;
    margin: 0 0 60px;
}

.service-item-container.active a.btn {
    color: var(--dark);
    background: var(--secondary);
    transition: .5s;
}

.service-item-container.active a.btn i {
        transform: rotateY(180deg);
        padding: 0 5px 0 0;
        transition: .5s;
}

.flip-container.hover .service-item {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
} 

.flip-container.hover .service-item .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
} 

.service-item-container a.btn:hover + .flip-container .service-item .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.flip-container.hover .service-item h5,
.flip-container.hover .service-item p {
    color: #FFFFFF;
}

.service-item-container a.btn:hover + .flip-container .service-item h5, .service-item-container a.btn:hover + .flip-container .service-item p {
    color: #ffffff;
}


.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item-container a.btn:hover + .flip-container .service-item, .service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item-container a.btn {
    position: absolute;
    bottom: -30px;
    right: 40px;
    width: 65px;
    height: 65px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 50%;
    z-index: 1;
    transition: .5s;
    font-family:'Quicksand-bold', sans-serif;
}

.service-item-container a.btn i { 
    padding: 0 0 0 5px;
    
}

.service-item-container a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item-container:hover a.btn {
    color: var(--dark);
    background: var(--secondary);

	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0.25rem rgba(239, 171, 11, 0.25);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}



/* Fipper */

::-ms-fill-upper
.flip-container {
    perspective: 1000px;
  }
  
  .flip-container.hover .flipper {
    transform: rotateY(180deg);
  }
  
  .flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
  }
  /* .front,
  .back {
    backface-visibility: hidden;
    top: 0;
    left: 0;
  } */

  .flip-container.hover .flipper .front {
    display: none;
  }
  .front {
    z-index: 2;
    transform: rotateY(0deg);
  }

  .flip-container.hover .flipper .back {
    display: block;
  }
  .back {
    display: none;
    transform: rotateY(180deg);
  }


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Why Container  */

.why-container p, .why-container h1 {
 color: #fff;
}
.why-container .intro-container {
 background-color: #fff;
}



#contact div div div p a.mobile-number {
    color: #fff !important;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    padding-top: 2rem;
    background: url(../img/bg-top.png), url(../img/map.png);
    background-position: center top, center center;
    background-repeat: no-repeat;
    background-size: 100% auto, auto;
}

@media (min-width: 992px) { 
    .footer {
    padding-top: 12rem;
    }
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

/* Privacy Policy Modal Styles */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    font-family: 'Quicksand-regular', sans-serif;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.privacy-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    margin: 2vh auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.privacy-modal-header {
    background: linear-gradient(135deg, var(--primary), #8a4fd6);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.privacy-modal-header h2 {
    margin: 0;
    font-family: 'Montserrat-bold', sans-serif;
    font-size: 1.8rem;
    color: white;
}

.privacy-close {
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0.5rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.privacy-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
    line-height: 1.6;
}

.privacy-modal-body h3 {
    color: var(--primary);
    font-family: 'Montserrat-bold', sans-serif;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.privacy-modal-body h3:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-modal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-modal-body li {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.privacy-consent {
    background: var(--light);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.privacy-checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
    gap: 1rem;
    margin: 0;
}

.privacy-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.privacy-checkmark {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.privacy-checkbox-container:hover .privacy-checkmark {
    background-color: var(--light);
    transform: scale(1.05);
}

.privacy-checkbox-container input:checked ~ .privacy-checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.privacy-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.privacy-checkbox-container input:checked ~ .privacy-checkmark:after {
    display: block;
}

.privacy-checkbox-container .privacy-checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.privacy-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat-medium', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.privacy-btn-secondary:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
}

.privacy-btn-primary {
    background: linear-gradient(135deg, var(--primary), #8a4fd6);
    color: white;
    border: 2px solid transparent;
}

.privacy-btn-primary:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(98, 34, 204, 0.3);
}

.privacy-btn-primary:disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
        max-height: calc(100vh - 2rem);
    }
    
    .privacy-modal-header {
        padding: 1.5rem;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-modal-body {
        padding: 1.5rem;
        max-height: calc(100vh - 180px);
    }
    
    .privacy-modal-footer {
        flex-direction: column-reverse;
    }
    
    .privacy-btn {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-modal-content {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
        border-radius: 15px;
    }
    
    .privacy-modal-header {
        padding: 1rem;
    }
    
    .privacy-modal-body {
        padding: 1rem;
    }
    
    .privacy-consent {
        padding: 1rem;
    }
}

/* SEO Improvements - Maintain visual styling for semantic changes */

/* Statistics numbers styling (was h1, now div.stat-number) */
.stat-number {
    font-family: 'Montserrat-bold', sans-serif;
    font-size: 2.5rem;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 0.5rem !important;
}

/* Section headings that were changed from h1 to h2 - maintain h1 styling */
.model-img-title,
.text-left.mb-5,
h2.mb-5 {
    font-family: 'Montserrat-bold', sans-serif;
    font-size: 2.5rem;
    font-weight: 700 !important;
    line-height: 1.2;
}

/* Keep the "Why should I learn how to code?" heading white */
.why-container h2.mb-5 {
    color: #fff !important;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .model-img-title,
    .text-left.mb-5,
    h2.mb-5 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .stat-number {
        font-size: 1.8rem;
    }
    
    .model-img-title,
    .text-left.mb-5,
    h2.mb-5 {
        font-size: 1.8rem;
    }
}

/* Responsive display toggles */
.desktop-only {
    display: block;
}

.mobile-tablet-only {
    display: none;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-tablet-only {
        display: block;
    }
}

/* Student Carousel Styles */
.student-carousel-container {
    padding: 2rem 0;
}

.student-carousel .owl-stage-outer {
    padding: 2rem 0 0;
}

.student-slide {
    text-align: center;
    padding: 1rem;
}

.student-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.student-photo {
    width: 280px !important;
    height: 280px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.student-photo:hover {
    transform: scale(1.05);
}

.student-info {
    color: #fff;
}

.student-name {
    font-family: 'Montserrat-bold', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.student-details {
    font-family: 'Quicksand-regular', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Owl Carousel Custom Styles for Student Carousel */
.student-carousel.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.student-carousel.owl-carousel .owl-nav .owl-prev,
.student-carousel.owl-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 50%;
    font-size: 22px;
    border: none;
    transition: 0.5s ease;
}

.student-carousel.owl-carousel .owl-nav .owl-prev:hover,
.student-carousel.owl-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.student-carousel.owl-carousel .owl-dots {
    display: none;
}

.student-carousel.owl-carousel .owl-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.student-carousel.owl-carousel .owl-item.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .student-photo {
        width: 280px !important;
        height: 280px !important;
    }
    
    .student-name {
        font-size: 1.3rem;
    }
    
    .student-details {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .student-photo {
        width: 280px !important;
        height: 280px !important;
    }
    
    .student-carousel-container {
        padding: 1rem 0;
    }
}

/* Summer Code Camp 2025 Styles */
#summer-camp {
    position: relative;
    overflow: hidden;
    padding: 20px !important;
}

#summer-camp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/blob-top-right.png) no-repeat;
    background-position: right top;
    background-size: 300px auto;
    opacity: 0.1;
    z-index: 1;
}

.summer-camp-content {
    position: relative;
    z-index: 2;
}

.summer-camp-title {
    font-family: 'Montserrat-bold', sans-serif;
    font-size: 2.5rem;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.summer-camp-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary), #ffb347);
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat-bold', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(251, 165, 4, 0.3);
    animation: pulse-glow 3s infinite;
}

.summer-camp-badge i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.summer-camp-description {
    font-family: 'Quicksand-regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.summer-camp-features {
    margin-bottom: 2.5rem;
}

.summer-camp-image-wrapper {
    display: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Quicksand-medium', sans-serif;
    font-size: 1rem;
    color: #666;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.summer-camp-btn {
    background: linear-gradient(135deg, var(--primary), #8a4fd6);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat-bold', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(98, 34, 204, 0.3);
}

.summer-camp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(98, 34, 204, 0.4);
    color: white;
    text-decoration: none;
}

.summer-camp-btn i {
    transition: transform 0.3s ease;
}

.summer-camp-btn:hover i {
    transform: translateX(5px);
}

.limited-places-note {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    color: #dc3545;
    font-family: 'Quicksand-medium', sans-serif;
}

.limited-places-note i {
    margin-right: 0.5rem;
    animation: flash 2s infinite;
}

.summer-camp-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.summer-camp-image:hover {
    transform: translateY(-5px);
}

.summer-camp-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.summer-camp-image:hover img {
    transform: scale(1.05);
}

.summer-camp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(98, 34, 204, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.summer-camp-image:hover .summer-camp-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: white;
    font-family: 'Montserrat-bold', sans-serif;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Quicksand-regular', sans-serif;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Summer Camp */
@media (max-width: 991px) {
    .summer-camp-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .summer-camp-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .summer-camp-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 2rem auto;
    }
}

@media (max-width: 768px) {
    .summer-camp-title {
        font-size: 1.8rem;
    }
    
    .summer-camp-features {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .summer-camp-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .summer-camp-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .summer-camp-title {
        font-size: 1.6rem;
    }
    
    .summer-camp-description {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .summer-camp-btn {
        width: 100%;
        justify-content: center;
    }
}

.summer-camp-image-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .summer-camp-image-wrapper {display: block;}
 }

/* Professional Contact Button Styles */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Quicksand-medium', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn i {
    font-size: 1.3rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-btn span {
    flex: 1;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover i {
    transform: scale(1.1);
}

.contact-btn:hover span {
    transform: translateX(3px);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Email Button */
.email-btn {
    background: linear-gradient(135deg, var(--secondary), #ff9500);
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.1);
}

.email-btn:hover {
    background: linear-gradient(135deg, #ff9500, #e8890b);
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Contact Buttons */
@media (max-width: 767px) {
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .contact-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .contact-btn i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .contact-btn i {
        font-size: 1.1rem;
        margin-right: 0.7rem;
    }
}



