@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

p,
a,
li {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

a {
  text-decoration: none;
}

body {
  scroll-behavior: smooth;
}
li {
  list-style: none;
}

/*=============================
  CSS Variables
=============================*/
:root {
  --main-color: #ffffff;
  --btn-color: #29d8db;
  --heading-color: #4a4a4a;
  --para-color: #7a7a7a;
  --anchor-color: #01578c;
}

/*=============================
  Utility Classes
=============================*/
.grid-two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 2rem 8rem;
}

/* Navbar Container */
.navbar-cardiologist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Heading */
.heading-bar h1 {
  color: #222;
  font-size: 2.5rem; /* 25px */
  line-height: 3rem; /* 30px */
}

.heading-bar p {
  color: var(--para-color);
  font-size: 1.6rem; /* 15px */
  line-height: 3rem; /* 30px */
}

/* Container for nav links + button */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem; /* 20px between list and button */
}

/* Nav List */
.navbar-list {
  display: flex;
  list-style: none;
  gap: 3rem; /* 30px between nav items */
}

.navbar-list li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem; /* 11px */
}

/* Active link color */
#home-color-active {
  color: var(--anchor-color);
}

/* Hover effect */
.navbar-list li a:hover {
  color: var(--anchor-color);
  transition: 0.2s ease-in;
}

/* Appointment Button Container */
.appointment-div {
  display: flex;
  align-items: center;
}

/* Button Styling */
.navbar-btn {
  background-color: var(--btn-color);
  border: none;
  padding: 1.3rem 1.5rem; /* 10px 15px */
  color: #fff;
  border-radius: 1.3rem; /* 13px */
  cursor: pointer;
  font-size: 1.2rem; /* 10px */
  transition: all 0.3s ease-in;
}

/* Hover */
.navbar-btn:hover {
  background-color: var(--anchor-color);
}

/*=============================
  Hero Section (Text + Form)
=============================*/
.main-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
}

.h1-section-content {
  width: 50%;
  padding: 2rem;
}

.h1-section-content h2 {
  margin-bottom: 2rem;
  color: var(--para-color);
  font-size: 1.6rem;
}

.h1-section-content h1 {
  font-size: 6rem;
  color: var(--heading-color);
  text-align: left;
}

.appointment-section-content {
  width: 50%;
  padding: 2rem;
}

.appointment-section-content h1 {
  margin-bottom: 2rem;
  color: var(--para-color);
  font-size: 1.6rem;
}
/*=============================
  Form Styles
=============================*/
.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 60rem;
  margin: auto;
}

.input-row.two-column {
  display: flex;
  gap: 1.5rem;
}

.input-row.two-column .input-group {
  flex: 1;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
}

button[type="submit"] {
  padding: 1.2rem;
  font-size: 1.6rem;
  background-color: var(--btn-color);
  color: white;
  width: 30%;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:hover {
  background-color: var(--anchor-color);
}

/*=============================
  About Section
=============================*/
.about-content-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-image {
  width: 50%;
  background-color: #fff;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cardiology {
  width: 48%;
}

.about-cardiology h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 1rem 0;
}

.about-cardiology p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--para-color);
  padding: 1rem 0;
}

/*=============================
  Education Section
=============================*/
.education-main-box h1 {
  padding: 0 8rem;
  font-size: 3rem;
  color: var(--heading-color);
}

.education-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.education-section h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: var(--heading-color);
}

.education-section p {
  font-size: 1.6rem;
  color: var(--para-color);
  text-align: left;
}

.experience-item h2 {
  font-size: 3rem;
  color: var(--heading-color);
  text-align: left;
}

.same-text-item {
  font-size: 2rem;
}

.experience-list {
  list-style-type: disc !important;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--para-color);
}

.experience-list li {
  margin-bottom: 1rem;
  text-align: left;
}

.text-left-li {
  padding: 0.6rem 8rem;
  width: 80%;
}

