/*====================================
            GOOGLE FONT
====================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*====================================
              RESET
====================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
    padding-top: 85px;

}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}



/*====================================
            NAVBAR
====================================*/

.main-navbar {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;

    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(14px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .07);

    z-index: 9999;

    transition: .35s;

}

.main-navbar.scrolled {

    height: 72px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);

}

.main-navbar .navbar-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.main-navbar .logo img {

    width: 200px;

    transition: .35s;

}

.main-navbar.scrolled .logo img {

    width: 210px;
    /* height: 60px */

}



/*====================================
              MENU
====================================*/

.main-navbar .menu {

    display: flex;

    align-items: center;

    gap: 5px;

}

.main-navbar .menu a {

    position: relative;

    padding: 10px 10px;

    font-size: 14px;

    color: #222;

    font-weight: 500;

    transition: .35s;

}

.main-navbar .menu a::after {

    content: "";

    position: absolute;

    left: 18px;

    bottom: 8px;

    width: 0;

    height: 2px;

    background: #039edf;

    transition: .35s;

}

.main-navbar .menu a:hover {

    color: #039edf;

}

.main-navbar .menu a:hover::after {

    width: calc(100% - 36px);

}

.main-navbar .menu a.active {

    color: #fff;

    background: #039edf;

    border-radius: 30px;

}

.main-navbar .menu a.active::after {

    display: none;

}



/*====================================
         MOBILE BUTTON
====================================*/

.main-navbar .hamburger {

    width: 46px;

    height: 46px;

    border: none;

    outline: none;

    display: none;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #039edf;

    color: #fff;

    cursor: pointer;

    font-size: 24px;

    transition: .35s;

}

.main-navbar .hamburger:hover {

    background: #039edf;

}



/*====================================
            HERO SECTION
====================================*/

.hero-section {

    width: 100%;

}

.hero-carousel {

    width: 100%;

    height: calc(100vh - 85px);

    border-radius: 0;

    overflow: hidden;

    position: relative;

}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {

    height: 100%;

}

.hero-carousel .carousel-item {

    position: relative;

}

.hero-carousel .carousel-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/*====================================
          DARK OVERLAY
====================================*/

.hero-carousel .carousel-item::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .35));

    z-index: 1;

}



/*====================================
        CAROUSEL BUTTONS
====================================*/

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {

    width: 7%;

    opacity: 1;

}

.arrow-btn {

    width: 55px;

    height: 55px;

    background: rgba(255, 255, 255, .92);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);

}

.arrow-btn i {

    font-size: 22px;

    color: #039edf;

}

.arrow-btn:hover {

    background: #039edf;

    transform: scale(1.08);

}

.arrow-btn:hover i {

    color: #fff;

}



/*====================================
        INDICATORS
====================================*/

.hero-carousel .carousel-indicators {

    bottom: 30px;

    z-index: 20;

}

.hero-carousel .carousel-indicators button {

    width: 35px;

    height: 4px;

    border: none;

    border-radius: 20px;

    margin: 0 6px;

    background: #ffffff;

    opacity: .6;

    transition: .35s;

}

.hero-carousel .carousel-indicators .active {

    width: 65px;

    opacity: 1;

    background: #039edf;

}



/*====================================
        IMAGE ANIMATION
====================================*/

.hero-carousel .carousel-item img {

    animation: zoomImage 8s linear infinite;

}

@keyframes zoomImage {

    0% {

        transform: scale(1);

    }

    100% {

        transform: scale(1.08);

    }

}



/*====================================
            MOBILE
====================================*/

