* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body {
    padding-right: 0 !important
}
.section1 {
    background-color: #EBEBEB; /* Change this color to your desired one */
    padding: 20px; /* Optional: Add some padding for better spacing */
    border-radius: 8px; /* Optional: Rounded corners for a softer look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add subtle shadow for depth */
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(51, 51, 51, 0.8);
    /* Dark background with transparency */
    backdrop-filter: blur(10px);
    /* Blur effect */
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    /* Ensure the navbar is flush against the left edge */
    z-index: 1000;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.navbar-logo img {
    height: 50px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0 1rem;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.navbar-menu a:hover {
    color: #007bff;
}

.navbar-toggler {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 1200px) {
    .navbar-menu {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgb(255, 255, 255);
        /* Dark background with transparency */
        backdrop-filter: blur(10px);
        /* Blur effect */
        position: absolute;
        top: 60px;
        /* Adjust to the height of the navbar */
        left: 0;
        line-height: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Shadow for the dropdown */
    }

    .navbar-menu.show {
        display: flex;
    }

    .navbar-menu li {
        margin: 0;
        padding: 1rem;
        text-align: center;
    }
    .navbar-menu a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 14px;
    }

    .navbar-toggler {
        display: block;
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .navbar-menu li {
        padding: 0.75rem;
    }
}

.headerlogo {
    height: 60px;
    width: auto;
}

.heading {
    font-size: 40px;
    font-weight: 600;
}

/* Inside banner slider */

.super-card-custom {
    background: #f8f9fa;
    color: #343a40;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    text-align: center;
}

.super-card-header-custom {
    background: rgb(18 56 94);
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.super-card-header-custom i {
    margin-right: 10px;
}

.super-card-body-custom {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}

.superslider {
    margin: 0;
}

.slick-slide {
    margin: 0 10px;
}

.slick-dots {
    bottom: -30px;
    /* Position dots slightly below the slider */
}

.slick-dots li button:before {
    font-size: 10px;
    /* Size of the pagination dots */
    color: #007bff;
    /* Color of the dots */
}

.slick-dots li.slick-active button:before {
    color: #fff;
    /* Color of the active dot */
}

/* Sections styling */
.section {
    /* padding: 80px 0; */
    min-height: auto;
    /* Minimum full viewport height */
    width: 100%;
    /* Full width of the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Facutly */
.faculty-header {
    text-align: center;
    margin-bottom: 40px;
}

.faculty-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.faculty-header p {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.faculty-slider {
    position: relative;
}

.faculty-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faculty-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.faculty-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.faculty-item p {
    font-size: 1rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .faculty-item img {
        width: 120px;
        height: 120px;
    }
}



/* Testimoinals */
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.testimonials-header p {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

.testimonial-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.testimonial-item p {
    font-size: 1rem;
    color: #6c757d;
}

.moreText {
    display: none;
}

.highlight {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.highlight:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .testimonial-item img {
        width: 80px;
        height: 80px;
    }
}

/* Curriculum */

.curriculum-header {
    text-align: center;
    margin-bottom: 40px;
}

.curriculum-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.curriculum-header p {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.curriculum-card:hover {
    transform: translateY(-10px);
}

.curriculum-card-header {
    padding: 15px;
    background-color: #007bff;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
}

.curriculum-card-body {
    padding: 15px;
    background-color: #ffffff;
}

.curriculum-list {
    list-style-type: none;
    padding-left: 0;
}

.curriculum-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.curriculum-list li:last-child {
    border-bottom: none;
}

/* About us height */
.aboutheight {
    margin-bottom: 0px;
}

/* About course height */
.abotcourseheight {
    margin-top: 50px;
    /* margin-bottom: 50px; */

}


/* Program Highlights */
/* .highlight-section {
    background-color: #f8f9fa;
    padding: 50px 0;
} */
.highlight-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    font-size: 50px;
    color: #007bff;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.global-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.global-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.global-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.global-card:hover {
    transform: translateY(-10px);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    font-size: 24px;
    border-radius: 50%;
    padding: 10px 16px;
    z-index: 1000;
}

.back-to-top.show {
    display: block;
}

/* home banner */
/* Home Banner specific styles */
.home-banner {

    /* Replace with your image path */
    background-image: url(../images/homebanner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 100px 0;
    margin-top: 65px;
    
}

.home-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.371);
    /* Adjust the opacity as needed */
}

.home-banner h1 {
    font-size: 3rem;
}

.home-banner p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.home-banner .btn {
    font-size: 22px;
}

.register-form {
    background-color: rgba(255, 255, 255, 0.484);
    /* Transparent background */
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.register-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.register-form form {
    max-width: 400px;
    margin: auto;
}

.register-form .form-group {
    margin-bottom: 20px;
}

.register-form label {
    font-weight: bold;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    font-size: 15px;
    border-radius: 50%;
    padding: 3px 9px;
    z-index: 1000;
    background: #231c7c;
    border-color: #231c7c;
}

.back-to-top.show {
    display: block;
}

.info-box {
    background-color: #2222224f;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 67%;
}

.info-box i {
    margin-right: 10px;
}

.info-box ul {
    list-style-type: none;
    padding: 0;
}

.info-box ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.courseobjectheading {
    font-weight: 700;
    font-style: 25px;
}

.imgf {
    margin-top: -50px;
}

.blurred-image {
    position: relative;
    /* Ensure positioning context */
    display: block;
    /* Make sure image is a block element for the filter to apply */
    width: 100%;
    /* Ensure image fits its container */
    height: auto;
    /* Maintain aspect ratio */
    filter: blur(-1px);
    /* Adjust blur intensity as needed */
    opacity: 0.6;
    /* Adjust transparency as needed */
}

.coursedescription {
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
}

#course-objective {
    position: relative;
    /* Add this to ensure the ::before is positioned correctly */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
}

#course-objective::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(46 45 45 / 50%);
    /* Grey overlay with 50% opacity */
    z-index: 1;
    /* Place the overlay above the background image but below the content */
}

#course-objective .container-fluid {
    position: relative;
    /* Ensure this is on top of the ::before overlay */
    z-index: 2;
    /* Content should be above the overlay */
}

/* Glass Blur Effect with Texture */
.card.texture {
    background: rgba(255, 255, 255, 0.3);
    /* Semi-transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Subtle border for separation */
    border-radius: 15px;
    /* Rounded corners */
    margin-bottom: 30px;
    backdrop-filter: blur(12px);
    /* Increased blur effect */
    -webkit-backdrop-filter: blur(12px);
    /* For Safari */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* Larger shadow for better separation */
    padding: 20px;
    color: #fff;
    /* White text color */
    position: relative;
    /* Position relative for pseudo-elements */
    overflow: hidden;
    /* Ensure pseudo-elements do not overflow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transitions for hover effects */
}

/* Glass Effect Decoration */
.card.texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    /* Gradient for more depth */
    border-radius: 15px;
    /* Match border-radius with the card */
    z-index: 1;
    /* Overlay below text but above background */
    pointer-events: none;
    /* Ensure it doesn't block interactions */
}

/* Card Body */
.card-body {
    position: relative;
    /* Ensure text is above pseudo-element */
    z-index: 2;
    /* Ensure text is above overlay */
    padding: 0px;
    font-size: 15px;
    /* Adjust font size for readability */
}

/* Hover Effect */
.card.texture:hover {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    /* Enhanced shadow on hover */
}

.cobin {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* button */
.btn-download-brochure {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
    font-weight: 600;
    width: 30%;
}

.btn-register-now {
    background-color: #2349CD;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    width: 23%;
}

.modal-content {
    padding: 20px;
}

.modal-header,
.modal-footer {
    border: none;
}


/* About Course */
.aboutcoursewidth {
    width: 90%;
}

.aboutpostiion {
    position: relative;
    left: 50px;
}

.colstyle1 {
    border: 1px solid #d3cbcb78;
    z-index: 999;
    background-color: white;
    border-radius: 30px 30px 30px 30px;
}

.pstyleaboutcourse {
    background: rgb(255, 201, 4);
    background: linear-gradient(0deg, rgba(255, 201, 4, 1) 0%, rgba(253, 187, 45, 1) 100%);
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    color: #ffff;
}

.pstyleaboutcourse2 {
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    background-color: #F7F4FE;
    color: #8841C0;
}

.aboutcoursesideimage {
    position: relative;
    right: 50px;
    z-index: 99;
    border-radius: 0px 30px 30px 0px;
    height: 100%!important;
}



/* Form css */
/* Add your CSS here */
#grad1 {
    background-color: #9C27B0;
    background-image: linear-gradient(120deg, #FF4081, #81D4FA);
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

    /*stacking fieldsets above each other*/
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

#msform input,
#msform textarea {
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 16px;
    letter-spacing: 1px;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: bold;
    border-bottom: 2px solid skyblue;
    outline-width: 0;
}

/*Blue Buttons*/
#msform .action-button {
    width: 100px;
    background: skyblue;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px skyblue;
}

/*Previous Buttons*/
#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

/*Dropdown List Exp Date*/
select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

select.list-dt:focus {
    border-bottom: 2px solid skyblue;
}

/*The background card*/
.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
}

/*FieldSet headings*/
.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #000000;
}

