:root {
    --primary-color: #15BDCE;
    ;

    --sc: #14666F;
    --tc: #FC0000;
    --fc: #FFF3EB;
    --fc2: #C7B5B5;
    --txt: #000;

}

body {
    background-color: #F1FBFC;
    /* position: relative; */
    /* z-index:-2000 */
    font-family: "Montserrat", sans-serif;
}

.navbar-toggler {
    border: none !important;

}


/* TOP BAR START */
.notification-bar {
    background: white !important;
    color: #333;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.notification-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
}

.notification-left i {
    color: #00AEEF;
    font-size: 23px;
}

.notification-center {
    font-size: 15px;
    color: #333;
    flex-grow: 1;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-left: -200px;
}

.enroll-btn {
    background: #fee;
    color: #f66;
    border: none;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.enroll-btn:hover {
    background: #fdd;
    color:black;
}

.close-icon {
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

/* TOP BAR END */


/* Navbar Custom Styling */
.navbar-custom {
    background-color: #0F4D4D !important;
    height: 120px !important;
}


.navbar{
    position:sticky!important;
    top:0px!important;
}

a{
    color:black!important;
}


/* Search Bar */
.search-bar {
    border-radius: 25px !important;
    border: none !important;
    padding: 20px 25px !important;
    width: 50vw !important;
}

/* Search Container */
.search-container {
    position: relative !important;
}

.search-container .search-icon {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    font-size: 20px !important;
    transform: translateY(-50%) !important;
    color: gray !important;
}

.navbar-nav li a {
    color: white !important;
    transition: 0.6s !important;
    font-weight: 500 !important;
}

.navbar-nav li a:hover {
    color: #15BDCE !important;

}


.btnn {
    background-color: white !important;
    color: black !important;
    margin-left: 18px !important;
}

.offcanvas-body i {
    font-size: 30px;

}

.offcanvas-body{

    text-align: center;
}
.offcanvas-body button{
    display:flex;
}


.navbar-toggler svg {
    color: white;
    width: 30px;
    height: 30px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
















/* MODAL START */

/* Add new styles for auth buttons and modals */
.auth-buttons {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    display: flex !important;
    gap: 10px !important;
}

.auth-btn {
    padding: 8px 20px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.login-btn {
    background: transparent !important;
    border: 2px solid #333 !important;
    color: #333 !important;
}

.login-btn:hover {
    background: #333 !important;
    color: white !important;
}

.signup-btn {
    background: #00E5FF !important;
    border: 2px solid #00E5FF !important;
    color: white !important;
}

.signup-btn:hover {
    background: #00c2e6 !important;
    border-color: #00c2e6 !important;
}

.modal-content {
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999;
}

.modal-header {
    border-bottom: none !important;
    padding: 20px 30px !important;
    z-index: 99999;
}

.modal-body {
    padding: 20px 30px !important;
    z-index: 99999;
}

.modal-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #333 !important;
    z-index: 99999;
}

.form-group {
    margin-bottom: 20px !important;
}

.form-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #666 !important;
    margin-bottom: 8px !important;
}

.form-control {
    height: 45px !important;
    border: 2px solid #eee !important;
    border-radius: 4px !important;
    padding: 8px 15px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border-radius: 40px!important;
}

.form-control:focus {
    border-color: #00E5FF;
    box-shadow: none;
}

.submit-btn {
    width: 100%;
    height: 45px;
    background: #00E5FF;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #00c2e6;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #00E5FF;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    color: #00c2e6;
}

.social-auth {
    margin-top: 20px;
    text-align: center;
}

.social-auth-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    position: relative;
}

.social-auth-title::before,
.social-auth-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #eee;
}

.social-auth-title::before {
    left: 0;
}

.social-auth-title::after {
    right: 0;
}

.social-auth-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-auth-btn {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666!important;
    transition: all 0.3s ease;
}

.social-auth-btn:hover {
    border-color: #00E5FF!important;
    color: #00E5FF!important;
}

/* MODAL CLOSE */