@media(max-width:991px) {

    body {

        padding-top: 80px;

    }

    .main-navbar {

        height: 80px;

    }

    .main-navbar .logo img {

        width: 180px;

    }

    .main-navbar .hamburger {

        display: flex;

    }

    .main-navbar .menu {

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #fff;

        display: flex;

        flex-direction: column;

        gap: 5px;

        padding: 10px;

        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

        transform: translateY(-20px);

        opacity: 0;

        visibility: hidden;

        transition: .35s;

    }

    .main-navbar .menu.show {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

    .main-navbar .menu a {

        width: 100%;

        text-align: left;

        padding: 10px 20px;

        border-radius: 10px;

    }

    .hero-carousel {

        height: 55vh;

    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {

        width: 15%;

    }

    .arrow-btn {

        width: 42px;

        height: 42px;

    }

    .arrow-btn i {

        font-size: 18px;

    }

}



/*==========================
        ABOUT SECTION START
==========================*/

.about-section {
    background: #ffffff;
    overflow: hidden;
}

.about-section .about-subtitle {
    color: #666666;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-section .about-title {
    font-size: 42px;
    font-weight: 700;
    color: #003e7d;
    margin-bottom: 20px;
}

.about-section .about-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-section .about-list {
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.about-section .about-list li {
    margin-bottom: 14px;
    font-size: 17px;
    color: #444;
}

.about-section .about-list i {
    color: #003e7d;
    margin-right: 10px;
}

.about-section .about-btn {
    background: #039edf;
    color: #fff;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s;
}

.about-section .about-btn:hover {
    background: #672c5f;
    color: #fff;
}

/*=====================
        IMAGES
=====================*/

.about-section .about-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

.about-section .about-big {
    height: 455px;
}

.about-section .about-img:hover {
    transform: scale(1.04);
}

/*=====================
      COUNTER
=====================*/

.counter-section {
    background: #039edf;
    padding: 35px 0;
}

.counter-section .counter-box {
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.counter-section i {
    color: #d9a27d;
    font-size: 34px;
    margin-bottom: 12px;
}

.counter-section h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.counter-section p {
    color: #d8cbd8;
    margin: 0;
}

/*=====================
     RESPONSIVE
=====================*/

@media(max-width:991px) {

    .about-section .about-title {
        font-size: 34px;
    }

    .about-section .about-big {
        height: 320px;
    }

}

@media(max-width:767px) {

    .about-section .about-title {
        font-size: 28px;
    }

    .about-section .about-big {
        height: 260px;
    }

    .about-section .about-img {
        height: 180px;
    }

    .counter-section .counter-box {
        border-right: none;
        margin-bottom: 25px;
    }

}

/*==========================
        ABOUT SECTION ENDS
==========================*/



/* ====================
    COURSE SECTION STARTS
*/


.courses-section {
    background: #fffaf8;
}

.courses-section .section-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.courses-section .section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2f2f2f;
    margin: 0;
    font-family: Georgia, serif;
}

.courses-section .heading-line {
    width: 70px;
    height: 2px;
    background: #d8a27b;
    display: block;
}

.courses-section .course-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.courses-section .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.courses-section .course-img {
    overflow: hidden;
}

.courses-section .course-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}


.courses-section .course-card:hover .course-img img {
    transform: scale(1.08);
}

.courses-section .course-content {
    padding: 18px 15px;
    text-align: center;
}

.courses-section .course-content h5 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.courses-section .course-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    min-height: 45px;
}



@media(max-width:991px) {

    .courses-section .section-heading h2 {
        font-size: 30px;
    }

}

@media(max-width:576px) {

    .courses-section .section-heading {
        gap: 10px;
    }

    .courses-section .heading-line {
        width: 35px;
    }

    .courses-section .section-heading h2 {
        font-size: 24px;
    }

}

/* ====================
    COURSE SECTION ENDS
*/
/*=========================
      Services Section
==========================*/

.services-section {
    background: #ffffff;
    padding: 90px 0;
}

.services-section .services-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.services-section .services-title span {
    width: 70px;
    height: 2px;
    background: #c69a74;
}

.services-section .services-title h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #003e7d;
    font-family: Georgia, serif;
}

.services-section .service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.services-section .service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.services-section .service-card:hover img {
    transform: scale(1.08);
}

.services-section .service-content {
    padding: 35px 28px;
    text-align: center;
    position: relative;
}

.services-section .service-icon {
    width: 75px;
    height: 75px;
    background: #039edf;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: -70px auto 20px;
    border: 6px solid #fff;
}

.services-section .service-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003e7d;
}

