.why-choose-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.why-choose-list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  background: #ffffff10;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  transform: translateX(0);
}

/* Icon Styling */
.why-choose-list li i {
  color: #108ee5;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Hover Animation */
.why-choose-list li:hover {
  background: #108ee5;
  color: #fff;
  border-left: 4px solid #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Icon Turning White on Hover */
.why-choose-list li:hover i {
  color: #fff;
  transform: scale(1.1);
}

.rct-benefits {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #108ee5;
}

.benefit-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid #e6f2ff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

.benefit-box i {
  font-size: 40px;
  color: #108ee5;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.benefit-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-box p {
  font-size: 15px;
  color: #555;
}

/* Hover Animation */
.benefit-box:hover {
  transform: translateY(-10px);
  background: #108ee5;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.benefit-box:hover i {
  color: #fff;
  transform: scale(1.1);
}

.benefit-box:hover p {
  color: #fff;
}

/* WhatsApp button */
.whatsapp-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 37, 79, 0.8);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

/* Popup Box */
.popup-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideIn 0.5s ease;
}

.popup-content h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #0e254f;
  font-weight: 600;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #3364d9;
}

/* Form Styling */
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: #0e254f;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #3364d9;
  border-radius: 6px;
  font-size: 15px;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #0e254f;
  outline: none;
  box-shadow: 0 0 6px rgba(51, 100, 217, 0.4);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #3364d9, #0e254f);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: linear-gradient(135deg, #0e254f, #3364d9);
  transform: scale(1.03);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*Treatment Section Custom Css*/
.treatment-gallery {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5fbff, #e8f2ff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px; /* Rounded Premium Cards */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: 0.35s ease;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 550px; /* UPDATED: Perfect for 800 x 1200 vertical images */
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Effect: Zoom + Lift */
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 700px; /* UPDATED: Better vertical look on mobile */
  }
}

.why-choose-area {
    background: #f5f9ff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d2c54;
}

.section-subtitle {
    color: #5f6f87;
    margin-top: 10px;
}

.why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(13, 44, 84, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #1e90ff, #0d6efd);
    transition: 0.4s;
    z-index: 0;
}

.why-card:hover::before {
    width: 100%;
}

.why-card * {
    position: relative;
    z-index: 1;
}

.why-card .icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0d2c54;
    transition: 0.3s;
}

.why-card p {
    color: #5f6f87;
    transition: 0.3s;
}

.why-card:hover h4,
.why-card:hover p {
    color: #ffffff;
}
/*Advance technology*/
.tech-hygiene-area {
    background: #ffffff;
}

.tech-card {
    background: #f5f9ff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(13, 44, 84, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1e90ff, #0d6efd);
    transition: 0.4s;
}

.tech-card:hover {
    transform: translateY(-8px);
}

.tech-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.tech-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0d2c54;
    margin-bottom: 10px;
}

.tech-card p {
    color: #5f6f87;
}

/* Emergency Care Section Styling */
    .emergency-care-area {
        position: relative;
        overflow: hidden;
    }

    .emergency-care-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

    .emergency-care-area .container {
        position: relative;
        z-index: 1;
    }

    .emergency-contact-box {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .emergency-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        animation: pulse 2s infinite;
    }

    .emergency-icon i {
        font-size: 40px;
        color: white;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
        }
    }

    .emergency-contact-box h3 {
        font-size: 26px;
        font-weight: 700;
        color: #2d3436;
        margin-bottom: 10px;
    }

    .emergency-contact-box>p {
        color: #636e72;
        margin-bottom: 25px;
    }

    .emergency-call-btn {
        display: inline-block;
        background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
    }

    .emergency-call-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 184, 148, 0.4);
        color: white;
    }

    .emergency-call-btn i {
        margin-right: 10px;
        animation: ring 2s infinite;
    }

    @keyframes ring {

        0%,
        100% {
            transform: rotate(0deg);
        }

        10%,
        30% {
            transform: rotate(-15deg);
        }

        20%,
        40% {
            transform: rotate(15deg);
        }
    }

    .emergency-hours {
        margin-top: 30px;
        text-align: left;
    }

    .hour-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .hour-item i {
        font-size: 24px;
        color: #667eea;
    }

    .hour-item strong {
        display: block;
        color: #2d3436;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .hour-item p {
        margin: 0;
        color: #636e72;
        font-size: 14px;
    }

    /* Emergency Grid */
    .emergency-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .emergency-card {
        background: rgba(255, 255, 255, 0.95);
        padding: 25px 20px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .emergency-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .emergency-card .card-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }

    .emergency-card .card-icon i {
        font-size: 28px;
        color: #2d3436;
    }

    .emergency-card h5 {
        font-size: 18px;
        font-weight: 700;
        color: #2d3436;
        margin-bottom: 8px;
    }

    .emergency-card p {
        font-size: 14px;
        color: #636e72;
        margin: 0;
    }

    /* Emergency Tips Box */
    .emergency-tips-box {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 30px;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .emergency-tips-box h4 {
        color: white;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
    }

    .emergency-tips-box h4 i {
        color: #ffeaa7;
        margin-right: 10px;
    }

    .tips-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .tip-item {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 10px;
        border-left: 4px solid #ffeaa7;
    }

    .tip-number {
        width: 35px;
        height: 35px;
        background: #ffeaa7;
        color: #2d3436;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        flex-shrink: 0;
    }

    .tip-item p {
        margin: 0;
        color: white;
        font-size: 14px;
        font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .emergency-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .emergency-contact-box {
            margin-bottom: 30px;
        }
    }

    @media (max-width: 767px) {
        .emergency-grid {
            grid-template-columns: 1fr;
        }

        .tips-grid {
            grid-template-columns: 1fr;
        }

        .emergency-call-btn {
            font-size: 16px;
            padding: 12px 30px;
        }

        .emergency-contact-box h3 {
            font-size: 22px;
        }
    }

    @media (max-width: 576px) {
        .emergency-care-area {
            padding: 60px 0;
        }

        .emergency-card {
            padding: 20px 15px;
        }

        .emergency-card h5 {
            font-size: 16px;
        }
    }

