body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f7f9fb;
    color: #333;
}

.hero {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT ON IMAGE */
.hero-content {
    position: absolute;
    top: 40%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #ffffff; /* White text */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;

    /* Text contrast */
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;

    /* Softer shadow for paragraph */
    text-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 65vh;
    }

    .hero-content {
        left: 6%;
        right: 6%;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}
/* HERO */
.page-hero {
    background: linear-gradient(90deg, #2bb3a3, #9adbd2);
    padding: 70px 8%;
    color: #fff;
}
.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 18px;
}

/* CONTACT SECTION */
.contact_section {
    padding: 70px 0;
}

.heading_container {
    text-align: center;
    margin-bottom: 40px;
}
.heading_container h2 {
    color: #2bb3a3;
    font-size: 36px;
}

/* FORM */
.form_container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 850px;
    margin: auto;
}

.form-row {
    display: flex;
    margin-bottom: 20px;
}

.form_container input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form_container input:focus {
    outline: none;
    border-color: #2bb3a3;
}

.message-box {
    height: 120px;
}

/* BUTTON */
.btn_box {
    text-align: center;
    margin-top: 30px;
}

.btn_box button {
    background: #2bb3a3;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn_box button:hover {
    background: #219c8e;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .page-hero h1 {
        font-size: 32px;
    }
}
/* FOOTER */
footer {
    background: #2bb3a3;
    color: #fff;
    text-align: center;
    padding: 20px;
}

@media(max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .main_container {
        grid-template-columns: 1fr;
    }
    .section-header {
        grid-template-columns: 1fr;
    }
}
.hero_area{
    min-height: 120vh !important;
}
.header_container {
    padding: 0% !important;
    display: block !important;
}
.footer_section{
    text-align: left !important;
}
.instructions-section {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.instructions-section h2 {
    text-align: center;
    color: #2bb3a3;
    margin-bottom: 35px;
    font-size: 32px;
}

/* GRID */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* CARD */
.instruction-card {
    background: #f0fbf9;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.instruction-card:hover {
    transform: translateY(-6px);
}

/* ICON */
.instruction-card i {
    font-size: 36px;
    color: #2bb3a3;
    margin-bottom: 15px;
}

.instruction-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #0f3d3a;
}

.instruction-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.download-forms {
  padding: 60px 20px;
  background: #f8fafc;
}

.download-forms h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-desc {
  text-align: center;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 40px;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.form-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.form-card i {
  font-size: 26px;
  color: #dc2626; /* PDF red */
}

.form-card span {
  font-weight: 600;
  line-height: 1.3;
}

.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.form-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* Left PDF Icon */
.icon-wrap i {
  font-size: 28px;
  color: #dc2626;
}

/* Text */
.form-text span {
  font-weight: 600;
  display: block;
}

.form-text small {
  color: #64748b;
  font-size: 13px;
}

/* Download Icon */
.download-icon i {
  font-size: 20px;
  color: #2563eb;
  transition: transform 0.3s ease;
}

/* Hover animation */
.form-card:hover .download-icon i {
  transform: translateY(4px);
}

/* Subtle pulse animation */
.form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(37, 99, 235, 0.08),
    transparent
  );
  transform: translateX(-100%);
}

.form-card:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  to {
    transform: translateX(100%);
  }
}
.download-icon i {
  font-size: 20px;
  color: #16a34a;
  transition: transform 0.3s ease, color 0.3s ease;
}





















.hero {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT ON IMAGE */
.hero-content {
    position: absolute;
    top: 40%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #ffffff; /* White text */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;

    /* Text contrast */
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;

    /* Softer shadow for paragraph */
    text-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 65vh;
    }

    .hero-content {
        left: 6%;
        right: 6%;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}
/* MAIN GRID */
.main_container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 60px 8%;
}