.services-section .service-content p {
    color: #777;
    line-height: 1.8;
    margin-bottom: 0;
}

.services-section .service-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.services-section .service-content ul li {
    padding: 8px 0;
    color: #555;
    font-weight: 500;
}

.services-section .service-content ul li::before {
    content: "✓";
    color: #c69a74;
    font-weight: bold;
    margin-right: 10px;
}

.services-section .service-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 40px;
    background: #039edf;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-weight: 600;
}

.services-section .service-content a:hover {
    background: #c69a74;
    color: #fff;
}

.services-section .service-content a i {
    transition: .3s;
}

.services-section .service-content a:hover i {
    transform: translateX(5px);
}

@media(max-width:991px) {

    .services-section .services-title h2 {
        font-size: 34px;
    }

    .services-section .service-content h4 {
        font-size: 19px;
    }

    .services-section .service-content {
        padding: 0 28px 15px;
    }

}

@media(max-width:576px) {

    .services-section .services-title {
        gap: 10px;
    }

    .services-section .services-title span {
        width: 35px;
    }

    .services-section .services-title h2 {
        font-size: 28px;
    }

    .services-section .service-card img {
        height: 220px;
    }

}

/*=========================
      Services Section ENDS
==========================*/

/* =======================
    GALLERY SECTION STARTS

=====================*/


.gallery-section {
    background: #faf7f6;
}

.gallery-section .section-title span {
    color: #7d2d67;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-section .section-title h2 {
    font-weight: 700;
    margin: 10px 0;
}

.gallery-filter button {
    border: none;
    background: #fff;
    padding: 12px 28px;
    margin: 5px;
    border-radius: 40px;
    transition: .4s;
    font-weight: 600;
    color: #555;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: #039edf;
    color: #fff;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(91, 32, 77, .75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
}

.gallery-overlay i {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #039edf;
    font-size: 22px;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

/* =======================
    GALLERY SECTION ENDS

=====================*/

/* =======================
   contact SECTION starts

=====================*/

.contact-section {
    background: #fff;
}

.contact-info {
    background: #039edf;
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.contact-info h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    margin-top: 30px;
}

.info-box i {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #039edf;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}

.contact-form {
    background: #faf7f6;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.contact-form .form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.contact-form textarea {
    height: auto !important;
}

.submit-btn {
    background: #039edf;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
}

.submit-btn:hover {
    background: #7d2d67;
    color: #fff;
}

.services-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.services-title span {
    width: 70px;
    height: 2px;
    background: #c69a74;
}

.services-title h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #34252f;
    font-family: Georgia, serif;
}

.footer-section {
    background: #039edf;
    color: #fff;
    padding: 25px 0;
}

.footer-section .footer-about h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section .footer-about p {
    color: #d9d9d9;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-section .footer-social {
    display: flex;
    gap: 12px;
}

.footer-section .footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .4s;
}

.footer-section .footer-social a:hover {
    background: #fff;
    color: #039edf;
    transform: translateY(-5px);
}

.footer-section .footer-links h4,
.footer-section .footer-contact h4 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-section .footer-links ul,
.footer-section .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section .footer-links ul li {
    margin-bottom: 15px;
}

.footer-section .footer-links ul li a {
    text-decoration: none;
    color: #d9d9d9;
    transition: .3s;
}

.footer-section .footer-links ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-section .footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #d9d9d9;
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-section .footer-contact ul li i {
    color: #f5d2c2;
    margin-top: 4px;
    font-size: 18px;
}

.footer-section hr {
    margin: 55px 0 25px;
    border-color: rgba(255, 255, 255, .15);
}

.footer-section .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-section .footer-bottom p {
    margin: 0;
    color: #d9d9d9;
}

.footer-section b {
    color: #fff;
}

.footer-section a:hover {
    color: #003e7d !important;
}

@media(max-width:991px) {

    .footer-section {
        text-align: center;
    }

    .footer-section .footer-social {
        justify-content: center;
    }

    .footer-section .footer-contact ul li {
        justify-content: center;
    }

    .footer-section .footer-bottom {
        flex-direction: column;
    }

}

