/*
Theme Name: Gupta Cataract 
Theme URI: https://www.kadencewp.com/
Description: Gupta Cataract 
Author: Your Name
Author URI: https://yourwebsite.com
Template: kadence
Version: 1.0.0
*/

/* Your custom CSS goes below */

/* FORM WRAPPER */
.wpcf7-form {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: inherit;
}

/* LABELS */
.wpcf7-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

/* INPUTS & TEXTAREA */
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=number],
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    background: #f9fafb;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* TEXTAREA */
.wpcf7-form textarea {
    height: 140px;
    resize: none;
}

/* FOCUS EFFECT */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: #2e8bff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(46, 139, 255, 0.15);
    outline: none;
}

/* PLACEHOLDER */
.wpcf7-form ::placeholder {
    color: #999;
}

/* SUBMIT BUTTON */
.wpcf7-form input[type=submit] {
    background: linear-gradient(135deg, #3a3f46, #3a3f46);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

/* BUTTON HOVER */
.wpcf7-form input[type=submit]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(46, 139, 255, 0.35);
}

/* ERROR MESSAGE */
.wpcf7-not-valid-tip {
    color: #d93025;
    font-size: 13px;
    margin-top: 5px;
}

/* SUCCESS MESSAGE */
.wpcf7-response-output {
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
}

/* MOBILE FRIENDLY */
@media (max-width: 600px) {
    .wpcf7-form {
        padding: 25px 20px;
    }
}

.elementor-106 .elementor-element.elementor-element-f7e1f85 .elementor-icon-list-item {
    font-family: "Roboto", Sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
}

/* SECTION */
.costs-section {
    max-width: 900px;
    margin: 0 auto;
}

/* FILTER */
.costs-filter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
}

.costs-filter-form input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.costs-filter-form button {
    padding: 12px 22px;
    border: none;
    background: #8fa9b8;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

/* LIST */
.costs-elegant-list {
    border-top: 1px solid #e5e5e5;
}

/* ROW */
.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.3s ease;
}

.cost-row:hover {
    background: #f9fbfc;
}

/* LEFT */
.cost-name {
    font-size: 24px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 6px;
}

.cost-from {
    font-size: 18px;
    color: #555;
    font-style: italic;
}

/* RIGHT BUTTON */
.cost-info-btn {
    background: #9eb6c4;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cost-info-btn:hover {
    background: #7e9cad;
}

/* PAGINATION */
.costs-pagination {
    margin-top: 40px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 600px) {
    .cost-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cost-info-btn {
        width: 100%;
        text-align: center;
    }
}
/* ===== Service Page Wrapper ===== */
main.service-page .container {
	max-width: 1200px;
    margin: 0 auto;
/* 	padding: 60px 0; */
}
/*  Service page shortcode for new home page*/
.custom-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 70, 140, 0.08);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 123, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 70, 140, 0.15);
}

/* IMAGE */
.service-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* CONTENT */
.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  margin-bottom: 15px;
}

.service-title a {
  font-size: 20px;
  font-weight: 600;
  color: #0d1b2a;
  text-decoration: none;
  transition: 0.3s;
}

.service-title a:hover {
  color: #0077ff;
}

.service-intro {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #3a3f46;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  width: fit-content;
}

.service-btn:hover {
  background: #fff;
  color: #3a3f46;
  border: 1px solid #3a3f46;
}

/* ================= */
/* RESPONSIVE */
/* ================= */

@media (max-width: 1024px) {
  .custom-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-services-grid {
    grid-template-columns: 1fr;
    margin: 50px auto;
  }

  .service-content {
    padding: 22px;
  }

  .service-title a {
    font-size: 18px;
  }

  .service-intro {
    font-size: 13px;
  }
}
.service-header a {
    color: white !important;
}
main.service-page {
    padding: 40px 0px;
}

/*  publication section*/
.publications-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1e73be;
  font-weight: 600;
}

.section-heading h2 {
  font-size: 42px;
  margin-top: 10px;
  font-weight: 700;
  color: #0b2c52;
}

/* Intro Text */
.publication-intro {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.publication-intro p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 25px;
}

.publication-intro strong {
  color: #0b2c52;
  font-weight: 600;
}

/* Grid */
.publication-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* Cards */
.doctor-card,
.book-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.doctor-card:hover,
.book-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

/* Images */
.doctor-image img,
.book-image img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 25px;
}

/* Content */
.doctor-content h3,
.book-content h3 {
  font-size: 24px;
  color: #0b2c52;
  margin-bottom: 8px;
}

.credentials {
  font-size: 14px;
  color: #1e73be;
  font-weight: 600;
  margin-bottom: 20px;
}

.publisher {
  font-size: 15px;
  color: #777;
  margin-bottom: 20px;
}

.doctor-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #3a3f46;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #fff;
  color:#3a3f46;
  border: 1px solid #3a3f46;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #3a3f46;
    color: #3a3f46;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
  background: #3a3f46 !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 900px) {
  .publication-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .publication-intro p {
    font-size: 15px;
  }
}


.page-id-793 ul#menu-primary li a {
    font-size: 18px;
    font-family: "Inter", Sans-serif;
     transition: all 0.3s ease-in-out;
}
.page-id-793 ul#menu-primary li a:hover{
color:#000000;
transform: scale(1.1);

}
  .page-id-793 .elementor-138 .elementor-element.elementor-element-19d6510:not(.elementor-motion-effects-element-type-background), .elementor-138 .elementor-element.elementor-element-19d6510 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #bccacf;
}

 .page-id-793 .elementor-element.elementor-element-d972037.e-con-full.e-flex.e-con.e-child {
    padding: 2px;
}

.page-id-793 .elementor-element.elementor-element-88c4b93.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    background: #f6f6f6;
}

.page-id-793 .elementor-element.elementor-element-5fe97c5.elementor-widget.elementor-widget-text-editor p {
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}
.page-id-793 .elementor-106 .elementor-element.elementor-element-25c65b98:not(.elementor-motion-effects-element-type-background), .elementor-106 .elementor-element.elementor-element-25c65b98 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #061121;
}
.page-id-793 .elementor-106 .elementor-element.elementor-element-677a29b4:not(.elementor-motion-effects-element-type-background), .elementor-106 .elementor-element.elementor-element-677a29b4 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #061121;
}
.page-id-793 .elementor-element.elementor-element-0196b45.elementor-widget.elementor-widget-html h2 {
    font-family: 'Playfair Display' !important;
    font-size: 26px !important;
}