
:root {
    --primary: #0463FA;
    --secondary: #57a9f5;
    --light: #EEF9FF;
    --dark: #0463FA;
}



h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(107, 157, 231, 0.85), rgba(9, 30, 62, .85)), url(../img/S1.png) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(122, 170, 241, 0.85), rgba(9, 30, 62, .85)), url(../img/S1.png) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: #5f8bd3;
    padding: 20px;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(15, 105, 179, 0.7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: #0463FA;
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}










    .tea1 {
      max-width: 1200px;
      margin: 30px auto;
      padding: 25px;
      background: linear-gradient(to bottom, #ffffff, #f8fbff);
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(54, 90, 155, 0.18);
      position: relative;
      overflow: hidden;
    }

    .tea1::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(95, 139, 211, 0.05);
      border-radius: 50%;
      z-index: 0;
    }

    .tea1::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 250px;
      height: 250px;
      background: rgba(211, 95, 139, 0.05);
      border-radius: 50%;
      z-index: 0;
    }

    .tea2 {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .tea2 h2 {
      font-size: 2.4rem;
      background: linear-gradient(to right, #365a9b 0%, #5f8bd3 70%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .tea2 p {
      color: #64748b;
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .tea2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #5f8bd3, #8db3ea);
      border-radius: 2px;
    }

    .tea3 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      position: relative;
      z-index: 1;
    }

    .tea4 {
      background: linear-gradient(to bottom, #ffffff, #f9fcff);
      border-radius: 16px;
      overflow: hidden;
      width: 100%;
      max-width: 300px;
      box-shadow: 0 10px 25px rgba(54, 90, 155, 0.12);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      opacity: 0;
      animation: fadeIn 0.8s forwards;
      position: relative;
      margin-bottom: 20px;
      border: 1px solid rgba(95, 139, 211, 0.15);
    }

    .tea4::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(to right, #5f8bd3, #d35f8b);
      opacity: 0.8;
    }

    .tea4.active,
    .tea4:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 15px 35px rgba(54, 90, 155, 0.25);
    }

    .tea5 {
      height: 220px;
      overflow: hidden;
      position: relative;
    }

    .tea5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
      pointer-events: none;
    }

    .tea5 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .tea4.active .tea5 img,
    .tea4:hover .tea5 img {
      transform: scale(1.1);
    }

    .tea6 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(54,90,155,0.85));
      height: 50%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 15px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .tea4.active .tea6,
    .tea4:hover .tea6 {
      opacity: 1;
    }

    .tea7 {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .tea7 a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: white;
      color: #5f8bd3;
      font-size: 15px;
      transition: all 0.3s ease;
      transform: translateY(20px);
      opacity: 0;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .tea4.active .tea7 a,
    .tea4:hover .tea7 a {
      transform: translateY(0);
      opacity: 1;
    }

    .tea7 a:hover {
      background: #5f8bd3;
      color: white;
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .tea8 {
      padding: 25px 20px;
      text-align: center;
      position: relative;
    }

    .tea8::before {
      content: '';
      position: absolute;
      top: 0;
      left: 20px;
      right: 20px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(95,139,211,0.3), transparent);
    }

    .tea8 h3 {
      font-size: 1.4rem;
      color: #365a9b;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .tea8 .tea9 {
      color: #5f8bd3;
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 15px;
      display: block;
      letter-spacing: 0.5px;
    }

    .tea8 p {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .tea10 {
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .tea11 {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      background: linear-gradient(to right, #5f8bd3, #7ba3dc);
      border: none;
      border-radius: 30px;
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      flex: 1;
      box-shadow: 0 4px 10px rgba(95, 139, 211, 0.3);
      position: relative;
      overflow: hidden;
    }

    .tea11::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: all 0.5s ease;
    }

    .tea11:hover::before {
      left: 100%;
    }

    .tea11:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(95, 139, 211, 0.4);
    }

    .tea11 i {
      margin-right: 6px;
      font-size: 0.85rem;
    }

    .tea12 {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(to right, #d35f8b, #e27d9e);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.8rem;
      box-shadow: 0 4px 12px rgba(211, 95, 139, 0.35);
      z-index: 2;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(-10px);
    }

    .tea4.active .tea12,
    .tea4:hover .tea12 {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .tea4:nth-child(1) { animation-delay: 0.1s; }
    .tea4:nth-child(2) { animation-delay: 0.2s; }
    .tea4:nth-child(3) { animation-delay: 0.3s; }
    .tea4:nth-child(4) { animation-delay: 0.4s; }
    .tea4:nth-child(5) { animation-delay: 0.5s; }

    @media (max-width: 768px) {
      .tea1 {
        padding: 20px;
        border-radius: 15px;
      }
      .tea2 h2 {
        font-size: 2rem;
      }
      .tea2 p {
        font-size: 1rem;
      }
      .tea3 {
        gap: 20px;
      }
      .tea4 {
        max-width: 100%;
        margin: 0 auto 20px;
      }
      .tea5 {
        height: 200px;
      }
      .tea8 {
        padding: 20px 15px;
      }
    }

    @media (max-width: 576px) {
      .tea1 {
        padding: 15px;
        border-radius: 12px;
      }
      .tea2 h2 {
        font-size: 1.8rem;
      }
      .tea5 {
        height: 180px;
      }
      .tea10 {
        flex-direction: column;
      }
      .tea11 {
        padding: 12px;
      }
    }































    



        .bg-primary {
            background-color:#5f8bd3 !important;
        }
        .btn-primary {
            background-color: #5f8bd3;
            border-color: #5f8bd3;
        }
        .text-primary {
            color:#5f8bd3 !important;
        }
        .border-primary {
            border-color: #5f8bd3 !important;
        }
        .bg-dark {
            background-color: #08417a !important;
        }
        .bg-secondary {
            background-color: #1a6aa2 !important;
        }
        .bg-testimonial {
            background: linear-gradient(rgba(47, 150, 224, 0.9), rgba(97, 175, 231, 0.9)), url(img/carousel-2.jpg) center center no-repeat;
            background-size: cover;
        }
        .bg-offer {
            background: linear-gradient(rgba(99, 158, 218, 0.9), rgba(111, 166, 221, 0.9)), url(img/carousel-1.jpg) center center no-repeat;
            background-size: cover;
        }
        .bg-appointment {
            background: linear-gradient(rgba(26, 106, 162, 0.9), rgba(26, 106, 162, 0.9)), url(img/carousel-2.jpg) center center no-repeat;
            background-size: cover;
        }










                .header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 900px;
            position: relative;
            z-index: 2;
        }
        
        .header h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.2rem;
            color: var(--secondary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
        }
        
        .header p {
            font-size: 1.3rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-top: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }
        
        .decorative-shape {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(76, 177, 167, 0.15);
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            top: -80px;
            right: -80px;
            z-index: -1;
            animation: morph 12s linear infinite;
        }
        
        .decorative-shape-2 {
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(74, 111, 165, 0.1);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            bottom: -60px;
            left: -60px;
            z-index: -1;
            animation: morph 8s linear infinite reverse;
        }
        
        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            max-width: 1400px;
            width: 100%;
            padding: 20px;
        }
        
        .card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            animation: cardEntrance 0.8s forwards;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }
        
        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        .card:nth-child(5) { animation-delay: 0.5s; }
        .card:nth-child(6) { animation-delay: 0.6s; }
        .card:nth-child(7) { animation-delay: 0.7s; }
        .card:nth-child(8) { animation-delay: 0.8s; }
        .card:nth-child(9) { animation-delay: 0.9s; }
        
        .card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(74, 111, 165, 0.05) 0%, rgba(22, 96, 136, 0.05) 100%);
            z-index: -1;
        }
        
        .icon-container {
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .icon-container i {
            font-size: 80px;
            color: white;
            z-index: 2;
            transition: var(--transition);
            position: relative;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .card:hover .icon-container i {
            transform: scale(1.2) rotate(5deg);
        }
        
        .icon-container::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg) translateY(100%);
            transition: all 0.8s ease;
        }
        
        .card:hover .icon-container::before {
            transform: rotate(45deg) translateY(-50%);
        }
        
        .content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 600;
        }
        
        .content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            transition: width 0.5s ease;
        }
        
        .card:hover .content h2::after {
            width: 100px;
        }
        
        .content p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 30px;
            flex-grow: 1;
            font-size: 1.05rem;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
            overflow: hidden;
            position: relative;
            z-index: 1;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.5px;
        }
        