@media(max-width:576px) {

    .footer-section {
        padding: 20px 0;
    }

    .footer-section .footer-about h3 {
        font-size: 28px;
    }

    .footer-section .footer-links h4,
    .footer-section .footer-contact h4 {
        margin-top: 20px;
    }

}


/* bridal makeup section */

.bridal-makeup-section #heading-section {
    width: 100vw;
    min-height: 100px;
    background-color: #039edf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bridal-makeup-section #heading-section .heading-title {
    color: #fff;
}


/*==================================================
        Course Details Section
==================================================*/
/*==================================================
            COURSE DETAILS SECTION
==================================================*/

#course-details {
    padding: 100px 0;
    background: #f8f8fb;
}

/*==================================================
            LEFT CONTENT
==================================================*/

#course-details .course-content {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    border: 1px solid #eee;
}

/* Featured Image */

#course-details .featured-image {
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 30px;
}

#course-details .featured-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .5s;
}

#course-details .featured-image:hover img {
    transform: scale(1.05);
}

/*==================================================
            HEADINGS
==================================================*/

#course-details h2 {
    color: #4A183D;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

#course-details h4 {
    color: #4A183D;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 5px solid #D6A95A;
}

#course-details p {
    color: #666;
    line-height: 1.9;
    text-align: justify;
}

#course-details hr {
    margin: 45px 0;
    border-color: #ececec;
}

/*==================================================
            PACKAGE CARDS
==================================================*/

.package-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: .35s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.package-card i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f8efe4;
    color: #D6A95A;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 30px;
    margin-bottom: 20px;
}

.package-card h5 {
    font-weight: 700;
    color: #4A183D;
    margin-bottom: 15px;
}

.package-card p {
    margin: 0;
    font-size: 15px;
}

/*==================================================
            SERVICE LIST
==================================================*/

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #555;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f8efe4;
    color: #D6A95A;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/*==================================================
            TABLE
==================================================*/

#course-details .table-responsive {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ececec;
}

#course-details table {
    margin: 0;
}

#course-details table th {
    width: 35%;
    background: #4A183D;
    color: #fff;
    padding: 15px;
}

#course-details table td {
    padding: 15px;
    color: #555;
}

/*==================================================
            SIDEBAR
==================================================*/

#course-details .sidebar {
    position: sticky;
    top: 100px;
}

/*==================================================
            SIDEBAR WIDGET
==================================================*/

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    border: none;
    padding: 0;
    margin-bottom: 25px;
    color: #4A183D;
}

.sidebar-widget h4::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #D6A95A;
    margin-top: 10px;
}

/*==================================================
            CATEGORY CARD
==================================================*/

.service-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 14px;
    transition: .3s;
    margin-bottom: 15px;
    cursor: pointer;
}

.service-mini-card:hover {
    background: #f8f8fb;
    transform: translateX(5px);
}

.service-mini-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.service-mini-card h6 {
    margin: 0;
    color: #4A183D;
    font-weight: 700;
}

.service-mini-card small {
    color: #777;
}

.service-mini-card i {
    margin-left: auto;
    color: #D6A95A;
    font-size: 18px;
}

/*==================================================
            LATEST SERVICES
==================================================*/

.latest-service {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.latest-service:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.latest-service img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.latest-service h6 {
    margin: 0;
    color: #4A183D;
    font-weight: 700;
}

.latest-service span {
    font-size: 14px;
    color: #777;
}

/*==================================================
            HOVER
==================================================*/

.latest-service img,
.service-mini-card img {
    transition: .4s;
}

.latest-service:hover img,
.service-mini-card:hover img {
    transform: scale(1.08);
}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px) {

    #course-details {
        padding: 70px 0;
    }

    #course-details .course-content {
        padding: 35px;
    }

    #course-details .sidebar {
        margin-top: 40px;
        position: static;
    }

    #course-details h2 {
        font-size: 2rem;
    }

    #course-details .featured-image img {
        height: 320px;
    }

}

