/********** Template CSS **********/

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  
}

footer {
    margin-bottom: 0;
    padding-bottom: 0;
}
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

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


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

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


/*** Button ***/
.btn {
    background:  #6b04a3;
    color: white;
    border: none;
    
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: #bc038e;
    transform: scale(1.05);
    color: white;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

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

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

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

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


/*** Navbar ***/

.nav-item {
    color: #bc038e !important;
}
.nav-item:hover{
    color: #610095 !important;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: #610095 !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: #610095 ;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #610095 ;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}
.text-primary{
    color: #bc038e !important;
}


/*** Service ***/
.service-item {
    background: #ffffff;
    transition: 0.5s;
    box-shadow: 2px 6px 10px rgba(188, 3, 142, 0.2); /* Soft shadow with bc038e */
    border: 2px solid #610095 ;
}

.service-item:hover {
    margin-top: -10px;
    background:#610095 ;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

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


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #610095 !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #610095;
    border-color: #610095;
}


footer.modern-footer {
    background: #610095 ;
    color: #fff;
    padding: 4rem 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFA62B;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #e9d5ff;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icons a {
    font-size: 1.5rem;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .newsletter-form input {
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
  }
  
  .newsletter-form button {
    padding: 0.7rem;
    background-color: #fff;
    color: #9333ea;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #e9d5ff;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    gap: 1rem;
    color: white !important;
  }
  .copyright {
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

  
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #fff;
    color: #9333ea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .back-to-top:hover {
    background-color: #e9d5ff;
  }
  
  @media (max-width: 768px) {
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
    }
  }
.navbar-shrink {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
  }
  
  .navbar-shrink .navbar-brand {
    font-size: 1.5em;
  }
  
  .navbar-shrink .nav-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  .navbar-shrink .btn {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  .blog-item img {
    width: 100%; /* Ensures full width */
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image maintains its aspect ratio without distortion */
    border-radius: 8px; /* Optional: Adds rounded corners */
}



/* common card */

.common-section {
    padding: 80px 0;
    
}

.common-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.common-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.common-section .has-card {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.common-section .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.common-card-1 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.204);
}
.common-card-2 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.204);
}.common-card-3 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 70px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.204);
}.common-card-4 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;

    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.204);
}

.common-card:hover {
    transform: translateY(-5px);
}

.common-card figure {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.common-card img {
    width: 100%;
    height: auto;
}

.info-cards h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #610095 ;
}

.info-cards p {
    font-size: 14px;
    color: #666;
}

.content {
    padding-left: 50px;
    margin-top: 115px;
}

.sub-title {
    color: #bc038e;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.common-title {
    font-size: 50px;
    color: #610095;
    margin-bottom: 30px;
    font-weight: 800;
}

.content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 19px;
}


.common-section .has-card {
    position: relative; /* Needed for absolute positioning of the circle */
}

.common-section .has-card::before {
    content: "";
    position: absolute;
    width: 600px; /* Adjust size as needed */
    height: 600px;
    background: linear-gradient(135deg, #6d00a5 0%, #9a42f4 50%, #b875ff 100%);

    
    border-radius: 50%;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: -1 ; /* Ensure it's behind the cards */
}

@media (max-width: 991px) { /* Tablets and below */
    .common-section {
        padding: 50px 0;
    }

    .common-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }

    .common-section .has-card {
        flex-direction: column; /* Stack the cards */
        align-items: center;
    }

    .common-section .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }

    .common-card-1,
    .common-card-2,
    .common-card-3,
    .common-card-4 {
        width: 90%;
        margin: 15px auto;
    }

    .common-card-3 {
        margin-top: 0;
    }

    .content {
        padding-left: 0;
        text-align: center;
        margin-top: 50px;
    }

    .common-title {
        font-size: 35px;
    }

    .content p {
        font-size: 16px;
    }

    /* Remove sphere shape in mobile */
    .common-section .has-card::before {
        display: none;
    }
}

@media (max-width: 575px) { /* Mobile screens */
    .common-section {
        padding: 30px 0;
    }

    .common-card-1,
    .common-card-2,
    .common-card-3,
    .common-card-4 {
        width: 100%;
        padding: 20px;
    }

    .common-title {
        font-size: 28px;
    }

    .sub-title {
        font-size: 16px;
    }

    .content p {
        font-size: 14px;
    }
}


.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    /* background-color: #25d366; */
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}