#registerButton {
    display: inline-block;
    cursor: pointer;
    background-color: #007bff; /* Button background color */
    color: white; /* Button text color */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }

  #registerButton:hover {
    background-color: #0056b3; /* Darker background color on hover */
  }
  /* Form Container Styles */
  .form-container {
    display: none; /* Hidden by default */
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out; /* Smooth transition */
    overflow: hidden; /* Prevent overflow of hidden elements */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
  }

  .form-container.show {
    display: block; /* Show the form container when class "show" is added */
  }
#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 33.33%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f09d";
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}

/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: skyblue;
}

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display: inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px 2px;
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image {
    width: 100%;
    object-fit: cover;
}

/* image logo */
.main-image {
    width: 100%;
    height: auto;
    border-radius: 0px 30px 30px 0px;
}

.center-logo {
    position: absolute;
    top: 10px;
    /* Adjust this value to position the logo vertically */
    left: 50%;
    transform: translateX(-90%);
    z-index: 100;
    max-width: 100px;
    /* Adjust based on your logo size */
    height: auto;
}

/* Points */
.points {
    margin-top: -50px;
    z-index: 99;
    position: relative;
}


.desktop-only .stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.stat-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.stat-title {
    font-size: 1rem;
    margin: 5px 0 0 0;
}