.read-more {
  pointer-events: auto;
}

.read-more::before {
  pointer-events: none;
}









        .read-more::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            z-index: -1;
            transition: transform 0.6s ease;
            transform: scaleX(0);
            transform-origin: right;
        }
        
        .read-more:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .read-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 111, 165, 0.4);
            letter-spacing: 1px;
        }
        
        .read-more i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        


















        
        .footer {
            margin-top: 80px;
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 800px;
        }
        
        @keyframes cardEntrance {
            from {
                opacity: 0;
                transform: translateY(60px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes morph {
            0% {
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }
            25% {
                border-radius: 70% 30% 50% 50% / 30% 60% 70% 40%;
            }
            50% {
                border-radius: 70% 30% 60% 40% / 50% 60% 30% 70%;
            }
            75% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            100% {
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }
        }
        
        @media (max-width: 1200px) {
            .container {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .header h1 {
                font-size: 2.5rem;
            }
            
            .header p {
                font-size: 1.1rem;
            }
            
            .decorative-shape, .decorative-shape-2 {
                display: none;
            }
        }
        
        /* Floating elements background */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(76, 177, 167, 0.1);
            animation: float 20s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
        }
        
        /* Ripple effect style */
        .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            transform: scale(0);
            animation: ripple 0.6s linear;
        }
        
        @keyframes ripple {
            to {
                transform: scale(2.5);
                opacity: 0;
            }
        }





        
    .header {
    text-align: center; 
    padding: 40px 20px; 
    border-radius: 8px; 
    position: relative; 
    max-width: 800px; 
    margin: 0 auto; 
    }


  .header h1 {
    font-size: 36px; 
    margin-bottom: 10px; 
}


.header p {
    font-size: 18px; 
    line-height: 1.6;
    margin-bottom: 20px; 
}


.decorative-shape,
.decorative-shape-2 {
    width: 60px;
    height: 6px;
  
    margin: 10px auto;
    border-radius: 3px; 
}


.decorative-shape-2 {
    background-color: #28a745; 
    width: 80px; 
}




        .section {
            padding: 60px 0;
            overflow: hidden;
        }
        
        .light-background {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }
        
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            padding-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
            color: #5f8bd3;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: #5f8bd3;
            bottom: 0;
            left: calc(50% - 30px);
        }
        
        .section-title p {
            margin-bottom: 0;
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Appointment Options */
        .appointment-options {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .appoin-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(249, 252, 255, 0.15);
            text-align: center;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            transition: all 0.3s ease;
            border-top: 4px solid #5f8bd3;
            position: relative;
            overflow: hidden;
        }
        
        .appoin-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(75, 159, 214, 0.05);
            transition: height 0.4s ease;
            z-index: 0;
        }
        
        .appoin-card:hover::before {
            height: 100%;
        }
        
        .appoin-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(4, 99, 250, 0.2);
        }
        
        .appoin-icon {
            font-size: 42px;
            color: #0463FA;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .appoin-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0463FA;
            position: relative;
            z-index: 1;
        }
        
        .appoin-desc {
            font-size: 15px;
            color: #666;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            line-height: 1.6;
        }
        
        .appoin-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #0463FA;
            color: #fff;
            border-radius: 6px;
            transition: all 0.3s;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            z-index: 1;
            border: 2px solid #0463FA;
        }
        
        .appoin-btn:hover {
            background-color: #fff;
            color: #0463FA;
            box-shadow: 0 5px 15px rgba(4, 99, 250, 0.3);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .appointment-options {
                gap: 20px;
            }
            
            .appoin-card {
                min-width: 250px;
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .appointment-options {
                flex-direction: column;
                align-items: center;
            }
            
            .appoin-card {
                width: 100%;
                max-width: 400px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
        }
        
        /* Additional decorative elements */
        .circle-decoration {
            position: absolute;
            border-radius: 50%;
            background: rgba(4, 99, 250, 0.1);
            z-index: 0;
        }
        
        .circle-1 {
            width: 80px;
            height: 80px;
            top: -20px;
            right: -20px;
        }
        
        .circle-2 {
            width: 60px;
            height: 60px;
            bottom: -15px;
            left: -15px;
        }
        
        .info-text {
            text-align: center;
            margin-top: 40px;
            color: #777;
            font-style: italic;
            font-size: 15px;
        }







        
        .container-parent0 {
            display: flex;
            justify-content: center; /* horizontally center */
            padding: 30px;
        }

        .container0 {
            max-width: 1900px;
            width: 100%;
            padding: 30px;
           
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(8, 72, 146, 0.15);
        }

        .doctor-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .doctor-header h1 {
            font-size: 2.2rem;
            color: #2a5cbd;
            margin-bottom: 10px;
        }

        .doctor-header h2 {
            font-size: 1.4rem;
            color: #4d4d4d;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .doctor-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            color: #2a5cbd;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: #2a5cbd;
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            margin: 0 auto;
        }

        .reviews-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        [class^="Revi"] {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(42, 92, 189, 0.12);
            padding: 30px;
            flex: 0 0 calc(33.333% - 20px);
            min-width: calc(33.333% - 20px);
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e6eefd;
        }

        [class^="Revi"]:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(42, 92, 189, 0.18);
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            color: rgba(42, 92, 189, 0.08);
            transform: rotate(180deg);
        }

        .patient-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .patient-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid #2a5cbd;
        }

        .patient-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .patient-details h4 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 5px;
        }

        .patient-details p {
            color: #2a5cbd;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .condition {
            display: inline-block;
            background: #e6eefd;
            color: #2a5cbd;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .rating {
            color: #FFC107;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .review-content p {
            color: #555;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 15px;
        }

        .review-date {
            text-align: right;
            color: #888;
            font-size: 0.85rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
        }

        .slider-btn {
            background: #2a5cbd;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            margin: 0 15px;
        }

        .slider-btn:hover {
            background: #1e4a9e;
            transform: scale(1.05);
        }

        .slider-btn:disabled {
            background: #b3c5e6;
            cursor: not-allowed;
            transform: scale(1);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 80px;
        }

       

      

        @media (max-width: 992px) {
            [class^="Revi"] {
                flex: 0 0 calc(50% - 20px);
                min-width: calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            [class^="Revi"] {
                flex: 0 0 calc(100% - 20px);
                min-width: calc(100% - 20px);
            }
            
            .doctor-header h1 {
                font-size: 1.8rem;
            }
            
            .doctor-header h2 {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .patient-info {
                flex-direction: column;
                text-align: center;
            }
            
            .patient-image {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                margin: 0 10px;
            }
            
            .container {
                padding: 20px 15px;
            }
            
            [class^="Revi"] {
                margin: 0 10px;
                padding: 20px;
            }
            
         
            
            
        }





          .tea5 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .tea5 i {
    font-size: 70px;
    color: #5f8bd3;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tea5 {
      width: 120px;
      height: 120px;
    }
    .tea5 i {
      font-size: 55px;
    }
  }

  @media (max-width: 480px) {
    .tea5 {
      width: 100px;
      height: 100px;
    }
    .tea5 i {
      font-size: 45px;
    }
  }

   
   















   .rr1 {
            max-width: 1400px;
            width: 90%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(42, 92, 189, 0.15);
            overflow: hidden;
            padding: 50px 40px;
            position: relative;
            margin: 50px auto;
            animation: rr1-anim 1s ease-out;
        }
        
        @keyframes rr1-anim {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .rr2 {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .rr3 {
            color: #2a5cbd;
            margin-bottom: 15px;
            font-size: 3rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            animation: rr3-anim 2s ease-out;
        }
        
        @keyframes rr3-anim {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .rr3::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #2a5cbd;
            border-radius: 2px;
            animation: rr3-line 1.5s ease-out 0.5s both;
        }
        
        @keyframes rr3-line {
            0% {
                width: 0;
            }
            100% {
                width: 100px;
            }
        }
        
        .rr4 {
            color: #64748b;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.7;
            animation: rr4-anim 1s ease-out 0.8s both;
        }
        
        @keyframes rr4-anim {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .rr5 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .rr6 {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(42, 92, 189, 0.08);
            padding: 25px;
            transition: all 0.4s ease;
            border: 1px solid #e6f0ff;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: rr6-anim 0.8s ease-out forwards;
        }
        
        .rr6:nth-child(1) { animation-delay: 0.2s; }
        .rr6:nth-child(2) { animation-delay: 0.4s; }
        .rr6:nth-child(3) { animation-delay: 0.6s; }
        .rr6:nth-child(4) { animation-delay: 0.8s; }
        .rr6:nth-child(5) { animation-delay: 1.0s; }
        .rr6:nth-child(6) { animation-delay: 1.2s; }
        .rr6:nth-child(7) { animation-delay: 1.4s; }
        .rr6:nth-child(8) { animation-delay: 1.6s; }
        
        @keyframes rr6-anim {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            70% {
                transform: translateY(-5px) scale(1.02);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .rr6::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #2a5cbd, #4a7de0);
            border-radius: 2px 2px 0 0;
            animation: rr6-line 3s ease-in-out infinite alternate;
        }
        
        @keyframes rr6-line {
            0% {
                width: 30%;
                background: #2a5cbd;
            }
            100% {
                width: 100%;
                background: #4a7de0;
            }
        }
        
        .rr6:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 15px 30px rgba(42, 92, 189, 0.2);
        }
        
        .rr7 {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .rr8 {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #e6f0ff, #d4e4ff);
            box-shadow: 0 4px 12px rgba(42, 92, 189, 0.15);
            color: #2a5cbd;
            animation: rr8-anim 2s infinite alternate;
        }
        
        @keyframes rr8-anim {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 12px rgba(42, 92, 189, 0.15);
            }
            100% {
                transform: scale(1.05);
                box-shadow: 0 6px 18px rgba(42, 92, 189, 0.25);
            }
        }
        
        .rr9 h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .rr9 p {
            color: #2a5cbd;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .rr10 {
            color: #ffc107;
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            gap: 2px;
        }
        
        .rr10 i {
            animation: rr10-anim 2s infinite;
        }
        
        .rr10 i:nth-child(2) { animation-delay: 0.2s; }
        .rr10 i:nth-child(3) { animation-delay: 0.4s; }
        .rr10 i:nth-child(4) { animation-delay: 0.6s; }
        .rr10 i:nth-child(5) { animation-delay: 0.8s; }
        
        @keyframes rr10-anim {
            0%, 100% {
                transform: scale(1);
                color: #ffc107;
            }
            50% {
                transform: scale(1.2);
                color: #ffd700;
            }
        }
        
        .rr11 {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
            animation: rr11-anim 1s ease-out 0.5s both;
        }
        
        @keyframes rr11-anim {
            0% {
                opacity: 0;
                transform: translateX(-10px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .rr11::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -8px;
            font-size: 2.5rem;
            color: #e6f0ff;
            font-family: Georgia, serif;
        }
        
        .rr12 {
            color: #7f9bc2;
            font-size: 0.85rem;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px;
            animation: rr12-anim 1s ease-out 1s both;
        }
        
        @keyframes rr12-anim {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        
        .rr13 {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(42, 92, 189, 0.05);
            z-index: 0;
            animation: rr13-anim 6s ease-in-out infinite;
        }
        
        .rr14 {
            top: -70px;
            right: -70px;
            animation-delay: 0s;
        }
        
        .rr15 {
            bottom: -70px;
            left: -70px;
            animation-delay: 2s;
        }
        
        .rr16 {
            top: 50%;
            right: 10%;
            width: 80px;
            height: 80px;
            animation-delay: 4s;
        }
        
        @keyframes rr13-anim {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        @media (max-width: 1400px) {
            .rr5 {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            
            .rr1 {
                max-width: 1200px;
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 1200px) {
            .rr5 {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .rr1 {
                padding: 35px 25px;
            }
            
            .rr3 {
                font-size: 2.6rem;
            }
        }
        
        @media (max-width: 1024px) {
            .rr5 {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .rr1 {
                padding: 30px 20px;
            }
            
            .rr3 {
                font-size: 2.4rem;
            }
            
            .rr4 {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .rr5 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .rr1 {
                padding: 25px 20px;
                border-radius: 15px;
            }
            
            .rr3 {
                font-size: 2.2rem;
            }
            
            .rr4 {
                font-size: 1rem;
                margin: 20px auto 0;
            }
            
            .rr6 {
                padding: 20px;
            }
        }
        
        @media (max-width: 640px) {
            .rr1 {
                padding: 20px 15px;
                border-radius: 12px;
                width: 95%;
                margin: 30px auto;
            }
            
            .rr3 {
                font-size: 2rem;
                margin-bottom: 10px;
            }
            
            .rr3::after {
                bottom: -10px;
                width: 80px;
            }
            
            .rr4 {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .rr7 {
                flex-direction: column;
                text-align: center;
                margin-bottom: 15px;
            }
            
            .rr8 {
                margin-right: 0;
                margin-bottom: 10px;
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .rr9 h4 {
                font-size: 1.1rem;
            }
            
            .rr11 {
                font-size: 0.9rem;
                padding-left: 12px;
            }
            
            .rr11::before {
                font-size: 2rem;
                top: -6px;
            }
        }
        
        @media (max-width: 480px) {
            .rr1 {
                padding: 15px 12px;
                border-radius: 10px;
                margin: 20px auto;
            }
            
            .rr2 {
                margin-bottom: 30px;
            }
            
            .rr3 {
                font-size: 1.8rem;
            }
            
            .rr4 {
                font-size: 0.9rem;
            }
            
            .rr6 {
                padding: 15px;
            }
            
            .rr8 {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .rr9 h4 {
                font-size: 1rem;
            }
            
            .rr9 p {
                font-size: 0.85rem;
            }
            
            .rr10 {
                font-size: 0.9rem;
            }
            
            .rr11 {
                font-size: 0.85rem;
                line-height: 1.5;
            }
            
            .rr12 {
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 360px) {
            .rr3 {
                font-size: 1.6rem;
            }
            
            .rr4 {
                font-size: 0.85rem;
            }
            
            .rr6 {
                padding: 12px;
            }
            
            .rr11 {
                font-size: 0.8rem;
            }
        }




































        
  .b1 {
    display: flex;
    justify-content: center;
    align-items: center;

  }

  .b2 {
    background-color: #0463FA;
    color: white;
    text-align: center;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(4, 99, 250, 0.4);
  }

  .b2:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(4, 99, 250, 0.6);
  }

  .b2:active {
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(4, 99, 250, 0.4);
  }

  @media (max-width: 600px) {
    .b2 {
      padding: 12px 25px;
      font-size: 14px;
    }
  }
