/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.headup {
    padding: 0px 0;
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* jab img load na ho to  */
.skeleton {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f0f0f0), color-stop(75%, #e0e0e0), to(#f0f0f0));
    background: -o-linear-gradient(left, #f0f0f0 50%, #e0e0e0 75%, #f0f0f0 100%);
    background: linear-gradient(90deg, #f0f0f0 50%, #e0e0e0 75%, #f0f0f0 100%);
    background-size: 200% 100%;
    -webkit-animation: loading 1.5s infinite linear;
    animation: loading 1.5s infinite linear;
}



@-webkit-keyframes loading {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}



@keyframes loading {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

/* skeleton */

/* zoom-effect */
.zoom-effect img {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.zoom-effect:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


/* jab img load na ho to  */
:root {
    --primary: #e22845 !important;
    --primary-dark: #c21e38 !important;
    --secondary: #e22845 !important;
    --light: #f8f9fa !important;
    --dark: #343a40 !important;
    --gray: #6c757d !important;
    --border: #dee2e6 !important;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: white;
    line-height: 1.6;
}

.max-w-screen-xl {
    width: 100%;
}

header {
    background-color: white;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.logo {
    width: 90px;
    height: 90px;
    /* background-color: #f0f0f0; */
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

nav ul li {
    position: relative;
}

nav ul li>a,
nav ul li>h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.7rem 0;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer;
}

nav ul li>a:hover,
nav ul li>h4:hover {
    color: var(--primary);
}

nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    min-width: 220px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.5rem 0;
    z-index: 100;
}

nav ul li:hover ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100vh - 100px);
    min-height: 100%;
    overflow-y: auto;
}

nav ul li ul a {
    padding: 0.2rem 0.7rem;
    color: var(--dark);
    text-decoration: none;
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    white-space: nowrap;
}

nav ul li ul a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

.button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.button-group button {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #e22845;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.button-group button:hover {
    background: #e22845;
    color: white;
}

.mobile-toggle {
    display: none !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.about-menu,
.mobile-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: white;
    z-index: 999;
    -webkit-transition: right 0.4s ease;
    -o-transition: right 0.4s ease;
    transition: right 0.4s ease;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    overflow-y: auto;
}

.about-menu.active,
.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.about-content h2 {
    color: var(--secondary);
    margin: 1.5rem 0 0.8rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.mobile-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav ul li a,
.mobile-nav ul li h4 {
    padding: 1rem 0;
}

.mobile-nav ul li ul {
    position: static;
    display: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 1rem;
}

.mobile-nav ul li ul a {
    padding: 0.7rem 0;
}

.mobile-nav ul li ul.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hero {
    background: -o-linear-gradient(315deg, #e32845 0%, #2c3e50 100%);
    background: linear-gradient(135deg, #e32845 0%, #2c3e50 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.content {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary);
    font-size: 2.5rem;
}

.cards {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.card:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.card-img {
    height: 200px;
    background: -o-linear-gradient(45deg, #3498db, #9b59b6);
    background: linear-gradient(45deg, #3498db, #9b59b6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}


/* Active state styling */
.active-link {
    color: var(--primary) !important;
    position: relative;
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

nav ul li ul a.active-link {
    background: rgba(227, 40, 69, 0.05);
    color: var(--primary) !important;
}

nav ul li ul a.active-link::after {
    display: none;
}

/* Responsive styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block !important;
    }

    .logo-container h2 {
        font-size: 1.3rem;
    }

    header {
        padding: 5px;
    }
}

@media (max-width: 576px) {

    .about-menu,
    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content {
        padding: 3rem 1rem;
    }
}

/* main me hero section ki css  */
.carousel-track {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.carousel-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.hero {
    height: 450px;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    max-width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 450px;
    background: #111;
}

.carousel-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel-item {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(transparent));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9), transparent);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 20px 20px;
    color: white;
    text-align: left;
}

.content-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 6px;
    color: #111d5e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.content-overlay p {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.5;
}

.btn {
    background: -o-linear-gradient(45deg, #dd2743, #9d1b7c);
    background: linear-gradient(45deg, #dd2743, #9d1b7c);
    color: #e22845;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 4px 15px rgba(221, 39, 67, 0.4);
    box-shadow: 0 4px 15px rgba(221, 39, 67, 0.4);
}

.btn:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 6px 20px rgba(221, 39, 67, 0.6);
    box-shadow: 0 6px 20px rgba(221, 39, 67, 0.6);
}

.btn i {
    margin-left: 8px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn:hover i {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #e22845;
    font-size: 1.5rem;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: #e22845;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    color: white;
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #dd2743;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #dd2743;
    width: 0%;
    -webkit-transition: width 1s linear;
    -o-transition: width 1s linear;
    transition: width 1s linear;
    z-index: 11;
}

.features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    width: 220px;
    text-align: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.feature-card:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: #dd2743;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }

    .content-overlay {
        padding: 25px 15px 15px;
    }

    .content-overlay h2 {
        font-size: 1.8rem;
    }

    .content-overlay p {
        font-size: 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 350px;
    }

    .content-overlay h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* button code  */
.journey-button {
    position: relative;
    padding: 12px 24px;
    background-color: #dd2743;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 50px;
    margin-top: 20px;
}

.journey-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(0);
    -ms-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 100%;
    background-color: #000080;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: 1;
    border-radius: 999px;
}

.journey-button:hover {
    background-color: transparent;
    /* Remove pink background immediately on hover */
}

.journey-button:hover::before {
    -webkit-transform: translateX(-50%) scaleX(1);
    -ms-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
}

.journey-button span {
    position: relative;
    z-index: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -webkit-transition: color 0.4s ease;
    -o-transition: color 0.4s ease;
    transition: color 0.4s ease;
}

.journey-button:hover span {
    color: #ffffff;
}

/* main me hero section ki css  */

/* main me secon section ki css  */
.one-box {
    background-image: url("../images/box_one.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.two-box {
    background-image: url("../images/box_two.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.three-box {
    background-image: url("../images/box_three.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.four-box {
    background-image: url("../images/box_four.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Common styles for all boxes */
[class$="-box"] {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hover-layer {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition:
        opacity 0.3s ease,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition:
        opacity 0.3s ease,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition:
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.3s ease;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.3s ease;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.3s ease,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

[class$="-box"]:hover .hover-layer {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.7;
    -webkit-transition:
        opacity 0.2s ease 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition:
        opacity 0.2s ease 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition:
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.2s ease 0.3s;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.2s ease 0.3s;
    transition:
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.2s ease 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* main me secon section ki css  */
/* main me scroller section ki css  */
:root {
    --primary: #111d5e;
    --secondary: #e22845;
    --light: #f4f6f9;
    --gray: #64748b;
    --card-width: 300px;
    --card-gap: 24px;
    --teal: #1a7f75;
    --purple: #5c4d9f;
}

.section {
    padding: 5rem 1rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    width: 100%;
    margin: 0 auto 1rem;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h5 {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
}


.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 1rem;
}

.slider-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--card-gap);
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 1rem 0;
    margin: 0;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - (var(--cards-per-view) - 1) * var(--card-gap)) / var(--cards-per-view));
    min-width: 280px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    scroll-snap-align: start;
    position: relative;
}

.slider-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--secondary);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.slider-card:hover .card-image::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.slider-card:hover .card-image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.card-meta div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3rem;
}

.card-meta i {
    color: var(--secondary);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0.8rem 0;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-decoration: none;
    display: block;
}

.card-title:hover {
    color: var(--secondary);
}

.instructor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0;
}

.instructor-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.instructor span {
    color: var(--secondary);
    font-weight: 600;
}

.card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--secondary);
    font-size: 1.1rem;
}

.price {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.6rem;
}

.slider-btn:hover {
    background: var(--secondary);
    color: white;
    -webkit-transform: translateY(-50%) scale(1.1);
    -ms-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

.bg-gray {
    background-color: var(--light);
}

.bg-white {
    background-color: white;
}

.bg-teal {
    background-color: #e8f5f3;
}

.bg-purple {
    background-color: #f4f2ff;
}

.card-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 1rem 0;
    line-height: 1.5;
}

.event-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.event-date i {
    color: var(--secondary);
}

.read-more {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3rem;
    -webkit-transition: gap 0.3s ease;
    -o-transition: gap 0.3s ease;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.5rem;
}

.scroll-indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.healthcare .section-header h3 {
    color: var(--teal);
}

.events .section-header h3 {
    color: var(--purple);
}

.healthcare .indicator-dot.active {
    background: var(--teal);
}

.events .indicator-dot.active {
    background: var(--purple);
}

.healthcare .slider-card:hover .card-image::after {
    background: var(--teal);
}

.events .slider-card:hover .card-image::after {
    background: var(--purple);
}


/* Responsive adjustments */
@media (min-width: 1024px) {
    .slider-wrapper {
        --cards-per-view: 3;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .slider-wrapper {
        --cards-per-view: 2;
    }

    .hero-white-box {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .fl-col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .fl-col-rev {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .slider-wrapper {
        --cards-per-view: 1;
    }

    .slider-btn {
        display: none;
    }

    .section-header {
        text-align: start;
        padding: 0px 0.4rem;
    }

    .section-header h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        line-height: 0.9;

    }

    .section {
        padding: 1.5rem 0.6rem;
    }

    nav ul {
        gap: 1rem;
    }

    .header-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 5px;
    }

    .hero-white-box {
        padding: 10px;
    }
}

/* main me scroller section ki css  */
/* footer ki css  */
footer {
    /* text-align: center; */
    padding: 30px 0;
    color: #7f8c8d;
    font-size: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    background: #111d5e;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

.content-area {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
    /* text-align: center; */
}

.sanu-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.footer-link {
    position: relative;
    padding-bottom: 2px;
}

.footer-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #e22845;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.footer-link:hover:after {
    width: 100%;
}

/* footer ki css  */


/* scroller style in  */

::-webkit-scrollbar {
    width: 8px;
    /* Scrollbar width for vertical */
    height: 8px;
    /* Scrollbar height for horizontal */
}

/* Track background (yeh hide karna hai) */
::-webkit-scrollbar-track {
    background: transparent;
    /* Hide background behind scrollbar */
}

/* Scroll thumb (jo move karta hai) */
::-webkit-scrollbar-thumb {
    background-color: #111d5e;
    /* Red scroll thumb */
    border-radius: 10px;
    /* Smooth round look */
}

/* Scrollbar corner (bottom right on both axis scroll) */
::-webkit-scrollbar-corner {
    background: transparent;
}


.fle {
    display: flex;
    flex-direction: column;
}

.fle-rev {
    display: flex;
    flex-direction: column-reverse;
}

/* For PC and larger screens (≥1024px) */
@media (min-width: 730px) {
    .fle {
        flex-direction: row;
    }

    .fle-rev {
        flex-direction: row;
    }
}

/* scroller style in  */