.vertical-line {
    height: 100px;
    /* Increase the height as needed */
    border: none;
    border-left: 2px solid #dee2e6;
    /* Adjust thickness as needed */
    margin: 0 20px;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
        /* Hide desktop-only content on mobile */
    }

    .mobile-only {
        display: block;
        /* Show mobile-only content on mobile */
    }

    #stats-slider {
        display: block;
        border: 1px solid #8080805e;
        border-radius: 20px;
        box-shadow: 2px 3px 3px #8080809e;
        margin-top: 80px;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
        /* Hide mobile-only content on desktop */
    }

}

/* Animated text */
.customeh1 {
    font-size: 2rem;
    /* Adjust as needed */
    line-height: 1.5;

}

#animated-text {
    display: inline-block;
    border-right: 2px solid #007bff;
    /* Cursor-like effect */
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
    animation: blink-caret 0.75s step-end infinite;
    vertical-align: bottom;
    /* Align with the baseline of the h1 */
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #007bff;
    }
}


.superultraaboutuscustom-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    text-align: center;
    margin-top: 20px;
}

.superultraaboutuscustom-container {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.superultraaboutuscustom-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.superultraaboutuscustom-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: center;
}

.superultraaboutuscustom-slide-content {
    padding: 0px;
}

.superultraaboutuscustom-slide iframe,
.superultraaboutuscustom-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.superultraaboutuscustom-nav {
    display: flex;
    justify-content: center;
    margin: 0px auto;
}