.hero-section {
    padding: 40px 0;
    background: linear-gradient(90deg, #fff, #e6f2ff);
    min-height: auto;
    position: relative;
    overflow: hidden;

    
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #e6f2ff, #fff);
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.floating-badges {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-badge {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(20px);
}

.floating-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.floating-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-badge:nth-child(3) {
    animation-delay: 0.3s;
}

.floating-badge:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-badge i {
    font-size: 1.1rem;
    color: #007bff;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    text-align: center;
}

.hero-title {
    font-size: 32px !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
    text-transform: uppercase;

}

.hero-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.btn-explore {
    background: #15BDCE;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s;
    cursor: pointer!important;
}

.btn-explore:hover {
    background: #15BDCE;
    color: white;
    transform: scale(1.1);
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.limited-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FC0000;
    opacity: 0.4;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    padding: 10px 9px;
}

.limited-offer svg {
    width: 20px;
    height: 20px;
}

.price-tag {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
}

.feature-badges {
    display: none;
}

.ratings-section {
    margin-top: 3rem;
    text-align: center;
}

.rating-item {
    display: inline-flex;
    align-items: center;
    margin-right: 2rem;
}

.rating-item i {
    color: gold;
    font-size: 22px;
    padding-left: 15px;
}

.rating-item img {
    height: 24px;
    margin-right: 8px;
    margin-left: 10px;
}

.hero-image-container {
    display: none;
}

.feature-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M10 10h10v10H10z" fill="%23f0f0ff" opacity="0.3"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center !important;

}

.gallery-title span {
    color: #15BDCE;
}

.search-icon {
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

.gallery-tabs {
    margin-bottom: 30px;
}

.gallery-tabs .nav-link {
    color: #666;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    margin-right: 10px;
}

.gallery-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        background: transparent;
        padding: 0;
        margin: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 1.15rem;
    }

    .hero-section::before {
        filter: blur(0);
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 80px 0;
        min-height: 80vh;
        background: linear-gradient(135deg, #ffffff 60%, #e6f2ff 100%);
    }

    .hero-image-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        margin: 0;
        border-radius: 0px;
    }

    .hero-content {
        text-align: left;
        padding: 0;
        max-width: 600px;
    }

    .price-info {
        justify-content: flex-start;
    }

    .floating-badges {
        right: 40px;
    }

    .feature-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.gallery-grid a{

color:white;
text-decoration: none;

}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image-wrapper {
        width: 45%;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .course-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
   /* color: white; */
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .course-info {
    transform: translateY(0);
}

.search-container {
    position: relative;
}

.search-input {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    padding: 5px;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0;
}

.search-input.active {
    width: 200px;
    opacity: 1;
}




/* Features Section Styles */
.features-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card.fc {
    background: var(--primary-color) !important;
}

.feature-card.fc:hover::before {
    opacity: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}




.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00e1ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #007bff;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

.stats-section {
    background-color: white;
    padding: 80px 0;
    color: black;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ABOUT CJ END */



/* WEBINAR START */

.header-section {
    text-align: center;
    padding: 50px 0 30px;
}

.header-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 0;
}

.header-section h1 .highlight {
    color: var(--primary-color);
    background: rgba(255, 71, 87, 0.1);
    padding: 0 15px;
    border-radius: 0px;
}

.header-section p {
    color: #666;
    margin-top: 10px;
}

.main-webinar {
    margin-bottom: 30px;
}

.main-webinar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    transition: transform 0.3s ease;
}

.webinar-card {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    height: calc(50% - 10px);
}

.webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.webinar-card .webinar-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.webinar-card .webinar-content {
    padding: 15px;
}

.webinar-card .webinar-date {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.webinar-card .webinar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.webinar-card .webinar-meta {
    display: flex;

    align-items: center;
    margin-top: -25px;
    justify-content: space-between;
}

.webinar-card .time-info {
    color: #6c757d;
    font-size: 12px;
}

.webinar-card .enroll-btn {
    padding: 6px 15px;
    font-size: 12px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.webinar-card .enroll-btn a {
    color: white;
}


.webinar-card .enroll-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.main-content-wrapper {
    height: 535px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.main-webinar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    transition: transform 0.3s ease;
}

.youtube-video {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.main-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    border-radius: 0px;
}

.main-content-overlay .webinar-date {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-content-overlay .webinar-title {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.main-content-overlay .enroll-btn {
    padding: 12px 30px;
    font-size: 16px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.main-content-overlay .enroll-btn:hover {
    background-color: transparent;
    color: white;
}

.main-content-wrapper:hover .main-webinar-img {
    transform: scale(1.05);
}

.side-content-wrapper {
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* WEBINAR CLOSE */

/* COLLABE START */

/* Your existing styles here */

/* Company Slider Styles */
.company-section {
    padding: 60px 0;
    background: white;
    margin-top: 40px;
}

.company-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.company-section .highlight {
    color: #00BCD4;
}

.company-slider .item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-slider img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.company-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    color: var(--secondary-color) !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

/* COLLABE CLOSE */

/* Feature Course */


/* Featured Courses Styles */
.featured-courses {
    padding: 80px 0;
    background: white;
}



.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.course-content {
    padding: 25px;
}

.course-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.course-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.course-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.course-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
}

.course-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

@media (max-width: 768px) {
    .course-card {
        margin-bottom: 20px;
    }
}

/* Course End */


/* Hero 2Start */
.hero1-section,
.cta-section {
    background: linear-gradient(to left, rgba(0, 109, 119, 0.8), rgba(0, 109, 119, 0.5));
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;

    height: fit-content;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero1-content,
.cta-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero1-title,
.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero1-subtitle,
.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.btn-enroll {
    background-color: #ff6b6b;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    letter-spacing: 1px;
}

.btn-enroll:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.hero1-image {
    position: absolute;
    margin-top: -255px;
}

.hero1-image img {
    height: 100%;
    object-fit: cover;
}

/* Background decoration */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
}

.bg-shape {
    position: absolute;
    background: white;
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: 20%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {

    .hero1-title,
    .cta-title {
        font-size: 3rem;
    }

    .hero1-subtitle,
    .cta-subtitle {
        font-size: 1.5rem;
    }

    .hero1-image {
        display: none;
    }

    .btn-enroll {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}



@media (max-width: 767.98px) {

    .hero1-title,
    .cta-title {
        font-size: 2.5rem;
    }

    .hero1-subtitle,
    .cta-subtitle {
        font-size: 1.25rem;
    }

    .hero1-content,
    .cta-content {
        text-align: center;
    }

    .btn-enroll {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero1-image {
        display: none;

    }
}

/* FAQ */


.faq-section {
    width: 90%;
    margin: auto;
    background-color: #e9dfdf;
    border-radius: 0px;
    padding: 30px;
    height: 60vh;
    margin-bottom: 10px;
}

.faq-header {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 0px;
    height: 50px;
}

.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    content: "\2BC6";
    font-weight: 900;
    background-image: none !important;
}

.accordion-button.collapsed::after {
    content: "\2BC6";
}

.accordion-item {
    margin-top: 20px;
    border-radius: 0px;

}

.accordion-body {
    background: transparent !important;
    border-radius: 0px !important;
}

.accordion-button {
    font-weight: 800;
}

.accordion-item>.accordion-header .accordion-button {
    border-radius: 0px !important;
}


/* FAQ END */

/* BIG IMAGE */

.player {
    width: 100%;
    margin: 0;
    padding: 0;
}



.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay i {
    color: white!important;
    font-size: 3rem;
    border-radius: 50%;
    border:none!important;
    padding: 40px 40px;
    z-index: 9999;
}

.team-image {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    margin: 0;
    padding: 0;
    left: 0%;
    right: 0%;
}

.content-section {
    text-align: center;

    margin: 0 auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section p {
    font-size: 1rem;
    color: #666;

    padding-top: 5px;


}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 0;
    }

    .video-overlay {
        width: 60px;
        height: 60px;
    }

    .video-overlay i {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.25rem;
    }

    .content-section p {
        font-size: 1rem;
    }
}


/* testimonial Start */

.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}







.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.testimonial-card {
    background: #fff;
    padding: 25px 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Second testimonial offset */
.testimonial-card:nth-child(2) {
    margin-left: -30px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    flex-grow: 1;
    padding-right: 15px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.author-title {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.more-button {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 30px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-button:hover {
    background: #00c2e6;
    transform: translateY(-50%) translateX(-5px);
}

.more-button i {
    transform: rotate(90deg);
    font-size: 20px;
}

/* Add subtle gradient border on hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), #80f0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 48px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card:nth-child(2) {
        margin-left: 0;
    }

    .more-button {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        writing-mode: horizontal-tb;
        width: 100%;
        margin-top: 20px;
        padding: 15px;
        text-align: center;
        justify-content: center;
    }

    .more-button i {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
}

/* Footer Start */


.footer {
    padding: 60px 0 30px;
    background: #bbbbbb;

}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    color: var(---txt);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    transition: transform 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-links li a:hover {
    color: var(--txt);
    transform: translate(6px);
}

.footer-description {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-color);
}


.footer-contact span {
    margin-right: 10px;
    font-size: 18px;
    color: var(---txt);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}




.footer-contact strong {
    color: var(--txt);
    font-weight: 600;
    display: inline-block;
    min-width: 70px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.app-button {
    height: 40px;
    width: auto;
}

.map-container {
    position: relative;
    height: 150px;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.get-direction {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 13px;
    width: 100%;
    margin-bottom: 20px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 12px;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .app-buttons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}


@media only screen and (max-width: 600px) {
    .notification-bar {
        display: none !important;

    }

    .navbar-brand {
        display: inline;
    }

    .navbar-brand img {
        width: 70px;
    }

    .search-container {
        display: flex;
        margin-left: -12px;
    }

    .btnn {
        /* background-color: #15BDCE !important;
        color: white !important; */
        margin-top: 10px;
    }

    .navbar-nav li a {
        color: black;
        transition: 0.6s;
        font-weight: 700;
    }

    .hero-image-wrapper {
        border-radius: 0px !important;
        width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
        left: 0 !important;
        right: 0 !important;
    }

    .search-bar {
        border-radius: 25px !important;
        border: none !important;
        padding: 20px 25px !important;
        width: 45vw !important;
    }
    
    .hero-title{
        font-size:16px!important;
    }

    .gallery-title{
        font-size:17px!important;
    }
    .header-section h1 {
        font-size:17px!important;
    }

    .company-section h2{
        font-size:17px!important;

    }

    .hero1-title,
.cta-title {
    font-size: 1rem;
}
a{
    color:black!important;
}
.nav-link {
    color:black!important;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    margin-right: 10px;
}

.offcanvas-body{
    background:black;
    text-align: center;
}
}

