

* {
    margin: 0;
    padding: 0;
    /* box-sizing: full-width;  */
}

body {
    font-family: 'outfit', sans-serif;
    /* font-size: 15px; */
    line-height: 1.5;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto; 
}

/* Top Bar Styles */
.top-bar {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #16a085;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #16a085;
}

/* Main Header Styles */
/* .main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
     /* display: flex; */
    /* align-items: center;
    gap: 10px;
}
.logoname{
    font-size: 8px; */
    /* left: 50px; */
/* }
.logo img {
    height: 40px;
    width: 200px;
}
.logotext{
    font-size: 16px;
    justify-content: end;
    color: #00a69c;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #333;
} */

/* .highlight {
    color: #16a085;
} */

/* .nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #16a085;
}

.header-buttons {
    display: flex;
    gap: 15px;
} */

/* Button Styles with Left-to-Right White Overlay Animation */
/* .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: #16a085;
    color: #fff;
}

.btn-primary:hover {
    background-color: #138a72;
}

.btn-secondary {
    background-color: #16a085;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #138a72;
}

 .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Scrolled state for header */
   /* .main-header.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .main-header.scrolled .container {
    padding: 10px 0;
  }
  
  .main-header.scrolled .logo img {
    height: 40px;
  }  */

/* Mobile Toggle Button */
/* .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
} */


  /* Body when mobile menu is open */
  /* body.no-scroll {
    overflow: hidden;
  } */ 
  

/* Responsive Styles */

/* Large Desktop (1440px and up) */
/* @media screen and (min-width: 1441px) {
    .container {
        max-width: 1320px;
    }
} */

/* Desktop (1200px to 1440px) */
/* @media screen and (max-width: 1440px) {
    .container {
        width: 90%;
    }
    
    .nav-links {
        gap: 25px;
    }
} */

/* Laptop (992px to 1199px) */
/* @media screen and (max-width: 1199px) {
    .contact-info {
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .btn {
        padding: 10px 22px;
    }
} */

/* Tablet (768px to 991px) */
/* @media screen and (max-width: 991px) {
    .contact-info {
        gap: 10px;
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .logo img {
        height: 50px;
        width: 150px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 14px;
    }
} */

/* Mobile (767px and below) */
/* @media screen and (max-width: 767px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 15px;
    }
    
    .social-links {
        margin-top: 5px;
    }
    
    .main-nav, .header-buttons {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .logo-text {
        font-size: 20px;
    }
    .logo img {
        height: 40px;
        width: 60%;
    }

    .main-header {
        padding: 10px;
    }
    
    .main-header.menu-open .mobile-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .main-header.menu-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .main-header.menu-open .mobile-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-header.menu-open + .overlay {
        display: block;
    }
    
    .main-header.menu-open .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 270px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 25px 30px;
        z-index: 95;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-header.menu-open .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-header.menu-open .header-buttons {
        display: flex;
        flex-direction: column;
        position: absolute;
        bottom: 30px;
        left: 25px;
        right: 25px;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
} */

/* Small Mobile (480px and below) */
/* @media screen and (max-width: 480px) {
    .top-bar {
        padding: 12px 0;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .social-links span {
        display: none;
    }
    
    .container {
        width: 92%;
    }
    
    .logo img {
        height: 30px;
    }
} */ 
 /* ===== Main Header ===== */
 .main-header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: padding 0.3s ease;
  }
  
  /* Logo */
  .logo a {
    /* display: flex; */
    align-items: center;
    text-decoration: none;
  }
  
  .logo img {
    width: 200px;
    height: 40px;
    transition: height 0.3s ease;
  }
  .logotext{
    font-size: 16px;
    justify-content: end;
    color: #5458F7;
}


  /* .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-left: 8px;
  }
   */
  .highlight {
    color: #16a085;
  }
  
  /* Main Navigation */
  .main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    font-size: 20px;
  }
  
  .main-nav .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .main-nav .nav-links a:hover,
  .main-nav .nav-links a.active {
    color: #5458F7;
  }
  
  .main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #9C42F5;
    transition: width 0.3s ease;
  }
  
  .main-nav .nav-links a:hover::after,
  .main-nav .nav-links a.active::after {
    width: 100%;
  }
  
 /* Button Styles with Left-to-Right White Overlay Animation */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    /* background-color: #16a085; */
    background: linear-gradient(to right, #5458F7, #9C42F5);
    color: #fff;
}

.btn-primary:hover {
    background-color: #138a72;
}

