/* ================= LAB LEFT-RIGHT SECTION ================= */
.lab-lr-section {
    max-width: 950px;
    margin: 60px auto;
    padding: 50px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    background: #f7f8fa;
    border-radius: 20px;
}

/* Title */
.lab-lr-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 20px;
}

/* Intro Paragraph */
.lab-lr-intro {
    text-align: center;
    font-size: 16.5px;
    color: #555555;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Card Layout */
.lab-lr-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Left Content */
.lab-lr-content {
    flex: 1;
    text-align: left;
}

.lab-lr-content h3 {
    font-size: 22px;
    color: #0a2647;
    margin-bottom: 12px;
    font-weight: 700;
}

.lab-lr-content p {
    font-size: 15.5px;
    color: #444444;
    line-height: 1.7;
}

.lab-lr-image {
    flex: 0 0 220px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lab-lr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ensures full image fits */
    transition: all 0.3s ease;
}


/* Responsive */
@media(max-width: 768px) {
    .lab-lr-card {
        flex-direction: column;
        text-align: center;
    }
    .lab-lr-image {
        width: 100%;
        height: 200px;
    }
    .lab-lr-content h3 {
        font-size: 20px;
    }
    .lab-lr-content p {
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .lab-lr-title {
        font-size: 28px;
    }
    .lab-lr-intro {
        font-size: 15px;
    }
    .lab-lr-card {
        padding: 20px;
        gap: 20px;
    }
}



/* location */

/* ===== HERO SECTION ===== */
.location-hero {
    background: linear-gradient(135deg, #cce5f1, #eef6ff);
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1200px;
}

.location-hero h1 {
    font-size: 40px;
    color: #0d3b66;
    margin-bottom: 15px;
}

.location-hero p {
    font-size: 18px;
    color: #4b4b4b;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== LOCATION CARDS ===== */
.locations-list {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.locations-list h2 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 40px;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.location-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.location-card h3 {
    color: #0d3b66;
    font-size: 20px;
    margin-bottom: 10px;
}

.location-card p {
    font-size: 15px;
    margin: 5px 0;
    color: #555555;
}

.book-btn {
    display: inline-block;
    margin-top: 10px;
    background: #0d3b66;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* ===== MAP SECTION ===== */
.location-map {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.location-map h2 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

/* ===== DIRECTIONS ===== */
.location-directions {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.location-directions h2 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.location-directions ul {
    list-style: disc;
    padding-left: 25px;
}

.location-directions li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

/* ===== CONTACT & SUPPORT ===== */
.location-contact {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.location-contact h2 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 20px;
}

.location-contact p {
    font-size: 16px;
    margin: 5px 0;
}

/* ===== FAQ ===== */
.location-faq {
    max-width: 1200px;
    margin: 50px auto 80px;
    padding: 0 20px;
}

.location-faq h2 {
    font-size: 32px;
    color: #0d3b66;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    color: #0d3b66;
    margin-bottom: 5px;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .location-hero h1 {
        font-size: 28px;
    }
    .location-hero p {
        font-size: 16px;
    }
    .locations-list h2,
    .location-map h2,
    .location-directions h2,
    .location-contact h2,
    .location-faq h2 {
        font-size: 26px;
    }
    .location-card h3 {
        font-size: 18px;
    }
}
.call-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0d3b66;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.call-btn:hover {
    background-color: #07426c;
}


/* contact */

/* Hero Section */
.contact-hero {
    background: #0d3b66;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}
.contact-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

/* Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 60px auto;
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.contact-form-section h2 {
    text-align: center;
    color: #0d3b66;
    margin-bottom: 30px;
}
.contact-form-section .form-group {
    margin-bottom: 20px;
    text-align: left;
}
.contact-form-section label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}
.contact-form-section textarea {
    resize: vertical;
}
.contact-form-section .btn-submit {
    background: #0d3b66;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: auto;
    margin-top: 10px;
}
.contact-form-section .btn-submit:hover {
    background: #0b3355;
}

/* Contact Info Section */
.contact-info-section {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}
.contact-info-section h2 {
    color: #0d3b66;
    margin-bottom: 30px;
}
.contact-info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.contact-card h3 {
    color: #0d3b66;
    margin-bottom: 10px;
}
.contact-card a {
    color: #0d3b66;
    text-decoration: none;
}
.contact-card p {
    font-size: 14px;
    margin: 5px 0;
}

/* Map Section */
.contact-map {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 15px;
}
.contact-map h2 {
    text-align: center;
    color: #0d3b66;
    margin-bottom: 20px;
}

/* Social Media */
.contact-social {
    text-align: center;
    margin: 60px 0;
}
.contact-social h2 {
    color: #0d3b66;
    margin-bottom: 20px;
}
.social-links a {
    display: inline-block;
    margin: 0 15px;
    padding: 10px 18px;
    background: #0d3b66;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.social-links a:hover {
    background: #0b3355;
}

/* FAQ */
.contact-faq {
    max-width: 900px;
    margin: 60px auto;
}
.contact-faq h2 {
    text-align: center;
    color: #0d3b66;
    margin-bottom: 30px;
}
.faq-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-item h4 {
    margin-bottom: 10px;
}

/* CTA Buttons */
.contact-cta {
    text-align: center;
    margin: 60px 0;
}
.btn-call,
.btn-book {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin: 10px;
    cursor: pointer;
    text-decoration: none;
}
.btn-call {
    background: #0d3b66;
    color: #fff;
}
.btn-book {
    background: #fff;
    border: 2px solid #0d3b66;
    color: #0d3b66;
}
.btn-call:hover { background: #0b3355; }
.btn-book:hover { background: #0d3b66; color: #fff; }

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left:0; top:0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.booking-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
}
.booking-content h2 {
    margin-bottom: 20px;
    color: #0d3b66;
}
.booking-content input,
.booking-content select {
    width: 100%;
    padding: 10px 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.booking-content button {
    background: #0d3b66;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}
.booking-content button:hover { background: #0b3355; }
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Success Modal */
.btn-close-success {
    background: #0d3b66;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
}
.btn-close-success:hover { background: #0b3355; }

/* Responsive */
@media(max-width: 480px) {
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }
}


/* sussess message */
.contact-form-section {
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #0277bd;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #014b75;
}

/* --- POPUP --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: white;
    padding: 25px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    border-radius: 10px;
    animation: popFade 0.3s ease-out;
}

.close-popup {
    margin-top: 15px;
    background: #0277bd;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes popFade {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



/* about us  */

/* -------------------------
   GLOBAL STYLES
-------------------------- */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f9ff;
  color: #1f2a37;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* -------------------------
   HERO SECTION
-------------------------- */

.rdc-hero {
  background: linear-gradient(145deg, #024b77, #007abf);
  padding: 70px 20px;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 20px;
  opacity: 0.9;
}

.hero-cta {
  font-size: 16px;
  margin-top: 10px;
  color: #d9f3ff;
}

/* -------------------------
   ABOUT CARDS
-------------------------- */

#about-rdc-modern {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #eef4ff, #f8fbff);
  font-family: 'Inter', sans-serif;
}

.about-wrap {
  max-width: 1000px;
  margin: auto;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #0047b3;
}

.about-header p {
  font-size: 16px;
  color: #555;
}

.about-glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-intro h3,
.about-services h3,
.about-final h3,
.about-mission-card h3 {
  color: #0047b3;
  margin-bottom: 10px;
}

.about-intro p {
  line-height: 1.7;
  color: #333;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 15px;
  margin: 25px 0;
}

.highlight-box {
  background: #0047b3;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
}

.about-mission-card {
  background: linear-gradient(to right, #0047b3, #0075ff);
  color: #fff;
  padding: 25px;
  border-radius: 14px;
  margin: 30px 0;
}

.about-services ul {
  list-style: none;
  padding-left: 0;
}

.about-services li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.leader-card {
  position: relative;
  border: 1px solid #ddd;
  padding: 35px;
  border-radius: 15px;
  margin: 40px 0;
  background: #fff;
}

.leader-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #0047b3;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
}

.leader-info h4 {
  color: #0047b3;
  font-size: 22px;
  margin-bottom: 6px;
}

.leader-role {
  font-weight: 600;
  color: #555;
}

.leader-title {
  color: #0075ff;
  font-weight: 700;
}

.leader-desc {
  margin-top: 10px;
  color: #333;
}

.about-buttons {
  text-align: center;
  margin-top: 35px;
}

.btn-gradient {
  background: linear-gradient(to right, #0047b3, #0075ff);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  margin-right: 15px;
  display: inline-block;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid #0047b3;
  color: #0047b3;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.btn-outline:hover {
  background: #0047b3;
  color: #fff;
}

/* Mobile */
@media(max-width:768px) {
  .about-glass {
    padding: 25px;
  }

  .about-header h2 {
    font-size: 32px;
  }
}



/* -------------------------
   SMALL CARD
-------------------------- */

.about-card.small {
  background: #e8f4ff;
  border-left: 5px solid #007abf;
}

/* -------------------------
   BROCHURE / GMB TEXT
-------------------------- */

.muted {
  color: #6f7b85;
}

/* -------------------------
   HERO CTA MINI BLOCK
-------------------------- */

.hero-cta-card .big {
  font-size: 22px;
  font-weight: bold;
}

.hero-cta-card .small {
  color: #4a5565;
  margin-top: 5px;
}

/* -------------------------
   FOOTER
-------------------------- */

.foot-note {
  text-align: center;
  font-size: 14px;
  color: #6a7582;
  padding: 15px 0;
  margin-bottom: 50px;
}


/* -------------------------
   RESPONSIVE
-------------------------- */

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .about-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.contact-section {
  display: flex;
  justify-content: flex-start;
  padding: 40px;
  background: #f5f7fb;
}

.contact-card {
  width: 350px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  overflow: hidden;
}

.contact-title {
  background: #666;
  color: white;
  padding: 14px;
  font-size: 20px;
  font-weight: bold;
}

.contact-line {
  display: flex;
  gap: 12px;
  padding: 12px 15px;
  font-size: 14px;
  align-items: start;
}

.contact-line span {
  font-size: 18px;
}

.contact-image-box {
  padding: 10px;
}

.contact-image-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: opacity 1s ease-in-out;
}
.contact-image-box img {
  animation: zoomFade 6s infinite;
}

@keyframes zoomFade {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}
@media(max-width: 600px) {
  .contact-card {
    width: 100%;
  }
}



/* RIGHT SIDE SERVICES PANEL */
.right-content {
  background: #ffffff;
  padding: 28px 26px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 130px;
}

/* HEADING */
.right-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0b3c74;
  letter-spacing: 0.4px;
  position: relative;
}

.right-content h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #0047b3, #00aaff);
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

/* SERVICES LIST */
.feature-box {
  background: #f7faff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1e2b3a;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: all 0.25s ease;
  border: 1px solid #e2e8f0;
}

/* HOVER EFFECT */
.feature-box:hover {
  background: linear-gradient(to right, #0047b3, #007bff);
  color: #ffffff;
  transform: translateX(3px);
  box-shadow: 0 8px 18px rgba(0,123,255,0.25);
}

/* ICON STYLE (emoji) */
.feature-box span {
  font-size: 18px;
}

/* MOBILE */
@media(max-width: 600px) {
  .right-content {
    padding: 22px;
  }

  .right-content h2 {
    font-size: 20px;
  }

  .feature-box {
    font-size: 14px;
  }
}





.two-column-layout {
  display: flex;
  gap: 25px;
  align-items: stretch; /* same height look */
  padding: 20px;
}

/* LEFT & RIGHT SAME SIZE */
.contact-section,
.right-content {
  flex: 1;              /* both take equal width */
}

/* MOBILE VIEW */
@media(max-width: 800px) {
  .two-column-layout {
    flex-direction: column;
  }
}



/* infrastructure */

/* ------------------ SECTION WRAPPER ------------------ */
.card-section,
.highlight-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.card-section {
  margin-bottom: 40px;
}

/* ------------------ GRID SYSTEM ------------------ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .grid-3,
  .grid-2,
  .dept-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------ CARDS ------------------ */
.info-card,
.qa-card,
.dept {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.info-card:hover,
.qa-card:hover,
.dept:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.info-card h3,
.qa-card h3,
.dept h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* ------------------ DEPARTMENT LIST ------------------ */
.dept ul {
  margin: 0;
  padding-left: 20px;
}

.dept ul li {
  padding: 4px 0;
  color: #3d5568;
}

/* ------------------ TECHNOLOGY SECTION ------------------ */
.tech-list > div {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.tech-list > div:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

/* ------------------ TAT TABLE ------------------ */
.tat-table-wrap {
  overflow-x: auto;
  margin-top: 25px;
}

.tat-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.tat-table th {
  background: #01426a;
  color: white;
  padding: 14px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.tat-table td {
  padding: 15px;
  border-bottom: 1px solid #e6eef4;
  color: #314b5f;
}

.tat-table tr:hover {
  background: #f4faff;
}

.tat-table tr:last-child td {
  border-bottom: none;
}

/* ------------------ WHY CHOOSE SECTION ------------------ */
.highlight-section {
  background: linear-gradient(135deg, #e8f5ff, #f8fbff);
  border-radius: 18px;
}

.why-list {
  margin: 0;
  padding-left: 20px;
}

.why-list li {
  margin-bottom: 12px;
  font-size: 17px;
  color: #2d4151;
  position: relative;
}

.why-list li:before {
  content: "✔";
  color: #0088cc;
  font-weight: 700;
  margin-right: 8px;
}


/* patient care */
/* ---------------------------
   GLOBAL SECTION STYLING
---------------------------- */


.pc-section {
    padding: 80px 20px;
    max-width: 1300px;
    margin: auto;
}

/* Soft gradient background for highlighted sections */
.pc-section.light {
    background: linear-gradient(135deg, #eef7ff, #f8fcff);
    border-top: 1px solid #d9ecff;
    border-bottom: 1px solid #d9ecff;
}

/* ---------------------------
   TITLES
---------------------------- */
.pc-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #0055c9, #0099ff);
    -webkit-background-clip: text; /* Chrome, Safari */
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    background-clip: text; /* Standard */
    color: transparent; /* Fallback for older browsers */
    letter-spacing: 1px;
}


/* ---------------------------
   GRID LAYOUT
---------------------------- */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

/* ---------------------------
   CARD STYLING (ULTRA MODERN)
---------------------------- */
.pc-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(220, 232, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover animation */
.pc-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Soft animated glow */
.pc-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,128,255,0.1), transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.pc-card:hover::after {
    opacity: 1;
}

/* Card heading */
.pc-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #005fcc;
}

/* Card text */
.pc-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* ---------------------------
   LIST STYLE (GUIDELINES)
---------------------------- */
.pc-list {
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    padding-left: 25px;
    color: #333;
}

.pc-list li {
    margin-bottom: 14px;
    padding-left: 6px;
}

/* ---------------------------
   CONTACT SECTION
---------------------------- */
.pc-center-text {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    color: #444;
}

/* Contact box with glass effect */
.pc-contact-box {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(200,210,255,0.5);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    animation: fadeUp 0.7s ease;
}

/* Contact box text */
.pc-contact-box p {
    margin: 12px 0;
    font-weight: 600;
    font-size: 19px;
    color: #003c80;
}

/* Fade-in animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}


.pc-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
}

.pc-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
    letter-spacing: 1px;
}

.pc-center-text {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pc-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Contact Cards */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #111;
    transition: all 0.35s ease;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #4fc3f7, #00bcd4);
    transition: all 0.4s ease;
    z-index: 0;
    border-radius: 15px;
}

.contact-item:hover::before {
    left: 0;
}

.contact-item:hover .contact-text,
.contact-item:hover .contact-icon {
    color: #fff;
}

/* Icon & Text */
.contact-icon {
    font-size: 26px;
    z-index: 1;
    transition: color 0.35s ease;
}

.contact-text {
    font-size: 16px;
    z-index: 1;
    font-weight: 600;
    transition: color 0.35s ease;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .pc-contact-box {
        flex-direction: column;
    }
}
