/* ======================
   GENERAL
====================== */
body {
    font-family: 'Segoe UI', sans-serif;
}
/* Positioning */
.mega-dropdown {
    position: relative;
}
.mega-menu { display: none; }
.mega-menu.show-mega { display: block; }
.mega-menu {
       position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    border-radius: 8px;
    z-index: 99999;
    max-width: 840px;
    width: 840px;
}

/* Show on hover */
.mega-dropdown:hover .mega-menu {
    display: block;
}

/* Remove default list styling */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Links */
.mega-list li {
    margin-bottom: 12px;
}

.mega-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

.mega-list li a:hover {
    color: #e63946; /* Your theme color */
    padding-left: 5px;
}

/* Arrow animation */
.mega-toggle i {
    transition: 0.3s;
}

.mega-dropdown:hover .mega-toggle i {
    transform: rotate(180deg);
}

.main-header {
    background: #f4f4f4;
    padding: 0px 0;
    transition: 0.3s ease-in-out;
}

/* Sticky */
.main-header.sticky {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ======================
   LOGO
====================== */
.logo-img {
    width: 130px;
}

.logo-text {
    line-height: 1;
}

.logo-title {
    display: block;
    font-weight: 700;
    font-size: 22px;
    color: #e74c3c;
}

.logo-sub {
    display: block;
    font-size: 16px;
    color: #444;
}
/* ======================
   CUSTOM DROPDOWN
====================== */

.custom-dropdown {
    position: relative;
}

/* Remove default arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Arrow */
.dropdown-arrow {
    font-size: 13px;
    margin-left: 6px;
    transition: 0.3s ease;
}

/* Rotate arrow when active */
.custom-dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Custom Menu */
.custom-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 10px 0;
    margin-top: 15px;
    display: none;
}

/* Dropdown items */
.custom-menu .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

.custom-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #e74c3c;
}
/* ======================
   SCROLL TO TOP BUTTON
====================== */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

#scrollTopBtn:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* ======================
   NAV LINKS
====================== */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 8px;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #e74c3c;
}

/* ======================
   SEARCH BOX
====================== */
.search-box {
    position: relative;
    width: 140px;
}

.search-box input {
    border: 1px solid #ddd;
    padding: 6px 35px 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
        height: 42px;
}

.search-box i {
      position: absolute;
    right: 10px;
    top: 14px;
    color: #999;
}

/* ======================
   BUTTON
====================== */
.btn-appointment {
    background: linear-gradient(90deg, #EF4E31, #434748);;
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-appointment:hover {
    color: #000000;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 991px) {

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
    }

    .search-box {
        margin-bottom: 10px;
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .btn-appointment {
        width: 100%;
        text-align: center;
    }
}

/* ======================
   HERO SECTION
====================== */
/* SECTION BASE */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* DIAGONAL BLUE OVERLAY */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, #0f2d5c, #1f4c9a);
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0% 100%);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    padding-right: 11%;
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content-inner {
    padding-right: 60px;
}

/* TAG */
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* TITLE */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #dce6ff;
}

/* TEXT */
.hero-text {
    font-size: 15px;
    color: #e6ecff;
    margin-bottom: 15px;
    max-width: 600px;
}

/* BUTTONS */
.btn-primary-hero {
    font-size: 12px;
    background: #ffffff;
    color: #0f2d5c;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-primary-hero:hover {
    background: #e6ecff;
    transform: translateY(-2px);
}

.btn-outline-hero {
   border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 10px;
    font-weight: 600;
    margin-left: 10px;
    transition: 0.3s;
    font-size: 12px;
}

.btn-outline-hero:hover {
    background: #ffffff;
    color: #0f2d5c;
}

/* IMAGE */
.hero-image {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .hero-section::before {
        width: 100%;
        clip-path: none;
    }

    .hero-content {
        
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}
.coverage-highlight {
    font-weight: 600;
    margin-top: 30px;
    text-align: center;
}
/* ======================
   ONCOLOGY IMPORTANCE SECTION
====================== */
.oncology-importance {
    padding: 90px 0;
    background: #ffffff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.section-text.emphasis {
    font-weight: 600;
    color: #222;
    margin-top: 20px;
}

/* Right Panel */
.judgment-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border-left: 5px solid #ef4e31;
}

