
.how-it-works-header {
    padding-bottom: 80px;
    text-align: center;
  }
  .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }


@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
      max-width: 1280px;
    }
  }

.helponadmission-start {
    background-color: #1F51FF;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 100vh;
    z-index: 1;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.helponadmission-start-content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}

.form-container {
    flex: 0 0 auto;
    width: 40%;
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.helponadmission-start-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.helponadmission-start-content h1 span {
    color: #f1b51f;
}

.helponadmission-start-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: white;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background-color: rgba(41, 26, 62, 0.5);
    padding: 1rem;
    border-radius: 10px;
    flex: 1;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-item h2 {
    color: #f1b51f;
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
    color: white;
}

.stat-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.form-container h2 {
    color: #1F51FF;
    margin-bottom: 0.5rem;
}

.form-container p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

form {
    display: grid;
    gap: 1rem;
}

input, select, textarea {
    width:auto;
/*    width: 100%;*/
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

button {
    background-color: #f1b51f;
    color: #1F51FF;
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #e0a50e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flag {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    z-index: 2;
}

.flag-germany {
    top: 20px;
    right: 45%;
    background-image: url('path_to_german_flag.png');
}

.flag-france {
    bottom: 20%;
    right: 20%;
    background-image: url('path_to_french_flag.png');
}

.flag-sweden {
    bottom: 40%;
    right: 10%;
    background-image: url('path_to_swedish_flag.png');
}

.plane {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 40px;
    height: 40px;
    background-image: url('path_to_plane_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    animation: fly 20s linear infinite;
}

@keyframes fly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, -50px) rotate(10deg);
    }

    50% {
        transform: translate(200px, 0) rotate(0deg);
    }

    75% {
        transform: translate(100px, 50px) rotate(-10deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@media (max-width: 1200px) {
    .helponadmission-start {
        flex-direction: column;
        padding: 1rem;
    }

    .helponadmission-start-content,
    .form-container {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex-basis: calc(50% - 1rem);
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .helponadmission-start-content h1 {
        font-size: 2.2rem;
    }

    .stat-item {
        flex-basis: 100%;
    }

    .flag, .plane {
        display: none;
    }

    .form-container {
        border-radius: 20px;
        background-color: white;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .helponadmission-start-content h1 {
        font-size: 1.8rem;
    }

    .helponadmission-start-subtitle {
        font-size: 0.9rem;
    }

    .stat-item h2 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }
}

/* admission process */

.helponadmission {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.helponadmission-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a4789;
    font-size: 2.5rem;
    position: relative;
}

.helponadmission-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #1F51FF;
    margin: 0.5rem auto;
}

.helponadmission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.helponadmission-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #1a4789;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.helponadmission-card:hover {
    transform: translateY(-5px);
}

.helponadmission-card::before {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 120px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.helponadmission-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    fill: #1F51FF;
    position: relative;
    z-index: 1;
}

.helponadmission-title {
    color: #1a4789;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.helponadmission-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .helponadmission {
        padding: 1rem;
    }

    .helponadmission-heading {
        font-size: 2rem;
    }

    .helponadmission-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .helponadmission-heading {
        font-size: 1.8rem;
    }

    .helponadmission-card {
        padding: 1.5rem;
    }

    .helponadmission-card::before {
        font-size: 100px;
    }

    .helponadmission-icon {
        width: 50px;
        height: 50px;
    }

    .helponadmission-title {
        font-size: 1.1rem;
    }

    .helponadmission-description {
        font-size: 0.8rem;
    }
}

/* about area */
.helponadmission-about {
    background-color: #f9f9f9;
    /* Light grey background */
    padding: 4rem 2rem;
    /* Padding for the section */
    width: 100%;
}

.about-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    /* Center the container */
    margin: 0 auto;
    position: relative;
}

.image-container {
    position: relative;
    flex: 1;
    margin-right: 2rem;
    /* Space between image and content */
    max-width: 40%;
    /* Restrict image container width */
}

.watermark {
    position: absolute;
    top: 0;
    left: -30px;
    /* Position watermark to the left of the image */
    height: 100%;
    writing-mode: vertical-rl;
    /* Vertical text from top to bottom */
    transform: rotate(-180deg);
    /* Rotate text to match vertical alignment */
    font-size: 8rem;
    /* Adjust size as needed */
    color: rgba(31, 81, 255, 0.1);
    /* Light color using #1F51FF */
    z-index: 1;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    /* Clean, readable font */
    text-align: center;
    user-select: none;
    /* Prevent text selection */
}

img {
    width: 100%;
    /* Ensure image fits container */
    height: auto;
    /* Maintain aspect ratio */
    /* border-radius: 8px; */
    /* Rounded corners for the image */
}

.content-container {
    flex: 2;
    padding: 2rem;
    background-color: #fff;
    /* White background for content */
    border-radius: 8px;
    /* Rounded corners for the content box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1F51FF;
    /* Consistent color for headings */
}

.tabs {
    margin-top: 2rem;
    display: flex;
    border-bottom: 2px solid #1F51FF;
    /* Bottom border for tab navigation */
}

.tab-link {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: #1F51FF;
    border-radius: 4px;
    margin-right: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab-link.active {
    background: #1F51FF;
    color: #fff;
}

.tab-content {
    display: none;
    margin-top: 1rem;
}

.tab-content.active {
    display: block;
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 80%;
        /* Increase image container width on smaller screens */
    }

    .watermark {
        font-size: 5rem;
        /* Adjust size for smaller screens */
        left: 0;
        /* Center watermark for smaller screens */
        transform: rotate(0);
        /* No rotation needed */
    }

    .content-container {
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .watermark {
        font-size: 4rem;
        /* Adjust size for mobile screens */
    }
}

/* services */

.helponadmission-services {
    padding: 5rem 0;
}

.helponadmission-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.helponadmission-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.helponadmission-services-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1F51FF;
    margin-bottom: 1rem;
}

.helponadmission-services-title span {
    color: #f1b51f;
}

.helponadmission-services-icon {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    color: #1F51FF;
}

.helponadmission-services-icon::before,
.helponadmission-services-icon::after {
    content: "";
    position: absolute;
    height: 2px;
    top: 50%;
    background: #f1b51f;
    width: 50px;
}

.helponadmission-services-icon::before {
    left: -70px;
}

.helponadmission-services-icon::after {
    right: -70px;
}

.helponadmission-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.helponadmission-services-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.helponadmission-services-card::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(#1F51FF, #f1b51f);
    position: absolute;
    left: 0;
    top: -100%;
    transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
    z-index: 1;
}

.helponadmission-services-card:hover::after {
    top: 0;
}

.helponadmission-services-card-content {
    position: relative;
    z-index: 2;
}

.helponadmission-services-card-icon {
    background-color: #1F51FF;
    color: #fff;
    font-size: 2rem;
    height: 4rem;
    width: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.helponadmission-services-card:hover .helponadmission-services-card-icon {
    background-color: #fff;
    color: #1F51FF;
    animation: spin 0.5s ease-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.helponadmission-services-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F51FF;
    margin-bottom: 1rem;
    transition: 0.5s;
}

.helponadmission-services-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    transition: 0.5s;
}

.helponadmission-services-card:hover .helponadmission-services-card-title,
.helponadmission-services-card:hover .helponadmission-services-card-description {
    color: #fff;
}

@media (max-width: 768px) {
    .helponadmission-services-title {
        font-size: 2rem;
    }

    .helponadmission-services-icon::before,
    .helponadmission-services-icon::after {
        width: 30px;
    }

    .helponadmission-services-icon::before {
        left: -40px;
    }

    .helponadmission-services-icon::after {
        right: -40px;
    }
}

/* ADVERTISERS SERVICE CARD ENDED */
/* courses */
.helponadmission-courses {
    padding: 4rem 2rem;
}

.helponadmission-courses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.helponadmission-courses-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1F51FF;
    margin-bottom: 2rem;
    font-weight: 700;
}

.helponadmission-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.helponadmission-course-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.helponadmission-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.helponadmission-course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.helponadmission-course-content {
    padding: 1.5rem;
    position: relative;
}

.helponadmission-course-name {
    font-size: 1.25rem;
    color: #1F51FF;
    margin-bottom: 1rem;
    font-weight: 600;
}

.helponadmission-course-button {
    display: inline-block;
    background-color: #f1b51f;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
}

.helponadmission-course-button:hover {
    background-color: #1F51FF;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(31, 81, 255, 0.3);
}

.helponadmission-view-more {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    background-color: #1F51FF;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.helponadmission-view-more:hover {
    background-color: #f1b51f;
    box-shadow: 0 5px 15px rgba(241, 181, 31, 0.3);
}

@media (max-width: 768px) {
    .helponadmission-courses-title {
        font-size: 2rem;
    }

    .helponadmission-courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .helponadmission-courses {
        padding: 3rem 1rem;
    }

    .helponadmission-courses-title {
        font-size: 1.75rem;
    }

    .helponadmission-course-image {
        height: 180px;
    }

    .helponadmission-course-content {
        padding: 1.25rem;
    }

    .helponadmission-course-name {
        font-size: 1.1rem;
    }

    .helponadmission-course-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .helponadmission-view-more {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

/* scholarship  */
.helponadmission-scholarship-banner {
    position: relative;
    width: 100%;
    padding-top: 37.5%;
    /* 16:6 Aspect Ratio */
    overflow: hidden;
}

.helponadmission-scholarship-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.helponadmission-scholarship-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(31, 81, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.helponadmission-button {
    display: inline-block;
    background-color: #f1b51f;
    color: #1F51FF;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1rem;
}

.helponadmission-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .helponadmission-scholarship-banner {
        padding-top: 50%;
        /* 2:1 Aspect Ratio for tablets */
    }

    .helponadmission-button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .helponadmission-scholarship-banner {
        padding-top: 66.67%;
        /* 3:2 Aspect Ratio for mobile */
    }

    .helponadmission-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* our specalization */

.hoa-section {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #1F51FF, #f1b51f);
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hoa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hoa-specialities {
    flex: 1 1 60%;
    margin-right: 2rem;
}

.hoa-form-wrapper {
    flex: 1 1 35%;
    min-width: 300px;
}

.hoa-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hoa-specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.hoa-speciality-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.hoa-speciality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hoa-speciality-icon {
    font-size: 2rem;
    color: #1F51FF;
    margin-bottom: 0.5rem;
}

.hoa-speciality-text {
    font-size: 0.8rem;
    color: #333;
    font-weight: bold;
}

.hoa-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hoa-form-title {
    font-size: 1.8rem;
    color: #1F51FF;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 10px;
}

.hoa-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #f1b51f;
    transition: width 0.3s ease;
}

.hoa-form:hover .hoa-form-title::after {
    width: 100px;
}

.hoa-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.hoa-form-label {
    position: absolute;
    top: 0;
    left: 10px;
    transform: translateY(-50%);
    background-color: white;
    padding: 0 5px;
    font-size: 0.9rem;
    color: #1F51FF;
    transition: all 0.3s ease;
}

.hoa-form-input,
.hoa-form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #1F51FF;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hoa-form-input:focus,
.hoa-form-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 81, 255, 0.3);
}

.hoa-form-input:focus+.hoa-form-label,
.hoa-form-select:focus+.hoa-form-label,
.hoa-form-input:not(:placeholder-shown)+.hoa-form-label,
.hoa-form-select:not(:placeholder-shown)+.hoa-form-label {
    top: 0;
    font-size: 0.8rem;
    color: #1F51FF;
}

.hoa-form-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #f1b51f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hoa-form-button:hover {
    background-color: #1F51FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hoa-form-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .hoa-container {
        flex-direction: column;
    }

    .hoa-specialities {
        margin-right: 0;
        margin-bottom: 3rem;
    }

    .hoa-form-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hoa-title {
        font-size: 2rem;
    }

    .hoa-specialities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .hoa-speciality-item {
        width: 120px;
        height: 120px;
    }

    .hoa-speciality-icon {
        font-size: 1.5rem;
    }

    .hoa-speciality-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hoa-section {
        padding: 3rem 1rem;
    }

    .hoa-title {
        font-size: 1.75rem;
    }

    .hoa-form-title {
        font-size: 1.5rem;
    }
}

