:root {
            --primary: #14457b;
            --secondary: #38b6ff;
            --accent: #38b6ff;
            --light: #f7fafc;
            --dark: #2d3748;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 18px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.8rem;
            font-family: 'Playfair Display', serif;
        }
        
        .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 12px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .hero {
            background: linear-gradient(to right, #ececec 75%, var(--primary) 75%);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            min-height: 500px;
        }
        
        .hero-text {
            padding-right: 40px;
        }
        
        .hero-image {
            position: relative;
            padding-left: 40px;
        }
        
        .hero-img {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #fff;
            transform: perspective(800px) rotateY(-5deg);
            transition: all 0.5s ease;
        }
        
        .hero-img:hover {
            transform: perspective(800px) rotateY(0deg);
        }
        
        .hero-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: #ea6221;
            color: rgb(0, 0, 0);
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--primary);
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
        }
        
        .section-title.center {
            text-align: center;
        }
        
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .lead{
          font-size: 17px;
          text-align: justify;
          font-weight: 500;
        }
        
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 25px;
            overflow: hidden;
            background: #f7f7f7;
            border: 1px solid #38b6ff;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .card-icon {
            font-size: 2.8rem;
            color: var(--accent);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .card:hover .card-icon {
            transform: scale(1.1);
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--accent);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }
        
        .timeline-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 24px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid var(--accent);
        }
        
        .stats-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            font-family: 'Playfair Display', serif;
        }

        .card h4{
          font-size: 20px;
        }
        
        .stats-text {
            font-size: 1.1rem;
            color: #ffffff;
            font-weight: 500;
        }
        .text-muted{
          color: rgb(234 98 33)!important;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
        }
        
        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
        }

        
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
        }
        
        
        
        .feature-badge {
            display: inline-block;
            background: #f3faff;
            color: #38b6ff;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .about-icon {
            font-size: 1.2rem;
            color: var(--accent);
            margin-right: 10px;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 992px) {
            .hero {
                background: #f8f9fa;
            }
            
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text, .hero-image {
                padding: 0;
                text-align: center;
            }
            
            .hero-badge {
                right: 10px;
            }
        }
    


         .academic-section {
            background: #f9ffff;
            border-radius: 12px;
            
            overflow: hidden;
            
            margin: 40px auto;
        }
        
        .section-content {
            /* padding: 40px; */
            display: flex;
            align-items: center;
        }
        
        .text-content {
            flex: 1;
            padding-right: 40px;
        }
        
        .image-content {
            flex: 1;
            text-align: center;
        }
        
        .academic-img {
           
            border-radius: 10px;
          
            transition: transform 0.3s ease;
        }
        
        .academic-img:hover {
            transform: scale(1.03);
        }
        
        
        
        .qualification-list {
            list-style: none;
            padding: 0;
        }
        
        .qualification-item {
            margin-bottom: 20px;
            padding-left: 30px;
            position: relative;
        }
        
        .qualification-item:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        
        .degree {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .institution {
            color: #ea6221;
            font-style: italic;
        }
        
        .year {
            color: var(--dark);
            font-size: 0.9rem;
        }
        
        @media (max-width: 992px) {
            .section-content {
                flex-direction: column;
                padding: 10px;
            }
            
            .text-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .academic-img {
                max-width: 100%;
            }
        }


         .achievement-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        
        .achievement-card {
            background: white;
            border-radius: 12px;
            padding: 20px 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border-left: 4px solid var(--accent);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .achievement-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .card-icon {
            font-size: 2.8rem;
            color: var(--accent);
            margin-bottom: 20px;
            text-align: center;
        }
        #card-1{
          background-color: #14457b;
        }
         #card-1 i{
          color: #fff;
         }

         #card-2{
          background-color: #ea6221;
         }
         #card-2 i{
          color: #fff;
         }

         #card-3 {
          background-color: #38b6ff;
         }

         #card-4{
          background-color: #4CAF50;
         }

         #card-4 i{
          color: #ffffff;
         }

      

         
         #card-3 i{
          color: #fff;
         }
        .card-title {
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
            font-size: 1rem;
            min-height: 64px;
            text-align: center;
        }
        
        .card-content {
            color: var(--dark);
            line-height: 1.6;
            flex-grow: 1;
        }
        
        .stats-highlight {
            display: flex;
            justify-content: center;
            margin: 40px 0 20px;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 0 20px;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }
        
        .stat-label {
            color: var(--secondary);
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .section-header {
                padding: 30px 20px;
            }
            
            .achievements-content {
                padding: 30px 20px;
            }
            
            .achievement-cards {
                grid-template-columns: 1fr;
            }
            
            .stats-highlight {
                flex-direction: column;
                gap: 20px;
            }
        }

        .achivement-sec .section-title{
          margin-bottom: 40px;
        }

        .timeline-item h3{
          font-size: 20px;
        }


        .publications-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            max-width: 1200px;
            margin: 40px auto;
            position: relative;
        }
        
       
        
        .publications-content {
            padding: 20px 40px 60px;
        }
        
        .books-showcase {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .book-item {
            background: var(--light-accent);
            border-radius: 16px;
            padding: 25px;
            width: 280px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--accent);
        }
        
        .book-item:before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.15;
        }
        
        .book-item:hover {
            transform: translateY(-10px) rotate(2deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .book-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .book-title {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.3rem;
            min-height: 68px;
        }
        
        .book-role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
            padding: 5px 12px;
            background: rgb(115 204 255 / 20%);
           
            border-radius: 20px;
            display: inline-block;
            font-size: 0.9rem;
        }
        
        .book-publisher {
            color: var(--dark);
            font-style: italic;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed rgba(0, 0, 0, 0.1);
            font-size: 0.95rem;
        }
        
        .articles-section {
            background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
            border-radius: 16px;
            padding: 30px;
            margin: 50px 0 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .articles-section:before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 15px;
            background: var(--accent);
            border-radius: 10px 10px 0 0;
            opacity: 0.7;
        }
        
        .articles-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .articles-title {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.6rem;
        }
        
        .articles-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .articles-stats {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        
        .articles-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
        }
        
        .articles-text {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .articles-detail {
            flex: 2;
            min-width: 300px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .articles-detail p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .publication-badge {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .publication-badge i {
            margin-right: 8px;
        }
        
        @media (max-width: 768px) {
            .section-header {
                padding: 60px 20px 30px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .publications-content {
                padding: 20px 20px 40px;
            }
            
            .books-showcase {
                gap: 20px;
            }
            
            .book-item {
                width: 100%;
                max-width: 320px;
            }
        }


        .footer {
            background: var(--primary);
            color: white;
            padding: 70px 0 30px;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-main {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-brand {
            flex: 1;
            min-width: 300px;
        }
        
        .footer-name {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
        }
        
        .footer-title {
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 30px;
        }
        
        .footer-contact {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            font-size: 1.3rem;
            color: var(--accent);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background: var(--accent);
            color: white;
            transform: scale(1.1);
        }
        
        .contact-text {
            font-size: 1.1rem;
        }
        
        .contact-link {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-link:hover {
            color: var(--accent);
        }
        
        .footer-social {
            flex: 1;
            min-width: 300px;
        }
        
        .social-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .social-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        
        .social-text {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .copyright {
            opacity: 0.8;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .footer-main {
                gap: 30px;
            }
            
            .footer-name {
                font-size: 1.8rem;
            }
            
            .footer-title {
                font-size: 1.1rem;
            }
            
            .contact-title, .social-title {
                font-size: 1.4rem;
            }
            
            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        /* Unique carousel styling */
    .my-unique-carousel .item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    .my-unique-carousel .item img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }

    .slide-caption {
      position: absolute;
      left: 12px;
      bottom: 12px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 14px;
    }

    .my-unique-carousel .owl-nav button {
      background: transparent;
      border: none;
      font-size: 28px;
      color: #444;
    }
    .my-unique-carousel .owl-nav button:hover { color: #000; }


    .lightbox-sec{
        padding-top: 50px;
        position: relative;
    }

    .lightbox-sec::after{
        content: "";
        position: absolute;
        display: flex;
        height: 50%;
        top: 0;
        left: 0;
        right: 0;
        z-index: -1;
        background-color: #38b6ff;
    }

    .text-skyblue{
     color : #38b6ff;
     
    }

    .why-section{
        margin-top: 50px;
    }


     .nipun-header {
            background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(38, 70, 83, 0.9)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            margin-top: 50px;
        }

        .nipun-header .text-warning{
            font-weight: 600;
        }
        
        .nipun-section {
            padding: 60px 0;
            background-color: #f9ffff;
        }
        
        .nipun-section-light {
            background-color: #f8f9fa;
        }
        
        .nipun-section-dark {
            background-color: #264653;
            color: white;
        }
        
        .nipun-icon {
            font-size: 2rem;
            color: #38b6ff;
            margin-bottom: 20px;
        }
        
        .nipun-benefit-card {
            border: none;
            border-radius: 10px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .nipun-benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .nipun-btn-primary {
            background-color: #38b6ff;
            border-color: #38b6ff;
            color: #fff;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
        }
        
        .nipun-btn-primary:hover {
            background-color: transparent;
            color: #fff;
        }
        
        .nipun-topic-card {
            border-left: 4px solid #2a9d8f;
            transition: all 0.3s ease;
        }
        
        .nipun-topic-card:hover {
            background-color: #e9f5f3;
        }
        
        .nipun-testimonial {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .nipun-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #2a9d8f;
        }
        
        .nipun-footer {
            background-color: #264653;
            color: white;
            padding: 60px 0 30px;
        }


        .bg-light{
            background-color: #fff !important;
            padding: 15px;
            border: 1px solid #f1f1f1;
            border-radius: 10px;
            height: 100%;
        }


        .wellness-hero {
            background: linear-gradient(135deg, #0062cc 0%, #00a8ff 100%);
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .wellness-hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .wellness-hero::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .wellness-title {
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .wellness-subtitle {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }
        
        .wellness-cta-btn {
            background: #ff6b6b;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }
        
        .wellness-cta-btn:hover {
            background: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 107, 107, 0.6);
        }
        
        .wellness-rocket {
            font-size: 2.5rem;
            color: #ffc107;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
        }
        
        .wellness-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .wellness-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @media (max-width: 768px) {
            .wellness-hero {
                padding: 2rem 1.5rem;
                text-align: center;
            }
            
            .wellness-icon {
                margin: 0 auto 1.5rem;
            }
        }

          /* Custom Nav Buttons */
    .owl-nav {
      text-align: center!important;
      margin-top: 15px!important;
    }
    .owl-nav button {
      background: #194279!important;
      color: #fff !important;
      border: none!important;
      margin: 0 5px!important;
      padding: 10px 18px!important;
      font-size: 20px!important;
      display: flex!important;
      height: 40px;
      width: 40px;
      justify-content: center;
      align-items: center;
      border-radius: 50%!important;
      transition: 0.3s!important;
    }
    .owl-nav button:hover {
      background: #ff6f00!important;
    }
    .owl-nav .owl-prev{
        position: absolute;
        top: 45%;
    }
    .owl-nav .owl-next{
        position: absolute;
        top: 45%;
        right: 0;
    }
    .owl-nav i {
      pointer-events: none;
      font-size: 30px!important;
    }

    .lb-data .lb-close{
        background: url(../img/close.png)!important ;
        background-size: 100% !important;
    }


    .gallery-caption{
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .gallery-sec a{
        color: #000;
        text-decoration: none;
    }