/* Center Section */
.center-diagnostic-banner {
    display: flex;
    justify-content: center;
    padding: 90px 0;
    background: linear-gradient(135deg, #ebfcfd, #ffffff, #e7f1ff);
    background-size: 150% 150%;
    animation: smoothBG 10s ease-in-out infinite;
}

/* Main Box (Glass + Bloom Effect) */
.diag-box {
    width: 900px;
    max-width: 92%;
    padding: 45px 55px;
    border-radius: 24px;
    background: linear-gradient(135deg, #30f5ff, #02a51aa2, #ffffff);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 60, 160, 0.12), 
                0 0 22px rgba(0,120,255,0.18);  /* Bloom Effect */
    text-align: center;
    animation: fadeSlide 1.1s ease-out;
}


/* Title */
.diag-headline {
    font-size: 44px;
    font-weight: 800;
    color: #0b2b75;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(0, 120, 255, 0.15); /* Soft glow */
}

/* Subtitle */
.diag-subtitle {
    font-size: 19px;
    
    color: #000000;
    margin-bottom: 32px;
    line-height: 1.6;
    backdrop-filter: blur(2px);
    opacity: 0.85;
}


/* Buttons Row */
.diag-btn-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* Buttons */
.diag-btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.diag-btn.primary {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 89, 255, 0.35);
    color: #003b9f;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.35s ease;
}

.diag-btn.primary:hover {
    background: rgba(255, 255, 255, 0.877);
    border-color: rgba(0, 89, 255, 0.65);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 89, 255, 0.25);
}


/* Outline Button */
.diag-btn.outline {
    border: 2px solid #0059ff;
    color: #0059ff;
    background: rgba(255,255,255,0.6);
}

.diag-btn.outline:hover {
    background: rgba(0, 89, 255, 0.08);
    box-shadow: 0 6px 18px rgba(0, 89, 255, 0.18);
}

/* List */
.diag-highlight-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: center;
}

.diag-highlight-list li {
    font-size: 17px;
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid #eaecef;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    color: #111;
}

/* Responsive */
@media (max-width: 600px) {
    .diag-headline {
        font-size: 32px;
    }
    .diag-subtitle {
        font-size: 16px;
    }
    .diag-box {
        padding: 35px 30px;
    }
}


/* Popup Background */
.booking-modal,
.success-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
.booking-content,
.success-box {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: fadeUp 0.4s ease;
}

.booking-content h2,
.success-box h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #003c99;
}

/* Inputs */
.booking-content input,
.booking-content textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #c7c7c7;
    font-size: 15px;
}

/* Buttons */
.confirm-btn {
    width: 100%;
    background: #0057d8;
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

.confirm-btn:hover {
    background: #003f9e;
}

.close-btn {
    width: 100%;
    padding: 12px;
    background: #e6e6e6;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.ok-btn {
    width: 100%;
    padding: 12px;
    background: #0057d8;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}



.service-section {
    padding: 60px 0;
    background: #f5f8ff;
}

.service-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 45px;
    color: #0e2a6b;
}

.service-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
    background: #ffffff;
    padding: 25px 22px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0e3b75;
}

.service-card p {
    color: #444;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.service-actions {
    display: flex;
    justify-content: space-between;
}

.servicebook-btn {
  background: #1d9bf0;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  outline: none;
}

/* Hover */
.servicebook-btn:hover {
  background: #1479c7;
  transform: translateY(-2px);
}

/* Click effect */
.servicebook-btn:active {
  transform: scale(0.97);
}


.btn-call {
    background: #0d9488;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-call:hover {
    background: #0f766e;
    transform: translateY(-2px);
}

.btn-call::before {
    content: "📞";
    font-size: 16px;
}
.booking-content select {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    font-size: 15px;
}


/* Popup Background */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  z-index:9999;
}



/* Popup Box */
.popup-content {
  background:#fff;
  width:350px;
  padding:25px;
  border-radius:10px;
  position:relative;
  animation: fadeIn 0.3s ease;
}

/* Close Button */
.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: 0.3s;
}

/* Inputs */
.popup-content input,
.popup-content textarea {
  width:100%;
  padding:10px;
  margin-top:5px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:15px;
}

textarea {
  height:80px;
}

/* Submit Button */
.submit-btn {
  background:#1d9bf0;
  color:#fff;
  width:100%;
  padding:12px;
  border:none;
  font-size:16px;
  font-weight:bold;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s ease;
}

.submit-btn:hover {
  background:#1479c7;
}

/* ✅ Final Success Message */
.success-msg {
  display: none;
  margin-top: 15px;
  padding: 10px;
  background: #dfffe0;
  border-left: 5px solid #28a745;
  color: #1e6d2b;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

/* Smooth fade animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* faq */
.faq-section {
  background: #f5f9ff;
  padding: 60px 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  color: #013d7a;
  font-weight: 700;
  margin-bottom: 35px;
}

.faq-list {
  max-width: 850px;
  margin: auto;
}

details {
  background: white;
  padding: 18px 22px;
  margin-bottom: 15px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border: 1px solid #dbe8ff;
}

details:hover {
  transform: translateY(-3px);
}

summary {
  font-size: 18px;
  font-weight: 600;
  color: #003b7a;
  list-style: none;
  position: relative;
  cursor: pointer;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  font-weight: bold;
  transition: 0.3s;
}

details[open] summary::after {
  transform: rotate(45deg);
  color: #0077ff;
}

details p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  border-top: 1px solid #e2edff;
  padding-top: 12px;
}

/* banner sussess message */
/* Success Popup Background */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Success Popup Box */
.success-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: popup 0.3s ease;
}

/* Success Close Button */
.close-success {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

@keyframes popup {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}