/* shapes */

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(204, 114, 253, 0.533);
  
  }
  
  .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
  }
  .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -3%;
  }
  
  
  .shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 63%;
  }
  .shape-4 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 5%;
  }
  @media (max-width: 768px) {
    .shape {
        opacity: 0.5; 
    }

  }

  .error {
    color: red;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* enroll now */
/* enroll now */
.unique-banner-section {
    background: linear-gradient(135deg, #610095, #8a2be2);
    padding: 40px 20px;
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.unique-banner-section .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.unique-banner-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.unique-banner-section p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #f0e6ff;
}

.unique-banner-section .button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.unique-banner-section h1 {
    margin: 0;
    font-size: 2rem !important;
    color: white;
    font-weight: 800 !important;
}

.unique-banner-section .cta-button {
    background: #bc038e;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-top: 5px !important;
}

.unique-banner-section .cta-button:hover {
    border: 2px solid #FFA62B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(188, 3, 142, 0.3);
}

@media (min-width: 768px) {
    .unique-banner-section {
        padding: 60px 20px;
    }

    .unique-banner-section .banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .unique-banner-section h2 {
        font-size: 2.5rem;
    }

    .unique-banner-section p {
        font-size: 1.2rem;
    }

    .unique-banner-section h1 {
        font-size: 2rem;
    }

    .unique-banner-section .cta-button {
        padding: 12px 30px;
    }
}
/* popup */
/* Popup Modal Styles */
.popup-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-content h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #610095;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #610095;
}

.close-btn:hover {
    color: #bc038e;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #bc038e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #610095;
}


.feedback-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.neo{
    font-size: 18px !important;
}




  /* Add these styles to your CSS */
.position-relative {
  position: relative;
  overflow: hidden;
}


.logo {
    height: 60px; /* Default size */
    max-height: 100px;
    width: auto; /* Changed to auto to maintain aspect ratio */
    margin-left: 20px;
    }
    @media (max-width: 992px) {
    .logo {
    height: 55px;
    }
    /* Show navbar when active */
    .navbar-collapse.show {
    display: block !important;
    }
    }
    @media (max-width: 768px) {
    .logo {
    height: 50px;
    }
    }
    @media (max-width: 480px) {
    .logo {
    height: 45px;
    }
    }
    .dropdown-menu {
    left: auto !important;
    right: 0 !important;
    }
    .dropdown-item {
    color: #610095 !important;
    }
    /* Added for dropdown toggle without Bootstrap JS */
    .dropdown-menu.show {
    display: block;
    }
    @media (max-width: 768px) {
    .dropdown-menu {
    position: static !important;
    width: 100%;
    background-color: #fff;
    border: none;
    }
    .dropdown-menu .row {
    flex-direction: column;
    }
    .dropdown-menu .col-4 {
    width: 100%;
    border-right: none !important; /* Remove borders between columns */
    padding-bottom: 10px;
    }
    .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 10px 15px;
    }
    }
    /* Topbar Styling */
    .topbar {
    width: 100%;
    height: 40px; /* Reduced fixed height */
    font-size: 14px;
    font-weight: 500;
    z-index: 1050;
    background: linear-gradient(135deg, #6d00a5 0%, #8833dd 50%, #6d00a5 100%) !important;
    color: #fff !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    }
    .topbar .container-fluid {
    height: 100%;
    padding: 0 15px;
    }
    .email, .phone {
    white-space: nowrap;
    flex-shrink: 0;
    }
    /* Marquee container to control width */
    .marquee-container {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
    margin: 0 10px;
    }
    marquee {
    color: #fff;
    font-weight: 500;
    }
    /* Adjust navbar position */
    .navbar {
    margin-top: 38px; /* Match topbar height */
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
    .topbar {
    font-size: 12px;
    height: auto; /* Allow content to define height */
    padding: 5px 10px;
    flex-wrap: wrap; /* Prevent overflow */
    }
    marquee{
    display: none;
    }
    .navbar {
    margin-top: 24px; /* Match topbar height */
    }
    }
    @media (max-width: 400px) {
    .topbar {
    font-size: 10px; /* Reduce font size for smaller screens */
    padding: 4px 8px; /* Adjust padding */
    }
    .navbar {
    margin-top: 24px; /* Match topbar height */
    }
    marquee{
    display: none;
    }
    }

    .topbar .email,
    .topbar .phone,
    .topbar .marquee-container marquee {
        font-size: 18px; /* increase to desired size */
   
    }
    @media (max-width: 768px) {
        .topbar .email,
        .topbar .phone,
        .topbar .marquee-container marquee {
            font-size: 12px !important;
          
        }
    }
    






    /* AI Course Highlights - Unique Classes */
.ai-course-highlights-section {
  padding: 80px 0;
  background: white;
  overflow: hidden;
}

.ai-course-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ai-course-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
  animation: ai-course-fadeInDown 0.8s ease-out;
}

.ai-course-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6b04a3, #2c3e50);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Highlights grid */
.ai-course-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Highlight cards */
.ai-course-highlight-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(109, 21, 225, 0.363);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  animation: ai-course-fadeInUp 0.8s ease-out forwards;
  animation-delay: calc(0.1s * var(--i, 0));
}

