/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif !important;
    margin: 0;
    padding: 0;
}

/* Header Layout Fix */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
}

header .container {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    padding: 1rem 2rem;
}

header .flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Mobile Menu Styles */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    max-height: 500px;
}

/* Hamburger Menu Styles */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Logo Styles */
.flex-shrink-0 img {
    height: 3rem;
    width: auto;
}

/* Desktop Navigation */
header nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav a {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

header nav a:hover {
    color: #0895d3 !important;
}

/* Button Styles */
.btn-appointment {
    background-color: #0895d3 !important;
    color: white !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    text-decoration: none !important;
    display: inline-block;
}

.btn-appointment:hover {
    background-color: #c3d139 !important;
    text-decoration: none !important;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    header nav {
        display: none !important;
    }
    
    header .hidden.lg\:block {
        display: none !important;
    }
    
    .hamburger {
        display: block !important;
    }
    
    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .mobile-menu nav a {
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
    }
    
    .mobile-menu nav a:hover {
        background-color: #f3f4f6;
    }
}

@media (min-width: 1024px) {
    header nav {
        display: flex !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .flex-shrink-0 img {
        height: 4rem;
    }
}

/* ======================================
   SLIDER STYLES
   ====================================== */

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* Slider Wrapper */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Black Overlay on Images */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    color: white;
    max-width: 90%;
    margin: 0 auto;
}

/* Left Aligned Slides */
.slide.align-left .slide-content {
    align-items: flex-start;
    text-align: left;
    padding-left: 5%;
}

/* Right Aligned Slides */
.slide.align-right .slide-content {
    align-items: flex-end;
    text-align: right;
    padding-right: 5%;
}

/* Slide Heading */
.slide-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    max-width: 800px;
}

/* Slide Subheading */
.slide-subheading {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}


/* Responsive Styles for Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 500px;
    }
    
    .slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .slide-subheading {
        font-size: 18px;
    }
    
    .slide-heading {
        font-size: 28px;
        margin-bottom: 0.5rem;
    }
    
    .slide.align-left .slide-content,
    .slide.align-right .slide-content {
        padding-left: 5%;
        padding-right: 5%;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 450px;
    }
    
    .slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .slide-subheading {
        font-size: 16px;
    }
    
    .slide-heading {
        font-size: 22px;
        margin-bottom: 0.5rem;
    }
    
    .slide-content {
        padding: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .slider-container {
        height: 550px;
    }
    
    .slide-heading {
        font-size: 36px;
    }
}

/* ======================================
   FEATURES SECTION STYLES
   ====================================== */

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.features-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