/* top colleges  */
.top-colleges {
    padding: 2rem;
    background-color: #ffffff;
}

.top-colleges-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1F51FF;
    margin-bottom: 2rem;
    font-weight: bold;
}

.college-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.college-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.college-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.college-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.college-info {
    padding: 1rem;
}

.college-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1F51FF;
    margin-bottom: 0.5rem;
}

.college-courses {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.apply-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #f1b51f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #1F51FF;
}

.view-more-container {
    text-align: center;
}

.view-more-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1F51FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-more-button:hover {
    background-color: #f1b51f;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .top-colleges {
        padding: 1rem;
    }

    .top-colleges-title {
        font-size: 2rem;
    }

    .college-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .top-colleges-title {
        font-size: 1.75rem;
    }

    .college-name {
        font-size: 1.1rem;
    }

    .college-courses {
        font-size: 0.8rem;
    }

    .view-more-button {
        padding: 0.75rem 1.5rem;
    }
}

/* BLOG  */
.helponadd-blog-section {
    padding: 2rem;
    background-color: #ffffff;
    position: relative;
}

.helponadd-blog-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1F51FF;
    margin-bottom: 2rem;
    font-weight: bold;
}

.helponadd-blog-container {
    position: relative;
    overflow: hidden;
}

.helponadd-blog-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.helponadd-blog-card {
    flex: 0 0 300px;
    margin-right: 1.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.helponadd-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.helponadd-blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.helponadd-blog-content {
    padding: 1rem;
}

.helponadd-blog-category {
    display: inline-block;
    background-color: #f1b51f;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.helponadd-blog-post-title {
    font-size: 1.2rem;
    color: #1F51FF;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.helponadd-blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.helponadd-blog-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.helponadd-blog-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1F51FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.helponadd-blog-button:hover {
    background-color: #f1b51f;
}

.helponadd-view-all-button {
    display: block;
    width: 200px;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    background-color: #f1b51f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.helponadd-view-all-button:hover {
    background-color: #1F51FF;
}

.helponadd-blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1F51FF;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.helponadd-blog-nav:hover {
    background-color: #f1b51f;
}

.helponadd-blog-nav-prev {
    left: 10px;
}

.helponadd-blog-nav-next {
    right: 10px;
}

@media (max-width: 768px) {
    .helponadd-blog-section {
        padding: 1rem;
    }

    .helponadd-blog-title {
        font-size: 2rem;
    }

    .helponadd-blog-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .helponadd-blog-title {
        font-size: 1.75rem;
    }

    .helponadd-blog-card {
        flex: 0 0 220px;
    }
}

/* testimonials start  */

.helponadd-testimonials {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.helponadd-testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1F51FF;
    margin-bottom: 3rem;
    font-weight: bold;
}

.swiper-container {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    width: 300px;
    height: 400px;
    margin: 0 30px;
}

.helponadd-testimonial-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(31, 81, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.helponadd-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(31, 81, 255, 0.2);
}

.helponadd-testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, #1F51FF, transparent);
    transform: rotate(45deg);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.helponadd-testimonial-card:hover::before {
    top: -100%;
    left: -100%;
}

.helponadd-testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #1F51FF;
    box-shadow: 0 5px 15px rgba(31, 81, 255, 0.2);
    transition: all 0.3s ease;
}

.helponadd-testimonial-card:hover .helponadd-testimonial-photo {
    transform: scale(1.1);
}

.helponadd-testimonial-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1F51FF;
    margin-bottom: 0.5rem;
}