.ai-course-highlight-card:nth-child(1) {
  --i: 1;
}
.ai-course-highlight-card:nth-child(2) {
  --i: 2;
}
.ai-course-highlight-card:nth-child(3) {
  --i: 3;
}
.ai-course-highlight-card:nth-child(4) {
  --i: 4;
}
.ai-course-highlight-card:nth-child(5) {
  --i: 5;
}

.ai-course-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ai-course-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6d00a5 0%, #8833dd 50%, #6d00a5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.ai-course-highlight-card:hover .ai-course-icon-wrapper {
  transform: rotate(360deg);
}

.ai-course-icon-wrapper i {
  font-size: 28px;
  color: white;
}

.ai-course-content-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.ai-course-content-box p {
  color: #666;
  font-size: 1rem;
}

/* Course description */
.ai-course-description-panel {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: linear-gradient(135deg, #f5f7fa 0%, #ebe4eb 100%);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(109, 21, 225, 0.363);
  animation: ai-course-fadeIn 1s ease-out 0.5s forwards;
  opacity: 0;
}

.ai-course-description-panel p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Animations with unique names */
@keyframes ai-course-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ai-course-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ai-course-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ai-course-section-title {
    font-size: 2rem;
  }

  .ai-course-highlights-grid {
    grid-template-columns: 1fr;
  }

  .ai-course-highlight-card {
    padding: 25px;
  }

  .ai-course-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .ai-course-icon-wrapper i {
    font-size: 24px;
  }

  .ai-course-content-box h3 {
    font-size: 1.2rem;
  }

  .ai-course-description-panel p {
    font-size: 1rem;
  }
    .ai-course-description-pane-obj p {
    font-size: 1rem;
  }
}


/* Unique class prefix "sti_" to avoid conflicts */
.sti_training_section {
  padding: 60px 20px;
  background-color: white ;

}

.sti_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.sti_column {
  flex: 1;
  min-width: 300px;
}

.sti_info_column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sti_heading {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sti_description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.sti_highlight {
  font-size: 18px;
  line-height: 1.6;
  color: #8833dd;
  border-left: 4px solid #610095;
  padding-left: 15px;
  margin-top: 20px;
}

.sti_subheading {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.sti_course_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.sti_course_item {
  margin-bottom: 10px;
}

.sti_course_card {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #34495e;
  border-left: 3px solid #6b04a3;
}

.sti_course_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sti_container {
    flex-direction: column;
  }
  
  .sti_column {
    width: 100%;
  }
  
  .sti_heading {
    font-size: 2rem;
  }
  
  .sti_course_list {
    grid-template-columns: 1fr;
  }
}


/* Unique class prefix "cti_" (Chennai Training Institute) to avoid conflicts */
.cti_benefits_section {
  padding: 80px 20px;
  background-color: #ffffff;
  background-image: linear-gradient(to bottom right, rgba(240, 244, 248, 0.8), rgba(255, 255, 255, 0.8));
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.cti_benefits_container {
  max-width: 1200px;
  margin: 0 auto;
}

.cti_benefits_header {
  text-align: center;
  margin-bottom: 60px;
}

.cti_benefits_title {
  font-size: 2.8rem;
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 700;
}

.cti_benefits_separator {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, #6b04a3, #2c3e50);
  margin: 0 auto;
  border-radius: 2px;
}

.cti_benefits_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.cti_benefit_card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #6b04a3;

}

.cti_benefit_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #bc038e;
}

.cti_benefit_card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cti_benefit_card:hover:before {
  opacity: 1;
}

.cti_benefit_icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  background-color: #f0f7ff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.cti_benefit_title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.cti_benefit_title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #6b04a3;
  border-radius: 2px;
}

.cti_benefit_text {
  color: #5a6a7a;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.cti_cta_container {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.cti_cta_container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
  z-index: 0;
}