.superultraaboutuscustom-nav button {
    padding: 10px 20px;
    margin: 0 10px;
    border: 1px solid #007bff;
    background-color: #FFFFFF;
    color: #007bff;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.superultraaboutuscustom-nav button.active,
.superultraaboutuscustom-nav button:hover {
    background-color: #2056A2;
    color: #fff;
}

@media (max-width: 768px) {
    .superultraaboutuscustom-slide {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .superultraaboutuscustom-slide iframe,
    .superultraaboutuscustom-slide img {
        width: 100%;
        height: auto;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    top: 7%;
}

/* Eligibility */
/* Eligibility Section */
.eligibility {
    background-color: #f6f6f6;
    padding: 40px 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding-top: 50px;
    padding-bottom: 50px;
}

/* h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007bff;
} */

.criteria-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.criteria-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 48%;
    flex: 1;
    box-sizing: border-box;
}

.criteria-icon {
    font-size: 2rem;
    color: #ff0000b3;
    margin-right: 23px;
    margin-top: 4px;
    background-color: #4e4d4d36;
    padding: 10px;
    border-radius: 10px;
}

.criteria-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.criteria-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Course Schedule */
.scded {
    margin-top: 50px;
    margin-bottom: 50px;
}


.course-schedule {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
}

.course-schedule h2 {
    font-size: 2.5rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.course-schedule h2::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 10px auto;
}

.tabs {
    display: flex;
    flex-wrap: nowrap;
    /* Ensure tabs stay in one line */
    overflow-x: auto;
    /* Allow horizontal scrolling */
    border-bottom: 2px solid #007bff;
    margin-bottom: 20px;
}

.tab {
    flex: 1 0 auto;
    /* Allow tabs to be flexible in width but prevent shrinking */
    text-align: center;
    padding: 15px;
    cursor: pointer;
    color: #007bff;
    font-weight: 600;
    transition: background-color 0.3s;
}

.tab:hover,
.tab.active {
    background-color: #007bff;
    color: #ffffff;
}

.tab-content {
    display: none;
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}

.schedule-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.schedule-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.schedule-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.schedule-item p {
    font-size: 1rem;
    color: #666;
}

/* CSS for Footer */
.footer {
    background-color: #343a40; /* Dark background for the footer */
    color: #ffffff; /* White text color */
    padding: 10px 0; /* Padding for top and bottom */
   
    bottom: 0;
    width: 100%;
    text-align: center;
    
}

.footer-link {
    color: #ffffff; /* White color for the link */
    text-decoration: none; /* Remove underline from the link */
}

.footer-link:hover {
    text-decoration: underline; /* Underline on hover */
}


@media (max-width: 768px) {
    .course-schedule {
        padding: 20px;
    }

    .tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        /* Ensure tabs stay in one line on smaller screens */
    }

    .tab {
        flex: 0 0 auto;
        /* Ensure tabs have fixed width on mobile */
    }

    .tab-content {
        padding: 15px;
    }
}

/* Pedagogy */
.pedagogy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000 !important;
}
.pedagogy-section .content-block {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}
.pedagogy-section h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}
.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.text-content h5{
    font-weight: 600;
}

.text-content {
    flex: 1;
}



.custom-pedagogy {
    position: relative;
    padding: 50px 0;
    background-color: #fff;
    color: #333;
    text-align: center;
    margin-bottom: 0px;
    z-index: 1;
}

.custom-pedagogy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pedban.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    filter: blur(0px);
    z-index: -1;
    opacity: 6.7; /* Adjust this to make the background less vibrant */
}