.side-nav {
    position: sticky;
    top: 30px;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.side-nav h4 {
    margin-bottom: 15px;
    color: #2bb3a3;
}

/* LINKS */
.side-links a {
    display: block;
    padding: 8px 0;
    color: #2bb3a3;
    font-weight: 500;
    text-decoration: none;
}

.side-links a:hover {
    text-decoration: underline;
}

/* IMAGE STACK */
.side-images {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.side-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* CONTENT */
.section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 40px;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 30px;
    align-items: center;
}

.section-header img {
    width: 100%;
    border-radius: 12px;
}

.section h2 {
    color: #2bb3a3;
    margin-bottom: 15px;
}

ul {
    padding-left: 18px;
}
li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* TIPS GRID */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .tip-box {
            background: #f0fbf9;
            padding: 20px;
            border-radius: 12px;
        }
/* FOOTER */
footer {
    background: #2bb3a3;
    color: #fff;
    text-align: center;
    padding: 20px;
}

@media(max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .main_container {
        grid-template-columns: 1fr;
    }
    .section-header {
        grid-template-columns: 1fr;
    }
}
.hero_area{
    min-height: 120vh !important;
}
.header_container {
    padding: 0% !important;
    display: block !important;
}
.footer_section{
    text-align: left !important;
}























.hero {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT ON IMAGE */
.hero-content {
    position: absolute;
    top: 40%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #ffffff; /* White text */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;

    /* Text contrast */
    text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;

    /* Softer shadow for paragraph */
    text-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 65vh;
    }

    .hero-content {
        left: 6%;
        right: 6%;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}
/* HERO */
.page-hero {
    background: linear-gradient(90deg, #2bb3a3, #9adbd2);
    padding: 70px 8%;
    color: #fff;
}
.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 18px;
}

/* CONTACT SECTION */
.contact_section {
    padding: 70px 0;
}

.heading_container {
    text-align: center;
    margin-bottom: 40px;
}
.heading_container h2 {
    color: #2bb3a3;
    font-size: 36px;
}

/* FORM */
.form_container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 850px;
    margin: auto;
}

.form-row {
    display: flex;
    margin-bottom: 20px;
}

.form_container input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form_container input:focus {
    outline: none;
    border-color: #2bb3a3;
}

.message-box {
    height: 120px;
}

/* BUTTON */
.btn_box {
    text-align: center;
    margin-top: 30px;
}

.btn_box button {
    background: #2bb3a3;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn_box button:hover {
    background: #219c8e;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .page-hero h1 {
        font-size: 32px;
    }
}
/* FOOTER */
footer {
    background: #2bb3a3;
    color: #fff;
    text-align: center;
    padding: 20px;
}

@media(max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .main_container {
        grid-template-columns: 1fr;
    }
    .section-header {
        grid-template-columns: 1fr;
    }
}
.hero_area{
    min-height: 120vh !important;
}
.header_container {
    padding: 0% !important;
    display: block !important;
}
.footer_section{
    text-align: left !important;
}

















  .doctor_section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  padding: 80px 0;
}
.doctor_section .box {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.doctor_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.15);
}
.doctor_section .img-box {
  padding: 20px;
  text-align: center;
}

.doctor_section .img-box img {
  border-radius: 14px;
  object-fit: cover;
  max-width: 100%;
}
.doctor_section .detail-box {
  padding: 28px 24px 30px;
  text-align: center;
}

.doctor_section .detail-box h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.doctor_section .detail-box h6 {
  font-size: 14px;
  color: #475569;
  margin-bottom: 4px;
}
.doctor_section .social_box {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.doctor_section .social_box a {
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.doctor_section .social_box a:hover {
  background: #0f172a;
  transform: scale(1.1);
}
.heading_container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

.heading_container p {
  font-size: 16px;
  color: #475569;
  margin-top: 10px;
}







.profile-toggle {
  margin-top: 12px;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.profile-toggle:hover {
  background: var(--primary-color);
  color: #fff;
}

.doctor-accordion {
  display: none;
  width: 100%;
  margin-top: 20px;
}

.accordion-inner {
  background: #f8fafc;
  border-left: 4px solid var(--primary-color);
  padding: 24px 28px;
  border-radius: 10px;
}

.accordion-inner h4 {
  color: var(--primary-color);
  margin-top: 20px;
}

.accordion-inner ul {
  padding-left: 20px;
}

:root {
  --primary-color: #2bb673; /* example: your site green */
}

/* View Profile Button */
.view-profile-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover: button turns WHITE */
.view-profile-btn:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.view-profile-btn:hover {
  transform: translateY(-2px);
}



.doctor-profile-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Header */
.doctor-header {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.doctor-photo img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid whitesmoke;
}

.doctor-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.designation {
  color: #2bb673;
  font-weight: 600;
  margin: 5px 0;
}

.credentials {
  color: #555;
  font-size: 15px;
}

/* Clinic Sections */
.clinic-section {
  margin-bottom: 30px;
}

.clinic-section h4 {
  color: #2bb673;
  font-weight: 700;
  margin-bottom: 12px;
}

.clinic-section p {
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .doctor-header {
    flex-direction: column;
    text-align: center;
  }

  .doctor-photo img {
    width: 120px;
    height: 120px;
  }
}
.doctor-accordion {
  animation: slideFadeIn 0.8s ease forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