.helponadd-testimonial-designation {
    font-size: 1rem;
    color: #f1b51f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.helponadd-testimonial-text {
    text-align: center;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.helponadd-testimonial-quote {
    font-size: 3rem;
    color: #1F51FF;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #1F51FF;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #1F51FF;
}

.swiper-button-next, .swiper-button-prev {
    color: #1F51FF;
}

@media (max-width: 768px) {
    .helponadd-testimonials {
        padding: 3rem 1rem;
    }

    .helponadd-testimonials-title {
        font-size: 2rem;
    }

    .swiper-slide {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 480px) {
    .helponadd-testimonials-title {
        font-size: 1.75rem;
    }

    .swiper-slide {
        width: 240px;
        height: 360px;
    }

    .helponadd-testimonial-photo {
        width: 100px;
        height: 100px;
    }

    .helponadd-testimonial-name {
        font-size: 1.2rem;
    }

    .helponadd-testimonial-designation {
        font-size: 0.9rem;
    }

    .helponadd-testimonial-text {
        font-size: 0.9rem;
    }
}

/* footer */
:root {
    --primary-color: #1F51FF;
    --secondary-color: #f1b51f;
}

.pe-footer {
    background: linear-gradient(101deg, rgba(75,54,3,1) 0%, rgba(51,51,51,1) 71%);
    color: white;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.pe-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(241, 181, 31, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(31, 81, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

.pe-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pe-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.pe-footer-section {
    flex: 1 1 200px;
}

.pe-heading {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.pe-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.pe-footer-section:hover .pe-heading::after {
    width: 100%;
}

.pe-paragraph {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.pe-footer-links {
    list-style-type: none;
    padding: 0;
}

.pe-footer-links li {
    margin-bottom: 0.5rem;
}

.pe-footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.pe-footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.pe-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.pe-social-icons a {
    color: #fff;
    background-color: var(--secondary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pe-social-icons a:hover {
    transform: translateY(-3px);
    background-color: white;
}

.pe-help-admission {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pe-contact-button {
    background-color: var(--secondary-color);
    color: #000;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem 0.5rem 0.5rem 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}

.pe-contact-button:hover {
    background-color: white;
    transform: translateY(-2px);
}

.pe-office-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.pe-office {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pe-office:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pe-map-placeholder {
    width: 100%;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    border-radius: 5px;
}

.pe-copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .pe-footer-content {
        flex-direction: column;
    }

    .pe-office-info {
        flex-direction: column;
    }
}

/* page tittle */
.helponadmission-pagetittle.innerBanner {
    background: linear-gradient(45deg, #1F51FF, #f1b51f);
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.helponadmission-pagetittle.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.helponadmission-pagetittle h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.helponadmission-pagetittle.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.helponadmission-pagetittle.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.helponadmission-pagetittle.breadcrumb a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.helponadmission-pagetittle.image-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
}

.helponadmission-pagetittle.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.helponadmission-pagetittle.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: ripple 4s ease-out infinite;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .helponadmission-pagetittle.innerBanner {
        padding: 40px 15px;
    }

    .helponadmission-pagetittle h1 {
        font-size: 2.5rem;
    }

    .helponadmission-pagetittle.image-container {
        display: none;
    }
}

/* about us  */
.helponadmissionabus.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.helponadmissionabus.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.helponadmissionabus.image-container {
    flex: 1 1 300px;
    position: relative;
    overflow: hidden;
}

.helponadmissionabus.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-image: linear-gradient(45deg, #1F51FF, #f1b51f);
    border-image-slice: 1;
    animation: borderAnimation 4s linear infinite;
}

@keyframes borderAnimation {
    0% {
        clip-path: inset(0 0 100% 0);
    }

    25% {
        clip-path: inset(0 0 0 0);
    }

    50% {
        clip-path: inset(0 0 0 100%);
    }

    75% {
        clip-path: inset(100% 0 0 0);
    }

    100% {
        clip-path: inset(0 0 100% 0);
    }
}

.helponadmissionabus.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.helponadmissionabus.content {
    flex: 1 1 300px;
    padding: 40px;
}

.helponadmissionabus h2 {
    font-size: 2.5rem;
    color: #1F51FF;
    margin-bottom: 20px;
}

.helponadmissionabus p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.helponadmissionabus.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #1F51FF, #f1b51f);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.helponadmissionabus.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(31, 81, 255, 0.3);
}

@media (max-width: 768px) {
    .helponadmissionabus.about-section {
        flex-direction: column;
    }

    .helponadmissionabus.image-container {
        height: 200px;
    }

    .helponadmissionabus.content {
        padding: 30px;
    }

    .helponadmissionabus h2 {
        font-size: 2rem;
    }
}

/* timeline  */
/* Timeline container styling with padding */
.timeline-container.helponadmission {
    display: flex;
    gap: 33.5px;
    width: 100%;
    height: 134px;
    justify-content: center;
    font-weight: 900;
    font-size: 67px;
    padding: 400px 0;
    /* Added top and bottom padding */
    margin-bottom: 100px;
    /* Added margin-bottom to avoid overlap */
}

/* Ensure other sections do not overlap */
.timeline-container.helponadmission+* {
    margin-top: 100px;
    /* Add margin to the next section to avoid overlap */
}

/* Individual timeline point styling */
.timeline-point {
    transition-duration: 0.5s;
    border-radius: 50%;
    background: linear-gradient(145deg, #1e2125, #23282c);
    box-shadow: 13.4px 13.4px 40.2px #1c1f23, -13.4px -13.4px 40.2px #262b2f;
    display: grid;
    place-items: center;
    width: 134px;
    position: relative;
    color: var(--color);
}

.timeline-point::before {
    content: "";
    width: 200px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    background: conic-gradient(var(--color) var(--angle),
            transparent 0deg 360deg);
    animation: rotateBorder 1s linear var(--delay) forwards;
}

.timeline-point:nth-child(odd)::before {
    transform: rotate(-90deg);
}

.timeline-point:nth-child(even)::before {
    transform: rotate(90deg) scaleY(-1);
}

/* Custom property for angle */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* Common styling for timeline points */
.timeline-point:nth-child(1) {
    --color: #1F51FF;
    /* Updated color code */
    --delay: 0s;
}

.timeline-point:nth-child(2) {
    --color: #f1b51f;
    /* Updated color code */
    --delay: 1s;
}

.timeline-point:nth-child(3) {
    --color: #2ec4b6;
    --delay: 2s;
}

.timeline-point:nth-child(4) {
    --color: #6536ff;
    --delay: 3s;
}

.timeline-point:nth-child(5) {
    --color: #3a86ff;
    --delay: 4s;
}

/* Popup styling */
.popup {
    width: 321.6px;
    height: auto;
    max-height: 0;
    background-color: var(--color);
    display: grid;
    grid-template-columns: 16% 84%;
    position: absolute;
    color: white;
    border-radius: 30px;
    box-shadow: 6.7px 6.7px 21.4px #17191d, -6.7px -6.7px 21.4px #212529;

    transform-origin: bottom bottom;
    animation: expandPopup 0.5s linear calc(var(--delay) + 0.5s) forwards;
}

.timeline-point:nth-child(odd) .popup {
    bottom: 221.1px;
}

.timeline-point:nth-child(even) .popup {
    top: 221.1px;
}

/* Popup number styling */
.popup-number {
    grid-row: span 2;
    display: grid;
    font-size: 2rem;
    font-weight: bold;
    place-items: center;
    cursor: auto;
    animation: fadeIn 0.5s linear calc(var(--delay) + 0.7s) forwards;
    opacity: 0;
    height: 100%;
}

/* Popup title styling */
.popup-title {
    color: var(--color);
    padding-bottom: 6.7px;
    font-size: 20.1px;
    font-weight: 900;
}

/* Popup details styling */
.popup-details {
    padding: 20.1px;
    background-color: #1c1f23;
    border-radius: 30px;
    opacity: 0;
    font-weight: 500;
    user-select: none;
    cursor: auto;
    overflow: hidden;
    font-size: 0.8rem;
    text-align: justify;
    background: linear-gradient(145deg, #16181b, #22262b);
    margin: 3.35px;
    animation: fadeIn 0.5s linear calc(var(--delay) + 0.7s) forwards;
}

.popup::before {
    content: "";
    width: 6.7px;
    height: 0;
    border-radius: 20px;
    background-color: var(--color);
    position: absolute;
    left: 50%;
    top: -41.9px;
    display: flex;
    animation: drawLine 0.5s linear var(--delay) forwards;
}

.timeline-point:nth-child(odd) .popup:before {
    top: calc(100% + 47px);
    transform: rotateX(180deg);
    transform-origin: top;
}

/* Hover effect for timeline points */
.timeline-point:hover {
    background: linear-gradient(145deg, var(--color), #1e2125);
    color: white;
}

/* Animation for border rotation */
@keyframes rotateBorder {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 180deg;
    }
}

/* Animation for popup expansion */
@keyframes expandPopup {
    0% {
        max-height: 0;
    }

    100% {
        max-height: 200px;
    }
}

/* Animation for line drawing */
@keyframes drawLine {
    0% {
        height: 0%;
        opacity: 0;
    }

    100% {
        height: 33.5px;
        opacity: 1;
    }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Media Queries for responsiveness */
@media (max-width: 1050px) {
    body {
        height: auto;
        display: block;
    }

    .timeline-container.helponadmission {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding: 100px 0;
        /* Ensure padding in responsive mode */
    }

    /* Ensure proper margin in mobile view */
    .timeline-container.helponadmission+* {
        margin-top: 100px;
    }

    .timeline-container.helponadmission {
        margin-bottom: 100px;
    }

    /* Adjustments for timeline points in responsive mode */
    .timeline-point {
        height: 134px;
        flex-shrink: 0;
        left: calc(-321px / 2);
        margin: 0px auto;
        position: relative;
    }

    .timeline-point:nth-child(odd)::before {
        transform: rotate(0deg);
    }

    .timeline-point:nth-child(even)::before {
        transform: rotate(0deg) scaleX(-1);
    }

    .timeline-point .popup:before {
        display: none;
    }

    .timeline-point:nth-child(odd) .popup {
        bottom: auto;
        right: -370.1px;
    }

    .timeline-point:nth-child(even) .popup {
        top: auto;
        right: -370.1px;
    }
}

/* objective */
.helponadmission-objective {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.helponadmission-objective-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.helponadmission-objective-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.helponadmission-objective-card:hover {
    transform: translateY(-5px);
}

.helponadmission-objective-card-header {
    background: linear-gradient(135deg, #1F51FF, #f1b51f);
    color: white;
    padding: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

.helponadmission-objective-card-body {
    padding: 20px;
}

.helponadmission-objective-title {
    color: #1F51FF;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.helponadmission-objective-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.helponadmission-objective-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .helponadmission-objective-card {
        width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .helponadmission-objective-card {
        width: calc(33.333% - 20px);
    }
}

/* our vision */
.helponadmission-vision {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
}

.helponadmission-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.helponadmission-vision-title {
    color: #1F51FF;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.helponadmission-vision-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #1F51FF, #f1b51f);
    margin: 20px auto 0;
}

.helponadmission-vision-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.helponadmission-vision-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.helponadmission-vision-list {
    list-style-type: none;
    padding: 0;
}

.helponadmission-vision-item {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    color: #333;
    font-size: 1.1em;
}

.helponadmission-vision-item::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #f1b51f;
}

.helponadmission-vision-images {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.helponadmission-vision-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.helponadmission-vision-image:hover {
    transform: translateY(-5px);
}

.helponadmission-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.helponadmission-vision-image:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .helponadmission-vision-content {
        flex-direction: column-reverse;
    }

    .helponadmission-vision-images {
        margin-bottom: 40px;
    }
}

/* director message  */
.helponadmission-director {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.helponadmission-director-header {
    background: linear-gradient(135deg, #1F51FF, #f1b51f);
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.helponadmission-director-title {
    font-size: 2em;
    margin: 0;
}

.helponadmission-director-subtitle {
    font-style: italic;
    margin-top: 10px;
}

.helponadmission-director-content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 30px;
}

.helponadmission-director-text {
    flex: 1 1 300px;
}

.helponadmission-director-image {
    flex: 0 0 200px;
    text-align: center;
}

.helponadmission-director-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f1b51f;
}

.helponadmission-director-name {
    color: #1F51FF;
    font-size: 1.2em;
    margin-top: 10px;
}

.helponadmission-director-position {
    color: #666;
    font-style: italic;
}

.helponadmission-director-quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #1F51FF;
    padding-left: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .helponadmission-director-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .helponadmission-director-text {
        text-align: center;
    }
}

/* about contact */
.helponadmission-aboutcontact {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0;
    background-color: white;
    box-shadow: 0 15px 40px rgba(31, 81, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.helponadmission-aboutcontact-container {
    display: flex;
    flex-wrap: wrap;
}

.helponadmission-aboutcontact-text {
    flex: 1 1 50%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.helponadmission-aboutcontact-form {
    flex: 1 1 50%;
    padding: 60px 40px;
    background-color: #1F51FF;
    color: white;
}

.helponadmission-aboutcontact-title {
    color: #1F51FF;
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.helponadmission-aboutcontact-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.helponadmission-aboutcontact-benefits {
    margin-top: 30px;
}

.helponadmission-aboutcontact-benefits p {
    color: #1F51FF;
    font-size: 1.2em;
    margin: 10px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.helponadmission-aboutcontact-benefits p::before {
    content: '✓';
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
    color: #FF6B35;
}

.helponadmission-aboutcontact-contact {
    margin-top: 30px;
    padding: 20px;
    background-color: #F0F4FF;
    border-radius: 10px;
}

.helponadmission-aboutcontact-contact p {
    color: #1F51FF;
    font-size: 1.2em;
    margin: 5px 0;
    font-weight: 600;
}

.helponadmission-aboutcontact-phone {
    display: inline-block;
    animation: zoomInOut 2s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.helponadmission-aboutcontact-form h3 {
    font-size: 2em;
    margin-bottom: 30px;
    color: white;
}

.helponadmission-aboutcontact-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
}

.helponadmission-aboutcontact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #f1b51f;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helponadmission-aboutcontact-form button:hover {
    background-color: #a58022;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .helponadmission-aboutcontact-container {
        flex-direction: column;
    }

    .helponadmission-aboutcontact-text,
    .helponadmission-aboutcontact-form {
        flex: 1 1 100%;
        padding: 40px 30px;
    }
}

/* services */
.helponadmission-services-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image, .service-content {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-title {
    text-align: center;
    color: #1F51FF;
    margin-bottom: 30px;
}

.service-heading {
    color: #1F51FF;
    margin-bottom: 10px;
}

.service-tagline {
    color: #f1b51f;
    font-style: italic;
    margin-bottom: 15px;
}

.service-description {
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #1F51FF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f1b51f;
}

@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
    }

    .service-image, .service-content {
        width: 100%;
    }

    .service-section:nth-child(even) .service-image {
        order: -1;
    }
}

/* services-2 */
/* < !DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport"content="width=device-width, initial-scale=1.0"><title>Help on Admission - University Services</title><script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js"></script><style>.helponadmission-university-services-details {

    margin: 0;
    padding: 0;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    width: 100%;
} */

.helponadmission-university-services-details * {
    box-sizing: border-box;
}

.helponadmission-university-services-details .services-wrapper {
    width: 100%;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.6);
}

.helponadmission-university-services-details h2,
.helponadmission-university-services-details h3 {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.helponadmission-university-services-details .intro-text {
    background-color: #1F51FF;
    padding: 30px;
    margin-bottom: 40px;
    width: 100%;
    border-radius: 15px;
}

.helponadmission-university-services-details .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.helponadmission-university-services-details .service-item {
    background-color: #1F51FF;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    flex: 1 1 calc(20% - 20px);
    min-width: 200px;
    max-width: calc(20% - 20px);
}

.helponadmission-university-services-details .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.helponadmission-university-services-details .service-icon {
    color: #f1b51f;
    font-size: 40px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.helponadmission-university-services-details .service-content h4 {
    color: #f1b51f;
    margin-top: 0;
    font-size: 1.2em;
    width: 100%;
}

.helponadmission-university-services-details .service-content p {
    color: #fff;
    width: 100%;
    font-size: 0.9em;
}

@media (max-width: 1200px) {
    .helponadmission-university-services-details .service-item {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    .helponadmission-university-services-details .service-item {
        flex: 1 1 calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .helponadmission-university-services-details .service-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .helponadmission-university-services-details .service-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* contact us  */
.helponadmission-contactus {
    font-family: 'Arial', sans-serif;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    background-image: url('/assets/images/contact/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.helponadmission-contactus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 81, 255, 0.9), rgba(241, 181, 31, 0.9));
}

.helponadmission-contactus * {
    box-sizing: border-box;
    position: relative;
}

.helponadmission-contactus .inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.helponadmission-contactus .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.helponadmission-contactus .contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.helponadmission-contactus .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.helponadmission-contactus .contact-card i {
    font-size: 60px;
    color: #f1b51f;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.helponadmission-contactus .contact-card h3 {
    color: #fff;
    margin: 10px 0;
}

.helponadmission-contactus .contact-card p {
    color: #fff;
    margin: 0;
}

.helponadmission-contactus .contact-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.helponadmission-contactus .contact-form {
    flex: 1 1 400px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
}

.helponadmission-contactus .contact-info-text {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
}

.helponadmission-contactus h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
}

.helponadmission-contactus input,
.helponadmission-contactus textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.helponadmission-contactus input::placeholder,
.helponadmission-contactus textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.helponadmission-contactus textarea {
    height: 150px;
}

.helponadmission-contactus button {
    background-color: #f1b51f;
    color: #1F51FF;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.helponadmission-contactus button:hover {
    background-color: #fff;
    transform: scale(1.05);
}

.helponadmission-contactus .student-images {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.helponadmission-contactus .student-image {
    width: 100%;
    max-width: 600px;
    height: 0;
    padding-bottom: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .helponadmission-contactus .contact-form-container {
        flex-direction: column;
    }

    .helponadmission-contactus .contact-info-text {
        order: -1;
    }

    .helponadmission-contactus .student-image {
        padding-bottom: 75%;
        /* Adjust aspect ratio for mobile */
        margin-bottom: 30px;
    }

    .helponadmission-contactus .contact-card {
        flex: 1 1 100%;
    }

    .helponadmission-contactus .contact-card i {
        font-size: 70px;
        animation: pulseAndRotate 3s infinite;
    }

    @keyframes pulseAndRotate {
        0% {
            transform: scale(1) rotate(0deg);
        }

        50% {
            transform: scale(1.2) rotate(10deg);
        }

        100% {
            transform: scale(1) rotate(0deg);
        }
    }
}

@media (max-width: 480px) {
    .helponadmission-contactus .student-image {
        padding-bottom: 100%;
        /* Return to square aspect ratio for very small screens */
    }

    .helponadmission-contactus .contact-card i {
        font-size: 80px;
    }
}

/* blog */
/* General Blog Section Styles */
.helponadmission-blog {
    padding: 20px 0;
    background-color: #f9f9f9;
}

/* Latest Blog Styles */
.helponadmission-latest-blog {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    /* Spacing below the Latest Blog */
    margin-right: 20px;
    /* Add spacing between Latest Blog and Blog Category */
}

.helponadmission-latest-blog-title {
    font-size: 18px;
    color: #1F51FF;
    font-weight: 700;
    margin-bottom: 15px;
}

.helponadmission-latest-blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.helponadmission-latest-blog-list li {
    margin-bottom: 10px;
}

.helponadmission-latest-blog-list a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.helponadmission-latest-blog-list a:hover {
    color: #1F51FF;
}

/* Blog Category Styles */
.helponadmission-blog-category {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.helponadmission-blog-category-title {
    font-size: 18px;
    color: #1F51FF;
    font-weight: 700;
    margin-bottom: 15px;
}

.helponadmission-blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    /* Limit height for scrolling */
    overflow-y: auto;
    /* Enable scrolling */
}

.helponadmission-blog-category-list li {
    margin-bottom: 10px;
}

.helponadmission-blog-category-list a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.helponadmission-blog-category-list a:hover {
    color: #1F51FF;
}

/* Blog Card Styles */
.helponadmission-blog-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.helponadmission-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.helponadmission-blog-date {
    background-color: #1F51FF;
    color: #fff;
    padding: 10px;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 5px;
    text-align: center;
}

.helponadmission-blog-date span {
    font-size: 24px;
    display: block;
}

.helponadmission-blog-date small {
    font-size: 14px;
}

.helponadmission-blog-title {
    font-size: 18px;
    color: #1F51FF;
    font-weight: 700;
    margin-top: 15px;
}

.helponadmission-blog-text {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

.helponadmission-blog-admin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.helponadmission-blog-admin span {
    font-size: 14px;
    color: #777;
}

.helponadmission-blog-link {
    font-size: 14px;
    color: #f1b51f;
    text-decoration: none;
    font-weight: 600;
}

.helponadmission-blog-link:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .helponadmission-blog-title {
        font-size: 16px;
    }

    .helponadmission-blog-text {
        font-size: 12px;
    }

    .helponadmission-blog-link {
        font-size: 12px;
    }

    .helponadmission-latest-blog-title,
    .helponadmission-blog-category-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .helponadmission-blog-title {
        font-size: 14px;
    }

    .helponadmission-blog-text {
        font-size: 10px;
    }

    .helponadmission-blog-link {
        font-size: 10px;
    }

    .helponadmission-latest-blog-title,
    .helponadmission-blog-category-title {
        font-size: 14px;
    }
}

/* blog details  */


.helponadmissionblogdetails {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    animation: fadeIn 0.8s ease-out;
}

.helponadmissionblogdetails h1,
.helponadmissionblogdetails h2,
.helponadmissionblogdetails h3 {
    color: #1F51FF;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.helponadmissionblogdetails h1:hover,
.helponadmissionblogdetails h2:hover,
.helponadmissionblogdetails h3:hover {
    color: #0033cc;
}

.helponadmissionblogdetails h1 {
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 2px solid #1F51FF;
    padding-bottom: 10px;
}

.helponadmissionblogdetails h2 {
    font-size: 26px;
    margin-top: 30px;
}

.helponadmissionblogdetails h3 {
    font-size: 22px;
    margin-top: 25px;
}

.helponadmissionblogdetails p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
    transition: transform 0.3s ease;
}

.helponadmissionblogdetails p:hover {
    transform: translateX(5px);
}

.helponadmissionblogdetails img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.helponadmissionblogdetails img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.helponadmissionblogdetails .meta {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    padding: 10px 15px;
    background-color: #e6f0ff;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.helponadmissionblogdetails .meta:hover {
    background-color: #cce0ff;
}

.helponadmissionblogdetails blockquote {
    background-color: #f7f9fc;
    border-left: 4px solid #1F51FF;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #1F51FF;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.helponadmissionblogdetails blockquote:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.helponadmissionblogdetails .tag {
    display: inline-block;
    background-color: #1F51FF;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.helponadmissionblogdetails .tag:hover {
    background-color: #0033cc;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .helponadmissionblogdetails {
        padding: 20px;
        margin: 20px;
    }

    .helponadmissionblogdetails h1 {
        font-size: 28px;
    }

    .helponadmissionblogdetails h2 {
        font-size: 24px;
    }

    .helponadmissionblogdetails h3 {
        font-size: 20px;
    }

    .helponadmissionblogdetails p {
        font-size: 16px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* search program */
.helponadmission-searchprogram {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #fff;
}

/* Sidebar Section */
.filter-section {
    width: 100%;
    max-width: 300px;
    margin-right: 20px;
    background-color: #1F51FF;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.filter-section h3 {
    margin-bottom: 15px;
}

.filter-section ul {
    list-style: none;
    padding: 0;
}

.filter-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.filter-section input[type="checkbox"] {
    margin-right: 10px;
}

.filter-section button {
    background-color: #f1b51f;
    color: #1F51FF;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.filter-section button:hover {
    background-color: #1F51FF;
    color: #fff;
}

/* Program List Section */
/*.search-section-two {
    width: 100%;
    height: auto;
    float: left;
    background: #fff;
    padding: 80px 0px;
}
*/

/* search prgram */


.search-section-two{width: 100%; height: auto; float: left; background: #fff; padding: 80px 0px;}



.collegeprog-listingboxall .colunvitighttext {
    width: 100%;
    float: left;
}

.collegelistingboxall {
    border: 1px solid #b8eaa6;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    border-bottom: 1px solid #b8eaa6;
    padding: 10px;
    background: #092a9f;
}
.colunvitighttopstripright {
    width: 10%;
    max-width: 100px;
}

.colunvitighttopstripright img{width: 100%; height: auto; border-radius: 0px}
.colunvitighttopstripleft {
    padding-left: 10px;
}

.colunvitighttopstripleft h3{font-size: 20px; display:block;}
.colunvitighttopstripleft h3 a{ font-size: 20px; color: #fff}
.colunvitighttopstripleft p{color: #fff; font-size: 14px}
.colunvitighttopstripleft h5{font-size: 16px; color:#2d598a; margin-top:5px; display:block; }

.colunivi-progname h3 a { color:#000; font-size:16px; }
    
.colunivi-progname h3 span {
    color: #757575;font-size:16px;
}

.colunvitightbotmstrip {
    float: left;
    width: 100%;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.colunvitightbotmstrip ul {
    float: right;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.colunvitightbotmstrip ul li {
    float: left;
    list-style: none;
    padding-left: 0px;
    width: 33%;
    padding-bottom: 10px;
    min-height: 60px;
}
.colunvitightbotmstrip ul li .unvicoldtlpixall {
    padding-bottom: 5px;
    float: left;
}
/* 
.unvicoldtlpixall svg {
    border: 1px solid #fcd53b;
    float: left;
    width: 32px !important;
    height: 32px;
        padding: 7px;
    text-align: center;
    border-radius: 50%;
    line-height: 32px;
    cursor: pointer;
    font-size: 15px;
    color: #505050;
} */

.unvicoldtlpixall{
    border: 1px solid #fcd53b;
    float: left;
    width: 32px !important;
    height: 32px;

    text-align: center;
    border-radius: 50%;
    line-height: 32px;
    cursor: pointer;
    font-size: 15px;
    color: #505050;
}
.unvicoldtlpixall img{width: auto; height: auto;}

.colunvitightbotmstrip ul li p {
    font-size: 13px;
    line-height: normal;
    color: #757575;
    float: left;
    padding-left: 10px;
    text-align: left;
}
.colunvitightbotmstrip ul li p span {
    font-weight: 500;
    font-size: 14px;
    color: #252525;
}

.colunvitightafbottomstrip {
    float: left;
    width: 100%;
    padding-bottom: 10px;
}


.rightaction {
    float: right;
    list-style: none;
    margin: 0px;
    padding: 0;
    margin-right: 10px;
}


.rightaction li {
    float: left;
    padding-top: 5px;
    padding-left: 5px;
}

.rightaction li.viewdtlbtn a {
    background: #01446c ;
    border-radius: 50px;
    padding: 0 15px;
    color: #fff;
    font-weight: 500;
    float: left;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
}
.rightaction li.viewdtlbtn a span {
    float: left;
    padding-left: 5px;
}
.rightaction li a i {
    float: left;
    padding: 0;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
}

.checkelgiblitybtn {
    background: #55a0cc;
    border-radius: 50px;
    padding: 0px 21px !important;
    height: 35px;
    line-height: 35px;
    float: left;
    line-height: 32px;
    margin-top: 5px;
    margin-left: 10px;
}


.checkelgiblitybtn a i{ margin-right:8px }
.checkelgiblitybtn a{ color: #fff;
    font-weight: 500;  font-size: 14px;}


.shortlistedbtn {
    background:#01446c;
    border-radius: 50px;
    padding: 0px 21px !important;
    height: 35px;
    line-height: 35px;
    float: left;
    line-height: 32px;
    margin-top: 5px;
    margin-left: 10px;
}


.shortlistedbtn a i{ margin-right:8px }
.shortlistedbtn a{ color: #fff;
    font-weight: 500;  font-size: 14px;}



.search-page{width: 100%; height: auto; background: #fff; margin-top: 25px; padding: 12px; border-radius: 12px; border: 1px solid #ededed; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;}

.search-page .filter {
    margin-bottom: 1.5rem;
    height: -moz-fit-content;
    height: fit-content;
     overflow: hidden;
}

.search-page .filter .checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0;
    padding-right:0;
}
.checkbox label{font-size: 14px; width: auto !important;}



.search-page .filter h4 {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 20px;
    font-weight: 600;
}

.search-page .filter>div {
    margin-bottom: 0.25rem;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 384px;
    overflow-y: auto;
}
.search-page .filter>div {
    height: 300px;
    overflow: auto;
}

.modal-dialog{max-width:900px;}

.accrdion-box{min-height: 260px;
    padding:5px; float: left;
    border: none;
    margin-bottom:5px;
    margin-top: 5px;
    background: #fafafa;
    border-radius: 18px; border: 1px solid #ccc;}

.accordion-item{border: 0px !important}

.enquirybtn {
    background:#fcd53b;
    border-radius: 50px;
    padding: 0px 21px !important;
    height: 35px;
    line-height: 35px;
    float: left;
    line-height: 32px;
    margin-top: 5px;
    margin-left: 10px;
}
.checkelgiblity-btn {
    background: #00ad50;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    width:auto;
    float: left;
    font-size: 14px;;
    text-align: center;
    font-weight: 400;
    border: 0px;
    margin-top: 10px;
    cursor: pointer;
}

.form_save_div2 {
    float: left;
    width: 100%;
    text-align: center;
}

.form_save_div2 .bckto-allprogbtn {
    background: #e80000;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding: 0 25px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border-radius: 50px;
    cursor: pointer;
    margin: 5px;
}
.form_save_div2 .showonly-eligbprog {
    background: #00ad50;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding: 0 25px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border-radius: 50px;
    cursor: pointer;
    margin: 5px;
}
.form_save_div2 h5{font-size: 13px;
    font-weight: normal;
    float: left;
    width: 100%;
    padding: 10px 0;}
.enquirybtn a i{ margin-right:8px }
.enquirybtn a{ color: #fff;
    font-weight: 500;  font-size: 14px;}

.college-inpage{width: 100%; height: auto; padding: 90px 0px; background:url(../../assets/images/int-banner.png); background-size: cover; background-repeat: no-repeat;}

.logo-college-78{width: auto; height: auto; margin: 0px auto 35px; display: table;}

.logo-87{width: 150px; height: 150px; float: left;}
.logo-87 img{width: 100%; height: auto;}

.content-card-wrap{width:auto; height: auto; display: table; margin: 0px auto 0px; text-align: center;}
.content-card-wrap h2{font-size: 45px; margin-bottom: 35px; font-weight: 600; color: #000; font-family: "Inter", sans-serif;}
.content-card-wrap p{font-size: 15px; margin-bottom:8px; color: #000;font-family: "Poppins", sans-serif; }
.ct-container{background-color: #002366; padding: 15px 25px;}
.ct-container p{font-size: 15px; margin-bottom:8px; line-height: 20px; color: #fff;font-family: "Poppins", sans-serif; margin-bottom: 0px; }
.content-card-wrap ul{display: block; margin-bottom: 10px;}
.content-card-wrap ul li i{font-size:25px; color: #fff; width: 45px; height: 45px; padding: 9px; border-radius: 35px; 
    background-color: #002366; margin-right: 15px; float: left;}

.content-card-wrap ul li {
    width: auto;
    height: auto;
    display: inline-block;
    margin: 0px 8px 0px 8px;
}
.content-card-wrap ul li p{margin-bottom: 0px; font-size: 20px; float: left;}


/*--- Inner slider ---*/
.slider-98{width:100%;padding:15px; float: left; background-color: #fff; border-radius: 15px;box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; }
.slider{
    width:100%;
    max-width: 100vw;
    height:400px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}
.list img{
    width: 1920px;
    height: 100%;
    border-radius: 0px;
    object-fit: cover;
}
.buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.buttons button {
    width: 50px;
    height: 50px;
    border-radius: 505;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.dots{
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    transition: 1s;
}
.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 20px;
    border-radius: 20px;
}
.dots li.active {
    width: 30px;
}
@media screen and ( max-width: 768px) { 
    .slider {
        height: 400px;
    }
    
}


.feature-content{width: 100%; height: auto; background-color: #fff; border-radius: 10px; padding: 0px;}
.features {
    width: 100%;
    height: auto;
    background:#fff;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.feature-content-text {
    padding-top:20px;
    padding-left: 60px;
    padding-right:0px;
}
.feature-content-text h2{font-size: 35px; font-weight: 600; color: #000; margin-bottom: 25px;font-family: "Inter", sans-serif;}
.feature-content-text p{font-size: 15px; font-weight: 4600; color: #000; margin-bottom: 25px;font-family: "Poppins", sans-serif;}
.feature-content-image{width: 100%; height: auto; float: left;}
.feature-content-image img {
    max-width: 100%;
}


.courses-section-page{width: 100%; height: auto; float: left; padding: 80px 0px; background-color: #eaf1f7; position: relative;}
.section-header {
    font-size: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin-bottom: 25px;
}
.section-header-two {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 25px;
}
.how-it-works-header {
    padding-bottom: 30px;
    text-align: center;
}
.how-header-4 {
    padding-bottom:0px;
    text-align: center;
}



.courses-box-post{position: relative;
    z-index: 22;
    border-radius:10px;
    padding: 25px;
    min-height: 560px;
    margin-bottom: 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%); background: #fff url("../../assets/images/service-boder1.png"); background-repeat: no-repeat; background-position: bottom; border-bottom: 6px solid #002366;}

    .courses-box-post::before {
        content: attr(data-number);
        position: absolute;
        top: -20px;
        right: -10px;
        font-size: 120px;
        font-weight: bold;
        color: rgba(0, 0, 0, 0.05);
        z-index: 0;
    }

    .courses-box-post:hover{background: linear-gradient(321deg, rgba(65,132,236,1) 0%, rgba(44,99,220,1) 42%, rgba(13,50,195,1) 100%);}

    .courses-box-post .post-picture {width: 100%; height: 200px; position: relative;
      overflow: hidden;
      border-radius:10px;}


      .courses-box-post .post-picture img{width: 100%; height:auto;}
  
      
  .courses-box-post .event-info{width: auto; height: auto; display: inline-block; margin-top: 25px;}
  .courses-box-post .event-info p{font-size: 14px; color: #000;font-family: "Poppins", sans-serif; margin-bottom: 0px;}
  .courses-box-post:hover .event-info p{color: #fff;}
  .courses-box-post .event-info strong{font-size: 14px; font-weight: 600; color: #323232;font-family: "Poppins", sans-serif;}
  .courses-box-post:hover .event-info strong{color: #000000;}
  .courses-box-post .event-title a{ font-family: "Poppins", sans-serif; color: #000; font-size: 20px; font-weight: 600;}
  .courses-box-post:hover .event-title a{color: #fff;}

.gallery-section-page{width: 100%; height: auto; float: left; padding: 80px 0px; position: relative;}
.gallery-section-page:before{width: 100%; height: 36px; background-image: url("../../assets/images/up-v-viwe.png"); background-repeat: no-repeat; 
    position: absolute; top: 0px; left: 0px; content: "";}
    .gallery-section-page:after{width: 100%; height: 36px; background-image: url("../../assets/images/down-v-viwe.png"); background-repeat: no-repeat; 
        position: absolute; bottom: 0px; left: 0px; content: "";}
.gallery-section-page .picture-light-box{overflow: hidden; background: #fff; padding: 10px; margin-bottom: 15px;}


.gallery-section-page {
    padding: 80px 0px;background:#002366;
}

/* Override bootstrap column paddings */
/* .gallery-section-page .row > div {
    padding: 12px;overflow: hidden; position: relative;
} */
.gallery-section-page .picture-light-box .lightbox{ position: relative; overflow: hidden;height: 100%;
    float: left;}
.gallery-section-page .picture-light-box .lightbox img {
    background-color: #fff; 
    width: 100%;
    border-radius: 0;
    position: relative;
}

.gallery-section-page .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\f002';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.gallery-section-page .picture-light-box .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.gallery-section-page .picture-light-box .lightbox:hover:after,
.gallery-section-page .picture-light-box .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px) {
    body {
        padding: 0;
    }
}

.mobile-text-cover{width: auto; height: auto; float: left;}
.mobile-text-cover ul{display: block;}
.mobile-text-cover ul li{width: auto; height: auto; float: left; margin: 0px 15px; padding: 15px 55px; background: #fbea7b; border-radius: 8px; text-align: center;}
.mobile-text-cover ul li a{font-size: 18px; font-weight: 500; color: #000;}






.footer-socail-icon-section{width: 100%; height: auto; float: left; padding: 60px 0px;;}
.ft-socail-u{width:auto; height: auto; margin: 0px auto; display: table;}
.ft-socail-u ul{display: block;}
.ft-socail-u ul li{width:150px; height:auto; border: 2px solid #002366; padding: 15px; margin: 0px 15px; float: left;}
.ft-socail-u ul li a{color: #002366; font-weight:500;}
.ft-socail-u ul li i{color: #002366; font-size:30px; float: left; margin-right: 10px; }


.feature-art-image {
    position: absolute;
    z-index: 1;
  }
  .feature-art-image-top-right-art {
    top: -250px;
    right: 0;
  }
  .feature-art-image-left-art {
    left: 0;
    top: 0px;
  }
  .feature-art-image-bottom {
    right: 0;
    bottom: 110px;
  }



.enquirybtn {
    background:#fcd53b;
    border-radius: 50px;
    padding: 0px 21px !important;
    height: 35px;
    line-height: 35px;
    float: left;
    line-height: 32px;
    margin-top: 5px;
    margin-left: 10px;
}


.enquirybtn a i{ margin-right:8px }
.enquirybtn a{ color: #fff;
    font-weight: 500;  font-size: 14px;}

.marquee-text {
        box-sizing: border-box;
        -webkit-box-align: center;
        -moz-box-align: center;
        -o-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        overflow: hidden;
      background:#4fca19;
    }
    .marquee-text .top-info-bar {
        font-size: 14px;
        width: 200%;
        display: flex;
        -webkit-animation: marquee 25s linear infinite running;
        -moz-animation: marquee 25s linear infinite running;
        -o-animation: marquee 25s linear infinite running;
        -ms-animation: marquee 25s linear infinite running;
        animation: marquee 25s linear infinite running;
    }
    
    .marquee-text .top-info-bar:hover {
        -webkit-animation-play-state: paused;
        -moz-animation-play-state: paused;
        -o-animation-play-state: paused;
        -ms-animation-play-state: paused;
        animation-play-state: paused;
    }
    
    .marquee-text .top-info-bar .info-text {
        padding: 15px 30px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
    
    .marquee-text .top-info-bar a {
        color: #ffffff;
      text-decoration:none;
    }
    
    @-moz-keyframes marquee {
        0% {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -o-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }
    
        100% {
            -webkit-transform: translate(-50%);
            -moz-transform: translate(-50%);
            -o-transform: translate(-50%);
            -ms-transform: translate(-50%);
            transform: translate(-50%);
        }
    }
    
    @-webkit-keyframes marquee {
        0% {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -o-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }
    
        100% {
            -webkit-transform: translate(-50%);
            -moz-transform: translate(-50%);
            -o-transform: translate(-50%);
            -ms-transform: translate(-50%);
            transform: translate(-50%);
        }
    }
    
    @-o-keyframes marquee {
        0% {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -o-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }
    
        100% {
            -webkit-transform: translate(-50%);
            -moz-transform: translate(-50%);
            -o-transform: translate(-50%);
            -ms-transform: translate(-50%);
            transform: translate(-50%);
        }
    }
    
    @keyframes marquee {
        0% {
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -o-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }
    
        100% {
            -webkit-transform: translate(-50%);
            -moz-transform: translate(-50%);
            -o-transform: translate(-50%);
            -ms-transform: translate(-50%);
            transform: translate(-50%);
        }
    }
    





/* faq */
/* Base styles */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.faq {
    box-sizing: border-box;
    background: transparent;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.faq:not(:first-child) {
    border-top: 1px solid #e6e6e6;
}

.faq-title {
    margin: 0 35px 0 0;
    font-size: 18px;
    line-height: 1.4;
}

.faq-text {
    margin: 30px 0 0;
    display: none;
    line-height: 1.5rem;
    font-size: 16px;
}

.faq.active {
    background-color: #f8f8f8;
    box-shadow: inset 4px 0px 0px 0px #1F51FF;
}

.faq.active .faq-title {
    color: #1F51FF;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border: 1px solid #e6e6e6;
    color: inherit;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-top: 3px;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
    transition: 0.3s ease;
}

.faq-toggle:focus {
    outline: none;
}

.faq.active .faq-toggle {
    transform: rotate(180deg);
    background-color: #1F51FF;
    border-color: #1F51FF;
    color: #fff;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .faq-container {
        width: 95%;
        margin: 0 auto;
    }

    .faq {
        padding: 20px;
    }

    .faq-title {
        font-size: 16px;
        margin-right: 30px;
    }

    .faq-text {
        font-size: 14px;
        line-height: 1.4rem;
        margin-top: 20px;
    }

    .faq-toggle {
        top: 20px;
        right: 20px;
        height: 25px;
        width: 25px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .faq {
        padding: 15px;
    }

    .faq-title {
        font-size: 14px;
        margin-right: 25px;
    }

    .faq-text {
        font-size: 13px;
        line-height: 1.3rem;
        margin-top: 15px;
    }

    .faq-toggle {
        top: 15px;
        right: 15px;
        height: 20px;
        width: 20px;
        font-size: 12px;
    }
}
/* colleges */
.helponadmission-collegesd {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    padding: 60px 20px;
    overflow: hidden;
}
.helponadmission-collegesd h2 {
    color: #1F51FF;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    position: relative;
}
.helponadmission-collegesd h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #f1b51f;
    margin: 10px auto;
}
.college-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.college-item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}
.college-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.college-item:nth-child(3n-1) {
    transform: translateY(30px);
}
.college-item:nth-child(3n-1):hover {
    transform: translateY(20px);
}
.college-logo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #1F51FF;
}
.college-info {
    padding: 20px;
}
.college-name {
    color: #1F51FF;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 0 10px 0;
}
.college-description {
    color: #333;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
}
.college-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.8em;
    color: #666;
}
.college-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #1F51FF;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}
.college-link:hover {
    background-color: #f1b51f;
}
.load-more-container {
    text-align: center;
    margin-top: 40px;
}
.load-more-btn {
    background-color: #f1b51f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.load-more-btn:hover {
    background-color: #1F51FF;
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.college-item {
    animation: fadeInScale 0.5s ease forwards;
    opacity: 0;
}
@media (max-width: 1024px) {
    .college-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .college-item:nth-child(3n-1) {
        transform: none;
    }
    .college-item:nth-child(2n) {
        transform: translateY(30px);
    }
    .college-item:nth-child(2n):hover {
        transform: translateY(20px);
    }
}
@media (max-width: 768px) {
    .college-container {
        grid-template-columns: 1fr;
    }
    .college-item, .college-item:nth-child(2n), .college-item:nth-child(3n-1) {
        transform: none;
    }
    .college-item:hover {
        transform: translateY(-10px);
    }
}

@media only screen and (max-width:1480px) {
    .slide{height: auto; padding:220px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:12px 25px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 18px; }
}
@media only screen and (max-width:1379px) {
    .slide{height: auto; padding:220px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:12px 25px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 18px; }
}

@media only screen and (max-width:1280px) {
    .slide{height: auto; padding:220px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:12px 25px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 18px; }
}

@media only screen and (max-width: 1023px) {
    .slide{height: auto; padding:160px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:10px 18px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 16px; }

}


@media only screen and (max-width: 980px) {

    .slide .slide_content--headings{width: 100%}
    .from-box-78{background:#0eb460; padding:30px 15px; position: unset; width: 100%; border-radius: 0px;margin-top: 0rem;}
    .slide .slide_content--headings h2{font-size: 25px}
    .slide p{font-size: 14px; line-height: 20px}
    .slide{padding: 50px 20px}
    .btn_area a{padding: 10px 10px; font-size: 14px}
    .features{padding-top: 50px}
    .from-box-78 h2{color: #fff; font-size: 20px}
    .courses-box-post .post-picture{height: 160px;}
    .slide{height: auto; padding:140px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:8px 10px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 13px; }
}

@media only screen and (max-width: 768px) {

    .slide .slide_content--headings{width: 100%}
    .from-box-78{background:#0eb460; padding:30px 15px; position: unset; width: 100%; border-radius: 0px;margin-top: 0rem;}
    .slide .slide_content--headings h2{font-size: 25px}
    .slide p{font-size: 14px; line-height: 20px}
    .slide{padding: 50px 20px}
    .btn_area a{padding: 10px 10px; font-size: 14px}
    .features{padding-top: 50px}
    .from-box-78 h2{color: #fff; font-size: 20px}
    .college-inpage{padding: 30px 0px;}
    .logo-college-78{width: 25%; height: auto;}
    .logo-87{width: 100%; height: auto;}
    .content-card-wrap h2{font-size: 25px;}
    .content-card-wrap ul li {
        width: 100%;
        text-align: center;
        display: table;
    }
    .content-card-wrap ul li i {
        width: 35px;
        height: 35px;
        font-size: 20px;
        float: none;
        display: table;
        margin: 0px auto;
    }
    .content-card-wrap ul li p {
        font-size: 18px;
        float: none;
        width: 100%;
        display: table;
    }
    .feature-content-text{padding-left: 0px;}
    .slider {
        height: 200px;
    }
    .list img{width: 100%;}
    .feature-art-image-left-art{display: none;}
    .courses-section-page{padding: 30px 0px;}
    .courses-box-post .post-picture{height: 100px;}
    .slide{height: auto; padding:90px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:8px 10px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 13px; }
}

@media only screen and (max-width:580px){

    .slide .slide_content--headings{width: 100%}
    .from-box-78{background:#0eb460; padding:30px 15px; position: unset; width: 100%; border-radius: 0px;margin-top: 0rem;}
    .slide .slide_content--headings h2{font-size: 25px}
    .slide p{font-size: 14px; line-height: 20px}
    .slide{padding: 50px 20px}
    .btn_area a{padding: 10px 10px; font-size: 14px}
    .features{padding-top: 50px}
    .from-box-78 h2{color: #fff; font-size: 20px}
    .college-inpage{padding: 30px 0px;}
    .logo-college-78{width: 25%; height: auto;}
    .logo-87{width: 100%; height: auto;}
    .content-card-wrap h2{font-size: 25px;}
    .content-card-wrap ul li {
        width: 100%;
        text-align: center;
        display: table;
    }
    .content-card-wrap ul li i {
        width: 35px;
        height: 35px;
        font-size: 20px;
        float: none;
        display: table;
        margin: 0px auto;
    }
    .content-card-wrap ul li p {
        font-size: 18px;
        float: none;
        width: 100%;
        display: table;
    }
    .feature-content-text{padding-left: 0px;}
    .slider {
        height: 200px;
    }
    .list img{width: 100%;}
    .feature-art-image-left-art{display: none;}
    .courses-section-page{padding: 30px 0px;}
    .courses-box-post .post-picture{height: 230px;}
    .slide{height: auto; padding: 60px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:8px 10px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 13px; }
}

@media only screen and (max-width: 480px){

.slide .slide_content--headings{width: 100%}
.from-box-78{background:#0eb460; padding:30px 15px; position: unset; width: 100%; border-radius: 0px;margin-top: 0rem;}
.slide .slide_content--headings h2{font-size: 25px}
.slide p{font-size: 14px; line-height: 20px}
.slide{padding: 50px 20px}
.btn_area a{padding: 10px 10px; font-size: 14px}
.features{padding-top: 50px}
.from-box-78 h2{color: #fff; font-size: 20px}
.courses-box-post .post-picture{height: 150px;}
.slide{height: auto; padding: 50px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:8px 10px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 13px; }
}

@media only screen and (max-width: 320px){
    .slide .slide_content--headings{width: 100%}
    .from-box-78{background:#0eb460; padding:30px 15px; position: unset; width: 100%; border-radius: 0px;margin-top: 0rem;}
    .slide .slide_content--headings h2{font-size: 25px}
    .slide p{font-size: 14px; line-height: 20px}
   
    .btn_area a{padding: 10px 10px; font-size: 14px}
    .features{padding-top: 50px}
    .from-box-78 h2{color: #fff; font-size: 20px}

    .college-inpage{padding: 30px 0px;}
    .logo-college-78{width: 25%; height: auto;}
    .logo-87{width: 100%; height: auto;}
    .content-card-wrap h2{font-size: 25px;}
    .content-card-wrap ul li {
        width: 100%;
        text-align: center;
        display: table;
    }
    .content-card-wrap ul li i {
        width: 35px;
        height: 35px;
        font-size: 20px;
        float: none;
        display: table;
        margin: 0px auto;
    }
    .content-card-wrap ul li p {
        font-size: 18px;
        float: none;
        width: 100%;
        display: table;
    }
    .feature-content-text{padding-left: 0px;}
    .slider {
        height: 200px;
    }
    .list img{width: 100%;}
    .feature-art-image-left-art{display: none;}
    .courses-section-page{padding: 30px 0px;}
    .courses-box-post .post-picture{height: 100px;}
    .slide{height: auto; padding: 30px 0px}
.slide .slide_img{height: auto;}
.slide .slide_content--headings{margin-top: 15px}
.mobile-text-cover ul li{padding:8px 10px;margin: 0px 3px}
.mobile-text-cover ul li a{font-size: 13px; }
}

/*login panel wants */


/* Grid System */
.helponadmission_login-container {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding: 40px 20px;
  
}

.helponadmission_login-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.helponadmission_login-col {
    flex: 0 0 350px;
}

/* Card Styles */
.helponadmission_login-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(31, 81, 255, 0.15);
    transition: all 0.3s ease;
}

.helponadmission_login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(31, 81, 255, 0.2);
}

/* Icon Styles */
.helponadmission_login-icon-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #1F51FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: helponadmission_login-pulse 2s infinite;
}

.helponadmission_login-icon {
    color: white;
    font-size: 55px;
}

/* Title Styles */
.helponadmission_login-title {
    color: #1F51FF;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

/* Button Styles */
.helponadmission_login-btn {
    width: 100%;
    height: 60px;
    background: #1F51FF;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helponadmission_login-btn:hover {
    background: #1a44d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31, 81, 255, 0.3);
}

.helponadmission_login-btn i {
    color: white;
    font-size: 24px;
}

/* Support Card Specific */
.helponadmission_login-support {
    background: white;
}

.helponadmission_login-support .helponadmission_login-icon-box {
    background: #F1B51F;
}

.helponadmission_login-support .helponadmission_login-title {
    color: #F1B51F;
}

.helponadmission_login-support .helponadmission_login-btn {
    background: #F1B51F;
}

.helponadmission_login-support .helponadmission_login-btn:hover {
    background: #e5aa18;
    box-shadow: 0 4px 15px rgba(241, 181, 31, 0.3);
}

.helponadmission_login-support-text {
    color: #666;
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
}

/* Animations */
@keyframes helponadmission_login-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Media Queries */
@media screen and (max-width: 991px) {
    .helponadmission_login-container {
        padding: 20px;
    }

    .helponadmission_login-row {
        gap: 20px;
    }

    .helponadmission_login-col {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .helponadmission_login-card {
        height: 320px;
        padding: 25px;
    }

    .helponadmission_login-icon-box {
        width: 100px;
        height: 100px;
    }

    .helponadmission_login-icon {
        font-size: 45px;
    }

    .helponadmission_login-title {
        font-size: 24px;
    }

    .helponadmission_login-btn {
        height: 50px;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .helponadmission_login-card {
        padding: 20px;
    }

    .helponadmission_login-icon-box {
        width: 80px;
        height: 80px;
    }

    .helponadmission_login-icon {
        font-size: 35px;
    }

    .helponadmission_login-title {
        font-size: 20px;
    }

    .helponadmission_login-btn {
        font-size: 16px;
    }

    .helponadmission_login-support-text {
        font-size: 14px;
    }
}


/*college details */

  .institute_section {
            background: linear-gradient(135deg, #1F51FF 0%, #F1B51F 100%);
            min-height: 40vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .institute_container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2rem;
            width: 100%;
            max-width: 1200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .institute_header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .institute_logo {
            width: 150px;
            height: 150px;
            object-fit: contain;
            border-radius: 15px;
            background-color: white;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(31, 81, 255, 0.1);
        }

        .institute_title {
            flex: 1;
            min-width: 280px;
        }

        .institute_name {
            color: #1F51FF;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .institute_tagline {
            color: #F1B51F;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .institute_address {
            background: linear-gradient(90deg, #1F51FF 0%, #F1B51F 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 600px;
        }

        @media (max-width: 768px) {
            .institute_header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .institute_logo {
                margin: 0 auto;
            }

            .institute_name {
                font-size: 2rem;
            }

            .institute_address {
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .institute_section {
                padding: 1rem;
            }

            .institute_container {
                padding: 1.5rem;
            }

            .institute_logo {
                width: 120px;
                height: 120px;
            }

            .institute_name {
                font-size: 1.8rem;
            }

            .institute_tagline {
                font-size: 1rem;
            }
        }
        
        
         .ins_over_section {
            min-height: 100vh;
            background: #fff;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .ins_over_bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(31, 81, 255, 0.03) 0%, rgba(241, 181, 31, 0.03) 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
            z-index: 1;
        }

        .ins_over_container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .ins_over_media {
            position: relative;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(12, 1fr);
            height: 600px;
        }

        .ins_over_image_main {
            grid-column: 1 / 10;
            grid-row: 3 / -1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 30px 30px 60px rgba(31, 81, 255, 0.1);
            position: relative;
            z-index: 2;
        }

        .ins_over_image_accent {
            grid-column: 7 / -1;
            grid-row: 1 / 8;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 30px 30px 60px rgba(241, 181, 31, 0.1);
            position: relative;
            z-index: 1;
        }

        .ins_over_content {
            position: relative;
            padding-right: 2rem;
        }

        .ins_over_tag {
            display: inline-block;
            background: linear-gradient(45deg, #1F51FF, #F1B51F);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2rem;
            transform: rotate(-2deg);
        }

        .ins_over_title {
            font-size: 3.5rem;
            background: linear-gradient(45deg, #1F51FF, #F1B51F);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .ins_over_description {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .ins_over_actions {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .ins_over_button {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .ins_over_button:hover {
            transform: translateY(-3px);
        }

        .ins_over_call {
            background: #1F51FF;
            color: white;
            box-shadow: 0 10px 20px rgba(31, 81, 255, 0.2);
        }

        .ins_over_call:hover {
            box-shadow: 0 15px 30px rgba(31, 81, 255, 0.3);
        }

        .ins_over_email {
            background: white;
            color: #1F51FF;
            border: 2px solid #1F51FF;
            box-shadow: 0 10px 20px rgba(31, 81, 255, 0.1);
        }

        .ins_over_email:hover {
            box-shadow: 0 15px 30px rgba(31, 81, 255, 0.2);
        }

        .ins_over_icon {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 1200px) {
            .ins_over_container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .ins_over_media {
                height: 500px;
            }

            .ins_over_content {
                padding-right: 0;
                text-align: center;
            }

            .ins_over_actions {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .ins_over_section {
                padding: 4rem 1.5rem;
            }

            .ins_over_media {
                height: 400px;
            }

            .ins_over_title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .ins_over_media {
                height: 300px;
                display: block;
            }

            .ins_over_image_main {
                width: 100%;
                height: 100%;
            }

            .ins_over_image_accent {
                display: none;
            }

            .ins_over_title {
                font-size: 2rem;
            }

            .ins_over_button {
                width: 100%;
                justify-content: center;
            }
        }
        
        
         .ins_cou_section {
            min-height: 100vh;
            background: #f8f9fe;
            position: relative;
            overflow: hidden;
            padding: 80px 32px;
        }

        .ins_cou_bg_shape {
            position: absolute;
            width: 800px;
            height: 800px;
            background: #1F51FF;
            border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
            top: -20%;
            right: -20%;
            opacity: 0.05;
            animation: morph 15s linear infinite;
        }

        @keyframes morph {
            0% { border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%; }
            50% { border-radius: 57% 43% 30% 70% / 55% 55% 45% 45%; }
            100% { border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%; }
        }

        .ins_cou_container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .ins_cou_header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .ins_cou_subtitle {
            display: inline-block;
            padding: 8px 24px;
            background: white;
            border-radius: 50px;
            color: #1F51FF;
            font-weight: 600;
            margin-bottom: 24px;
            box-shadow: 0 5px 20px rgba(31, 81, 255, 0.1);
        }

        .ins_cou_title {
            font-size: 48px;
            color: #111;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .ins_cou_grid {
            display: grid;
            grid-template-columns: repeat(3, 433px);
            gap: 32px;
        }

        .ins_cou_card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: white;
            transition: all 0.4s ease;
            min-height: 550px;
            display: flex;
            flex-direction: column;
        }

        .ins_cou_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(31, 81, 255, 0.1);
        }

        .ins_cou_image_wrap {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .ins_cou_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .ins_cou_card:hover .ins_cou_image {
            transform: scale(1.1);
        }

        .ins_cou_content {
            padding: 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .ins_cou_tag {
            color: #F1B51F;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ins_cou_name {
            font-size: 24px;
            font-weight: bold;
            color: #111;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .ins_cou_desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 24px;
            font-size: 15px;
        }

        .ins_cou_meta {
            display: grid;
            grid-template-columns: repeat(2, 185px);
            gap: 16px;
            padding: 24px 0;
            border-top: 1px solid #eee;
            margin-top: auto;
        }

        .ins_cou_meta_item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
        }

        .ins_cou_meta_icon {
            background: #f8f9fe;
            width: 35px;
            height: 35px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1F51FF;
        }

        .ins_cou_button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #1F51FF;
            color: white;
            padding: 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 24px;
            transition: all 0.3s ease;
        }

        .ins_cou_button:hover {
            background: #1a44d8;
        }

        .ins_cou_button_icon {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 1200px) {
            .ins_cou_grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .ins_cou_section {
                padding: 64px 24px;
            }

            .ins_cou_title {
                font-size: 40px;
            }

            .ins_cou_grid {
                grid-template-columns: 1fr;
            }

            .ins_cou_card {
                min-height: auto;
            }
        }

        @media (max-width: 480px) {
            .ins_cou_title {
                font-size: 32px;
            }
            
            .ins_cou_meta {
                grid-template-columns: 1fr;
            }

            .ins_cou_content {
                padding: 24px;
            }
        }
        
        
        .ins_caover_section {
            padding: 80px 32px;
            min-height: 30vh;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
        }

        .ins_caover_container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .ins_caover_grid {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .ins_caover_card {
            flex: 1;
            min-width: 280px;
            background: white;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(31, 81, 255, 0.05);
            transition: all 0.4s ease;
            padding: 25px;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(31, 81, 255, 0.1);
        }

        .ins_caover_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1F51FF, #F1B51F);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .ins_caover_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(31, 81, 255, 0.1);
            border-color: transparent;
        }

        .ins_caover_card:hover::before {
            transform: scaleX(1);
        }

        .ins_caover_icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(31, 81, 255, 0.1);
            border-radius: 15px;
            margin-bottom: 20px;
            color: #1F51FF;
            transition: all 0.3s ease;
        }

        .ins_caover_card:hover .ins_caover_icon {
            background: #1F51FF;
            color: white;
            transform: rotateY(180deg);
        }

        .ins_caover_title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .ins_caover_value {
            font-size: 24px;
            color: #1F51FF;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .ins_caover_features {
            margin-top: auto;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 15px;
        }

        .ins_caover_feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            margin-bottom: 8px;
        }

        .ins_caover_feature_icon {
            padding: 6px;
            background: rgba(241, 181, 31, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #F1B51F;
        }

        @media (max-width: 1500px) {
            .ins_caover_card {
                flex: 0 0 calc(33.333% - 20px);
            }
        }

        @media (max-width: 1200px) {
            .ins_caover_card {
                flex: 0 0 calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .ins_caover_section {
                padding: 60px 20px;
            }

            .ins_caover_card {
                flex: 0 0 100%;
            }
        }
        
        
        
        
         .ins_teacher_section {
            padding: 80px 32px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            min-height: 40vh;
        }

        .ins_teacher_container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .ins_teacher_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .ins_teacher_card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(31, 81, 255, 0.05);
        }

        .ins_teacher_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(31, 81, 255, 0.1);
        }

        .ins_teacher_header {
            padding: 30px;
            background: linear-gradient(-45deg, #1F51FF, #2A5FFF);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .ins_teacher_header::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .ins_teacher_title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            color: #ffffff;
        }

        .ins_teacher_subtitle {
            font-size: 14px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            color: #ffffff;
        }

        .ins_teacher_content {
            padding: 30px;
        }

        .ins_teacher_stat {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .ins_teacher_stat:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .ins_teacher_icon {
            width: 50px;
            height: 50px;
            background: rgba(31, 81, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1F51FF;
            transition: all 0.3s ease;
        }

        .ins_teacher_card:hover .ins_teacher_icon {
            background: #1F51FF;
            color: white;
            transform: rotateY(180deg);
        }

        .ins_teacher_info {
            flex: 1;
        }

        .ins_teacher_label {
            font-size: 15px;
            color: #666;
            margin-bottom: 5px;
        }

        .ins_teacher_value {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .ins_teacher_badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(31, 81, 255, 0.1);
            color: #1F51FF;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-left: 10px;
        }

        @media (max-width: 1200px) {
            .ins_teacher_grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .ins_teacher_section {
                padding: 60px 20px;
            }

            .ins_teacher_grid {
                grid-template-columns: 1fr;
            }

            .ins_teacher_title {
                font-size: 20px;
            }

            .ins_teacher_value {
                font-size: 20px;
            }
        }
        
        .ins_cta_section {
            padding: 80px 32px;
            background: linear-gradient(135deg, #1F51FF 0%, #F1B51F 100%);
            position: relative;
            overflow: hidden;
        }

        .ins_cta_section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(255,255,255,0.1) 25%, 
                transparent 25%, 
                transparent 50%, 
                rgba(255,255,255,0.1) 50%, 
                rgba(255,255,255,0.1) 75%, 
                transparent 75%, 
                transparent);
            background-size: 100px 100px;
            opacity: 0.1;
        }

        .ins_cta_container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .ins_cta_card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ins_cta_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.15);
        }

        .ins_cta_icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            transition: all 0.3s ease;
        }

        .ins_cta_card:hover .ins_cta_icon {
            transform: rotateY(180deg);
            background: rgba(255, 255, 255, 0.3);
        }

        .ins_cta_title {
            font-size: 28px;
            color: white;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .ins_cta_text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .ins_cta_button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: white;
            color: #1F51FF;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .ins_cta_button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .ins_cta_contact {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ins_cta_contact_icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .ins_cta_contact_info {
            flex: 1;
        }

        .ins_cta_label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 5px;
        }

        .ins_cta_value {
            font-size: 20px;
            color: white;
            font-weight: bold;
            letter-spacing: 1px;
        }

        @media (max-width: 992px) {
            .ins_cta_container {
                grid-template-columns: 1fr;
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .ins_cta_section {
                padding: 60px 24px;
            }

            .ins_cta_card {
                padding: 30px;
            }

            .ins_cta_title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .ins_cta_section {
                padding: 40px 20px;
            }

            .ins_cta_button {
                width: 100%;
                justify-content: center;
            }
        }
        
        
        
        .ins_faq_section {
            padding: 80px 32px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            min-height: 100vh;
        }

        .ins_faq_container {
            max-width: 800px;
            margin: 0 auto;
        }

        .ins_faq_header {
            text-align: center;
            margin-bottom: 50px;
        }

        .ins_faq_title {
            font-size: 36px;
            color: #1F51FF;
            margin-bottom: 20px;
        }

        .ins_faq_subtitle {
            color: #666;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .ins_faq_list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ins_faq_item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(31, 81, 255, 0.05);
            transition: all 0.3s ease;
        }

        .ins_faq_item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(31, 81, 255, 0.1);
        }

        .ins_faq_question {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            user-select: none;
        }

        .ins_faq_question_text {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            flex: 1;
            padding-right: 20px;
        }

        .ins_faq_icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(31, 81, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .ins_faq_icon svg {
            width: 14px;
            height: 14px;
            color: #1F51FF;
            transition: all 0.3s ease;
        }

        .ins_faq_answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .ins_faq_answer_text {
            color: #666;
            line-height: 1.6;
            padding-bottom: 20px;
        }

        .ins_faq_item.active .ins_faq_icon {
            background: #1F51FF;
            transform: rotate(180deg);
        }

        .ins_faq_item.active .ins_faq_icon svg {
            color: white;
        }

        .ins_faq_item.active .ins_faq_answer {
            max-height: 300px;
        }

        @media (max-width: 768px) {
            .ins_faq_section {
                padding: 60px 24px;
            }

            .ins_faq_title {
                font-size: 28px;
            }

            .ins_faq_question_text {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .ins_faq_section {
                padding: 40px 20px;
            }

            .ins_faq_question {
                padding: 16px;
            }

            .ins_faq_answer {
                padding: 0 16px;
            }
        }
        
        
         .ins_detail_section {
            padding: 80px 32px;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
        }

        .ins_detail_container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .ins_detail_grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .ins_detail_item {
            background: white;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(31, 81, 255, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(31, 81, 255, 0.1);
        }

        .ins_detail_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(31, 81, 255, 0.1);
            border-color: #1F51FF;
        }

        .ins_detail_icon {
            width: 50px;
            height: 50px;
            background: rgba(31, 81, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #1F51FF;
            transition: all 0.3s ease;
        }

        .ins_detail_item:hover .ins_detail_icon {
            background: #1F51FF;
            color: white;
            transform: rotateY(180deg);
        }

        .ins_detail_label {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ins_detail_value {
            font-size: 20px;
            color: #333;
            font-weight: bold;
            line-height: 1.4;
        }

        .ins_detail_contact {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            color: #1F51FF;
            font-size: 14px;
            text-decoration: none;
        }

        .ins_detail_contact svg {
            width: 16px;
            height: 16px;
        }

        .ins_detail_contact:hover {
            text-decoration: underline;
        }

        @media (max-width: 992px) {
            .ins_detail_grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .ins_detail_section {
                padding: 60px 24px;
            }

            .ins_detail_item {
                padding: 24px;
            }
        }

        @media (max-width: 480px) {
            .ins_detail_section {
                padding: 40px 20px;
            }

            .ins_detail_value {
                font-size: 18px;
            }
        }
        
        
        
        .ins_enqmain_container {
            min-height: 100vh;
            background: #f8f9ff;
            position: relative;
            overflow: hidden;
        }

        .ins_enqmain_container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 100%;
            height: 100%;
            background: #1F51FF;
            transform: rotate(-12deg);
            z-index: 0;
        }

        .ins_enqmain_wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
        }

        .ins_enqmain_title {
            text-align: center;
            color: white;
            font-size: 3rem;
            margin-bottom: 3rem;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .ins_enqmain_content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }

        .ins_enqmain_image_section {
            position: relative;
            height: 600px;
            border-radius: 30px;
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
            box-shadow: 0 25px 50px -12px rgba(31, 81, 255, 0.25);
        }

        .ins_enqmain_image_section:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .ins_enqmain_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ins_enqmain_image_overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                45deg,
                rgba(31, 81, 255, 0.4),
                rgba(241, 181, 31, 0.4)
            );
        }

        .ins_enqmain_form_section {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .ins_enqmain_form_section::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: #F1B51F;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.5;
        }

        .ins_enqmain_form_title {
            color: #1F51FF;
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
            padding-left: 1rem;
        }

        .ins_enqmain_form_title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #F1B51F;
            border-radius: 2px;
        }

        .ins_enqmain_form_group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .ins_enqmain_label {
            display: block;
            margin-bottom: 0.5rem;
            color: #4a5568;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .ins_enqmain_input,
        .ins_enqmain_select,
        .ins_enqmain_textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            transition: all 0.3s ease;
            font-size: 1rem;
            background: #f8fafc;
        }

        .ins_enqmain_input:focus,
        .ins_enqmain_select:focus,
        .ins_enqmain_textarea:focus {
            outline: none;
            border-color: #1F51FF;
            background: white;
            box-shadow: 0 0 0 4px rgba(31, 81, 255, 0.1);
        }

        .ins_enqmain_form_grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .ins_enqmain_submit_btn {
            width: 100%;
            padding: 1.2rem;
            background: #1F51FF;
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .ins_enqmain_submit_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;
        }

        .ins_enqmain_submit_btn:hover::before {
            left: 100%;
        }

        .ins_enqmain_submit_btn:hover {
            background: #F1B51F;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(241, 181, 31, 0.3);
        }

        .ins_enqmain_decorator {
            position: absolute;
            border-radius: 50%;
            background: #F1B51F;
            opacity: 0.1;
            z-index: -1;
        }

        .ins_enqmain_decorator:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            right: 5%;
        }

        .ins_enqmain_decorator:nth-child(2) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: -75px;
        }

        @media (max-width: 1024px) {
            .ins_enqmain_content {
                grid-template-columns: 1fr;
            }

            .ins_enqmain_image_section {
                height: 400px;
                transform: none;
            }

            .ins_enqmain_form_grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .ins_enqmain_wrapper {
                padding: 2rem 1rem;
            }

            .ins_enqmain_title {
                font-size: 2rem;
            }

            .ins_enqmain_form_section {
                padding: 2rem;
            }
        }