@media(max-width:767px) {

    #course-details .course-content {
        padding: 25px;
    }

    #course-details h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    #course-details h4 {
        font-size: 1.25rem;
    }

    #course-details p {
        text-align: left;
        font-size: 15px;
    }

    #course-details .featured-image img {
        height: 240px;
    }

    .package-card {
        padding: 22px;
    }

    .service-mini-card img {
        width: 60px;
        height: 60px;
    }

    .latest-service img {
        width: 70px;
        height: 70px;
    }

}

@media(max-width:576px) {

    #course-details {
        padding: 50px 0;
    }

    #course-details .course-content {
        padding: 20px;
    }

    #course-details h2 {
        font-size: 1.6rem;
    }

    #course-details .featured-image img {
        height: 200px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .package-card i {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

}

/*==========================================
        Floating WhatsApp
==========================================*/

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 65px;

    height: 65px;

    background: #25D366;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 34px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);

    z-index: 9999;

    transition: .3s ease;

}

.whatsapp-float:hover {

    color: #fff;

    background: #1ebe5d;

    transform: translateY(-5px) scale(1.08);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);

}

.whatsapp-float::before {

    content: "";

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 2px solid rgba(37, 211, 102, .45);

    animation: whatsappPulse 2s infinite;

}

@keyframes whatsappPulse {

    0% {

        transform: scale(.8);

        opacity: 1;

    }

    100% {

        transform: scale(1.5);

        opacity: 0;

    }

}

@media (max-width:576px) {

    .whatsapp-float {

        width: 58px;

        height: 58px;

        right: 18px;

        bottom: 18px;

        font-size: 30px;

    }



}


#course-details .sidebar {
    min-height: 600px;
    min-width: 200px;
    /* background-color: #039edf; */
    position: sticky;
    top: 80px;
}

/*=============================
   Course Content
==============================*/

.course-content {
    font-family: "Poppins", sans-serif;
    color: #555;
    line-height: 1.9;
}

/* Featured Image */

.course-content .featured-image {
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 30px;
}

.course-content .featured-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}

.course-content .featured-image:hover img {
    transform: scale(1.03);
}

/* Title */

.course-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c1646;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Paragraph */

.course-content p {
    font-size: 15px;
    color: #666;
    text-align: justify;
    margin-bottom: 18px;
}

/* Section Heading */

.course-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c1646;
    margin: 45px 0 25px;
    padding-left: 15px;
    border-left: 4px solid #f4a261;
}

/* Lists */

.course-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    color: #555;
    font-size: 15px;
}

.course-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff3e6;
    color: #f4a261;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Table */

.course-content table {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.course-content table td {
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.course-content table td:first-child {
    width: 34%;
    background: #4b1d47;
    color: #fff;
    font-weight: 600;
}

.course-content table tr:nth-child(even) td:last-child {
    background: #fafafa;
}

.course-content table tr:hover td:last-child {
    background: #fff8f1;
}

/* Utility */

.course-content .content {
    margin-bottom: 10px;
}

.course-content .btgrid {
    margin-bottom: 20px;
}

/* Responsive */

@media (max-width:768px) {

    .course-content h1 {
        font-size: 30px;
    }

    .course-content h4 {
        font-size: 20px;
    }

    .course-content .featured-image img {
        height: 260px;
    }

    .course-content table td {
        padding: 12px;
        font-size: 13px;
    }

}



.course-card .courses-section .course-content a {
    text-decoration: none;

}



/*--------------------------------------------------------------
        # Sections General
        --------------------------------------------------------------*/
section {
    padding: 100px 0 !important;
    overflow: hidden;
}

.section-bg {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #003e7d;
}

.section-title p {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 30px 0 !important;
    }
}

/*--------------------------------------------------------------
        # hospitals
        --------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hospitals
--------------------------------------------------------------*/

.hospital-1,
.customer-sec-1,
#stories,
.contact-section {
    position: relative;
    overflow: hidden;
    background: #f2f6fd;
}

/* Right background pattern */
.hospital-1::after,
.customer-sec-1::after,
#stories::after,
.contact-section::after {
    content: "";
    position: absolute;
    top: -270px;
    right: 0;
    width: 500px;
    height: 100%;
    background: url(../images/shape1.png) no-repeat right center;
    background-size: contain;
    /* opacity: .08; */
    pointer-events: none;
    z-index: 0;
}

/* left background pattern */
.hospital-1::before,
.customer-sec-1::before,
#stories::before,
.contact-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: url(../images/shape2.png) no-repeat right center;
    background-size: contain;
    /* opacity: .08; */
    pointer-events: none;
    z-index: 0;
}

