/* Global Styles */
:root {
    --primary-color: #2c7873;
    --secondary-color: #6fb98f;
    --light-color: #e8f4ea;
    --dark-color: #2d3436;
    --white-color: #ffffff;
    --text-color: #333333;
    --text-light: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button Styles - Unified */
.btn, .btncard, .btn-outline, .btn-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover, .btncard:hover, .btn-small:hover {
    background-color: #235d59;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-small {
    padding: 5px 15px;
    font-size: 0.9rem;
}

.cube {
    color: var(--primary-color);
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-color);  
}

p {
    margin-bottom: 15px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
    text-align: center;
}

.announcement-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-bar .btn-small {
    background-color: var(--white-color);
    color: var(--primary-color);
    margin-left: 10px;
}

/* Header Styles */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* @media screen and (max-width:767px){
    header .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #25D366;
    }
    .logo img{
        margin-right: 0;
    }
    .container{
        width: 100%;
        height: 80px;
        display: flex;
    }
    .logo{
        background-color: #e8f4ea;
    }

    nav{
        background-color: #aaa;
    }

    nav ul li {
        margin-left: 0;
    }
} */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: var(--dark-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menubar{
    width: 20rem;
    height: 100vh;
    background-color: #eee;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    transition: right 0.3s ease-in-out;
    padding: 1rem;
}
 .mobile-menubar.active{
    /* display: block; */
    right: 0;
 }
 .mobile-menubar button{
    background: transparent;
    border: none;
    font-size: 1.2rem;
    float: right;
    cursor: pointer;
    margin-bottom: 1rem;
 }
 .mobile-menubar ul{
    list-style: none;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .mobile-menubar ul li{
    margin-bottom: 1rem;
 }

 .mobile-menubar ul li a{
    color: #000;
    text-decoration: none;
    font-weight: bold;
 }

 .mobile-menubar ul li a {
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-menubar ul li a:hover, .mobile-menubar ul li a.active {
    color: var(--primary-color);
}

.mobile-menubar ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}
/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white-color);
    margin-top: 70px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--light-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Quick Stats Section */
.quick-stats {
    padding: 50px 0;
    background-color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 40px;
    color: var(--primary-color);
}

.stat-item h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stat-item p {
    margin: 0;
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Courses Overview */
.courses-overview {
    padding: 80px 0;
    background-color: var(--white-color);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-icon i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.course-meta i {
    margin-right: 5px;
}

.section-footer {
    text-align: center;
    margin-top: 30px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Upcoming Batches Section */
.upcoming-batches {
    padding: 80px 0;
    background-color: var(--white-color);
}

.batches-table {
    overflow-x: auto;
}

.batches-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.batches-table th, .batches-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.batches-table th {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.batches-table tr:hover {
    background-color: var(--light-color);
}

.batches-table .btncard {
    padding: 8px 15px;
}

/* Learning Methodology Section */
.learning-methodology {
    padding: 80px 0;
    background-color: var(--light-color);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 50px;
    align-items: center;
}

.methodology-steps {
    /* display: grid;
    grid-template-columns: 400px 400px;
    grid-gap: 50px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    gap: 20px;
    column-gap: 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 5px;
}

.methodology-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #FFD700;
}

.student-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.student-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.student-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.student-info span {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-cta {
    text-align: center;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
}

.blog-date span {
    display: block;
}

.blog-date span:first-child {
    font-size: 20px;
    font-weight: bold;
}

.blog-content {
    padding: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    gap: 5px;
    margin-top: 10px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Partner Companies Section */
.partner-companies {
    padding: 80px 0;
    background-color: var(--white-color);
}

.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo > img{
    max-width: 200px;
    max-height: 100px;
    padding: 15px;
    /* filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease; */
}

/* .partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
} */

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.cta-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.cta h2 {
    color: var(--white-color);
    font-size: 36px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btncard {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.cta-buttons .btncard:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--white-color);
}

.newsletter-box {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-content {
    flex: 1 1 300px;
}

.newsletter-content h3 {
    margin-bottom: 10px;
}

.newsletter-content p {
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1 1 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section img {
    width: 14rem;
}

.footer-section p, .footer-section ul li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info {
    background-color: transparent !important; /* Ensure no background override */
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-contact a:hover {
    transform: scale(1.1);
}

.floating-contact .whatsapp {
    background-color: #25D366;
}

.floating-contact .phone {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        text-align: center;
        padding: 10px 0;
    }
    
    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
        margin-bottom: 20px;
        /* position: absolute;
        top: 25px;
        right: 20px; */
    }
    
    .hero {
        height: auto;
        padding: 100px 0 60px;
    }
    
    .hero h2 {
        font-size: 32px;
    }

    .newsletter-content {
        flex: 1 1 150px;
    }
    .newsletter-form {
        flex: 1 1 100px;
    }

    .newsletter-form input{
        width: 100%;
        max-height: 3rem;
    }

    .newsletter-form .btncard{
        width: 100%;
        max-height: 3rem;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mobile-menu{
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .partner-logo > img{
        max-width: 8em;
        max-height: 10em;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .methodology-steps {
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }

    /* .newsletter{
        padding: 20px 0;
    } */
    
    .newsletter-content {
        flex: 1 1 150px;
    }

    .newsletter-form {
        flex: 1 1 150px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        max-height: 50px;
        border: 1px solid #ddd;
        border-radius: 4px;
        outline: none;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-contact a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-content {
        gap: 0;
        margin-bottom: 0;
    }
}


/* About Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
    padding: 70px 0;
    margin-top: 93px; /* Account for fixed header */
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* About Content Section */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: center;
}
#mission-grid{
    order: -1;
}

.about-text h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.7;
}

.about-image{
    width: 28rem;
    height: 20rem;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: fit-content;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 36px;
    color: var(--dark-color);
    padding-bottom: 15px;
}

.team h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid var(--light-color);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
}

.team-member h3 {
    margin-bottom: 8px;
    font-size: 22px;
    color: var(--dark-color);
}

.team-member p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Stats Section */
.stats {
    padding: 70px 0;
    background-color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: var(--light-color);
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background-color: var(--primary-color);
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.stat-item p {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.stat-item:hover h3,
.stat-item:hover p {
    color: var(--white-color);
}

/* Our Values Section (Additional) */
.our-values {
    padding: 80px 0;
    background-color: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Timeline Section (Additional) */
.timeline-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute;
    top: 10px;
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-content {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* CTA Section Styling (Similar to Home) */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
}

.about-cta h2 {
    color: var(--white-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 10px;
}

.about-cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-text, .about-image, .team-member, .stat-item, .value-card, .timeline-item {
    animation: slideUp 0.6s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 0;
        margin-bottom: 10px;
    }
    
    /* Display image before text on tablets */
    .about-image {
        width: 20rem;
        height: 20rem; 
    }
    .about-image img{
        width: 100%;
        height: 100%;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 45px;
        padding-right: 0;
        margin-left: 0;
        justify-content: flex-start;
    }
    
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
        margin-top: 100px; /* Adjust for mobile header height */
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .team h2, .our-values h2, .timeline-section h2, .about-cta h2 {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .team-member img {
        width: 140px;
        height: 140px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 20px 0;
    }

    .about-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 0;
        padding: 30px 0;
    }
    .about-image{
        width: 100%;
        max-height: 15rem;
        margin-bottom: 0;
    }

    #mission-grid{
        order: 1;
    }

    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .team-grid, .values-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-year {
        font-size: 16px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .about-cta h2 {
        font-size: 24px;
    }
    
    .about-cta .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}

/* Additional Interactive Elements */
.team-member .social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-member:hover .social-links {
    opacity: 1;
    transform: translateY(0);
}

.team-member .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-member .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Scroll Reveal Animation Class - Add with JavaScript */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




/* Course Page Styles */

/* Course Details Section */
.course-details {
    padding: 80px 0;
    background-color: var(--white-color);
}

/* Course Tabs */
.course-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

/* Course Info Layout */
.course-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.course-highlights {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 110px;
}

.course-highlights h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.course-highlights p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-color);
}

.course-highlights i {
    margin-right: 10px;
    color: var(--primary-color);
}

.course-highlights .btn {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
}

/* Syllabus Section */
.syllabus {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.syllabus h3 {
    color: var(--dark-color);
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.syllabus-item {
    width: 100%;
    height: 40px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
}
.syllabus-item.active{
    width: 100%;
    height: auto;
    transition: all 0.2s ease-in 0.9s;
}
/* .syllabus-item {
    margin-bottom: 25px;
    animation: slideUp 0.6s ease forwards;
} */

/* .syllabus-item {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: 
        max-height 0.5s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.syllabus-item.active {
    max-height: 500px;
    opacity: 1;
    transform: scaleY(1);
} */

.syllabus-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.syllabus-item h4:before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary-color);
}
.syllabus-item h4:hover{
    transform: translateY(-3px);
}

.syllabus-item ul {
    list-style: none;
    padding-left: 28px;
}

.syllabus-item ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.syllabus-item ul li:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
}

/* Course Benefits Section */
.course-benefits {
    padding: 80px 0;
    background-color: var(--light-color);
}

.course-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.course-benefits h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.benefit-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: var(--dark-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Enroll Section */
.enroll-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
}

.enroll-section h2 {
    color: var(--white-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.enroll-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.enroll-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    color: var(--white-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group .btn {
    width: 100%;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.form-group .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Course FAQ Section */
.course-faq {
    padding: 80px 0;
    background-color: var(--white-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    background-color: var(--white-color);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.faq-item.active .faq-question h3 {
    color: var(--white-color);
}

.faq-item.active .faq-question i {
    color: var(--white-color);
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Animation for Tab Content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .course-info {
        grid-template-columns: 1fr;
    }
    
    .course-highlights {
        position: static;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .course-details {
        padding: 60px 0;
    }
    
    .course-tabs {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .syllabus {
        padding: 20px;
    }
    
    .course-highlights h2 {
        font-size: 24px;
    }
    
    .course-benefits h2 {
        font-size: 28px;
    }
    
    .benefit-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .course-details,
    .course-benefits,
    .enroll-section,
    .course-faq {
        padding: 40px 0;
    }
    
    .syllabus-item h4 {
        font-size: 18px;
    }
    
    .benefit-item i {
        font-size: 36px;
    }
    
    .benefit-item h3 {
        font-size: 20px;
    }
    
    .enroll-form {
        padding: 20px;
    }
    
    .course-highlights {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

/* Additional JavaScript-driven classes */
.tab-btn.active {
    position: relative;
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
}

/* Course Preview Optional */
.course-preview {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.course-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.preview-overlay i {
    font-size: 60px;
    color: var(--white-color);
}

.course-preview:hover .preview-overlay {
    opacity: 1;
}

/* Placement Page Styles */

/* Placement Stats Section */
.placement-stats {
    padding: 80px 0;
    background-color: var(--light-color);
}

.placement-stats h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.placement-stats h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Hiring Partners Section */
.hiring-partners {
    padding: 80px 0;
    background-color: var(--white-color);
}

.hiring-partners h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.hiring-partners h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.partners-grid img {
    max-width: 180px;
    height: auto;
    padding: 15px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partners-grid img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    filter: grayscale(0);
    opacity: 1;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: var(--light-color);
}

.success-stories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.success-stories h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.story-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
    transition: all 0.3s ease;
}

.story-card:hover img {
    border-color: var(--primary-color);
}

.story-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.story-card .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.story-card .package {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-card .testimonial {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.story-card .testimonial:before {
    content: '\201C';
    font-size: 30px;
    position: absolute;
    top: -10px;
    left: -5px;
    color: var(--primary-color);
    opacity: 0.5;
}

/* Placement Process Section */
.placement-process {
    padding: 80px 0;
    background-color: var(--white-color);
}

.placement-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.placement-process h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background-color: var(--primary-color);
}

.step {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
    padding-right: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 1;
    box-shadow: 0 0 0 5px var(--white-color);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 20px;
}

.step p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item, .partners-grid img, .story-card, .step {
    animation: slideUp 0.6s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partners-grid img {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .placement-stats, .hiring-partners, .success-stories, .placement-process {
        padding: 60px 0;
    }
    
    .placement-stats h2, .hiring-partners h2, .success-stories h2, .placement-process h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .story-card {
        padding: 25px 20px;
    }
    
    .story-card img {
        width: 100px;
        height: 100px;
    }
    
    .process-steps:before {
        left: 15px;
    }
    
    .step {
        padding-left: 50px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
        left: -15px;
    }
}

@media (max-width: 576px) {
    .placement-stats, .hiring-partners, .success-stories, .placement-process {
        padding: 40px 0;
    }
    
    .placement-stats h2, .hiring-partners h2, .success-stories h2, .placement-process h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .partners-grid {
        gap: 15px;
    }
    
    .partners-grid img {
        max-width: 120px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .story-card h3 {
        font-size: 20px;
    }
    
    .step {
        padding-left: 45px;
        padding-right: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    .step p {
        font-size: 14px;
    }
}

/* Add hover effect to stats */
.stat-item:hover {
    transform: translateY(-8px);
    background-color: var(--primary-color);
}

.stat-item:hover h3,
.stat-item:hover p {
    color: var(--white-color);
}

/* Add cool effects for process timeline */
.process-steps .step:nth-child(odd):hover {
    background-color: rgba(44, 120, 115, 0.1);
}

.process-steps .step:nth-child(even):hover {
    background-color: rgba(111, 185, 143, 0.1);
}

/* Add a subtle shadow to the testimonial quotes */
.story-card .testimonial {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


/* Gallery Page Main Styles */
/* :root {
    --primary-color: #2C7873;
    --secondary-color: #6FB98F;
    --dark-color: #021C1E;
    --light-color: #F4F7F7;
    --white-color: #FFFFFF;
    --text-color: #555555;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    padding: 10px 25px;
    margin: 0 8px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.filter-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white-color);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-size: 16px;
    font-weight: 500;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

/* Video Gallery Styles */
.video-gallery {
    padding: 80px 0;
    background-color: var(--light-color);
}

.video-gallery h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.video-gallery h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.5s ease; */
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(44, 120, 115, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-item:hover .play-btn {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

.video-item h3 {
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    color: var(--dark-color);
    text-align: center;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(44, 120, 115, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 10px rgba(44, 120, 115, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(44, 120, 115, 0);
    }
}

.gallery-item, .video-item {
    animation: slideUp 0.6s ease forwards;
}

/* LightGallery Customization */
.lg-backdrop {
    background-color: rgba(2, 28, 30, 0.9);
}

.lg-toolbar,
.lg-outer .lg-thumb-outer,
.lg-actions .lg-next, 
.lg-actions .lg-prev {
    background-color: rgba(44, 120, 115, 0.8);
}

.lg-toolbar .lg-icon:hover,
.lg-actions .lg-next:hover, 
.lg-actions .lg-prev:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .gallery-section, .video-gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .filter-btn {
        padding: 8px 20px;
        margin: 0 5px 8px;
        font-size: 14px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .video-item h3 {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-section, .video-gallery {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .gallery-item .caption {
        padding: 10px;
        font-size: 14px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        margin: 0 4px 6px;
        font-size: 13px;
    }
}

/* Add animation for filter buttons */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: height 0.3s ease;
}

.filter-btn:hover:after {
    height: 100%;
}

/* Gallery item loading effect */
.gallery-grid {
    position: relative;
}

.gallery-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-grid.loading::after {
    opacity: 1;
    visibility: visible;
}

/* Lazy loading animation for images */
.gallery-item.loading img {
    filter: blur(10px);
}

.gallery-item img.loaded {
    filter: blur(0);
    transition: filter 0.5s ease;
}

/* Modal video styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 28, 30, 0.9);
    z-index: 1000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.open {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.modal.open .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--white-color);
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Page Styles */
/* :root {
    --primary-color: #2C7873;
    --secondary-color: #6FB98F;
    --dark-color: #021C1E;
    --light-color: #F4F7F7;
    --white-color: #FFFFFF;
    --text-color: #555555;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

/* Page Header Styles - consistent with other pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Info Styles */
.contact-info {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(44, 120, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: rotate(360deg);
}

.info-item div {
    flex: 1;
}

.info-item h3 {
    color: var(--dark-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Contact Form Styles */
.contact-form {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--light-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 120, 115, 0.2);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232C7873' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

button.btncard {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 120, 115, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

button.btncard:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transition: width 0.5s ease;
    z-index: -1;
}

button.btncard:hover:before {
    width: 100%;
}

button.btncard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 120, 115, 0.4);
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.map-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.map-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.map-container:hover:before {
    opacity: 1;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btncard {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-cta .btncard:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Form Validation Styles */
.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-group input:valid:focus,
.form-group select:valid:focus,
.form-group textarea:valid:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(111, 185, 143, 0.2);
}

/* Success Message Style */
.form-success {
    display: none;
    background-color: rgba(111, 185, 143, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info, .contact-form, .map-container {
    animation: slideUp 0.6s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header, .contact-section, .map-section, .contact-cta {
        padding: 60px 0;
    }
    
    .page-header h1, .contact-cta h2 {
        font-size: 32px;
    }
    
    .page-header p, .contact-cta p {
        font-size: 16px;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1, .contact-cta h2, .map-section h2 {
        font-size: 28px;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 24px;
    }
    
    .info-item i {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .form-group input, 
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    button.btncard, .contact-cta .btncard {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .page-header, .contact-section, .map-section, .contact-cta {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .contact-info, .contact-form {
        padding: 25px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-item h3 {
        font-size: 16px;
    }
    
    .info-item i {
        margin-right: 15px;
    }
}

/* Form loading animation */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading:after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--white-color);
    border-top-color: transparent;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: calc(50% - 10px);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*