.membership-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/*=============================
  Gallery Section
=============================*/
.gallary-section {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

.gallary-section-h1 {
  font-size: 2.3rem;
  color: var(--heading-color);
}

.main-image-full,
.second-div-two-image {
  width: 50%;
}

.main-image-full {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-image-full img,
.second-div-two-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.second-div-two-image {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-button {
  margin-top: 0.5rem;
  padding: 1.4rem 1.7rem;
  background-color: var(--btn-color);
  color: white;
  border: none;
  border-radius: 5px;
  width: 30%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.image-button:hover {
  background-color: var(--anchor-color);
}

/*=============================
  Achievement Section
=============================*/
.achievement-section {
  display: flex;
  justify-content: flex-end;
  padding: 3rem 0;
  margin-block: 2rem;
}

.achievement-content {
  max-width: 800px;
  text-align: left;
}

.achievement-content h2 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.achievement-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--para-color);
  margin-bottom: 1.5rem;
}

.achievement-link {
  font-size: 1.6rem;
  color: #0077cc;
  text-decoration: underline;
}

.achievement-link:hover {
  color: #004b8a;
}

/*=============================
  Client Section
=============================*/
.strong-tag,
.happy-item {
  font-size: 1.3rem;
  color: var(--para-color);
  font-family: "Montserrat", sans-serif;
}

.happy-h1-element {
  font-size: 4rem;
  color: var(--heading-color);
  font-weight: 500;
  margin-top: 1rem;
  text-align: left;
}

#happy-clients {
  margin-bottom: 50vh;
}

/*=============================
  Footer
=============================*/
/* FOOTER BASE STYLING */

/* FOOTER BASE STYLING */
.main-footer {
  background-color: #b4cece;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 1.5rem 4rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* FOOTER CONTENT FLEX LAYOUT */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* important for mobile */
}

/* PARAGRAPH STYLING */
.footer-content p {
  font-size: 1.6rem;
  color: #242222;
  margin: 0.5rem 0;
  white-space: nowrap;
}

/*raising life*/
.site-header {
  background: linear-gradient(to right, #cc2b5e, #753a88);
  color: white;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.site-title {
  font-size: 2.2rem;
}

.site-tagline {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Navigation */
.main-nav {
  background-color: #941242;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px;
  gap: 15px;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #e33e73;
}

/* Main Content */
.content-container {
  max-width: 1000px;
  margin: 40px auto;
  background: white;
  padding: 3rem;
  border-radius: 10px;
}

.section-heading {
  font-size: 1.8rem;
  color: #cc2b5e;
  margin-bottom: 20px;
}

.sub-heading {
  font-size: 1.4rem;
  color: #cc2b5e;
  margin-top: 30px;
  margin-bottom: 15px;
}

.paragraph {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.paragraph2 {
  margin-bottom: 2rem;
}

/* Tips List */
.tip-list {
  padding-left: 20px;
}

.tip-list li {
  margin-bottom: 1rem;
}

/*work section*/
.back-button-container {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 3rem;
}

.back-button {
  background-color: #cc0033;
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-button:hover {
  background-color: #a30027;
}


.work-navbar {
  background-color: #b4cece;
  text-align: center;
  padding: 1rem 2rem;
}

.work-navbar-heading {
  font-size: 2.2rem;
  margin: 0;
}

.work-navbar-subtitle {
  font-size: 1.2rem;
  margin: 0.2rem 0 0;
}

/* Main Work Wrapper */
.work-main-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.work-main-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #cc0033;
}

.work-main-description {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #555;
}

/* Card Section */
.work-card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.work-card-box {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.work-card-box:hover {
  transform: translateY(-5px);
}

.work-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.work-card-title {
  font-size: 1.6rem;
  margin: 1rem;
  color: #222;
}

.work-card-text {
  font-size: 1.2rem;
  margin: 0 1rem 1.5rem;
  color: #444;
}

/* ========== HOW SHE WORKS SECTION ========== */
.work-approach-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.work-approach-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.work-approach-title {
  font-size: 2.8rem;
  color: #cc0033;
  margin-bottom: 1rem;
}

.work-approach-subtitle {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 3rem;
}

.work-approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.work-step-box {
  background-color: #f2f8fa;
  border-left: 5px solid #cc0033;
  border-radius: 0.8rem;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #cc0033;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.step-title {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .work-approach-title {
    font-size: 2.2rem;
  }

  .work-approach-subtitle {
    font-size: 1.2rem;
  }

  .step-title {
    font-size: 1.4rem;
  }

  .step-desc {
    font-size: 1.1rem;
  }
}

/* ========== PERFORMANCE SECTION ========== */
.work-performance-section {
  background-color: #f8fbfd;
  padding: 4rem 2rem;
  text-align: center;
}

.performance-title {
  font-size: 2.8rem;
  color: #cc0033;
  margin-bottom: 1rem;
}

.performance-subtitle {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 3rem;
}

.performance-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.counter-box {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.counter-number {
  font-size: 2.6rem;
  font-weight: bold;
  color: #222;
}

.counter-label {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}

/* ========== EXPERIENCE TIMELINE SECTION ========== */
.work-experience-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.experience-title {
  font-size: 2.8rem;
  color: #cc0033;
  margin-bottom: 1rem;
}

.experience-subtitle {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 3rem;
}

.experience-timeline {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: auto;
}

.experience-timeline li {
  border-left: 4px solid #cc0033;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-year {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222;
}

.timeline-text {
  font-size: 1.2rem;
  color: #444;
  margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .work-main-title {
    font-size: 2rem;
  }

  .work-main-description {
    font-size: 1.2rem;
  }
}
/*=============================
  Responsive (Mobile ≤ 768px)
=============================*/
@media (max-width: 768px) {
  /* ========== NAVBAR ========== */
  .navbar-cardiologist {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .heading-bar {
    margin-bottom: 1.5rem;
  }

  .navbar-list {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .appointment-div {
    width: 100%;
  }

  /* ========== HERO SECTION ========== */
  .main-section-content {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .h1-section-content,
  .appointment-section-content {
    width: 100%;
    padding: 1rem 0;
    text-align: left;
  }

  .h1-section-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    text-align: left;
  }

  .h1-section-content h2,
  .appointment-section-content h1 {
    font-size: 1.4rem;
    text-align: left;
  }

  /* ========== FORM ========== */
  .input-row.two-column {
    flex-direction: column;
  }

  button[type="submit"] {
    width: 100%;
  }

  /* ========== ABOUT SECTION ========== */
  .about-content-section {
    flex-direction: column;
    padding: 20px 10px;
  }

  .about-image,
  .about-cardiology {
    width: 100%;
  }

  .about-cardiology h2 {
    font-size: 2.4rem;
    text-align: center;
  }

  /* ========== EDUCATION SECTION ========== */
  .education-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }

  .education-main-box h1 {
    font-size: 2.4rem;
    padding: 0 1rem;
    text-align: left;
  }

  .experience-list li,
  .text-left-li {
    text-align: left;
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .membership-items {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  /* ========== GALLARY SECTION (IMAGE BLOCKS) ========== */
  .gallary-section {
    flex-direction: column;
  }

  .main-image-full,
  .second-div-two-image {
    width: 100%;
  }

  .gallary-section button {
    width: 100%;
  }

  /* ========== ACHIEVEMENT SECTION ========== */
  .achievement-section {
    padding: 2rem 1rem;
  }

  .achievement-content h2 {
    font-size: 2.2rem;
  }

  .achievement-content p,
  .achievement-link {
    font-size: 1.4rem;
  }

  .happy-h1-element {
    font-size: 1.6rem;
    padding: 0 1rem;
  }
  .paragraph2 {
    margin-bottom: 5rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-content p {
    font-size: 1.4rem;
  }
}

/*https://web.archive.org/web/20241204162320/https://drpreeticardio.com/*/