/* .custom-pedagogy::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 24, 24, 0.084);
} */

.custom-section-title {
    font-size: 2rem;
    color: #ffffff !important;
    margin-bottom: 30px;
}

.custom-card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out;
}

.custom-card {
    background: rgba(255, 255, 255, 0.7);
    /* Slightly transparent background */
    color: #333;
    border-radius: 10px;
    width: 250px;
    height: 350px;
    perspective: 1000px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-card:hover {
    transform: scale(1.05);
    /* Slightly zoom in */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Enhance shadow on hover */
}

.custom-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.custom-card:hover .custom-card-inner {
    transform: rotateY(180deg);
}

.custom-card-front,
.custom-card-back {
    backface-visibility: hidden;
    transition: transform 0.6s, opacity 0.3s;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgb(255 255 255 / 74%) !important;
}

.custom-card-front {
    background: rgba(255, 255, 255, 0.7);
}

.custom-card-back {
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    transform: rotateY(180deg);
}

.custom-card-icon {
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

.custom-card-icon img {
    width: 100%;
    height: 60px;
    transition: transform 0.3s;
}

.custom-card-icon img:hover {
    transform: scale(1.1);
    /* Slightly enlarge icon on hover */
}

.custom-card-front h3,
.custom-card-back h3 {
    font-size: 1.25rem;
    margin: 10px 0;
    font-weight: 600;
    animation: fadeIn 1s ease-out;
}

.custom-card-front p,
.custom-card-back p {
    font-size: 20px;
    color: black;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Course content */
.custom-course-content {
    padding: 50px 0;
    background: linear-gradient(135deg, #3d434a, #2a5a6ade);
    color: #fff;
    text-align: center;
}

.custom-section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.custom-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease-out;
}

.custom-course-item {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.custom-course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.custom-course-item:before {
    content: "";
    font-size: 0rem;
    color: none;
    margin-right: 10px;
}

.custom-course-item-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Curruiculum */
.accordion-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 10px;
}

.accordion-header {
    background: #343a40;
    color: #ffffff;
    padding: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #495057;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
    padding: 0 15px;
}

.accordion-card.open .accordion-content {
    max-height: 450px;
    /* Adjust based on content */
    padding: 15px;
}

.accordion-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.accordion-content li {
    margin-bottom: 10px;
}

.accordion-button {
    width: 24px;
    height: 24px;
    background: url('https://img.icons8.com/ios/50/ffffff/plus-math.png') no-repeat center center;
    background-size: contain;
    transition: transform 0.3s;
}

.accordion-card.open .accordion-button {
    background: url('https://img.icons8.com/ios/50/ffffff/minus.png') no-repeat center center;
    transform: rotate(180deg);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}



@media (max-width: 768px) {
    .accordion-container {
        flex-direction: column;
    }
}

/* Fee Strucutre */
.fee-header {
    text-align: center;
    margin-bottom: 40px;
}

.fee-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.fee-header p {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.nav-tabs .nav-link.active {
    background-color: #007bff;
    color: white;
}

.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 10px 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.tab-content p {
    font-size: 1rem;
    color: #6c757d;
}

.amount {
    font-size: 20px;
    color: #000000;
    text-align: left;
}





.custom-certificate-container {
    position: relative;
    display: inline-block;
}

.custom-certificate-image {
    width: 300px;
    /* Adjust size as needed */
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

.custom-magnify-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #007bff;
    cursor: pointer;
    transition: color 0.3s;
}

.custom-magnify-icon:hover {
    color: #0056b3;
}

.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

.custom-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.custom-modal-zoom {
    transform: scale(1.5);
    /* Zoom level */
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.custom-modal-close:hover {
    color: #ff0000;
}

.custom-zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.custom-zoom-controls button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.custom-zoom-controls button:hover {
    background: #0056b3;
}

/* Media query */
@media only screen and (max-width: 768px) {

    /* home banner  */
    .navbar-logo img {
        height: 47px;
    }

    .customeh1 {
        font-size: 23px !important;
        /* Adjust as needed */
        line-height: 1.5;
    }

    .slick-dots {
        position: absolute;
        bottom: 0px;
        display: block;
        width: 100%;
        padding: 0;
        margin: -29px;
        list-style: none;
        text-align: center;
    }

    .pointtop{
        margin-top: -15px;
    }

    .colgbtn{
        display: inline-block;
    }

    .home-banner .btn {
        font-size: 18px;
        margin-left: 60px;
    }

    .btn-register-now {
        background-color: #2349CD;
        color: white;
        border-radius: 50px;
        font-weight: 600;
        width: 70%!important;
    }

    .info-box {
        background-color: #2222224f;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
        width: 100%;
        font-size: 12px;
    }

    .register-form {
        background-color: rgba(255, 255, 255, 0.484);
        padding: 30px;
        border-radius: 5px;
        margin-top: 30px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .register-form h2 {
        font-size: 18px;
        margin-bottom: 11px;
    }

    .aboutpostiion {
        position: relative;
        left: 0px;
    }

    .aboutcoursesideimage {
        display: none;
    }

    .aboutcoureslogo {
        display: none;
    }

    .aboutcourseheading {
        font-size: 18px !important;
        font-weight: 600;
    }

    .colstyle1 {
        padding: 20px !important;
    }

    .btn1 {
        width: 50%;
        font-size: 12px;
    }

    .btn2 {
        width: 40%;
        font-size: 12px;
    }


    .criteria-cards {
        flex-direction: column;
        align-items: center;
    }

    .criteria-card {
        width: 100%;
        max-width: none;
        margin-bottom: 20px;
    }

    .register-form {
        display: none;
    }

    /* headings */
    .phone-heading {
        font-size: 22px!important;
        font-weight: 600!important;
    }

    .phonepara{
        font-size: 14px;
        text-align: justify;
    
    }

    .sidemarginul{
        margin-left: 16px !important;
        font-size: 15px
    }

    .ondesktop{
        display: none;
    }

    .cobin{
        width: 100%!important;
        padding: 0px;
        padding-bottom:10px;
    }

    .highlights { 
        margin-top: 0px !important;
        padding-top: 0px !important;
    }

    .home-banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 38%;
        background-color: rgba(0, 0, 0, 0.371);
    }

    .home-banner {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 15px 0;
        margin-top: 63px;
    }

    .modal-body {
        position: relative;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 0px;
    }

    .modal-content {
        padding: 13px;
    }

    #msform fieldset .form-card {
        background: white;
        border: 0 none;
        border-radius: 0px;
        box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
        padding: 15px;
        box-sizing: border-box;
        width: 94%;
        margin: 0 3% 20px 3%;
        position: relative;
    }

    .fs-title {
        font-size: 25px;
        color: #2C3E50;
        margin-bottom: 0px;
        font-weight: bold;
        text-align: left;
    }

    .toppadding{
        margin-top: 30px;
    }

    .stat-icon {
        font-size: 20px!important;
        color: #007bff;
        margin-bottom: 10px;
    }

    .stat-title {
        font-size: 11px;
        margin: 6px 0 0 0;
    }
    

}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .onphone{
        display: none;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .onphone{
        display: none;
    }
}

@media (min-width: 768px) {
    .video-container {
        float: right;
        max-width: 60%;
    }
    
    .video-responsive {
        width: 100%;
        max-height: 300px; /* Adjust height as needed */
    }
    .video-responsive{
        width: 100%;
        max-height: 450px;
        border-radius: 15px; /* Adds rounded corners */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a shadow */
    }
}

@media (max-width: 767px) {
    .video-container {
        max-width: 100%;
    }
    
    .video-responsive {
        width: 100%;
        max-height: 450px; /* Adjust height as needed for mobile */
    }
}