.cti_cta_title {
  font-size: 2.2rem;
  color: #333333;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.cti_cta_text {
  color: #2b2b2b;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.cti_cta_highlight {
  color: #6b04a3;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .cti_benefits_grid {
    grid-template-columns: 1fr;
  }
  
  .cti_benefits_title {
    font-size: 2.2rem;
  }
  
  .cti_cta_container {
    padding: 30px 20px;
  }
  
  .cti_cta_title {
    font-size: 1.8rem;
  }
  
  .cti_benefit_card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .cti_benefits_section {
    padding: 50px 15px;
  }
  
  .cti_benefits_title {
    font-size: 1.8rem;
  }
  
  .cti_cta_title {
    font-size: 1.6rem;
  }
  
  .cti_cta_text, .cti_cta_highlight {
    font-size: 1rem;
  }
  
  .cti_cta_button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}


/* Owl Carousel custom styling */
.cti_benefits_carousel .owl-stage {
  padding: 20px 0;
}

.cti_benefits_carousel .owl-item {
  transition: all 0.3s ease;
}

.cti_benefits_carousel .owl-nav {
  text-align: center;
  margin-top: 30px;
}

.cti_benefits_carousel .owl-nav button.owl-prev,
.cti_benefits_carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  background: #df0606 !important;
  border-radius: 50%;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  outline: none;
}

.cti_benefits_carousel .owl-nav button.owl-prev:hover,
.cti_benefits_carousel .owl-nav button.owl-next:hover {
  background: #6b04a3 !important;
  color: white !important;
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cti_benefits_carousel .owl-nav button span {
  font-size: 28px;
  line-height: 40px;
}
.owl-nav span {
    font-size: 32px !important; /* Increase arrow size */
    line-height: 1;
    display: inline-block;
    padding: 8px 16px;
    color: #333; /* Optional: set a custom color */
}


/* Remove grid styling since we're using carousel */
.cti_benefits_grid {
  display: block;
  margin-bottom: 70px;
}


.ai-course-description-panel-obj {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;

  animation: ai-course-fadeIn 1s ease-out 0.5s forwards;
  opacity: 0;
}

.ai-course-description-panel-obj p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}


.course-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            min-height: 600px;
        }

        .course-image-container {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .course-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .course-image:hover {
            transform: scale(1.05);
        }

        .course-content {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
        }

        .course-header {
            margin-bottom: 2rem;
        }

        .course-title {
            font-size: 2.25rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.75rem;
            text-balance: balance;
        }

        .course-subtitle {
            font-size: 1.125rem;
            color: #64748b;
            font-weight: 400;
        }

        .tasks-container {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .tasks-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .tasks-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #334155;
        }

        .tasks-count {
            background: #6b04a3;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .tasks-list {
            flex: 1;
            overflow-y: auto;
            padding-right: 0.5rem;
            max-height: 400px;
        }

        .tasks-list::-webkit-scrollbar {
            width: 6px;
        }

        .tasks-list::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .tasks-list::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .tasks-list::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        .task-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .task-item:hover {
            background: #f1f5f9;
            border-color: #bc038e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
        }

        .task-header {
    display: flex;
    align-items: center;       
    gap: 10px;                 
    margin-bottom: 0.75rem;
}

.task-number {
    background: #6b04a3;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}
.view-pdf-btn{
  color:#bc038e ;
}

        .task-status {
            padding: 0.25rem 0.75rem;
            border-radius: 16px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .status-completed {
            background: #dcfce7;
            color: #166534;
        }

        .status-in-progress {
            background: #fef3c7;
            color: #92400e;
        }

        .status-pending {
            background: #f3f4f6;
            color: #374151;
        }

        .task-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1e293b;
            
        }

        .task-description {
            color: #64748b;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        .task-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }

        .task-duration {
            font-size: 0.75rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .task-difficulty {
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .difficulty-easy {
            background: #dcfce7;
            color: #166534;
        }

        .difficulty-medium {
            background: #fef3c7;
            color: #92400e;
        }

        .difficulty-hard {
            background: #fee2e2;
            color: #991b1b;
        }

        @media (max-width: 768px) {
            .course-section {
                flex-direction: column;
                margin: 1rem;
            }

            .course-image-container {
                height: 250px;
            }

            .course-content {
                padding: 2rem;
            }

            .course-title {
                font-size: 1.875rem;
            }

            .tasks-list {
                max-height: 300px;
            }
        }