.judgment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.judgment-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.judgment-list li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #e74c3c;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .oncology-importance {
        padding: 60px 0;
        text-align: center;
    }

    .judgment-box {
        margin-top: 30px;
        text-align: left;
    }

    .section-title {
        font-size: 28px;
    }
}
/* ======================
   MEDICAL APPROACH
====================== */
.medical-approach {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
}

/* Cards */
.approach-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s ease;
    position: relative;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.approach-number {
    font-size: 14px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.approach-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.approach-card ul {
    margin: 20px 0;
    padding-left: 20px;
}

.approach-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

.card-highlight {
    font-weight: 600;
    color: #222;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .medical-approach {
        padding: 70px 0;
    }

    .approach-card {
        padding: 25px;
    }
}
/* ======================
   CANCER SERVICES
====================== */
.cancer-services {
    padding: 100px 0;
    background: #ffffff;
}

.sub-heading {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.service-list li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #e74c3c;
}

.service-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* Care Grid Boxes */
.care-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.care-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.care-box h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.care-box p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

/* ======================
   LUCKNOW COVERAGE
====================== */
.lucknow-coverage {
    padding: 60px 0;
    background-image: url('/doctors/images/bg-images.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.coverage-text {
    max-width: 900px;
    margin: 15px auto;
    line-height: 1.8;
}

.coverage-highlight {
    font-weight: 600;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .cancer-services {
        padding: 70px 0;
    }
}
/* ======================
   CONSULT SECTION
====================== */
.consult-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.symptom-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border-top: 4px solid #e74c3c;
}

.symptom-card h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Symptom List */
.symptom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.symptom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

.symptom-list li:before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #e74c3c;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .consult-section {
        padding: 70px 0;
        text-align: center;
    }

    .symptom-card {
        margin-top: 30px;
        text-align: left;
    }
}
/* ======================
   PHILOSOPHY SECTION
====================== */
.philosophy-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Explain List */
.explain-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.explain-list span {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
  border: 1px solid #e74c3c;
}