/* Keep content above background */
.hospital-1 .container,
.customer-sec-1 .container,
#stories .container,
.contact-section .container {
    position: relative;
    z-index: 2;
}

.hospital-feedback {
    background: #fff !important;
}

.hospitals .section-title p {
    text-align: center;
}

.hospitals .icon-box {
    text-align: center;
    padding: 30px 25px 10px;
    background: #fff;
    border-radius: 20px;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hospitals .icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.hospitals .icon-box .icon {
    width: auto;
    /* height: 120px; */
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospitals .icon-box .icon img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .4s;
    border-radius: 10px;
}

.hospitals .icon-box:hover .icon img {
    transform: scale(1.08);
}

.hospitals .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
    color: #003e7d;
}

.hospitals .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.locations .bg-sec {
    background: #eff6ff;
    padding: 40px;
    border-radius: 20px;
}

.locations .icon-box .icon img {
    width: 200px;
    height: 200px;
    /* object-fit: contain; */
    transition: .4s;
    border-radius: 50%;
}

.customer-feedback-section {
    padding: 40px 0;
    background: #f8fbff;
}

.customer-feedback-section .feedback-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.customer-feedback-section .feedback-track {
    display: flex;
    width: max-content;
    animation: scrollFeedback 35s linear infinite;
    padding: 10px 0;
}

.customer-feedback-section .feedback-item {
    max-width: 360px;
    background: #fff;
    margin-right: 20px;
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 5px solid #039edf;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.customer-feedback-section .feedback-item span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

.customer-feedback-section .feedback-marquee:hover .feedback-track {
    animation-play-state: paused;
}

@keyframes scrollFeedback {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {

    .customer-feedback-section .feedback-item {
        max-width: 280px;
        min-width: 0;
        font-size: 15px;
    }

    .customer-feedback-section .feedback-track {
        animation-duration: 25s;
    }

}

.header {
    background: #039edf;
    color: #fff;
    text-transform: uppercase;
}

/* ============================= */
/*   Fancy Pagination Design */
/* ============================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination .nav-links .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.pagination .nav-links .page-numbers:hover {
    background: #039edf;
    color: #fff !important;
    transform: translateY(-3px);
    text-decoration: none !important;
}

.pagination .nav-links .page-numbers.current {
    background: #039edf;
    color: #fff !important;
    border: none;
    transform: scale(1.1);
}

.pagination .nav-links .page-numbers.next,
.pagination .nav-links .page-numbers.prev {
    width: auto;
    padding: 0 14px;
    font-weight: 600;
    border-radius: 50px;
}

.pagination .nav-links .page-numbers.next:hover,
.pagination .nav-links .page-numbers.prev:hover {
    background: #039edf;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .pagination .nav-links .page-numbers {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

.view-all-btn {
    background: #039edf;
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.view-all-btn:hover {
    background: #003e7d;
    color: #fff;
}

.gallery .doctor-img img {
    width: 100% ;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: #ccc 0 4px 10px;
}

/* Contact Section */
.contact-section {
    background: #f2f6fd;
}

.contact-section .contact-box {
    display: block;
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
    color: #333;
    height: 100%;
}

.contact-section .contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    color: #039edf;
}

.contact-section .contact-box i {
    font-size: 45px;
    color: #003e7d;
    margin-bottom: 20px;
}

.contact-section .contact-box:hover i {
    color: #039edf;
}

.contact-section .contact-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section .contact-box p {
    margin: 0;
    color: #666;
    font-size: 16px;
}