.btn-secondary {
    /* background-color: #16a085; */
    background: linear-gradient(to right, #5458F7, #9C42F5);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #138a72;
}
  
  /* Mobile Toggle */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
  }
  
  .mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  
 .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Scrolled state for header */
   .main-header.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .main-header.scrolled .container {
    padding: 10px 0;
  }
  
  .main-header.scrolled .logo img {
    height: 40px;
  } 
  
  /* Overlay for mobile menu */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 990;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .overlay.active {
    display: block;
    opacity: 1;
  }
  
  /* Body when mobile menu is open */
  body.no-scroll {
    overflow: hidden;
  }
  
  /* ===== RESPONSIVE DESIGN ===== */
  
  /* Large Desktop (1200px and up) */
  @media screen and (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  
  /* Desktop (992px to 1199px) */
  @media screen and (max-width: 1199px) and (min-width: 992px) {
    .container {
      max-width: 960px;
    }
    
    .main-nav .nav-links {
      gap: 20px;
    }
    
    .contact-info {
      gap: 15px;
    }
  }
  
  /* Tablet (768px to 991px) */
  @media screen and (max-width: 991px) {
    .container {
      max-width: 720px;
    }
    
    /* Hide desktop navigation */
    .main-nav {
      display: none;
    }
    
    /* Show mobile toggle */
    .mobile-toggle {
      display: flex;
    }
    
    /* Mobile menu when active */
    .main-nav.active {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      width: 300px;
      height: 100vh;
      background-color: white;
      z-index: 1000;
      padding: 80px 30px 30px;
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
      overflow-y: auto;
      transform: translateX(0);
      transition: transform 0.3s ease;
    }
    
    .main-nav .nav-links {
      flex-direction: column;
      gap: 20px;
    }
    
    .main-nav .nav-links a {
      display: block;
      padding: 10px 0;
      font-size: 18px;
    }
    
    /* Hide the login button on tablet */
    .btn-primary {
        display: none;
      }
    .btn-secondary {
      display: none;
    }
    
    /* Adjust top bar for tablet */
    .top-bar {
      display: none;
    }
    
    /* Adjust mobile toggle when menu is open */
    .mobile-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }
  
  /* Small Tablet (576px to 767px) */
  @media screen and (max-width: 767px) {
    .container {
      max-width: 540px;
    }
    .logo img {
        width: 150px;
        height: 40px;
        transition: height 0.3s ease;
      }
    .header-buttons {
      display: none;
      /* gap: 50px; */
    }
    
    .main-header .container {
      padding: 12px 0;
    }
    
    .logo img {
      height: 40px;
    }
    
    .logo-text {
      font-size: 20px;
    }
    
    /* Add header buttons to mobile menu */
    .main-nav.active .header-buttons-mobile {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 30px;
    }
    
    .main-nav.active .header-buttons-mobile .btn {
      width: 100%;
      text-align: center;
    }
  }
  
  /* Mobile (up to 575px) */
  @media screen and (max-width: 575px) {
    .container {
      width: 95%;
    }
    
    .main-nav.active {
      width: 85%;
    }
    
    .logo img {
      height: 35px;
    }
    
    .logo-text {
      font-size: 18px;
    }
  }

/* End header section */

/* Start Banner section */

/* Slider container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
}

/* Content styling */
.content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.discount-banner {
    display: inline-block;
    background: linear-gradient(to right, #5457f74d, #9b42f542);
    padding: 10px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    
}

.title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cta-button {
    /* background-color: #00B7A3; */
    background: linear-gradient(to right, #5458F7, #9C42F5);
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover:before {
    left: 0;
}

.cta-button svg {
    margin-left: 10px;
    position: relative;
}



/* Overlay for better text visibility */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* Navigation dots */
.slider-nav {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slider-dot.active {
    opacity: 1;
    transform: scale(1.1);
    border-color: #009688 ;
}

/* Scroll to top button */
.scroll-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #00B7A3;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .title {
        font-size: 46px;
    }
    
    .slider-dot {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .content{
        max-width: 500px;
    }
    .title {
        font-size: 36px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        width: fit-content;
    }
    
    .slider-nav {
        right: 10px;
    }
    
    .slider-dot {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 32px;
    }
    
    .discount-banner {
        font-size: 12px;
        padding: 8px 15px;
        margin-bottom: 20px;
    }
    
    .description {
        margin-bottom: 20px;
    }
    
    .slider-nav {
        bottom: 20px;
        top: unset;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
    
    .slider-dot {
        width: 40px;
        height: 40px;
    }
    
    .slide {
        padding-bottom: 80px;
    }
}

/* End Banner section  */

/* Start about Section */


        /* Section container */
        .edcare-section {
            width: 100%;
            padding: 80px 0px; 
            position: relative;
            overflow: hidden;
        }

        .aboutcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        /* Left area with images */
        .left-area {
            width: 50%;
            position: relative;
            min-height: 450px;
            /* padding: 20px; */
        }

        .about-experience-badge {
            width: 30%;
            position: absolute;
            top: -30px;
            left: 0;
            background: linear-gradient(to right, #5458F7, #9C42F5);
            color: white;
            border-radius: 8px;
            font-weight: bold;
            z-index: 3;
            box-shadow: 0 4px 12px #9C42F5;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;

        }

        .about-experience-badge .about-number {
            font-size: 3.5rem;
            line-height: 1;
            display: inline-block;
        }

        .about-experience-badge .text {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.2;
            margin-top: 5px;
        }

        .main-image-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .students-image-container {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 57%;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            z-index: 2;
            overflow: hidden;
        }

        .students-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Right area with content */
        .right-area {
            width: 45%;
        }

        .platform-badge {
            display: inline-flex;
            align-items: center;
            background-color: #F5F7FA;
            padding: 8px 15px;
            border-radius: 50px;
            margin-bottom: 20px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1D2A38;
        }

        .platform-badge .icon {
            background-color: #E0F7FA;
            color: #00A78E;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        .section-title {
            font-size: 2.7rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #1D2A38;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .section-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #576777;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
            transition-delay: 0.2s;
        }

        /* Feature list */
        .feature-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .feature-item:nth-child(1) {
            transition-delay: 0.4s;
        }

        .feature-item:nth-child(2) {
            transition-delay: 0.6s;
        }

        .feature-item:nth-child(3) {
            transition-delay: 0.8s;
        }

        .feature-icon {
            color: #000000;
            font-weight: 700;
            margin-right: 10px;
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-text {
            font-size: 1rem;
            color: #151618;
            line-height: 1.5;
        }

   /* Additional feature boxes */
.feature-boxes {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.feature-box {
    display: flex;
    align-items: center;
    /* background-color: #F5F7FA; */
    padding: 15px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    cursor: pointer;
}

.feature-box:hover {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.feature-box:nth-child(1) {
    transition-delay: 1s;
}

.feature-box:nth-child(2) {
    transition-delay: 1.2s;
}

.feature-box-icon {
    color: #00A78E;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #E0F7FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-text {
    font-weight: 500;
    font-size: 1rem;
}

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #00A78E;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Animation classes */
        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .aboutcontainer {
                max-width: 992px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .left-area {
                min-height: 400px;
            }
        }

        @media (max-width: 992px) {
            .aboutcontainer {
                max-width: 768px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .left-area, .right-area {
                width: 48%;
            }
            
            .left-area {
                min-height: 350px;
            }
            
            .experience-badge {
                top: -20px;
                padding: 12px 20px;
            }
            
            .experience-badge .number {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .aboutcontainer {
                flex-direction: column;
                padding: 50px;
            }
            
            .left-area, .right-area {
                width: 100%;
            }
            
            .left-area {
                margin-bottom: 70px;
                min-height: 320px;
            }
            
            .students-image-container {
                width: 50%;
                bottom: -30px;
            }
            
            .feature-boxes {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .feature-box {
                flex-basis: calc(50% - 10px);
            }
        }

        @media (max-width: 576px) {
            .aboutcontainer {
                padding: 0px;
            }
            .edcare-section {
                padding: 60px 0;
            }
            
            .left-area {
                min-height: 280px;
                padding: 5px;
            }
            /* .right-area{
                padding: 0px 5px 0px 0px;
                
            }
             */
            .section-title {
                font-size: 1.8rem;
            }
            
            .about-experience-badge {
                padding: 5px;
            }
            
            .about-experience-badge .number {
                font-size: 1rem;
            }
            
            .about-experience-badge .text {
                font-size: 0.7rem;
            }
            
            .platform-badge {
                font-size: 0.8rem;
            }
            
            .feature-text, .feature-box-text {
                font-size: 0.9rem;
            }
            
            .section-description {
                font-size: 0.9rem;
            }
            
            .aboutbutton {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .main-image-container {
                width: 80%;
            }
            
            .students-image-container {
                width: 60%;
            }
            
            .feature-boxes {
                flex-direction: column;
            }
            
            .feature-box {
                width: 100%;
            }
        }
        
        @media (max-width: 400px) {
            .left-area {
                min-height: 250px;
            }
            
            .experience-badge .number {
                font-size: 2rem;
            }
            
            .experience-badge .text {
                font-size: 0.8rem;
            }
        }
   

        /* Start Statistics Section */

        statssection::before, statssection::after {
            content: '';
            position: absolute;
            height: 100%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, #0ab3a9 25%, #0ab3a9 75%, transparent);
            opacity: 0.3;
            z-index: -1;
        }

        statssection::before {
            left: 30%;
            top: -20%;
        }

        statssection::after {
            right: 35%;
            top: -30%;
        }

        .statssection{
            padding: 70px;
        }

        .statscontainer {
            max-width: 1200px;
            width: 100%;
        }

        .stats-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
        }

        .stat-card {
            background-color: white;
            border-radius: 20px;
            padding: 30px;
            flex: 1;
            /* min-width: 240px; */
            max-width: 280px;
            box-shadow: 0 10px 25px rgba(10, 179, 169, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 179, 169, 0.05) 0%, rgba(10, 179, 169, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(10, 179, 169, 0.15);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .icon-container {
            width: 70px;
            height: 70px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(10, 179, 169, 0.1);
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .stat-card:hover .icon-container {
            transform: scale(1.1) rotate(5deg);
        }

        .icon-container img {
            width: 32px;
            height: 32px;
            object-fit: contain;
            color: #0ab3a9;
        }

        .stat-number {
            font-size: 38px;
            font-weight: 700;
            color: #0ab3a9;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.05);
            color: #09a198;
        }

        .stat-title {
            font-size: 16px;
            color: #555;
            font-weight: 500;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .stat-card:hover .stat-title {
            color: #333;
        }

        /* Counter animation class */
        .counting {
            position: relative;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(to right, #5458F7, #9C42F5);
            /* background-color: #0ab3a9; */
            color: white;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(10, 179, 169, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(10, 179, 169, 0.4);
        }

        .scroll-top svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* Responsive Styles */
        
        @media screen and (max-width: 1100px) { /* Laptop */
            .stat-card {
                min-width: 220px;
                max-width: 260px;
                padding: 25px;
            }
            .stat-number {
                font-size: 34px;
            }
        }

        @media screen and (max-width: 768px) { /* Tablet */
            .stats-wrapper {
                gap: 20px;
            }
            .stat-card {
                min-width: 200px;
                max-width: 240px;
                padding: 20px;
            }
            .icon-container {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }
            .stat-number {
                font-size: 30px;
            }
            .stat-title {
                font-size: 14px;
            }
            .statssection{
                padding: 30px;
                margin-top: -100px;
            }
        }

        @media screen and (max-width: 576px) { /* Mobile */
            .stats-wrapper {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            .stat-card {
                min-width: 80%;
                max-width: 90%;
                padding: 20px;
            }
            .statssection{
                margin-top: 0px;
                padding: 20px;
            }
            
        }

        /* Start Course Section */

        /* Container styles */
        /* .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        } */

        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Delay for staggered animations */
        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        /* Popular courses badge */
        .badge-container {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        .container-section-courses{
            margin-bottom: -70px;

        }
        .badge {
            display: flex;
            align-items: center;
            background-color: #f8f9fa;
            border-radius: 50px;
            padding: 8px 16px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .badge-icon {
            background-color: #00b3b0;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        .badge-text {
            color: #333;
            font-weight: 500;
            font-size: 16px;
        }

        /* Heading styles */
        .heading {
            font-size: 42px;
            font-weight: 700;
            color: #1a2a3a;
            margin-bottom: 30px;
            line-height: 1.2;
            text-align: center;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #00b3b0;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            /* Laptop */
            .heading {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            /* Tablet */
            .heading {
                font-size: 32px;
            }
            .container {
                padding: 30px 15px;
            }
        }

        @media (max-width: 576px) {
            /* Mobile */
            .heading {
                font-size: 28px;
            }
            .badge-text {
                font-size: 16px;
            }
            .container {
                padding: 20px 10px;
            }
        }

        .coursecontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
          }
          .coursemain{
            justify-content: center;
            align-items: center;
          }
          .course-badge {
            display: inline-flex;
            /* align-items: center;
            justify-content: center; */
            background-color: #F5F7FA;
            padding: 8px 15px;
            border-radius: 50px;
            margin-bottom: 20px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1D2A38;
        }

        .course-badge .icon {
            background-color: #E0F7FA;
            color: #00A78E;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            /* align-items: center;
            justify-content: center; */
            margin-right: 10px;
        }

        /* .section-title {
            font-size: 2.7rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #1D2A38;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        } */
          .course-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            color: #1a2b3c;
            margin: 50px 0;
            padding: 0 15px;
          }
      
          .courses-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
          }
      
          .courses-section.visible {
            opacity: 1;
            transform: translateY(0);
          }
      
          .course-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 300px;
            max-width: 380px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
      
          .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          }
      
          .course-image {
            width: 100%;
            height: 50%;
            object-fit: cover;
          }
      
          .course-content {
            padding: 0px 25px 80px 20px;
          }
      
          .course-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a2b3c;
          }
      
          .course-features {
            list-style: none;
          }
      
          .course-features li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 16px;
            color: #666;
            line-height: 1.5;
          }
      
          .course-features li::before {
            content: "•";
            position: absolute;
            left: 5px;
            color: #666;
          }
      
          .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(to right, #5458F7, #9C42F5);
            /* background-color: #00a389; */
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
          }
      
          .scroll-to-top:hover {
            background-color: #008975;
          }
      
          /* Responsive adjustments */
          @media (max-width: 1024px) {
            .course-card {
              min-width: 280px;
            }
          }
      
          @media (max-width: 768px) {
            .course-card {
              min-width: 250px;
            }
            .section-title {
              font-size: 30px;
              margin: 30px 0;
            }
            .course-title{
                font-size: 22px; 
            }
          }
      
          @media (max-width: 480px) {
            .course-content{
                margin-top: -50px;
            }
            .course-card {
              min-width: 100%;
            }
            .section-title {
              font-size: 28px;
              margin: 20px 0;
            }
            .course-title{
                font-size: 18px; 
            }
            .coursecontainer{
                padding: 30px;
            }
            .course-features{
                font-size: 12px; 
            }
          }
  
        

        /* Start Hero Section */

        .hero-section {
            background-color: #5458F7;
            background: linear-gradient(to right, #5458F7, #9C42F5);
            /* background-image: radial-gradient(circle at 80% 50%, #0f8c7f 0%, #0a5c53 70%); */
            padding: 60px 0;
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .herocontainer {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .herobadge {
            display: inline-flex;
            align-items: center;
            background-color: white;
            color: #5458F7;
            padding: 6px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .badge svg {
            margin-right: 8px;
            color: #00A78E;
        }
        
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .hero-text {
            flex: 0 0 50%;
            padding-right: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .hero-text.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero-text h1 {
            font-size: 44px;
            line-height: 1.2;
            margin-bottom: 15px;
            font-weight: 700;
            color: #fff;
        }
        
        .hero-image {
            flex: 0 0 40%;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
            transition-delay: 0.3s;
        }
        
        .hero-image.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero-image img {
            max-width: 100%;
            position: relative;
            z-index: 2;
        }
        
        .circle-bg {
            position: absolute;
            width: 500px;
            height: 500px;
            background-color: #5458F7;
            border-radius: 50%;
            right: -120px;
            top: -100px;
            z-index: 1;
        }
        
        .hero-contact-items {
            display: flex;
            flex-direction: row;
            gap: 15px;
            margin-top: 30px;
        }
        
        .hero-contact-item {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hero-contact-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .hero-contact-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .hero-contact-icon svg {
            color: #fff;
        }
        
        .hero-contact-text {
            font-weight: 500;
            color: white;
        }
        
        .video-preview {
            position: relative;
            width: 200px;
            height: 140px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .video-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: #00c4b4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: #00c4b4;
            animation: pulse 2s infinite;
            z-index: -1;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            70% {
                transform: scale(1.5);
                opacity: 0;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .play-icon {
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent white;
            margin-left: 3px;
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #00A78E;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 40px;
            }
            
            .circle-bg {
                width: 400px;
                height: 400px;
                right: -100px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-text, .hero-image {
                flex: 0 0 100%;
                padding-right: 0;
            }
            
            .hero-text {
                margin-bottom: 40px;
            }
            
            .circle-bg {
                width: 350px;
                height: 350px;
                right: -50px;
                top: 150px;
            }
            
            .hero-section {
                padding: 40px 0;
                min-height: auto;
            }
        }
        
        @media (max-width: 480px) {
            .hero-section{
                margin-top: 50px;
            }
            .hero-text h1 {
                font-size: 32px;
            }
            
            .badge {
                font-size: 12px;
                padding: 5px 12px;
            }
            
            .circle-bg {
                width: 250px;
                height: 250px;
                right: -50px;
                top: 200px;
            }
            
            .contact-item {
                padding: 0px;
                flex-direction:row;
            }
            
            .contact-icon {
                width: 35px;
                height: 35px;
            }
            .hero-contact-text{
                font-size: 14px;
            }
        }

        /* Start Team Section */

        .teamcontainer {
            max-width: 1200px;
            margin: 0 auto;
            /* padding-top: -50px; */
            padding-bottom: 50px;
        }

        .team-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
           margin-top: 100px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 36px;
            color: #333;
        }

        .member-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 250px;
            text-align: center;
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(100px);
        }

        .member-card.appear {
            opacity: 1;
            transform: translateY(0);
        }

        .member-card:hover {
            transform: translateY(-10px);
        }

        .member-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .member-card:hover .member-image {
            filter: grayscale(0%);
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-info {
            padding: 20px;
        }

        .member-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .member-title {
            font-size: 16px;
            color: #00a69c;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon i {
            font-size: 16px;
            color: #666;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #00a69c;
            transform: translateY(-5px);
        }

        .social-icon:hover i {
            color: white;
        }

        /* .facebook:hover {
            background-color: #3b5998;
        }

        .twitter:hover {
            background-color: #1da1f2;
        }

        .pinterest:hover {
            background-color: #bd081c;
        }

        .instagram:hover {
            background-color: #c32aa3;
        } */

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .team-section {
                gap: 25px;
            }
            
            .member-card {
                width: 220px;
            }
        }

        @media (max-width: 992px) {
            .team-section {
                gap: 20px;
            }
            
            .member-card {
                width: 200px;
            }
            
            .member-image {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .team-section {
                gap: 30px;
            }
            .teamcontainer{
                padding: 20px;
                margin-top: -100px;
            }
            .member-card {
                width: 45%;
                min-width: 250px;
            }
        }

        @media (max-width: 576px) {
            .teamcontainer{
                padding: 20px;
                margin-top: -100px;
            }
            .member-card {
                width: 100%;
                max-width: 300px;
            }
        }

         /* Start Latest News section */

         .main-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        /* Container Layout */
        .left-container {
            flex: 1 1 55%;
        }

        .right-container {
            flex: 1 1 40%;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Article Card Styles */
        .article-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .article-card:hover {
            transform: translateY(-5px);
        }

        .article-img {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-card:hover .article-img img {
            transform: scale(1.05);
        }

        .article-content {
            padding: 20px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
            color: #777;
        }

        .article-meta .date {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }

        .article-meta .date i {
            margin-right: 5px;
            color: #10b99a;
        }

        .article-meta .category {
            display: flex;
            align-items: center;
            color: #10b99a;
        }

        .article-title {
            position: relative;
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: 600;
            color: #333;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .article-title::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: #10b99a;
            transition: width 0.3s ease;
        }

        .article-card:hover .article-title {
            color: #10b99a;
        }

        .article-card:hover .article-title::after {
            width: 100%;
        }

        .article-excerpt {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background: linear-gradient(to right, #5458F7, #9C42F5);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .read-more i {
            margin-left: 5px;
        }

        .read-more:hover {
            background-color: #0e9e85;
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #10b99a;
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: background-color 0.3s ease;
        }

        .back-to-top:hover {
            background-color: #0e9e85;
        }

        /* Adjust right container article styles */
        .right-container .article-img {
            height: 180px;
        }

        .right-container .article-title {
            font-size: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .main-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
                padding: 20px 50px 20px 50px;
            }
            
            .left-container,
            .right-container {
                flex: 1 1 100%;
            }
            
            .article-img {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .main-container {
                flex-direction: column;
                padding: 20px;
            }
            .article-img {
                height: 180px;
            }
            
            .article-content {
                padding: 15px;
            }
            
            .article-title {
                font-size: 18px;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .read-more {
                width: 40%;
                justify-content: center;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
        }
         
        /* Start Contact Section */

        .contact-container {
            max-width: 1200px;
            margin: 40px auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            animation: fadeIn 1s ease-in;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Contact Form Section */
        .contact-form-section {
            flex: 1 1 600px;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            animation: slideInLeft 1s ease-out;
        }

        .contact-title {
            font-size: 32px;
            color: #222;
            margin-bottom: 10px;
        }

        .contact-subtitle {
            color: #666;
            margin-bottom: 30px;
        }

        .form-row {
            display: flex;
            gap: 80px;
            margin-bottom: 20px;
        }

        .form-group {
            position: relative;
            width: 100%;
            margin-bottom: 20px;
        }

        .form-group.with-icon input,
        .form-group.with-icon textarea {
            padding-left: 45px;
        }

        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 1px solid #e1e5ee;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f9fafc;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4a6cfa;
            box-shadow: 0 0 0 3px rgba(74, 108, 250, 0.1);
            background-color: #fff;
        }

        input::placeholder, textarea::placeholder {
            color: #a0a8b9;
        }

        textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-icon {
            position: absolute;
            left: 15px;
            top: 16px;
            color: #a0a8b9;
        }

        select {
            appearance: none;
            background: #f9fafc url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23a0a8b9"/></svg>') no-repeat;
            background-position: calc(100% - 15px) center;
            padding-right: 40px;
            cursor: pointer;
        }

        .submit-btn {
            background-color: #4a6cfa;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #3a5cf0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 108, 250, 0.3);
        }

        .submit-btn:active {
            transform: translateY(1px);
        }

        /* Error styles */
        .error-message {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        input.error, textarea.error, select.error {
            border-color: #e74c3c;
            background-color: #fdf3f2;
        }

        /* Office Information Section */
        .office-info-section {
            flex: 1 1 400px;
            background: linear-gradient(to right, #9C42F5, #5458F7);
            padding: 40px;
            border-radius: 12px;
            color: white;
            box-shadow: 0 5px 20px rgba(74, 108, 250, 0.2);
            animation: slideInRight 1s ease-out;
        }

        .office-title {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .office-subtitle {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            padding: 15px;
            border-radius: 8px;
        }

        .info-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .info-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .info-title {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .info-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }

        /* Success Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
            animation: scaleIn 0.3s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .success-icon {
            font-size: 50px;
            color: #2ecc71;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 24px;
            margin-bottom: 10px;
            color: #222;
        }

        .modal-text {
            color: #666;
            margin-bottom: 25px;
        }

        .modal-btn {
            background-color: #4a6cfa;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn:hover {
            background-color: #3a5cf0;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .contact-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .contact-form-section, .office-info-section {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            .contact-title, .office-title {
                font-size: 24px;
            }
            .form-row{
                gap: 0px;
            }
            
            .contact-subtitle, .office-subtitle {
                font-size: 14px;
            }
            
            .info-item {
                gap: 15px;
            }
            
            .info-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .info-title {
                font-size: 16px;
            }
            
            .info-text {
                font-size: 14px;
            }
        }
        /* START GALLERY SECTION */

        .gallery{
            top: 100px;
            background: linear-gradient(to right, #5458F7, #9C42F5);
            /* background-color: #142c2c; */
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            /* min-height: 100vh; */
        }

        .gallery-container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            gap: 30px;
            padding: 20px 0;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
        }

        .gallery-container::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome, Safari and Opera */
        }

        .gallery-item {
            flex: 0 0 auto;
            width: 170px;
            height: 170px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #5457f75d, #9b42f557);
            /* background-color: rgba(38, 166, 154, 0.8); */
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .instagram-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .instagram-icon svg {
            width: 24px;
            height: 24px;
        }

        /* The first item already has the overlay visible */
        /* .gallery-item:first-child .overlay {
            opacity: 1;
        } */

        /* Responsive Design */
        @media (max-width: 1200px) {
            .gallery-item {
                width: 160px;
                height: 160px;
            }
        }

        @media (max-width: 992px) {
            .gallery-item {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            .gallery-container {
                gap: 10px;
            }
            .gallery-item {
                width: 140px;
                height: 140px;
            }
        }

        @media (max-width: 576px) {
            .gallery-item {
                width: 120px;
                height: 120px;
            }
            .instagram-icon {
                width: 30px;
                height: 30px;
            }
            .instagram-icon svg {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 480px) {
            .gallery-item {
                width: 100px;
                height: 100px;
            }
        }

        /* Start Service Section */

        .service{
            background-color: #f2f4f7;
            /* margin-top: 50px; */
            padding-top: 50px;
        }

        .service-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 50px;
            padding-bottom: 50px;
            margin-top: -50px;
        }

        .services-container {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .service-image-container {
            flex: 1;
            min-width: 300px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .service-card {
            background: linear-gradient(to right, #5458F7, #9C42F5);
            color: white;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            background-color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        /* .service-icon {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            position: relative;
        } */
        
        .service-card:hover .service-icon {
            animation: bounceAndGlow 0.8s ease;
        }
        
        .service-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 169, 157, 0);
            border-radius: 50%;
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon::after {
            animation: ripple 1.5s ease-out infinite;
        }
        
        @keyframes bounceAndGlow {
            0%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        @keyframes ripple {
            0% {
                transform: scale(1);
                background-color: rgba(0, 169, 157, 0.3);
            }
            100% {
                transform: scale(1.8);
                background-color: rgba(0, 169, 157, 0);
            }
        }
        .service-icon img {
            width: 40px;
            height: 40px;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-content p {
            font-size: 14px;
            line-height: 1.4;
        }

        .students-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .service-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .service-play-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.8);
            animation: pulse 2s infinite;
            z-index: -1;
        }

        .service-play-button:hover::before {
            animation: smoke 2s infinite;
        }

        .service-play-button svg {
            width: 30px;
            height: 30px;
            fill: #00a99d;
            margin-left: 5px;
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #00a99d;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            background-color: #008a80;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes smoke {
            0% {
                transform: scale(1);
                opacity: 0.8;
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
            50% {
                transform: scale(1.5);
                opacity: 0.4;
                box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            }
            100% {
                transform: scale(1);
                opacity: 0.8;
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .service-container {
                flex-direction: column;
            }
            
            .services-container, .service-image-container {
                width: 100%;
            }
            
            .service-image-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .service-container{
                padding: 30px;
            }
            .service-card {
                padding: 15px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }
            
            .service-content h3 {
                font-size: 18px;
            }
            
            .service-image-container {
                height: 350px;
            }
        }

        @media (max-width: 576px) {
            .service{
                padding: 0px;
            }
            .service-container{
                padding: 20px;
                margin-top: 5px;
            }
            .service-icon {
                width: 50px;
                height: 50px;
                margin-right: 15px;
            }
            
            
            .service-icon img {
                width: 30px;
                height: 30px;
            }
            
            .service-content h3 {
                font-size: 16px;
            }
            
            .service-content p {
                font-size: 12px;
            }
            
            .service-image-container {
                height: 300px;
            }
            
            .service-play-button {
                width: 60px;
                height: 60px;
            }
        }

        /* Start Testimonial Section */

        .testimonial-section {
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        /* .badge {
            display: inline-flex;
            align-items: center;
            background-color: white;
            color: #1a2e2b;
            padding: 6px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .badge.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .badge svg {
            margin-right: 8px;
            color: #00A78E;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
            transition-delay: 0.2s;
        }
        
        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }
         */
        .testimonial-carousel {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            padding: 0 20px;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-slide {
            flex: 0 0 calc(50% - 20px);
            margin: 0 10px;
            min-width: calc(50% - 20px);
            background-color: rgba(235, 253, 252, 0.95);
            border-radius: 12px;
            padding: 30px;
            text-align: left;
            position: relative;
            color: #1a2e2b;
        }
        
        .testimonial-quote {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            font-size: 16px;
            color: #1a2e2b;
        }
        
        .author-position {
            font-size: 14px;
            color: #00A78E;
        }
        
        .quote-icon {
            position: absolute;
            right: 20px;
            bottom: 20px;
            color: #00A78E;
            opacity: 0.7;
            font-size: 40px;
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #00A78E;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background-color: #00A78E;
            transform: scale(1.2);
        }
        
        .carousel-nav {
            display: flex;
            gap: 15px;
            margin-left: 20px;
        }
        
        .nav-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 32px;
            }
            
            .testimonial-slide {
                padding: 25px;
            }
        }
        
        @media (max-width: 768px) {
            /* On mobile, show only one testimonial at a time */
            .testimonial-slide {
                flex: 0 0 calc(100% - 20px);
                min-width: calc(100% - 20px);
            }
            
            .section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }
            .testimonial-carousel{
                padding: 0px  30px 0px 30px;
            }
        }
        
        @media (max-width: 480px) {
            .testimonial-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 24px;
                margin-bottom: 30px;
            }
            
            .badge {
                font-size: 12px;
                padding: 5px 12px;
            }
            
            .testimonial-slide {
                padding: 20px;
            }
            
            .testimonial-quote {
                font-size: 14px;
            }
            
            .author-name {
                font-size: 14px;
            }
            
            .author-position {
                font-size: 12px;
            }
            .testimonial-carousel{
                padding: 0px ;
            }
        }
        /* START FOOTER SECTION */

        .footer {
            background: linear-gradient(to right, #5458F7, #9C42F5);
            /* background-color: #153a37; */
            color: white;
             padding: 20px; 
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            
             display: grid; 
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        @media (min-width: 576px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-section-contact-info{
            flex-direction: column;
        }
        .footer-section h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 50px;
            background-color: white;
        }

        .footer-contact-info p {
            color: #c5c5c5;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .footer-contact-phone {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: bold;
        }

        .footer-contact-phone svg {
            margin-right: 10px;
        }

        .footer-contact-email {
            margin-bottom: 20px;
            color: white;
        }

        .footer-social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social-icons a {
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        .footer-social-icons a:hover {
            /* background-color: #00a69c; */
            transform: translateY(-5px);
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: 0.3s;
        }

        .footer-links a svg {
            margin-right: 10px;
        }

        .footer-links a:hover {
            color: #000000;
        }

        .active-link {
            color: #000000 !important;
        }

        .footer-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .post-image {
            width: 60px;
            height: 60px;
            border-radius: 5px;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-content h4 {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .post-content .post-date {
            display: flex;
            align-items: center;
            color: #000000;
            font-size: 12px;
        }

        .post-content .post-date svg {
            margin-right: 5px;
        }


        /* Start Career Section */
        :root {
            --primary: #7367f0;
            --secondary: #6558F5;
            --light: #f8f9fa;
            --dark: #343a40;
            --text: #4b4b4b;
            --white: #ffffff;
            --gray: #6c757d;
        }

        .career-section {
            padding: 80px 0;
            background-color: #f9f9ff;
            overflow: hidden;
        }
        
        .careercontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            opacity: 0;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .career-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .career-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .career-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .career-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background-color: var(--primary);
            transition: height 0.3s ease;
        }
        
        .career-card:hover:before {
            height: 100%;
        }
        
        .career-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .career-card:hover .career-icon {
            transform: scale(1.2);
        }
        
        .career-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .career-description {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .career-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .career-detail {
            display: flex;
            align-items: center;
            color: var(--gray);
        }
        
        .career-detail i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        .career-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }
        
        .career-btn:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        .load-more {
            text-align: center;
            margin-top: 50px;
            opacity: 0;
        }
        
        .load-more-btn {
            display: inline-block;
            padding: 12px 35px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            cursor: pointer;
        }
        
        .load-more-btn:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .career-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .career-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .career-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .career-card {
                padding: 25px;
            }
            
            .career-icon {
                font-size: 2rem;
            }
            
            .career-title {
                font-size: 1.3rem;
            }
        }

        /* Start Join our team Section */

       
        /* Global Styles */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            padding: 20px;
            position: relative;
            min-height: 100vh;
        } */

        .joincontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            text-align: center;
        }

        /* Header Styles */
        .joinheader {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: relative;
        }

        .joinheader-content {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        /* Join Now Button Styles */
        .join-now {
            position: absolute;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #6e57ff, #8a4fff);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(142, 87, 255, 0.3);
            z-index: 100;
            overflow: hidden;
        }

        .join-now:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .join-now:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(142, 87, 255, 0.4);
        }

        .join-now:hover:before {
            left: 100%;
            transition: 0.5s;
        }

        .join-now:active {
            transform: translateY(0);
            box-shadow: 0 4px 10px rgba(142, 87, 255, 0.3);
        }

        /* Modal Styles */
        .joinmodal-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .joinmodal-container.joinactive {
            display: flex;
            opacity: 1;
        }

        .joinmodal {
            background-color: white;
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            position: relative;
        }

        .joinmodal-container.joinactive .joinmodal {
            transform: scale(1);
        }

        .joinmodal-header {
            background: linear-gradient(135deg, #6e57ff, #8a4fff);
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .joinmodal-title {
            font-size: 22px;
            margin: 0;
        }

        .joinclose-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 20px;
            color: white;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .joinclose-btn:hover {
            transform: rotate(90deg);
        }

        .joinmodal-body {
            padding: 30px 50px 30px 20px;
            max-height: 70vh;
            overflow-y: auto;
        }

        /* Form Styles */
        .joinform-group {
            margin-bottom: 25px;
            position: relative;
        }

        .joinform-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .joinform-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .joinform-control:focus {
            border-color: #6e57ff;
            box-shadow: 0 0 0 3px rgba(142, 87, 255, 0.2);
            outline: none;
        }

        .joinerror-message {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        .joinerror-message.joinshow {
            display: block;
            animation: joinshakeX 0.5s;
        }

        .joinform-control.joinerror {
            border-color: #e74c3c;
        }

        .joinservices-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .joinservice-option {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .joinservice-option input {
            margin-right: 10px;
        }

        textarea.joinform-control {
            min-height: 120px;
            resize: vertical;
        }

        .joinsubmit-btn {
            background: linear-gradient(135deg, #6e57ff, #8a4fff);
            color: white;
            border: none;
            padding: 14px 28px;
            width: 100%;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .joinsubmit-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .joinsubmit-btn:hover:before {
            left: 100%;
        }

        .joinsubmit-btn:hover {
            background: linear-gradient(135deg, #5e47df, #7a3fee);
            box-shadow: 0 5px 15px rgba(142, 87, 255, 0.3);
        }

        /* Login Form Styles */
        .joinlogin-form {
            display: none;
        }

        .joinlogin-form.joinactive {
            display: block;
        }

        .joinregistration-form {
            display: none;
        }

        .joinregistration-form.joinactive {
            display: block;
        }

        /* .jointoggle-form {
            text-align: center;
            margin-top: 20px;
        }

        .jointoggle-form a {
            color: #6e57ff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .jointoggle-form a:hover {
            color: #8a4fff;
            text-decoration: underline;
        } */

        /* Success Message */
        .joinsuccess-message {
            display: none;
            text-align: center;
            padding: 30px;
        }

        .joinsuccess-message.joinactive {
            display: block;
            animation: joinfadeIn 1s;
        }

        .joinsuccess-icon {
            font-size: 60px;
            color: #2ecc71;
            margin-bottom: 20px;
        }

        /* Animations */
        @keyframes joinfadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes joinshakeX {
            0%, 100% {
                transform: translateX(0);
            }
            10%, 30%, 50%, 70%, 90% {
                transform: translateX(-5px);
            }
            20%, 40%, 60%, 80% {
                transform: translateX(5px);
            }
        }

        @keyframes joinpulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .joinservices-container {
                grid-template-columns: 1fr;
            }

            .join-now {
                padding: 10px 20px;
                font-size: 14px;
                right: 20px;
                top: 20px;
            }

            .joinmodal-body {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .join-now {
                padding: 8px 16px;
                font-size: 13px;
                right: 15px;
                top: 15px;
            }

            .joinmodal-header {
                padding: 15px;
            }

            .joinmodal-title {
                font-size: 18px;
            }

            .joinmodal-body {
                padding: 15px;
            }

            .joinform-control {
                padding: 10px;
                font-size: 14px;
            }

            .joinsubmit-btn {
                padding: 12px;
                font-size: 14px;
            }
        }
    

        /* Start Student registration */

       
        :root {
            --primary-color: #6c5ce7;
            --secondary-color: #a29bfe;
            --accent-color: #fd79a8;
            --dark-color: #2d3436;
            --light-color: #f5f6fa;
            --success-color: #00b894;
            --error-color: #d63031;
            --warning-color: #fdcb6e;
        }

       

        .register-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Register Button Styles */
        .register-btn-container {
            text-align: center;
            margin: 40px 0;
        }

        .register-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .register-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            transition: all 0.4s ease-out;
            z-index: -1;
        }

        .register-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
        }

        .register-btn:hover:before {
            left: 0;
        }

        .register-btn:active {
            transform: translateY(0);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
        }
        
        /* Modal Styles */
        .register-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            overflow-y: auto;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .register-modal.register-show {
            display: block;
            opacity: 1;
        }

        .register-modal-content {
            background-color: white;
            width: 90%;
            max-width: 600px;
            margin: 50px auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(-50px);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .register-modal.register-show .register-modal-content {
            transform: translateY(0);
        }

        .register-modal-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .register-modal-title {
            font-size: 24px;
            margin: 0;
            font-weight: 600;
        }

        .register-close-modal {
            position: absolute;
            right: 20px;
            top: 20px;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .register-close-modal:hover {
            transform: rotate(90deg);
        }

        .register-modal-body {
            padding: 30px 50px;
        }

        /* Form Styles */
        .register-form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .register-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .register-form-control {
            width: 100%;
            padding: 15px;
            font-size: 16px;
            border-radius: 8px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
            background-color: #f7f7f7;
        }

        .register-form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
            background-color: white;
        }

        .register-form-group .register-error-message {
            color: var(--error-color);
            font-size: 14px;
            margin-top: 5px;
            display: none;
            animation: register-shake 0.5s ease-in-out;
        }

        @keyframes register-shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }

        .register-form-control.register-error {
            border-color: var(--error-color);
        }

        .register-form-control.register-success {
            border-color: var(--success-color);
        }

        select.register-form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d3436' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 20px;
        }

        .register-btn-submit {
            display: block;
            width: 100%;
            padding: 15px;
            border: none;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .register-btn-submit:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            transition: all 0.4s ease-out;
            z-index: -1;
        }

        .register-btn-submit:hover:before {
            left: 0;
        }

        .register-btn-submit:hover {
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
        }

        /* Animations */
        @keyframes register-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes register-slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .register-form-group {
            animation: register-slideUp 0.5s ease forwards;
            opacity: 0;
        }

        .register-form-group:nth-child(1) { animation-delay: 0.1s; }
        .register-form-group:nth-child(2) { animation-delay: 0.2s; }
        .register-form-group:nth-child(3) { animation-delay: 0.3s; }
        .register-form-group:nth-child(4) { animation-delay: 0.4s; }
        .register-form-group:nth-child(5) { animation-delay: 0.5s; }
        .register-form-group:nth-child(6) { animation-delay: 0.6s; }

        /* Success Message */
        .register-success-message {
            display: none;
            text-align: center;
            padding: 30px;
        }

        .register-success-icon {
            font-size: 60px;
            color: var(--success-color);
            margin-bottom: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .register-modal-content {
                width: 95%;
                margin: 30px auto;
            }
            
            .register-modal-title {
                font-size: 20px;
            }
            
            .register-form-control {
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .register-btn {
                padding: 12px 30px;
                font-size: 16px;
            }
            
            .register-modal-header {
                padding: 15px;
            }
            
            .register-modal-body {
                padding: 20px;
            }
            
            .register-form-group {
                margin-bottom: 15px;
            }
            
            .register-form-label {
                font-size: 14px;
            }
            
            .register-form-control {
                font-size: 14px;
                padding: 10px;
            }
            
            .register-btn-submit {
                padding: 12px;
                font-size: 16px;
            }
        }
    