/* Belief Cards */
.belief-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
        border-bottom: 5px solid #e74c3c;
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.belief-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.belief-card p {
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .philosophy-section {
        padding: 70px 0;
    }

    .explain-list {
        flex-direction: column;
        align-items: center;
    }
}
/* ======================
   DECISION SCIENCE
====================== */
.decision-science {
    padding: 110px 0;
    background-image: url('/doctors/images/blue-abstract.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.decision-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.decision-subtext {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Highlight List */
.decision-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.decision-list span {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    color: black;
    border: 1px solid #e74c3c;
}

/* Closing Text */
.decision-closing {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

/* CTA Button */
.btn-light-cta {
    background: #ffffff;
    color: #e74c3c;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-light-cta:hover {
    background: #f8f9fa;
    color: #c0392b;
}

/* Responsive */
@media (max-width: 991px) {
    .decision-title {
        font-size: 30px;
    }

    .decision-list {
        flex-direction: column;
        align-items: center;
    }
}
/* ======================
   FINAL CTA SECTION
====================== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid #eee;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-weight: 600;
    margin-bottom: 20px;
    color: #e74c3c;
}

.cta-text {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-cta-primary {
    background: #e74c3c;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-cta-primary:hover {
    background: #c0392b;
    color: #fff;
}

.btn-cta-secondary {
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #e74c3c;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 350px;
    }
}
/* ======================
   FOOTER
====================== */
.site-footer {
    background:linear-gradient(90deg, #EF4E31, #434748);
    padding: 80px 0 0;
    font-size: 15px;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color:white;
}

.footer-about {
    margin-bottom: 15px;
    color:white;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    color:white;
}

.footer-contact i {
    color:white;
    margin-top: 4px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e74c3c;
}

/* News */
.footer-news {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-news img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.footer-news a {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.footer-news span {
    font-size: 13px;
    color: #ffffff;
}

/* Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    background: #222;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}
.mega-menu {
    display: none;
}

@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        display: block;
    }
}
/* Responsive */
@media (max-width: 991px) {
    .btn-primary-hero {
    margin-bottom: 19px;
    }
    .site-footer {
        padding: 60px 0 0;
    }

    .footer-col {
        margin-bottom: 40px;
    }
}
.faq-section {
    background: #f6f9ff;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f2d5c;
}

.faq-subtitle {
    color: #555;
    max-width: 600px;
    margin: auto;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 18px 20px;
    background: #ffffff;
    color: #0f2d5c;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #0f2d5c;
    color: #ffffff;
}

.faq-accordion .accordion-body {
    padding: 20px;
    background: #ffffff;
    color: #444;
    font-size: 15px;
}

.accordion-button:focus {
    box-shadow: none;
}
.testimonial-section {
    background: #f6f9ff;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f2d5c;
}

.testimonial-subtitle {
    color: #555;
    max-width: 600px;
    margin: auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    height: 100%;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #f5b50a;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #0f2d5c;
}

.testimonial-author span {
    font-size: 13px;
    color: #777;
}

/* Swiper spacing */
.testimonialSwiper {
    padding-bottom: 60px;
}

/* Navigation color */
.swiper-button-next,
.swiper-button-prev {
    color: #0f2d5c;
}

.swiper-pagination-bullet-active {
    background: #0f2d5c;
}
.cancer-services {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.cancer-services::before {
  content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#e74c3c 1px, #00000000 2px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above dots */
.cancer-services .container {
    position: relative;
    z-index: 2;
}



    col-lg-3 {
        flex: 0 0 auto;
        width: 20% !important;
    }



    
/* Main Wrapper */
.connect-wrapper{
    display:flex;
    gap:30px;
    max-width:1200px;
    margin:auto;
}

/* Left Card */
.connect-card{
    flex:1;
    padding:30px;
    border-radius:10px;
    background:linear-gradient(135deg,#f9d5b5,#f6a45c);
    border:2px solid #ff7a00;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.connect-card h2{
    margin-top:0;
    font-size:26px;
}

/* Info Items */
.info-item{
    margin-bottom:14px;
    font-size:15px;
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.info-item i{
    color:#1a3973;
    margin-top:3px;
}

/* Hours List */
.hours-list{
    margin:10px 0 0 25px;
    padding:0;
    list-style:none;
}

.hours-list li{
    margin-bottom:5px;
}

/* Buttons */
.connect-actions{
    margin-top:20px;
}

.btn-connect{
    padding:10px 18px;
    border-radius:6px;
    border:none;
    font-size:14px;
    cursor:pointer;
    margin-right:10px;
    transition:0.3s;
    color:#fff;
}

.btn-call{
    background:#1a3973;
     text-decoration: none;
}

.btn-contact{
    background:#e74c3c;
    text-decoration: none;
}

.btn-connect i{
    margin-right:6px;
}

.btn-connect:hover{
    opacity:0.9;
}

/* Map */
.map-box{
    flex:1;
    border-radius:10px;
    overflow:hidden;
    border:2px solid #ff7a00;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.map-box iframe{
    width:100%;
    height:100%;
    min-height:450px;
    border:0;
}

/* Responsive */
@media(max-width:992px){
    .connect-wrapper{
        flex-direction:column;
    }

    .map-box iframe{
        min-height:350px;
    }
}

@media (max-width: 576px) {

    .location-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 10px;
    }

    .location-grid span{
        display: block;
    }

}

/* about pages css ------------------ */

.atreya-about-banner{
    padding:80px 20px;
    background: linear-gradient(135deg, #f9f9f9, #eef3f8);
}

.atreya-banner-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

/* Left Content */
.atreya-banner-content{
    flex:1;
}

.atreya-banner-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.3;
}

.atreya-banner-subtitle{
    font-size:20px;
    font-weight:600;
    color:#EF4E31;
    margin-bottom:20px;
}

.atreya-banner-text{
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
    color:#444;
}

/* Button */
.atreya-banner-btn{
    display:inline-block;
    padding:12px 28px;
    border-radius:30px;
    background: linear-gradient(90deg, #EF4E31, #434748);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.atreya-banner-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* Right Image */
.atreya-banner-image{
    flex:1;
    text-align:center;
}

.atreya-banner-image img{
    max-width:100%;
    height:auto;
    border-radius:15px;
}

/* Responsive */
@media(max-width:992px){
    .atreya-banner-container{
        flex-direction:column;
        text-align:center;
    }

    .atreya-banner-title{
        font-size:30px;
    }
}

.atreya-belief-wrap{
    padding:30px 20px;
    background:#ffffff;
}

.atreya-belief-container{
    max-width:1050px;
    margin:auto;
}

/* Heading */
.atreya-belief-heading{
    font-size:32px;
    font-weight:700;
    margin-bottom:35px;
    text-align:center;
    background: linear-gradient(90deg, #EF4E31, #434748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Box */
.atreya-belief-box{
    position:relative;
    padding:35px;
    background:#f9f9f9;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* Gradient Left Border */
.atreya-belief-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:6px;
    background: linear-gradient(90deg, #EF4E31, #434748);
    border-radius:12px 0 0 12px;
}

.atreya-belief-box p{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin:0;
}

/* Responsive */
@media(max-width:768px){
    .atreya-belief-heading{
        font-size:24px;
    }

    .atreya-belief-box{
        padding:22px;
    }

    .atreya-belief-box p{
        font-size:15px;
    }
}


/* about details doctors --------- */
.atreya-profile-section{
    padding:30px 20px;
    background:#f8fafc;
}

.atreya-profile-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:center;
}

.atreya-profile-image img{
    width:100%;
    max-width:400px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.atreya-profile-content{
    flex:1;
}

.atreya-profile-title{
    font-size:34px;
    margin-bottom:15px;
}

.atreya-profile-name{
    font-size:26px;
    font-weight:700;
    background: linear-gradient(90deg, #EF4E31, #434748);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.atreya-profile-designation{
    margin:15px 0;
    font-weight:600;
}

.atreya-profile-qualification{
    background:#ffffff;
    padding:12px 18px;
    border-radius:8px;
    display:inline-block;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.atreya-profile-description{
    line-height:1.8;
    margin-bottom:20px;
}

.atreya-profile-institutes ul{
    padding-left:20px;
    margin-bottom:20px;
}

.atreya-profile-footer{
    font-style:italic;
    color:#555;
}

/* Responsive */
@media(max-width:992px){
    .atreya-profile-container{
        flex-direction:column;
        text-align:center;
    }
}



.atreya-edu-v2{
    padding:30px 20px;
    background:#f9fafc;
}

.atreya-edu-container{
    max-width:1200px;
    margin:auto;
}

.atreya-edu-header{
    text-align:center;
    margin-bottom:60px;
}

.atreya-edu-header h2{
    font-size:32px;
    font-weight:700;
    background: linear-gradient(90deg, #EF4E31, #434748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Flex Layout */
.atreya-edu-flex{
    display:flex;
    gap:40px;
    align-items:stretch;
}

/* Left */
.atreya-edu-left{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.edu-degree-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    border-left:5px solid;
    border-image: linear-gradient(90deg, #EF4E31, #434748) 1;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.edu-degree-box h4{
    margin-bottom:12px;
    font-size:20px;
}

.edu-degree-box p{
    font-size:15px;
    line-height:1.7;
    color:#555;
}

/* Right */
.atreya-edu-right{
    flex:1.2;
}

.edu-specialization-box{
    background:#ffffff;
    padding:40px;
    border-radius:14px;
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
    border:1px solid #eee;
}

.edu-specialization-box h4{
    margin-bottom:25px;
    font-size:22px;
}

/* Specialization Grid */
.specialization-grid{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:15px;
}

.specialization-grid div{
    padding:12px 15px;
    background:#f4f6f8;
    border-radius:8px;
    font-size:14px;
    border-left:4px solid #EF4E31;
}

/* Footer */
.atreya-edu-footer{
    margin-top:60px;
    text-align:center;
}

.atreya-edu-footer p{
    max-width:850px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    color:#444;
}

/* Responsive */
@media(max-width:992px){
    .atreya-edu-flex{
        flex-direction:column;
    }

    .specialization-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .atreya-edu-header h2{
        font-size:24px;
    }
}



/* about details doctors --------- */


/* about pages css ------------------ */