/* Feature Card */
.feature-card {
    background-color: white;
    padding: 50px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0895d3 0%, #c3d139 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* Feature Heading */
.feature-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-heading {
    color: #0895d3;
}

/* Feature Paragraph */
.feature-para {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Features Section */

/* Tablet View (2 columns) */
@media (max-width: 1023px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .feature-card {
        padding: 40px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .feature-heading {
        font-size: 22px;
    }
    
    .feature-para {
        font-size: 15px;
    }
}

/* Mobile View (1 column) */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 95%;
    }
    
    .feature-card {
        padding: 35px 20px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .feature-heading {
        font-size: 20px;
    }
    
    .feature-para {
        font-size: 15px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-container {
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-heading {
        font-size: 18px;
        margin-bottom: 0.75rem;
    }
    
    .feature-para {
        font-size: 14px;
    }
}

/* ======================================
   SERVICES SECTION STYLES
   ====================================== */

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.services-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    color: #0895d3;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Services Container */
.services-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 0 20px;
}

/* Service Card */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0895d3 0%, #06b6d4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8, 149, 211, 0.15);
    border-color: #0895d3;
}

/* Service Icon Background */
.service-icon-bg {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-bg {
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
    transform: scale(1.1) rotate(10deg);
}

.service-icon-bg svg {
    width: 35px;
    height: 35px;
    color: white;
}

/* Service Heading */
.service-card .service-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-heading {
    color: #0895d3;
}

/* Service Paragraph */
.service-para {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Service Link */
.service-link {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    color: #0895d3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: #c3d139;
    gap: 10px;
}

/* Services Button Wrapper */
.services-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-view-services {
    padding: 14px 32px;
    font-size: 16px;
}

/* Responsive Styles for Services Section */

/* Tablet View (2 columns) */
@media (max-width: 1023px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-main-heading {
        font-size: 28px;
    }
    
    .services-sub-heading {
        font-size: 20px;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon-bg {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .service-icon-bg svg {
        width: 32px;
        height: 32px;
    }
    
    .service-card .service-heading {
        font-size: 22px;
    }
    
    .service-para {
        font-size: 15px;
    }
}

/* Mobile View (1 column) */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
        max-width: 95%;
    }
    
    .services-main-heading {
        font-size: 26px;
    }
    
    .services-sub-heading {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 95%;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon-bg {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .service-icon-bg svg {
        width: 30px;
        height: 30px;
    }
    
    .service-card .service-heading {
        font-size: 20px;
    }
    
    .service-para {
        font-size: 15px;
    }
    
    .services-button-wrapper {
        margin-top: 40px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-header {
        margin-bottom: 30px;
    }
    
    .services-main-heading {
        font-size: 24px;
    }
    
    .services-sub-heading {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon-bg {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .service-icon-bg svg {
        width: 28px;
        height: 28px;
    }
    
    .service-card .service-heading {
        font-size: 19px;
        margin-bottom: 0.75rem;
    }
    
    .service-para {
        font-size: 14px;
        margin-bottom: 1.25rem;
    }
    
    .service-link {
        font-size: 15px;
    }
    
    .services-button-wrapper {
        margin-top: 30px;
    }
    
    .btn-view-services {
        width: 100%;
        max-width: 300px;
    }
}

/* ======================================
   ABOUT US SECTION STYLES
   ====================================== */

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-image-wrapper img {
    transform: scale(1.08);
}

/* Decorative Circle */
.about-decorative-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    opacity: 0.1;
    top: -50px;
    right: -50px;
    z-index: -1;
}

/* About Badge */
.about-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-badge-icon svg {
    width: 25px;
    height: 25px;
    color: white;
}

.about-badge-text h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.about-badge-text p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1;
}

/* About Content */
.about-content {
    padding-left: 20px;
}

.about-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    color: #0895d3;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-para {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.about-feature-item span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

/* Responsive Styles for About Section */

/* Tablet View */
@media (max-width: 1023px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-badge {
        right: -20px;
        bottom: 20px;
        padding: 15px 20px;
    }
    
    .about-badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .about-badge-text h3 {
        font-size: 16px;
    }
    
    .about-sub-heading {
        font-size: 20px;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
    .about-para {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }
    
    .about-feature-item span {
        font-size: 15px;
    }
}

/* Mobile View (Stack vertically) */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 95%;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-badge {
        right: 10px;
        bottom: 10px;
        padding: 12px 15px;
    }
    
    .about-badge-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-badge-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .about-badge-text h3 {
        font-size: 14px;
    }
    
    .about-badge-text p {
        font-size: 12px;
    }
    
    .about-decorative-circle {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -30px;
    }
    
    .about-sub-heading {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .about-heading {
        font-size: 26px;
        margin-bottom: 1.25rem;
    }
    
    .about-para {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .about-features {
        gap: 12px;
    }
    
    .about-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .about-feature-item span {
        font-size: 15px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        gap: 30px;
    }
    
    .about-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    
    .about-decorative-circle {
        width: 120px;
        height: 120px;
    }
    
    .about-sub-heading {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .about-heading {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .about-para {
        font-size: 14px;
        margin-bottom: 1.25rem;
    }
    
    .about-image-wrapper {
        border-radius: 16px;
    }
    
    .about-features {
        gap: 10px;
    }
    
    .about-feature-icon {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    
    .about-feature-item span {
        font-size: 14px;
    }
}

/* ==================== About CTA Section ==================== */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-cta-content {
    text-align: center;
}

.about-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-cta-icon svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.about-cta-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: white !important;
    line-height: 1.4 !important;
    margin-bottom: 35px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-cta-button {
    background: white !important;
    color: #0895d3 !important;
    font-size: 18px !important;
    padding: 16px 45px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-cta-button:hover {
    background: #c3d139 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
}

.cta-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

.cta-circle-3 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design for About CTA */
@media (max-width: 1024px) {
    .about-cta-section {
        padding: 70px 0;
    }
    
    .about-cta-heading {
        font-size: 28px !important;
    }
    
    .about-cta-button {
        font-size: 17px !important;
        padding: 15px 40px !important;
    }
}

@media (max-width: 768px) {
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .about-cta-icon svg {
        width: 38px;
        height: 38px;
    }
    
    .about-cta-heading {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .about-cta-button {
        font-size: 16px !important;
        padding: 14px 35px !important;
    }
    
    .cta-circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .cta-circle-2 {
        width: 120px;
        height: 120px;
    }
    
    .cta-circle-3 {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .about-cta-section {
        padding: 50px 0;
    }
    
    .about-cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .about-cta-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .about-cta-heading {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .about-cta-button {
        font-size: 15px !important;
        padding: 13px 30px !important;
    }
    
    .cta-circle-1,
    .cta-circle-2,
    .cta-circle-3 {
        display: none;
    }
}

/* ======================================
   DENTAL TREATMENTS SECTION STYLES
   ====================================== */

.dental-treatments-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.dental-treatments-container {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

/* Dental Treatments Content */
.dental-treatments-content {
    padding-right: 20px;
}

.dental-treatments-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.dental-treatments-para {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Dental Treatments List */
.dental-treatments-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.treatment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.treatment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #0895d3;
}

.treatment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.treatment-item:hover .treatment-icon {
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
    transform: rotate(10deg) scale(1.1);
}

.treatment-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.treatment-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

/* Responsive Styles for Dental Treatments */

/* Tablet View */
@media (max-width: 1023px) {
    .dental-treatments-section {
        padding: 60px 0;
    }
    
    .dental-treatments-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dental-treatments-content {
        padding-right: 0;
        text-align: center;
    }
    
    .dental-treatments-heading {
        font-size: 28px;
    }
    
    .dental-treatments-para {
        font-size: 15px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .dental-treatments-section {
        padding: 50px 0;
    }
    
    .dental-treatments-container {
        max-width: 95%;
        gap: 35px;
    }
    
    .dental-treatments-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dental-treatments-heading {
        font-size: 26px;
        margin-bottom: 1.25rem;
    }
    
    .dental-treatments-para {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }
    
    .treatment-item {
        padding: 18px;
    }
    
    .treatment-icon {
        width: 45px;
        height: 45px;
    }
    
    .treatment-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .treatment-name {
        font-size: 15px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .dental-treatments-section {
        padding: 40px 0;
    }
    
    .dental-treatments-heading {
        font-size: 24px;
        margin-bottom: 1rem;
    }
    
    .dental-treatments-para {
        font-size: 14px;
        margin-bottom: 1.25rem;
    }
    
    .treatment-item {
        padding: 15px;
    }
    
    .treatment-icon {
        width: 42px;
        height: 42px;
    }
    
    .treatment-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .treatment-name {
        font-size: 14px;
    }
}

/* ======================================
   WELCOME OFFICE SECTION STYLES
   ====================================== */

.welcome-office-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #e0f2fe 0%, #ffffff 100%);
    position: relative;
}

.welcome-office-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Wrapper */
.welcome-content-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.welcome-text-block {
    background: transparent;
    padding: 0 20px;
    text-align: center;
    max-width: 800px;
    position: relative;
}

.welcome-sub-heading1 {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #0895d3;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.welcome-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.welcome-para {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Welcome Grid */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Welcome Card */
.welcome-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

.welcome-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(8, 149, 211, 0.2);
}

/* Diagonal Strip Accent */
.card-diagonal-strip {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 50%, #c3d139 100%);
    opacity: 0.1;
    clip-path: polygon(100% 0, 0% 0, 100% 100%);
    transition: all 0.4s ease;
}

.welcome-card:hover .card-diagonal-strip {
    opacity: 0.2;
    width: 120px;
    height: 120px;
}

/* Icon Circle */
.card-icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(8, 149, 211, 0.3);
    transition: all 0.4s ease;
}

.welcome-card:nth-child(even) .card-icon-circle {
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
    box-shadow: 0 8px 20px rgba(195, 209, 57, 0.3);
}

.welcome-card:hover .card-icon-circle {
    transform: rotateY(180deg);
    box-shadow: 0 12px 30px rgba(8, 149, 211, 0.4);
}

.welcome-card:nth-child(even):hover .card-icon-circle {
    box-shadow: 0 12px 30px rgba(195, 209, 57, 0.4);
}

.card-icon-circle svg {
    width: 30px;
    height: 30px;
    color: white;
}

/* Card Content Box */
.card-content-box {
    text-align: left;
}

.welcome-feature-title {
    font-family: 'Heebo', sans-serif !important;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.welcome-feature-text {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Welcome Office */

/* Tablet View */
@media (max-width: 1023px) {
    .welcome-office-section {
        padding: 60px 0;
    }
    
    .welcome-content-wrapper {
        margin-bottom: 50px;
    }
    
    .welcome-text-block {
        padding: 35px 40px;
    }
    
    .welcome-main-heading {
        font-size: 28px;
    }
    
    .welcome-para {
        font-size: 15px;
    }
    
    .welcome-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .welcome-feature-title {
        font-size: 20px;
    }
    
    .welcome-feature-text {
        font-size: 15px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .welcome-office-section {
        padding: 50px 0;
    }
    
    .welcome-office-container {
        max-width: 95%;
    }
    
    .welcome-content-wrapper {
        margin-bottom: 40px;
    }
    
    .welcome-text-block {
        padding: 30px 25px;
    }
    
    .welcome-sub-heading1 {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .welcome-main-heading {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .welcome-para {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .welcome-card {
        padding: 25px 20px;
    }
    
    .card-icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon-circle svg {
        width: 28px;
        height: 28px;
    }
    
    .welcome-feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .welcome-feature-text {
        font-size: 15px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .welcome-office-section {
        padding: 40px 0;
    }
    
    .welcome-text-block {
        padding: 25px 20px;
    }
    
    .welcome-sub-heading1 {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .welcome-main-heading {
        font-size: 24px;
    }
    
    .welcome-para {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .welcome-grid {
        gap: 18px;
    }
    
    .welcome-card {
        padding: 22px 18px;
    }
    
    .card-icon-circle {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .card-icon-circle svg {
        width: 26px;
        height: 26px;
    }
    
    .welcome-feature-title {
        font-size: 19px;
    }
    
    .welcome-feature-text {
        font-size: 14px;
    }
}

/* ======================================
   DOCTORS SECTION STYLES
   ====================================== */

.doctors-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.doctors-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.doctors-left-content {
    padding-right: 20px;
}

.doctors-sub-heading1 {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #0895d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.doctors-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Carousel Wrapper */
.doctors-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.doctors-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Doctor Card - 50% width for 2 visible cards */
.doctor-card {
    min-width: 50%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.doctor-image-wrapper {
    width: 100%;
    max-width: 280px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.doctor-card:hover .doctor-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 149, 211, 0.25);
}

.doctor-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 149, 211, 0.2) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.doctor-card:hover .doctor-image-wrapper::before {
    background: linear-gradient(180deg, transparent 0%, rgba(8, 149, 211, 0.3) 100%);
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.4s ease;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.08);
}

/* Doctor Info */
.doctor-info {
    text-align: center;
}

.doctor-name {
    font-family: 'Heebo', sans-serif !important;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.doctor-designation {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #0895d3;
    margin: 0;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #0895d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #0895d3;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: #0895d3;
    transition: color 0.3s ease;
}

.carousel-btn:hover svg {
    color: white;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #9ca3af;
}

.dot.active {
    background: #0895d3;
    width: 32px;
    border-radius: 6px;
}

/* Responsive Styles for Doctors Section */

/* Tablet View */
@media (max-width: 1023px) {
    .doctors-section {
        padding: 60px 0;
    }
    
    .doctors-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .doctors-left-content {
        padding-right: 0;
        text-align: center;
    }
    
    .doctors-main-heading {
        font-size: 28px;
    }
    
    /* Show 1 card at a time on tablet */
    .doctor-card {
        min-width: 100%;
    }
    
    .doctor-image-wrapper {
        max-width: 260px;
        height: 300px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .doctors-section {
        padding: 50px 0;
    }
    
    .doctors-container {
        max-width: 95%;
        gap: 35px;
    }
    
    .doctors-sub-heading1 {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .doctors-main-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .doctor-image-wrapper {
        max-width: 240px;
        height: 280px;
    }
    
    .doctor-name {
        font-size: 20px;
    }
    
    .doctor-designation {
        font-size: 15px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .doctors-section {
        padding: 40px 0;
    }
    
    .doctors-sub-heading1 {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .doctors-main-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .doctor-image-wrapper {
        max-width: 220px;
        height: 260px;
        margin-bottom: 20px;
    }
    
    .doctor-name {
        font-size: 19px;
    }
    
    .doctor-designation {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 28px;
    }
}

/* ======================================
   REVIEWS SECTION STYLES
   ====================================== */

.reviews-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.reviews-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-sub-heading1 {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #0895d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.reviews-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Review Card - Base */
.review-card {
    padding: 35px 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Alternating Card Styles */
.review-card.style-left {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.review-card.style-right {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.review-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Decorative Shape */
.review-decorative-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.style-left .review-decorative-shape {
    background: #0895d3;
}

.style-right .review-decorative-shape {
    background: #c3d139;
}

.review-card:hover .review-decorative-shape {
    transform: scale(1.3);
    opacity: 0.25;
}

/* Review Content Wrapper */
.review-content-wrapper {
    position: relative;
    z-index: 1;
}

/* Review Header with Avatar */
.review-header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Reviewer Avatar */
.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.style-left .reviewer-avatar {
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
}

.style-right .reviewer-avatar {
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
}

.review-card:hover .reviewer-avatar {
    transform: rotate(360deg) scale(1.1);
}

/* Reviewer Info */
.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-family: 'Heebo', sans-serif !important;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.reviewer-designation {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: #6b7280 !important;
    margin: 2px 0 5px 0 !important;
}

/* Review Stars */
.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars span {
    color: #fbbf24;
    font-size: 16px;
    line-height: 1;
}

/* Review Text */
.review-text {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Reviews Section */

/* Tablet View */
@media (max-width: 1023px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-header {
        margin-bottom: 50px;
    }
    
    .reviews-main-heading {
        font-size: 28px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-container {
        max-width: 95%;
    }
    
    .reviews-header {
        margin-bottom: 40px;
    }
    
    .reviews-sub-heading1 {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .reviews-main-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .reviews-grid {
        gap: 25px;
    }
    
    .review-card {
        padding: 30px 25px;
    }
    
    .reviewer-avatar {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
    
    .reviewer-name {
        font-size: 20px;
    }
    
    .review-stars span {
        font-size: 15px;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .review-decorative-shape {
        width: 120px;
        height: 120px;
        bottom: -40px;
        right: -40px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-sub-heading1 {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .reviews-main-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .reviews-grid {
        gap: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-header-flex {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .reviewer-name {
        font-size: 19px;
    }
    
    .review-stars {
        gap: 2px;
    }
    
    .review-stars span {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .review-decorative-shape {
        width: 100px;
        height: 100px;
        bottom: -30px;
        right: -30px;
    }
}

/* ======================================
   PAGE BANNER STYLES - IMAGE BACKGROUND
   ====================================== */

.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Gradient Overlay */
.banner-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 149, 211, 0.9) 0%, rgba(31, 41, 55, 0.85) 100%);
    z-index: 1;
}

/* Banner Content */
.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.banner-content-box {
    max-width: 700px;
    width: 100%;
}

/* Banner Label */
.banner-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-label svg {
    width: 20px;
    height: 20px;
    color: #c3d139;
}

.banner-label span {
    font-family: 'Heebo', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* Banner Title */
.banner-title {
    font-family: 'Heebo', sans-serif !important;
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Banner Description */
.banner-description {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 30px 0;
    max-width: 600px;
}

/* Breadcrumb */
.banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.banner-breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.banner-breadcrumb a svg {
    width: 16px;
    height: 16px;
}

.separator-icon {
    display: flex;
    align-items: center;
}

.separator-icon svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.current-location {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px;
    font-weight: 600;
    color: #c3d139;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(195, 209, 57, 0.15);
    border: 1px solid rgba(195, 209, 57, 0.3);
}

/* Responsive Styles for Page Banner */
@media (max-width: 1023px) {
    .page-banner {
        padding: 100px 0;
    }
    
    .banner-title {
        font-size: 52px;
    }
    
    .banner-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0;
    }
    
    .page-banner-content {
        min-height: 250px;
        justify-content: center;
    }
    
    .banner-content-box {
        text-align: center;
    }
    
    .banner-label {
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .banner-label svg {
        width: 18px;
        height: 18px;
    }
    
    .banner-label span {
        font-size: 13px;
    }
    
    .banner-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .banner-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .banner-breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .banner-breadcrumb a {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .banner-breadcrumb a svg {
        width: 14px;
        height: 14px;
    }
    
    .separator-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .current-location {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner-content {
        min-height: 200px;
        justify-content: center;
    }
    
    .banner-content-box {
        text-align: center;
    }
    
    .banner-label {
        padding: 7px 14px;
        margin-bottom: 18px;
    }
    
    .banner-label svg {
        width: 16px;
        height: 16px;
    }
    
    .banner-label span {
        font-size: 12px;
    }
    
    .banner-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .banner-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .banner-breadcrumb a {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .banner-breadcrumb a svg {
        width: 13px;
        height: 13px;
    }
    
    .separator-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .current-location {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* ======================================
   MISSION & VISION SECTION STYLES
   ====================================== */

.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.mission-vision-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.mission-card::before {
    background: linear-gradient(90deg, #0895d3 0%, #06b6d4 100%);
}

.vision-card::before {
    background: linear-gradient(90deg, #c3d139 0%, #a3b831 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.mission-icon {
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
}

.vision-icon {
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(360deg);
}

.mission-icon svg,
.vision-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-family: 'Heebo', sans-serif !important;
    font-size: 26px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Mission & Vision */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-card,
    .vision-card {
        padding: 35px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 25px;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon svg,
    .vision-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 22px;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 15px;
    }
}

/* ======================================
   WHY CHOOSE US SECTION STYLES
   ====================================== */

.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #0895d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.why-choose-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

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

.why-choose-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    background: white;
    border-color: #0895d3;
    box-shadow: 0 8px 30px rgba(8, 149, 211, 0.15);
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, #c3d139 0%, #a3b831 100%);
    transform: scale(1.1);
}

.why-choose-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.why-choose-card h3 {
    font-family: 'Heebo', sans-serif !important;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.why-choose-card p {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Why Choose Us */
@media (max-width: 1023px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-header {
        margin-bottom: 50px;
    }
    
    .why-choose-main-heading {
        font-size: 30px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-sub-heading {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .why-choose-main-heading {
        font-size: 26px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .why-choose-card h3 {
        font-size: 20px;
    }
    
    .why-choose-card p {
        font-size: 15px;
    }
}

/* ======================================
   MAP SECTION STYLES
   ====================================== */

.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Styles for Map Section */

/* Tablet View */
@media (max-width: 1023px) {
    .map-wrapper {
        height: 400px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .map-wrapper {
        height: 300px;
    }
}

/* ======================================
   FOOTER SECTION STYLES
   ====================================== */

.footer-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-wrapper {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}

.footer-logo-wrapper a {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.footer-logo-wrapper a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-logo-text {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important;
    margin: 0;
    text-align: center;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.8);
    transition: fill 0.3s ease;
}

.social-icon:hover {
    background-color: #0099cc;
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: #ffffff;
}

/* Footer Sub Heading */
.footer-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-sub-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #0895d3;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0895d3;
    padding-left: 20px;
}

/* Footer Info List */
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Footer Contact Items with Icons */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px !important;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: #0895d3;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    flex: 1;
}

/* Copyright Bar */
.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright p {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px;
    color: white;
    margin: 0;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.privacy-link:hover {
    color: #c3d139;
    text-decoration: underline;
}

/* Responsive Styles for Footer */

/* Tablet View */
@media (max-width: 1023px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-logo-column {
        grid-column: 1 / -1;
    }
    
    .footer-logo-wrapper {
        padding: 12px 18px;
    }
    
    .footer-logo {
        max-width: 180px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-container {
        max-width: 95%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-logo-wrapper {
        padding: 10px 15px;
    }
    
    .footer-logo {
        max-width: 160px;
    }
    
    .footer-logo-text {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }
    
    .footer-sub-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-links a,
    .footer-info-list li {
        font-size: 15px;
    }
    
    .footer-contact-item svg {
        width: 18px;
        height: 18px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .footer-section {
        padding: 35px 0 0;
    }
    
    .footer-grid {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-sub-heading {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .footer-links a,
    .footer-info-list li {
        font-size: 14px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

/* ==================== Services Page Section ==================== */
.services-page-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-page-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #0895d3 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px !important;
}

.services-page-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    line-height: 1.3 !important;
    max-width: 900px;
    margin: 0 auto !important;
}

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

.service-page-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0895d3 0%, #c3d139 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-page-card:hover::before {
    transform: scaleX(1);
}

.service-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 149, 211, 0.15);
    border-color: #0895d3;
}

.service-page-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e7f3f8 0%, #f0f9ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-page-card:hover .service-page-icon {
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    transform: scale(1.1);
}

.service-page-icon svg {
    width: 35px;
    height: 35px;
    fill: #0895d3;
    transition: fill 0.3s ease;
}

.service-page-card:hover .service-page-icon svg {
    fill: white;
}

.service-page-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

.service-page-para {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.service-page-link {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #0895d3 !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-page-link:hover {
    color: #c3d139 !important;
    transform: translateX(5px);
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-page-section {
        padding: 60px 0;
    }
    
    .services-page-main-heading {
        font-size: 26px !important;
    }
    
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-page-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-page-section {
        padding: 50px 0;
    }
    
    .services-page-header {
        margin-bottom: 40px;
    }
    
    .services-page-sub-heading {
        font-size: 18px !important;
    }
    
    .services-page-main-heading {
        font-size: 24px !important;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-page-card {
        padding: 25px;
    }
    
    .service-page-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-page-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-page-heading {
        font-size: 20px !important;
    }
    
    .service-page-para {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .services-page-section {
        padding: 40px 0;
    }
    
    .services-page-sub-heading {
        font-size: 16px !important;
    }
    
    .services-page-main-heading {
        font-size: 22px !important;
    }
    
    .service-page-card {
        padding: 20px;
    }
    
    .service-page-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }
    
    .service-page-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-page-heading {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .service-page-para {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .service-page-link {
        font-size: 15px !important;
    }
}

/* ==================== Alternative Services Design ==================== */
.services-page-grid-alt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-page-card-alt {
    position: relative;
    height: 280px;
    perspective: 1000px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-page-card-alt .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-page-card-alt:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.card-front {
    background: white;
    border: 1px solid #e5e7eb;
}

.card-back {
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    transform: rotateY(180deg);
}

.service-card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Heebo', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #f0f9ff !important;
    line-height: 1 !important;
    z-index: 2;
}

.service-page-icon-alt {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-page-icon-alt svg {
    width: 40px;
    height: 40px;
    fill: white;
    padding: 5px;
}

.service-page-heading-alt {
    font-family: 'Heebo', sans-serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.3 !important;
}

.card-back .service-page-heading-alt {
    color: white !important;
    margin-bottom: 15px !important;
    font-size: 24px !important;
}

.service-page-para-alt {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: white !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.service-page-link-alt {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-page-link-alt:hover {
    background: white;
    color: #0895d3 !important;
}

.service-page-link-alt span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-page-link-alt:hover span {
    transform: translateX(4px);
}

/* Responsive Design for Alternative Services */
@media (max-width: 1200px) {
    .services-page-grid-alt {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    
    .service-page-card-alt {
        height: 270px;
    }
    
    .card-front,
    .card-back {
        padding: 28px 18px;
    }
}

@media (max-width: 1024px) {
    .services-page-grid-alt {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-page-card-alt {
        height: 300px;
    }
    
    .card-front,
    .card-back {
        padding: 30px 22px;
    }
    
    .service-page-icon-alt {
        width: 70px;
        height: 70px;
    }
    
    .service-page-icon-alt svg {
        width: 35px;
        height: 35px;
    }
    
    .service-page-heading-alt {
        font-size: 22px !important;
    }
    
    .service-page-para-alt {
        font-size: 15px !important;
    }
    
    .service-page-link-alt {
        font-size: 15px !important;
        padding: 10px 18px;
    }
}

@media (max-width: 768px) {
    .services-page-grid-alt {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .service-page-card-alt {
        height: 280px;
    }
    
    .card-front,
    .card-back {
        padding: 28px 22px;
    }
    
    .service-card-number {
        font-size: 22px !important;
        top: 12px;
        right: 12px;
    }
    
    .service-page-icon-alt {
        width: 65px;
        height: 65px;
        margin-bottom: 16px;
    }
    
    .service-page-icon-alt svg {
        width: 32px;
        height: 32px;
    }
    
    .service-page-heading-alt {
        font-size: 20px !important;
    }
    
    .card-back .service-page-heading-alt {
        font-size: 20px !important;
    }
    
    .service-page-para-alt {
        font-size: 15px !important;
        margin-bottom: 16px !important;
    }
}

@media (max-width: 480px) {
    .services-page-grid-alt {
        gap: 16px;
    }
    
    .service-page-card-alt {
        height: 260px;
    }
    
    .card-front,
    .card-back {
        padding: 25px 20px;
    }
    
    .service-card-number {
        font-size: 20px !important;
        top: 10px;
        right: 10px;
    }
    
    .service-page-icon-alt {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-page-icon-alt svg {
        width: 30px;
        height: 30px;
    }
    
    .service-page-heading-alt {
        font-size: 18px !important;
    }
    
    .card-back .service-page-heading-alt {
        font-size: 18px !important;
    }
    
    .service-page-para-alt {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .service-page-link-alt {
        font-size: 14px !important;
        padding: 8px 16px;
    }
}

/* ======================================
   BLOG PAGE STYLES
   ====================================== */

.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.blog-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #0895d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.blog-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

/* Blog Layout Wrapper */
.blog-layout-wrapper {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
}

/* Main Content - 70% */
.blog-main-content {
    width: 100%;
}

/* Blog Grid Main - 2 Cards in a Row */
.blog-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(8, 149, 211, 0.15);
}

/* Blog Image */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(8, 149, 211, 0.3);
}

/* Blog Content */
.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
}

.blog-date svg,
.blog-author svg {
    width: 16px;
    height: 16px;
    fill: #0895d3;
}

.blog-title {
    font-family: 'Heebo', sans-serif !important;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #0895d3;
}

.blog-excerpt {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0895d3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more svg {
    width: 20px;
    height: 20px;
    fill: #0895d3;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #c3d139;
    gap: 12px;
}

.blog-read-more:hover svg {
    fill: #c3d139;
    transform: translateX(4px);
}

/* ======================================
   BLOG SIDEBAR STYLES - 30%
   ====================================== */

.blog-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sidebar Widget */
.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget-title {
    font-family: 'Heebo', sans-serif !important;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0895d3;
}

/* Recent Blogs List */
.recent-blogs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-blog-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #f9fafb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-blog-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.recent-blog-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-blog-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-blog-title {
    font-family: 'Heebo', sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-blog-date {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #0895d3;
    font-weight: 500;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    color: white;
}

.contact-widget .sidebar-widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.contact-info-text {
    flex: 1;
}

.contact-label {
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.contact-value {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: white;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #c3d139;
}

.contact-value p {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: white;
    line-height: 1.5;
}

.sidebar-cta-btn {
    width: 100%;
    background: white !important;
    color: #0895d3 !important;
    font-weight: 700 !important;
    padding: 14px 24px !important;
}

.sidebar-cta-btn:hover {
    background: #c3d139 !important;
    color: white !important;
}

/* Responsive Styles for Blog */

/* Tablet View */
@media (max-width: 1023px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-header {
        margin-bottom: 50px;
    }
    
    .blog-main-heading {
        font-size: 28px;
    }
    
    .blog-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blog-image-wrapper {
        height: 200px;
    }
    
    .recent-blog-image {
        width: 70px;
        height: 70px;
    }
    
    .recent-blog-title {
        font-size: 15px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
    
    .sidebar-widget-title {
        font-size: 20px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-container {
        max-width: 95%;
    }
    
    .blog-header {
        margin-bottom: 40px;
    }
    
    .blog-sub-heading {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .blog-main-heading {
        font-size: 26px;
    }
    
    .blog-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-grid-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image-wrapper {
        height: 200px;
    }
    
    .blog-content {
        padding: 25px;
    }
    
    .blog-meta {
        gap: 15px;
    }
    
    .blog-date,
    .blog-author {
        font-size: 13px;
    }
    
    .blog-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .blog-excerpt {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .blog-read-more {
        font-size: 15px;
    }
    
    .recent-blog-item {
        padding: 12px;
    }
    
    .recent-blog-image {
        width: 70px;
        height: 70px;
    }
    
    .recent-blog-title {
        font-size: 15px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-header {
        margin-bottom: 35px;
    }
    
    .blog-sub-heading {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .blog-main-heading {
        font-size: 24px;
    }
    
    .blog-layout-wrapper {
        gap: 25px;
    }
    
    .blog-grid-main {
        gap: 20px;
    }
    
    .blog-image-wrapper {
        height: 180px;
    }
    
    .blog-category {
        top: 15px;
        left: 15px;
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-meta {
        gap: 12px;
    }
    
    .blog-date,
    .blog-author {
        font-size: 12px;
    }
    
    .blog-date svg,
    .blog-author svg {
        width: 14px;
        height: 14px;
    }
    
    .blog-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .blog-read-more {
        font-size: 14px;
    }
    
    .blog-read-more svg {
        width: 18px;
        height: 18px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .sidebar-widget-title {
        font-size: 19px;
        margin-bottom: 20px;
    }
    
    .recent-blogs-list {
        gap: 15px;
    }
    
    .recent-blog-item {
        padding: 10px;
        gap: 12px;
    }
    
    .recent-blog-image {
        width: 65px;
        height: 65px;
    }
    
    .recent-blog-title {
        font-size: 14px;
    }
    
    .recent-blog-date {
        font-size: 12px;
    }
    
    .contact-info-list {
        gap: 18px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-label {
        font-size: 12px;
    }
    
    .contact-value,
    .contact-value p {
        font-size: 14px;
    }
}

/* ======================================
   CONTACT PAGE STYLES
   ====================================== */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.contact-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 50px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 0;
    padding: 40px 40px 0px 40px;
    text-align: center;
}

.contact-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    color: #0895d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-description {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Embedded Form Container */
.embedded-form-container {
    width: 100%;
    min-height: 500px;
    height: auto;
}

.embedded-form-container iframe {
    min-height: 500px;
    border-radius: 10px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-title {
    font-family: 'Heebo', sans-serif !important;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.contact-info-subtitle {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-label {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.2;
    margin-top: 0;
}

.contact-detail-value {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-value:hover {
    color: #0895d3;
}

.contact-detail-value p {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* Emergency Contact Card */
.emergency-contact-card {
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(8, 149, 211, 0.3);
}

.emergency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.emergency-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.emergency-title {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.emergency-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 20px;
}

.emergency-phone {
    font-family: 'Heebo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    color: #c3d139;
    transform: scale(1.05);
}

/* Responsive Styles for Contact Page */

/* Tablet View */
@media (max-width: 1023px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 0;
    }
    
    .contact-main-heading {
        font-size: 32px;
    }
    
    .contact-info-card {
        padding: 35px;
    }
    
    .contact-info-title {
        font-size: 26px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-container {
        max-width: 95%;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 0;
    }
    
    .contact-main-heading {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-card {
        padding: 30px;
    }
    
    .contact-info-title {
        font-size: 24px;
    }
    
    .contact-detail-item {
        gap: 15px;
    }
    
    .contact-detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-detail-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .emergency-contact-card {
        padding: 30px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 0;
    }
    
    .contact-form-header {
        margin-bottom: 0;
        padding: 30px 25px 15px 25px;
    }
    
    .contact-sub-heading {
        font-size: 14px;
    }
    
    .contact-main-heading {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .contact-description {
        font-size: 15px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-title {
        font-size: 22px;
    }
    
    .contact-info-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .contact-details-list {
        gap: 25px;
    }
    
    .contact-detail-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-detail-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-detail-label {
        font-size: 15px;
    }
    
    .contact-detail-value,
    .contact-detail-value p {
        font-size: 14px;
    }
    
    .emergency-contact-card {
        padding: 25px;
    }
    
    .emergency-icon {
        width: 60px;
        height: 60px;
    }
    
    .emergency-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .emergency-title {
        font-size: 22px;
    }
    
    .emergency-text {
        font-size: 14px;
    }
    
    .emergency-phone {
        font-size: 24px;
    }
}

/* Map Section */
.map-section {
    padding: 0;
    width: 100%;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-top: 1px solid #e5e7eb;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 300px;
    }
}

/* ======================================
   BLOG DETAIL PAGE STYLES
   ====================================== */

/* Remove sticky header on blog detail page */
body:has(.blog-detail-section) header {
    position: relative;
}

.blog-detail-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0895d3;
}

.breadcrumb-separator {
    color: #d1d5db;
}

.breadcrumb-current {
    color: #1f2937;
    font-weight: 600;
}

/* Blog Detail Header */
.blog-detail-header {
    margin-bottom: 40px;
    padding-left: 40px;
    padding-top: 40px;
}

.blog-detail-category {
    display: inline-block;
    background: linear-gradient(135deg, #0895d3 0%, #06b6d4 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.blog-detail-author,
.blog-detail-date,
.blog-detail-comments {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: #6b7280;
}

.blog-detail-meta svg {
    width: 18px;
    height: 18px;
    fill: #0895d3;
}

/* Featured Image */
.blog-detail-featured-image {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Content */
.blog-detail-content {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.blog-detail-content p {
    margin-bottom: 24px;
}

.blog-detail-content h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-content h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-detail-content h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 30px;
    margin-bottom: 14px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.blog-detail-content li {
    margin-bottom: 12px;
}

.blog-detail-content a {
    color: #0895d3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-detail-content a:hover {
    color: #06b6d4;
}

/* CTA Box */
.blog-detail-cta {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0;
    border: 2px solid #bae6fd;
}

.blog-detail-cta h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.blog-detail-cta p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    color: #374151;
    margin-bottom: 25px;
}

/* Share Section */
.blog-detail-share {
    padding: 40px 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
    margin: 50px 0;
}

.blog-detail-share h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #0c63d4;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #0c8dd9;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #005e94;
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-posts-title {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

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

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.related-post-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 10px;
}

.related-post-date {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive Styles for Blog Detail Page */

/* Tablet View */
@media (max-width: 1023px) {
    .blog-detail-title {
        font-size: 36px;
    }
    
    .blog-detail-content {
        font-size: 16px;
    }
    
    .blog-detail-content h2 {
        font-size: 28px;
        margin-top: 40px;
    }
    
    .blog-detail-content h3 {
        font-size: 22px;
        margin-top: 35px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .blog-detail-section {
        padding: 40px 0 60px;
    }
    
    .breadcrumb {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .blog-detail-header {
        padding-left: 25px;
        padding-top: 30px;
    }
    
    .blog-detail-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .blog-detail-category {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 15px;
    }
    
    .blog-detail-meta {
        gap: 15px;
        font-size: 14px;
        padding-bottom: 25px;
    }
    
    .blog-detail-meta svg {
        width: 16px;
        height: 16px;
    }
    
    .blog-detail-featured-image {
        margin: 30px 0;
        border-radius: 12px;
    }
    
    .blog-detail-content {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .blog-detail-content p {
        margin-bottom: 20px;
    }
    
    .blog-detail-content h2 {
        font-size: 24px;
        margin-top: 35px;
        margin-bottom: 16px;
    }
    
    .blog-detail-content h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 14px;
    }
    
    .blog-detail-cta {
        padding: 30px 25px;
        margin: 40px 0;
    }
    
    .blog-detail-cta h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .blog-detail-cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .blog-detail-share {
        padding: 30px 0;
        margin: 40px 0;
    }
    
    .share-btn {
        width: 44px;
        height: 44px;
    }
    
    .share-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .related-posts {
        margin-top: 50px;
    }
    
    .related-posts-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-post-image {
        height: 200px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .blog-detail-header {
        padding-left: 20px;
        padding-top: 25px;
    }
    
    .blog-detail-title {
        font-size: 24px;
    }
    
    .blog-detail-content {
        font-size: 15px;
    }
    
    .blog-detail-content h2 {
        font-size: 22px;
        margin-top: 30px;
    }
    
    .blog-detail-content h3 {
        font-size: 18px;
        margin-top: 25px;
    }
    
    .blog-detail-cta {
        padding: 25px 20px;
    }
    
    .blog-detail-cta h3 {
        font-size: 20px;
    }
    
    .blog-detail-cta p {
        font-size: 15px;
    }
    
    .share-buttons {
        gap: 12px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
    }
    
    .share-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .related-posts-title {
        font-size: 24px;
    }
}

/* ======================================
   APPOINTMENT PAGE STYLES
   ====================================== */

.appointment-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.appointment-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.appointment-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.appointment-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    color: #0895d3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.appointment-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.appointment-description {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.appointment-form-wrapper {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.appointment-form-wrapper iframe {
    min-height: 500px;
    border-radius: 20px;
}

/* Responsive Styles for Appointment Page */

/* Tablet View */
@media (max-width: 1023px) {
    .appointment-form-section {
        padding: 60px 0;
    }
    
    .appointment-main-heading {
        font-size: 36px;
    }
    
    .appointment-description {
        font-size: 16px;
    }
    
    .appointment-form-wrapper {
        min-height: 450px;
    }
    
    .appointment-form-wrapper iframe {
        min-height: 450px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .appointment-form-section {
        padding: 50px 0;
    }
    
    .appointment-form-header {
        margin-bottom: 40px;
    }
    
    .appointment-sub-heading {
        font-size: 14px;
    }
    
    .appointment-main-heading {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .appointment-description {
        font-size: 15px;
    }
    
    .appointment-form-wrapper {
        border-radius: 15px;
        min-height: 500px;
    }
    
    .appointment-form-wrapper iframe {
        border-radius: 15px;
        min-height: 500px;
    }
}

/* Small Mobile View */
@media (max-width: 480px) {
    .appointment-form-section {
        padding: 40px 0;
    }
    
    .appointment-form-header {
        margin-bottom: 30px;
    }
    
    .appointment-sub-heading {
        font-size: 13px;
    }
    
    .appointment-main-heading {
        font-size: 26px;
    }
    
    .appointment-description {
        font-size: 14px;
    }
    
    .appointment-form-wrapper {
        border-radius: 12px;
        min-height: 550px;
    }
    
    .appointment-form-wrapper iframe {
        border-radius: 12px;
        min-height: 550px;
    }
}

/* ==================== Team Page Section ==================== */
.team-page-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e7f3f8 100%);
}

.team-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-page-sub-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #0895d3 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px !important;
}

.team-page-main-heading {
    font-family: 'Heebo', sans-serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

.team-page-intro {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 18px !important;
    color: #64748b !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6 !important;
}

/* Team Carousel Styles */
.team-carousel-container {
    margin-top: 50px;
}

.team-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.team-carousel-slides {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-carousel-slide {
    display: none;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.team-carousel-slide.active {
    display: block;
    animation: slideIn 0.6s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.team-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.team-image-section {
    position: relative;
    overflow: hidden;
}

.team-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.team-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(8, 149, 211, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-image-section:hover .team-image-overlay {
    opacity: 1;
}

.team-social-links {
    display: flex;
    gap: 15px;
}

.team-social-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-social-icon:hover {
    background: #c3d139;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(195, 209, 57, 0.3);
}

.team-social-icon svg {
    width: 24px;
    height: 24px;
    fill: #0895d3;
}

.team-social-icon:hover svg {
    fill: white;
}

.team-content-section {
    padding: 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.team-content-wrapper {
    width: 100%;
}

.team-slide-name {
    font-family: 'Heebo', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

.team-slide-designation {
    font-family: 'Heebo', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #0895d3 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-slide-bio {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 16px !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
}

.team-slide-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.team-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Heebo', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #0895d3 !important;
    line-height: 1 !important;
}

.stat-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: #64748b !important;
    margin-top: 5px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-view-profile-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8, 149, 211, 0.2);
}

.team-view-profile-btn:hover {
    background: linear-gradient(135deg, #c3d139 0%, #a8b730 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 209, 57, 0.3);
}

/* Carousel Navigation Dots */
.team-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot.active {
    background: #0895d3;
    transform: scale(1.2);
}

.team-dot:hover {
    background: #c3d139;
    transform: scale(1.1);
}

/* Responsive Design for Team Carousel */
@media (max-width: 1024px) {
    .team-page-section {
        padding: 60px 0;
    }
    
    .team-page-main-heading {
        font-size: 32px !important;
    }
    
    .team-slide-content {
        min-height: 450px;
    }
    
    .team-image-wrapper {
        min-height: 450px;
    }
    
    .team-content-section {
        padding: 40px;
    }
    
    .team-slide-name {
        font-size: 28px !important;
    }
    
    .team-slide-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-page-section {
        padding: 50px 0;
    }
    
    .team-page-header {
        margin-bottom: 40px;
    }
    
    .team-page-sub-heading {
        font-size: 18px !important;
    }
    
    .team-page-main-heading {
        font-size: 28px !important;
    }
    
    .team-page-intro {
        font-size: 16px !important;
    }
    
    .team-slide-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .team-image-wrapper {
        min-height: 300px;
    }
    
    .team-content-section {
        padding: 30px;
        text-align: center;
    }
    
    .team-slide-name {
        font-size: 24px !important;
    }
    
    .team-slide-designation {
        font-size: 16px !important;
    }
    
    .team-slide-bio {
        font-size: 15px !important;
    }
    
    .team-slide-stats {
        gap: 25px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .team-page-section {
        padding: 40px 0;
    }
    
    .team-page-sub-heading {
        font-size: 16px !important;
    }
    
    .team-page-main-heading {
        font-size: 24px !important;
    }
    
    .team-page-intro {
        font-size: 15px !important;
    }
    
    .team-image-wrapper {
        min-height: 250px;
    }
    
    .team-content-section {
        padding: 25px;
        text-align: center;
    }
    
    .team-slide-name {
        font-size: 22px !important;
    }
    
    .team-slide-designation {
        font-size: 14px !important;
    }
    
    .team-slide-bio {
        font-size: 14px !important;
    }
    
    .team-slide-stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 22px !important;
    }
    
    .stat-label {
        font-size: 12px !important;
    }
}

/* ==========================================
   Doctor Detail Page Styles
   ========================================== */

.doctor-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.doctor-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Doctor Hero Section */
.doctor-detail-hero {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.doctor-detail-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.doctor-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(8, 149, 211, 0.3);
}

.doctor-image-badge svg {
    width: 18px;
    height: 18px;
}

/* Quick Info Section */
.doctor-detail-quick-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.doctor-detail-name-section {
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.doctor-detail-name {
    font-family: 'Heebo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.doctor-detail-designation {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: #0895d3;
    font-weight: 600;
}

.doctor-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.doctor-stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(8, 149, 211, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.stat-value {
    font-family: 'Heebo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.btn-appointment-large {
    padding: 16px 40px !important;
    font-size: 18px !important;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Doctor Information Content */
.doctor-info-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.doctor-info-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.doctor-info-heading {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0895d3;
    display: inline-block;
}

.doctor-info-text p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.doctor-info-text p:last-child {
    margin-bottom: 0;
}

/* Credentials Grid */
.doctor-credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.doctor-credential-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #0895d3;
}

.doctor-credential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(8, 149, 211, 0.2);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.credential-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.doctor-info-subheading {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.credential-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credential-list li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #4b5563;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.credential-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0895d3;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Styles for Doctor Detail Page */
@media (max-width: 1023px) {
    .doctor-detail-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 35px;
    }
    
    .doctor-detail-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .doctor-detail-name {
        font-size: 32px;
    }
    
    .doctor-credentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .btn-appointment-large {
        padding: 14px 35px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .doctor-detail-section {
        padding: 60px 0;
    }
    
    .doctor-detail-hero {
        padding: 30px 25px;
        gap: 30px;
    }
    
    .doctor-detail-image-wrapper {
        max-width: 350px;
    }
    
    .doctor-detail-name {
        font-size: 28px;
    }
    
    .doctor-detail-designation {
        font-size: 16px;
    }
    
    .doctor-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .doctor-stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .doctor-info-section {
        padding: 30px 25px;
    }
    
    .doctor-info-heading {
        font-size: 26px;
    }
    
    .doctor-info-subheading {
        font-size: 22px;
    }
    
    .doctor-info-text p {
        font-size: 15px;
    }
    
    .doctor-credential-card {
        padding: 30px 25px;
    }
    
    .credential-icon {
        width: 55px;
        height: 55px;
    }
    
    .credential-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .doctor-detail-hero {
        padding: 25px 20px;
    }
    
    .doctor-detail-image-wrapper {
        max-width: 100%;
    }
    
    .doctor-detail-name {
        font-size: 24px;
    }
    
    .doctor-detail-designation {
        font-size: 14px;
    }
    
    .doctor-info-heading {
        font-size: 24px;
    }
    
    .doctor-info-subheading {
        font-size: 20px;
    }
    
    .doctor-info-text p {
        font-size: 14px;
    }
    
    .credential-list li {
        font-size: 14px;
        padding: 8px 0;
        padding-left: 22px;
    }
    
    .credential-list li:before {
        font-size: 16px;
    }
    
    .btn-appointment-large {
        padding: 12px 30px !important;
        font-size: 15px !important;
    }
}

/* ==========================================
   Privacy Policy Page Styles - New Design
   ========================================== */

.privacy-policy-section {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-policy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
}

/* Sidebar Styles */
.privacy-sidebar {
    position: relative;
}

.privacy-sidebar-sticky {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.sidebar-title {
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0895d3;
}

.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.privacy-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.privacy-nav-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(8, 149, 211, 0.15);
    border-left-color: #0895d3;
}

.privacy-nav-item.active {
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    border-left-color: #c3d139;
    box-shadow: 0 4px 15px rgba(8, 149, 211, 0.3);
}

.nav-number {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0895d3;
    min-width: 30px;
}

.privacy-nav-item.active .nav-number {
    color: white;
}

.nav-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.privacy-nav-item.active .nav-text {
    color: white;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.sidebar-cta svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.sidebar-cta p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sidebar-cta-btn {
    display: inline-block;
    padding: 10px 25px;
    background: white;
    color: #0895d3;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    background: #c3d139;
    color: white;
    transform: translateY(-2px);
}

/* Main Content Styles */
.privacy-main-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.privacy-article {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0895d3;
    transition: all 0.3s ease;
}

.privacy-article:hover {
    box-shadow: 0 10px 40px rgba(8, 149, 211, 0.15);
    transform: translateY(-5px);
}

.article-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.article-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-heading {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
}

.article-divider {
    height: 3px;
    background: linear-gradient(90deg, #0895d3 0%, transparent 100%);
    margin-bottom: 25px;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-content p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* Responsive Styles for Privacy Policy Page */
@media (max-width: 1200px) {
    .privacy-policy-container {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .privacy-sidebar-sticky {
        padding: 30px;
    }
}

@media (max-width: 1023px) {
    .privacy-policy-section {
        padding: 60px 0;
    }
    
    .privacy-policy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .privacy-sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .privacy-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .privacy-nav-item {
        min-width: 200px;
    }
    
    .privacy-article {
        padding: 35px;
    }
    
    .privacy-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 50px 0;
    }
    
    .privacy-sidebar-sticky {
        padding: 25px;
    }
    
    .sidebar-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .privacy-nav {
        gap: 10px;
    }
    
    .privacy-nav-item {
        min-width: 180px;
        padding: 12px 15px;
    }
    
    .nav-number {
        font-size: 16px;
    }
    
    .nav-text {
        font-size: 14px;
    }
    
    .privacy-article {
        padding: 30px 25px;
    }
    
    .article-header {
        gap: 15px;
    }
    
    .article-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .privacy-heading {
        font-size: 26px;
    }
    
    .privacy-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 40px 0;
    }
    
    .privacy-sidebar-sticky {
        padding: 20px;
    }
    
    .sidebar-title {
        font-size: 16px;
    }
    
    .privacy-nav-item {
        min-width: 160px;
        padding: 10px 12px;
    }
    
    .sidebar-cta {
        padding: 20px;
    }
    
    .sidebar-cta svg {
        width: 35px;
        height: 35px;
    }
    
    .privacy-article {
        padding: 25px 20px;
        border-left-width: 3px;
    }
    
    .article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .article-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .privacy-heading {
        font-size: 24px;
    }
    
    .privacy-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ==========================================
   Testimonials Page Styles
   ========================================== */

.testimonials-page-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f8fafc 100%);
}

/* Responsive Styles for Testimonials Page */
@media (max-width: 1023px) {
    .testimonials-page-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .testimonials-page-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .testimonials-page-section {
        padding: 40px 0;
    }
}

/* ==========================================
   Home Blog Section Styles
   ========================================== */

.home-blog-section {
    padding: 80px 0;
    background: #ffffff;
}

.home-blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Header */
.home-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

.home-blog-header-content {
    flex: 1;
}

.home-blog-sub-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0895d3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.home-blog-main-heading {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home-blog-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

/* Blog Grid Layout */
.home-blog-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* Featured Blog (Large Left Side) */
.home-blog-featured {
    position: relative;
}

.featured-blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.featured-blog-image {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-blog-featured:hover .featured-blog-image img {
    transform: scale(1.1);
}

.featured-blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    padding: 25px;
}

.blog-category {
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-blog-content {
    padding: 0;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-author,
.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
}

.blog-author svg,
.blog-date svg {
    width: 16px;
    height: 16px;
    color: #0895d3;
}

.featured-blog-title {
    font-family: 'Heebo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.home-blog-featured:hover .featured-blog-title {
    color: #0895d3;
}

.featured-blog-excerpt {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0895d3;
    transition: gap 0.3s ease;
}

.home-blog-featured:hover .blog-read-more {
    gap: 15px;
}

.blog-read-more svg {
    width: 20px;
    height: 20px;
}

/* Small Blog Cards (Right Side) */
.home-blog-small-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.home-blog-small-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.home-blog-small-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(8, 149, 211, 0.15);
}

.small-blog-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.small-blog-image {
    position: relative;
    width: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.small-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-blog-small-card:hover .small-blog-image img {
    transform: scale(1.1);
}

.blog-category-small {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.small-blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-small {
    margin-bottom: 10px;
}

.blog-date-small {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #9ca3af;
}

.small-blog-title {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.home-blog-small-card:hover .small-blog-title {
    color: #0895d3;
}

.small-blog-excerpt {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Styles for Home Blog Section */
@media (max-width: 1200px) {
    .home-blog-main-heading {
        font-size: 38px;
    }
    
    .featured-blog-image {
        height: 380px;
    }
    
    .featured-blog-title {
        font-size: 26px;
    }
}

@media (max-width: 1023px) {
    .home-blog-section {
        padding: 60px 0;
    }
    
    .home-blog-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .home-blog-main-heading {
        font-size: 34px;
    }
    
    .home-blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-blog-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .home-blog-section {
        padding: 50px 0;
    }
    
    .home-blog-main-heading {
        font-size: 30px;
    }
    
    .home-blog-description {
        font-size: 16px;
    }
    
    .featured-blog-image {
        height: 300px;
    }
    
    .featured-blog-title {
        font-size: 24px;
    }
    
    .small-blog-link {
        flex-direction: column;
    }
    
    .small-blog-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .home-blog-section {
        padding: 40px 0;
    }
    
    .home-blog-main-heading {
        font-size: 26px;
    }
    
    .home-blog-description {
        font-size: 15px;
    }
    
    .featured-blog-image {
        height: 250px;
        border-radius: 15px;
    }
    
    .featured-blog-overlay {
        padding: 20px;
    }
    
    .blog-category {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .featured-blog-title {
        font-size: 22px;
    }
    
    .featured-blog-excerpt {
        font-size: 15px;
    }
    
    .small-blog-title {
        font-size: 17px;
    }
    
    .small-blog-excerpt {
        font-size: 13px;
    }
}

/* ==========================================
   Service Detail Page Styles - NEW DESIGN
   ========================================== */

.service-detail-section {
    padding: 0;
    background: #ffffff;
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Introduction Section */
.service-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.service-intro-content {
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 25px;
}

.service-intro-badge svg {
    width: 18px;
    height: 18px;
}

.service-intro-title {
    font-family: 'Heebo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-intro-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 35px;
}

.service-intro-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    background: linear-gradient(135deg, #0895d3 0%, #0670a0 100%);
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(8, 149, 211, 0.3);
    width: fit-content;
}

.service-intro-btn:hover {
    background: linear-gradient(135deg, #c3d139 0%, #a8b730 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(195, 209, 57, 0.4);
}

.service-intro-image {
    position: relative;
    overflow: hidden;
}

.service-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 149, 211, 0.1) 0%, transparent 100%);
}

/* Content Sections - Modern Design */
.service-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: #ffffff;
}

.service-content-card {
    padding: 0 40px;
    margin-bottom: 60px;
}

.service-content-card.highlight {
    padding: 50px 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-radius: 15px;
}

.service-heading {
    font-family: 'Heebo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-sub-heading {
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-para {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-para:last-child {
    margin-bottom: 0;
}

/* Benefits List */
.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
}

.service-benefits-list li svg {
    width: 20px;
    height: 20px;
    color: #0895d3;
    flex-shrink: 0;
    margin-top: 4px;
}

.service-benefits-list li span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

/* CTA Wrapper */
.service-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 0 40px;
}

/* Video Wrapper Styles */
.service-video-wrapper {
    margin-top: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.service-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Procedure Steps Styles */
.service-procedure-steps {
    margin-top: 30px;
}

.procedure-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: center;
}

.procedure-step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid #0895d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Heebo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0895d3;
    box-shadow: none;
}

.procedure-step-content {
    flex: 1;
    padding-top: 0;
}

.procedure-step-content .service-para {
    margin-bottom: 0;
}

/* Responsive Styles for Service Detail Page */
@media (max-width: 1200px) {
    .service-intro-title {
        font-size: 42px;
    }
}

@media (max-width: 1023px) {
    .service-intro-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-intro-content {
        padding: 60px 40px;
    }
    
    .service-intro-image {
        min-height: 450px;
    }
    
    .service-content-wrapper {
        padding: 60px 20px;
    }
    
    .service-content-card {
        padding: 0 30px;
        margin-bottom: 50px;
    }
    
    .service-content-card.highlight {
        padding: 40px 30px;
    }
    
    .service-heading {
        font-size: 28px;
    }
    
    .service-sub-heading {
        font-size: 22px;
        margin-top: 25px;
    }
    
    .service-cta-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .service-intro-content {
        padding: 50px 30px;
    }
    
    .service-intro-title {
        font-size: 36px;
    }
    
    .service-intro-text {
        font-size: 16px;
    }
    
    .procedure-step {
        gap: 20px;
    }
    
    .procedure-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-width: 2px;
    }
    
    .service-intro-image {
        min-height: 400px;
    }
    
    .service-content-wrapper {
        padding: 50px 20px;
    }
    
    .service-content-card {
        padding: 0 25px;
        margin-bottom: 45px;
    }
    
    .service-content-card.highlight {
        padding: 35px 25px;
    }
    
    .service-heading {
        font-size: 26px;
    }
    
    .service-sub-heading {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .service-para {
        font-size: 15px;
    }
    
    .service-benefits-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .service-cta-wrapper {
        margin-top: 50px;
        padding: 0 25px;
    }
}

@media (max-width: 480px) {
    .service-intro-content {
        padding: 40px 25px;
    }
    
    .service-intro-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .procedure-step {
        gap: 15px;
    }
    
    .procedure-step-number {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-width: 2px;
    }
    
    .service-intro-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .service-intro-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .service-intro-text {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .service-intro-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .service-intro-image {
        min-height: 350px;
    }
    
    .service-content-wrapper {
        padding: 40px 20px;
    }
    
    .service-content-card {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .service-content-card.highlight {
        padding: 30px 20px;
    }
    
    .service-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-sub-heading {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .service-para {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .service-benefits-list {
        margin-top: 25px;
    }
    
    .service-benefits-list li {
        gap: 12px;
    }
    
    .service-benefits-list li svg {
        width: 18px;
        height: 18px;
    }
    
    .service-benefits-list li span {
        font-size: 14px;
    }
    
    .service-cta-wrapper {
        margin-top: 50px;
        padding: 0 20px;
    }
}

