/* Custom Styles for Delhi Laser Clinic */

/* Global Styles */
:root {
    --primary-color: #06c0cf;
    --secondary-color: #f8f9fa;
    --dark-color: #343a40;
    --text-dark: #333;
    --section-pad: 45px;
    --section-pad-sm: 30px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Top Bar Styles */
.top-bar {
    background-color:#00a9af!important;
    font-size: 14px;
    padding: 6px 0 !important;
}

.top-contact-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    margin-right: 20px;
}

.top-contact-item i {
    color: #fff;
    margin-right: 8px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    margin-left: auto;
}

.social-link {
    text-decoration: none;
    color: #b0b0b0 !important;
    font-size: 16px;
    transition: color 0.3s;
    display: inline-block;
}

.social-link:hover {
    color: #e91e63 !important;
}

.social-link i {
    color: #fff;
    transition: color 0.3s;
}

.social-link:hover i {
    color: #e91e63;
}

/* Navigation Styles */
.navbar {
    background-color: #ffffff !important;
    padding:0px 0;
    transition: all 0.3s;
    border-bottom: 2px solid #f0f0f0;
}

.navbar.sticky-top {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s;
    /*filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.3));*/
    padding: 5px;
    border-radius: 10px;
     position: relative;
}

/*.logo-img::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 50%, #e91e63 100%);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.3;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(233, 30, 99, 0.5));
    transform: scale(1.05);
}*/
.navbar-brand{ margin:0;}

.brand-name-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
}

.brand-name-main {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.brand-name-sub {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: -2px;
    letter-spacing: 1px;
}

.brand-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffb3d9;
    margin-top: 2px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 10px!important;
    transition: all 0.3s;
    position: relative;
    border-radius: 4px;
    font-size: 15px;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
    color: var(--primary-color) !important;
    border-radius: 8px;
}

.navbar-nav .nav-link.active {
    background:#00a9af!important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.navbar-toggler {
    border-color: rgba(233, 30, 99, 0.3);
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28233, 30, 99, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Hero Section - Carousel */
.hero-section {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-section .carousel {
    width: 100%;
}

.hero-section .carousel-item {
    position: relative;
}

.hero-section .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-section .carousel-inner {
    width: 100%;
}

.discount-badge {
    bottom: 50px;
    right: 50px;
    z-index: 10;
}

.badge-circle {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-circle h5 {
    color: var(--primary-color) !important;
    font-weight: bold;
    font-size: 20px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
}

.carousel-indicators button.active {
    background-color: #fff;
}

/* Quick Contact Form */
.quick-contact {
    background-color:#00a9af; color:#fff;
    border-top: 3px solid var(--primary-color);
}

.quick-contact .form-control {
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.quick-contact .btn-dark {
    background-color: #343a40;
    border: none;
    padding: 10px 30px;
    font-weight: 600;
}

.quick-contact .btn-dark:hover {
    background-color: var(--primary-color);
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title i {
    color: var(--primary-color);
}

.welcome-section .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.welcome-section .btn-dark {
    background-color: #343a40;
    padding:8px 30px;
    font-weight: 600;
}

.welcome-section .btn-dark:hover {
    background-color: var(--primary-color);
}

/* Welcome (Screenshot style hero) */
.welcome-hero {
    background: #fbf3e8;
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.welcome-hero__title {
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    color: #0b2a4a;
    letter-spacing: -0.5px;
}

.welcome-hero__text {
    color: #596a86;
    font-size: 17px;
    line-height: 1.85;
    max-width: 720px;
}

.welcome-hero__media {
    position: relative;
    padding-left: 18px;
}

.welcome-hero__media::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(11, 42, 74, 0.35);
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
    pointer-events: none;
}

.welcome-hero__frame {
    background: #d1d5db;
    border-radius: 12px 12px 12px 90px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.welcome-hero__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.welcome-hero__play {
    position: absolute;
    left: 52%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 92px;
    height: 92px;
    border-radius: 999px;
    text-decoration: none;
    display: grid;
    place-items: center;
    color: #0b2a4a;
}

.welcome-hero__playRing {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(11, 42, 74, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(11, 42, 74, 0.85);
}

.welcome-hero__playBtn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #0b2a4a;
    color: #fff;
}

.welcome-hero__pill {
    border: 1px solid rgba(11, 42, 74, 0.18);
    border-radius: 999px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.welcome-hero__avatars {
    display: flex;
    align-items: center;
}

.welcome-hero__avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid #fbf3e8;
    object-fit: cover;
    margin-left: -10px;
    background: #fff;
}

.welcome-hero__avatar:first-child {
    margin-left: 0;
}

.welcome-hero__avatarText {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #0b2a4a;
}

.welcome-hero__pillText {
    color: #0b2a4a;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.welcome-hero__pillBtn {
    border: 1px solid rgba(11, 42, 74, 0.15);
}

.welcome-hero__stars i {
    color: #ff8a00;
    margin-right: 2px;
}

.welcome-hero__btn {
    white-space: nowrap;
}

.welcome-hero__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.welcome-hero__btn {
    padding: 6px 15px;
    border-radius: 12px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .welcome-hero__actions {
        width: 100%;
    }
    .welcome-hero__btn {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .welcome-hero {
        padding: 22px;
    }
    .welcome-hero__title {
        font-size: 34px;
    }
    .welcome-hero__img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .welcome-hero__title {
        font-size: 28px;
    }
    .welcome-hero__img {
        height: 300px;
    }
    .welcome-hero__pill {
        border-radius: 18px;
        flex-wrap: wrap;
        justify-content: center !important;
        text-align: center;
    }
    .welcome-hero__pillText {
        white-space: normal;
    }
    .welcome-hero__play {
        left: 50%;
        bottom: -18px;
        width: 84px;
        height: 84px;
    }
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Services (screenshot style cards) */
.services-grid {
    margin-top: 10px;
}

.service-tile {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 30, 42, 0.10);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.service-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.service-tile__media {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
}

.service-tile__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-tile:hover .service-tile__img {
    transform: scale(1.04);
}

.service-tile__body {
    padding: 22px 22px 24px;
    position: relative;
}

.service-tile__icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(135deg, #06c0cf 0%, #00a9af 100%);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 12px 30px rgba(6, 192, 207, 0.28);
    position: absolute;
    left: 22px;
    top: -32px; /* overlap like screenshot */
    border: 6px solid #fff;
}

.service-tile__icon i {
    font-size: 22px;
}

.service-tile__title {
	margin-top: 18px;
	font-size: 22px;
	font-weight: 900;
	color: #0b2a4a;
	margin-bottom: 0px;
}

.service-tile__text {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 14px;
    min-height: 48px;
}

.service-tile .btn-outline-primary {
    border-color: rgba(6, 192, 207, 0.45);
    color: #00a9af;
    border-radius: 12px;
}

.service-tile .btn-outline-primary:hover {
    background: linear-gradient(135deg, #06c0cf 0%, #00a9af 100%);
    border-color: transparent;
    color: #fff;
}

@media (max-width: 991px) {
    .service-tile__img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .service-tile__img {
        height: 200px;
    }
    .service-tile__body {
        padding: 20px;
    }
    .service-tile__title {
        font-size: 20px;
    }
}

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;    
     animation: gradientShift 3s ease infinite;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.service-card .card-header {
    background-color: var(--primary-color) !important;
    border: none;
    padding: 15px 20px;
}

.service-card .card-header h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.service-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 20px;
}

.service-card .card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.service-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Gallery (Mediox inspired) */
.gallery-filters .gallery-filter-btn {
    border-radius: 999px;
    padding: 10px 18px;
    border: 1px solid rgba(11, 42, 74, 0.18);
    background: #fff;
    color: #0b2a4a;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

.gallery-filters .gallery-filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(6, 192, 207, 0.45);
}

.gallery-filters .gallery-filter-btn.active {
    background: linear-gradient(135deg, #06c0cf 0%, #00a9af 100%);
    color: #fff;
    border-color: transparent;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #e9ecef;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.gallery-card .gallery-link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-card__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.gallery-card:hover .gallery-card__img {
    transform: scale(1.05);
}

.gallery-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 42, 74, 0.0);
    transition: background 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-card:hover .gallery-card__overlay {
    background: rgba(11, 42, 74, 0.45);
}

.gallery-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #0b2a4a;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gallery-card:hover .gallery-card__icon {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card__icon i {
    font-size: 18px;
}

.gallery-card[hidden] {
    display: none !important;
}

/* Gallery grid alignment */
.gallery-section .row,
.gallery-page-section .row {
    display: flex;
    flex-wrap: wrap;
}

.gallery-section .row > [class*="col-"],
.gallery-page-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .gallery-card__img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .gallery-card__img {
        height: 190px;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0) 0%, rgba(233, 30, 99, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    border-radius: 15px;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-link {
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.gallery-item .overlay {
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-item:hover .overlay {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.gallery-item:hover .fa-search-plus {
    opacity: 1 !important;
    transform: scale(1.2);
}

/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-color);
    color: #fff;
}

.modal-body {
    padding: 20px;
}

.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================
   Footer (Screenshot style)
   ========================== */
.footer-modern {
    background: linear-gradient(135deg, #0f1e2a 0%, #08131c 100%);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 15% 20%, rgba(6, 192, 207, 0.18), transparent 60%),
                radial-gradient(700px 350px at 80% 25%, rgba(0, 169, 175, 0.16), transparent 60%),
                radial-gradient(700px 500px at 70% 90%, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
}

.footer-modern__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

.footer-modern__main {
    position: relative;
    z-index: 1;
}

.footer-modern__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* logo already colored, keep it as-is */
}

.footer-modern__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.footer-modern__list a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: all 0.25s ease;
}

.footer-modern__list a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-modern__input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 12px 14px;
}

.footer-modern__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-modern__btn {
    background: linear-gradient(135deg, #06c0cf 0%, #00a9af 100%);
    border: none;
    color: #fff;
    border-radius: 999px !important;
    padding: 0 16px;
}

.footer-modern__btn:hover {
    filter: brightness(1.05);
}

.footer-modern__contact {
    margin: 0;
}

.footer-modern__contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-modern__contact i {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-modern__contact a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-modern__contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-modern__strip {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-modern__mini a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-modern__mini a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-modern__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    background: linear-gradient(135deg, #06c0cf 0%, #00a9af 100%);
    box-shadow: 0 8px 24px rgba(6, 192, 207, 0.25);
    flex: 0 0 auto;
}

.footer-modern__icon i {
    color: #fff;
    font-size: 16px;
}

@media (max-width: 767px) {
    .footer-modern__logo {
        height: 52px;
    }
    .footer-modern__title {
        font-size: 16px;
    }
    .footer-modern__strip {
        border-radius: 16px;
    }
}

/* Footer */
.footer {
    background-color:#00a9af !important;
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer .contact-info p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer .contact-info i {
    color: #fff;
    width: 20px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2c2c2c;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social-link i {
    color: #fff;
    font-size: 18px;
}

.footer .form-control {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #00a9af;
    padding: 8px 12px;
    font-size: 14px;
}

.footer .form-control:focus {
    background-color: #495057;
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.footer .form-control::placeholder {
    color: #adb5bd;
}

.footer .form-label {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-enquiry-form {
    margin-top: 0;
}

.footer-enquiry-form .form-control {
    padding: 6px 10px;
    margin-bottom: 0;
}

.footer-enquiry-form textarea.form-control {
    padding: 6px 10px;
    min-height: 70px;
}

.footer .btn-dark {
    background-color: #495057;
    border: none;
    padding: 10px 30px;
}

.footer .btn-dark:hover {
    background-color: var(--primary-color);
}

.map-placeholder {
    border-radius: 10px;
    border: 2px dashed #6c757d;
}

/* Copyright Bar */
.copyright-bar {
    background-color: #212529 !important;
    border-top: 1px solid #495057;
}

.copyright-bar p {
    color: #adb5bd;
    font-size: 14px;
}

#scrollToTop {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1050;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    background: linear-gradient(135deg, #06c0cf 0%, #00a9af 100%);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

#scrollToTop:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #00a9af 0%, #06c0cf 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

#scrollToTop i {
    font-size: 18px;
}

/* Responsive Styles */

/* Extra Large Devices (xxl) */
@media (min-width: 1400px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large Devices (xl) */
@media (max-width: 1399px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* Medium Devices (md/tablet) */
@media (max-width: 991px) {
    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-item,
    .hero-section .carousel-inner {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .discount-badge {
        bottom: 30px;
        right: 30px;
    }
    
    .badge-circle {
        width: 120px;
        height: 120px;
    }
    
    .badge-circle h5 {
        font-size: 16px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

/* Small Devices (sm/tablet portrait) */
@media (max-width: 767px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0 !important;
    }
    
    .top-contact-item {
        font-size: 11px;
        display: block;
        margin-bottom: 5px;
    }
    
    .top-bar .d-flex {
        flex-direction: column;
        gap: 5px !important;
    }
    
    .top-bar .text-end {
        text-align: left !important;
    }
    
    .social-icons {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .social-icons a {
        font-size: 14px;
        width: 25px;
        height: 25px;
    }
    
    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-item,
    .hero-section .carousel-inner {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-content ul li {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .discount-badge {
        position: relative !important;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .badge-circle {
        width: 100px;
        height: 100px;
    }
    
    .badge-circle h5 {
        font-size: 14px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .brand-name-main {
        font-size: 22px;
    }
    
    .brand-name-sub {
        font-size: 12px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        margin: 3px 0;
        display: block;
        color: #fff !important;
    }
    
    .navbar-nav .nav-link.active {
        background-color: #4dd0e1 !important;
    }
    
    .service-card .card-img-top {
        height: 220px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Extra Small Devices (xs/mobile) */
@media (max-width: 575px) {
    .top-bar {
        font-size: 10px;
        padding: 6px 0 !important; display:none;
    }
    
    .top-contact-item {
        font-size: 10px;
        display: block;
        margin-bottom: 4px;
    }
    
    .social-icons a {
        font-size: 12px;
        width: 22px;
        height: 22px;
        margin-right: 5px !important;
    }
    
    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-item,
    .hero-section .carousel-inner {
        /*min-height: 400px;
        padding: 20px 0;*/
		min-height: 170px;
        padding: 0;
    }
    
    .hero-content {
        padding: 20px 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content ul li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .quick-contact .form-control {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .quick-contact .btn {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .brand-name-main {
        font-size: 18px;
    }
    
    .brand-name-sub {
        font-size: 10px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
        background-color:rgb(0 0 0);
        border-radius: 5px;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 15px !important;
        margin: 2px 0;
        display: block;
        font-size: 14px;
        color: #fff !important;
    }
    
    .navbar-nav .nav-link.active {
        background-color: #4dd0e1 !important;
    }
    
    .service-card .card-img-top {
        height: 200px;
    }
    
    .service-card .card-header h5 {
        font-size: 16px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
    
    .footer h5 {
        font-size: 18px;
    }
    
    #scrollToTop {
        width: 40px;
        height: 40px;
        right: 14px;
        bottom: 14px;
    }
}

/* Additional Bootstrap Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #c2185b;
    border-color: #c2185b;
}

/* About Page Styles */
.page-header {
    /* image + overlay (applies to all pages using .page-header) */
    background-image:
        linear-gradient(135deg, rgba(6, 192, 207, 0.3) 0%, rgba(0, 169, 175, 0.88) 55%, rgba(11, 42, 74, 0.88) 100%),
        url('../img/page-top.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 55px 0;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(900px 420px at 18% 25%, rgba(255,255,255,0.16), transparent 60%),
        radial-gradient(700px 360px at 75% 30%, rgba(255,255,255,0.12), transparent 60%),
        url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><circle cx="60" cy="60" r="2" fill="rgba(255,255,255,0.12)"/></svg>');
    opacity: 0.65;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* thin lines */
        linear-gradient(to right, rgba(255,255,255,0.10), rgba(255,255,255,0.10)) 0 0 / 100% 1px no-repeat,
        linear-gradient(to right, rgba(255,255,255,0.07), rgba(255,255,255,0.07)) 0 36px / 100% 1px no-repeat,
        linear-gradient(to right, rgba(255,255,255,0.06), rgba(255,255,255,0.06)) 0 72px / 100% 1px no-repeat,
        /* sparkles (SVG) */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='220' viewBox='0 0 520 220'%3E%3Cg fill='none' stroke='%23ff7a00' stroke-width='3'%3E%3Cpath d='M376 32l8 18 18 8-18 8-8 18-8-18-18-8 18-8z'/%3E%3Cpath d='M458 132l5 12 12 5-12 5-5 12-5-12-12-5 12-5z'/%3E%3Cpath d='M320 170l4 10 10 4-10 4-4 10-4-10-10-4 10-4z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: 0 0, 0 0, 0 0, 70% 40%;
    opacity: 0.85;
    pointer-events: none;
}

.page-header h1 {
    position: relative;
    z-index: 1;
}

.page-header .row,
.page-header nav,
.page-header .breadcrumb {
    position: relative;
    z-index: 1;
}

.page-header .row.align-items-center {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.page-header .row.align-items-center > [class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.page-header .text-md-end {
    text-align: center !important;
}

.page-header h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.page-header h1 i {
    display: none; /* screenshot style: no big leading icon */
}

.page-header h1::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 14px;
    transform: rotate(45deg);
    background: #ff7a00;
    border-radius: 3px;
    box-shadow:
        0 0 0 6px rgba(255, 122, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.25);
    vertical-align: middle;
}

.page-header nav {
    margin-top: 14px;
}

.page-header .breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.page-header .breadcrumb-item a {
    color: #ff7a00 !important;
    font-weight: 700;
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: #0b2a4a !important;
    font-weight: 700;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "»";
    color: rgba(11, 42, 74, 0.55);
    padding: 0 6px;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item.active {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.page-header .breadcrumb {
    background:#fff;
    padding: 10px 25px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.page-header .breadcrumb-item a:hover {
    color: #fff;
}

.page-header .breadcrumb-item.active {
    color: #fff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    /*content: ">";*/
    color: #000;
    padding: 0 10px;
}

.intro-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.intro-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   /* height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;*/
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2) !important;
}

.doctors-section {
    padding: 60px 0;
}

.doctor-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;*/
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.25) !important;
}

.doctor-image-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2185b 100%);
    min-height: 300px;
}

.doctor-image-wrapper.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.doctor-content {
    background: #fff;
}

.doctor-content h2 {
    padding-bottom:5px;
    margin-bottom: 5px;
    position: relative;
}

.doctor-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 100%);
    border-radius: 2px;
}

.doctor-content h2.text-danger::after {
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
}

.doctor-bio p {
    line-height: 1.8;
    color: #555; 
}

.specializations {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(233, 30, 99, 0.1) 100%);
    position: relative;
    padding-left: 20px;
}

.specializations::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    /*background: linear-gradient(180deg, var(--primary-color) 0%, #c2185b 100%);*/
    border-radius: 0 4px 4px 0;
}

.specializations h4 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    position: relative;
}

.specializations h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.specializations ul li {
    padding: 0px 0;
    line-height: 1.6;
    color: #555;
}

.specializations ul li i {
    font-size: 16px;
}

.why-choose-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2) !important;
}

.feature-icon {
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h5 {
    color: var(--text-dark);
    margin-top: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
    .doctor-card .row {
        flex-direction: column;
    }
    
    .doctor-card .row.flex-row-reverse {
        flex-direction: column-reverse;
    }
    
    .doctor-image-wrapper {
        min-height: 200px;
    }
    
    .doctor-content {
        padding: 30px 20px !important;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 34px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .breadcrumb {
        padding: 8px 14px;
    }

    .page-header h1::after {
        width: 14px;
        height: 14px;
        margin-left: 10px;
    }
    
.intro-card {
    padding: 25px !important;
}

/* Global internal page spacing (reduce padding/margins across pages) */
.intro-section,
.doctors-section,
.why-choose-section,
.dermatologist-intro-section,
.doctor-profile-section,
.benefits-section,
.help-section,
.laser-intro-section,
.how-laser-works-section,
.ideal-candidates-section,
.aftercare-section,
.laser-benefits-section,
.body-contouring-intro-section,
.technique-section,
.advantages-section,
.safety-section,
.body-benefits-section,
.gallery-page-section,
.contact-section,
.blog-section,
.blog-details-section {
    padding-top: var(--section-pad) !important;
    padding-bottom: var(--section-pad) !important;
}

@media (max-width: 767px) {
    .intro-section,
    .doctors-section,
    .why-choose-section,
    .dermatologist-intro-section,
    .doctor-profile-section,
    .benefits-section,
    .help-section,
    .laser-intro-section,
    .how-laser-works-section,
    .ideal-candidates-section,
    .aftercare-section,
    .laser-benefits-section,
    .body-contouring-intro-section,
    .technique-section,
    .advantages-section,
    .safety-section,
    .body-benefits-section,
    .gallery-page-section,
    .contact-section,
    .blog-section,
    .blog-details-section {
        padding-top: var(--section-pad-sm) !important;
        padding-bottom: var(--section-pad-sm) !important;
    }
}

/* Enhanced Card Styles */
.content-card,
.intro-card,
.doctor-card,
.benefit-card,
.feature-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
    
    .doctor-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}

/* Dermatologist Page Styles */
.dermatologist-intro-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.content-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   /* height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;*/
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2) !important;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    /*height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 100%);*/
    border-radius: 2px;
}

.section-heading i {
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

.content-text {
    font-size:14px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.content-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Doctor Profile Section */
.doctor-profile-section {
    padding: 60px 0;
}

.doctor-profile-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.doctor-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /*height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;*/
    z-index: 1;
}

.doctor-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.25) !important;
}

.doctor-image-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 300px;
    border-right: 3px solid var(--primary-color);
}

.doctor-avatar {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.doctor-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    transition: transform 0.3s;
}

.doctor-profile-card:hover .doctor-photo {
    transform: scale(1.05);
}

.doctor-name {
    font-size: 2rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}

.doctor-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 100%);
    border-radius: 2px;
}

.doctor-qualification {
    line-height: 1.6;
}

.section-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subheading i {
    color: var(--primary-color);
}

.education-list li,
.specialization-list li {
    padding: 0px 0;
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

.education-list li i,
.specialization-list li i {
    font-size: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

.benefit-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*background: linear-gradient(90deg, var(--primary-color) 0%, #c2185b 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;*/
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.25) !important;
}

.benefit-card:hover::after {
    transform: translate(20px, -20px) scale(1.2);
}

.benefit-icon {
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

/* Help Section */
.help-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2185b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn-light {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Dermatologist Page */
@media (max-width: 991px) {
    .doctor-profile-card .row {
        flex-direction: column;
    }
    
    .doctor-image-section {
        min-height: 250px;
    }
    
    .doctor-details {
        padding: 30px 20px !important;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .doctor-name {
        font-size: 1.75rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .dermatologist-intro-section,
    .doctor-profile-section,
    .why-specialist-section,
    .benefits-section,
    .help-section {
        padding: 40px 0;
    }
    
    .content-card {
        padding: 25px !important;
    }
    
    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .doctor-image-section {
        min-height: 200px;
        padding: 30px 20px !important;
        border-right: none;
        border-bottom: 3px solid var(--primary-color);
    }
    
    .doctor-photo {
        width: 200px;
        height: 200px;
    }
    
    .doctor-name {
        font-size: 1.5rem;
    }
    
    .doctor-qualification {
        font-size: 1rem !important;
    }
    
    .section-subheading {
        font-size: 1.1rem;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .benefit-heading {
        font-size: 1.2rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-heading {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-section .btn-light {
        padding: 12px 30px !important;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .section-heading {
        font-size: 1.25rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .content-text {
        font-size: 0.95rem;
    }
    
    .doctor-image-section {
        min-height: 180px;
        padding: 20px 15px !important;
        border-right: none;
        border-bottom: 3px solid var(--primary-color);
    }
    
    .doctor-photo {
        width: 150px;
        height: 150px;
    }
    
    .doctor-name {
        font-size: 1.25rem;
    }
    
    .doctor-qualification {
        font-size: 0.9rem !important;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
    
    .benefit-icon i {
        font-size: 2rem !important;
    }
    
    .benefit-heading {
        font-size: 1.1rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .cta-heading {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* Laser Hair Removal Page Styles */
.laser-intro-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.how-laser-works-section {
    padding: 60px 0;
}

.how-laser-works-section img {
    transition: transform 0.3s;
}

.how-laser-works-section img:hover {
    transform: scale(1.02);
}

.ideal-candidates-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.ideal-candidates-list li {
    padding: 15px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(233, 30, 99, 0.1) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ideal-candidates-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.aftercare-section {
    padding: 60px 0;
}

.aftercare-list {
    border-left: 4px solid var(--primary-color);
}

.aftercare-list li {
    padding: 10px 0;
    line-height: 1.8;
}

.laser-benefits-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.laser-benefits-section .benefit-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.laser-benefits-section .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2) !important;
}

.laser-benefits-section .benefit-icon {
    transition: transform 0.3s;
}

.laser-benefits-section .benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Styles for Laser Hair Removal Page */
@media (max-width: 991px) {
    .how-laser-works-section .row {
        flex-direction: column-reverse;
    }
    
    .how-laser-works-section img {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .laser-intro-section,
    .how-laser-works-section,
    .ideal-candidates-section,
    .aftercare-section,
    .laser-benefits-section {
        padding: 40px 0;
    }
    
    .ideal-candidates-list li {
        padding: 12px;
    }
    
    .aftercare-list {
        padding: 20px !important;
    }
}

@media (max-width: 575px) {
    .ideal-candidates-list li {
        padding: 10px;
    }
    
    .laser-benefits-section .benefit-card {
        margin-bottom: 20px;
    }
}

/* Body Contouring Page Styles */
.body-contouring-intro-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.body-contouring-intro-section img {
    transition: transform 0.3s;
}

.body-contouring-intro-section img:hover {
    transform: scale(1.02);
}

.technique-section {
    padding: 60px 0;
}

.technique-steps {
    margin-top: 30px;
}

.step-item {
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.advantages-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.advantages-list li {
    padding: 15px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(233, 30, 99, 0.1) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantages-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.safety-section {
    padding: 60px 0;
}

.safety-features {
    border-left: 4px solid var(--primary-color);
}

.safety-features li {
    padding: 8px 0;
    line-height: 1.8;
}

.body-benefits-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.body-benefits-section .benefit-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.body-benefits-section .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2) !important;
}

.body-benefits-section .benefit-icon {
    transition: transform 0.3s;
}

.body-benefits-section .benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Styles for Body Contouring Page */
@media (max-width: 991px) {
    .body-contouring-intro-section .row {
        flex-direction: column-reverse;
    }
    
    .body-contouring-intro-section img {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .body-contouring-intro-section,
    .technique-section,
    .advantages-section,
    .safety-section,
    .body-benefits-section {
        padding: 40px 0;
    }
    
    .step-item {
        padding: 20px !important;
    }
    
    .advantages-list li {
        padding: 12px;
    }
    
    .safety-features {
        padding: 20px !important;
    }
}

@media (max-width: 575px) {
    .step-item {
        padding: 15px !important;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .advantages-list li {
        padding: 10px;
    }
    
    .body-benefits-section .benefit-card {
        margin-bottom: 20px;
    }
}

/* Gallery Page Styles */
.gallery-page-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.gallery-page-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.gallery-page-section .gallery-item {
    margin-bottom: 20px;
}

/* Responsive Styles for Gallery Page */
@media (max-width: 767px) {
    .gallery-page-section {
        padding: 40px 0;
    }
    
    .gallery-page-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .gallery-page-section .section-title {
        font-size: 1.75rem;
    }
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh;
}

.contact-info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2) !important;
    border-color: var(--primary-color);
}

.contact-icon {
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-form-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15) !important;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.contact-form .form-label {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.map-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.map-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15) !important;
}

.map-container {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: var(--primary-color);
}

.info-card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    transform: translateY(-5px);
}

.contact-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2185b 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.contact-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #c2185b 0%, var(--primary-color) 100%);
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .map-card {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-card,
    .map-card {
        padding: 20px !important;
    }
    
    .map-container {
        height: 300px !important;
    }
    
    .contact-info-card {
        padding: 20px !important;
    }
}

@media (max-width: 575px) {
    .contact-section .section-title {
        font-size: 1.75rem;
    }
    
    .contact-icon i {
        font-size: 2rem !important;
    }
    
    .map-container {
        height: 250px !important;
    }
}

/* Blog Page Styles */
.blog-section,
.blog-details-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh;
}

.blog-post-card,
.blog-details-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.blog-post-card:hover,
.blog-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15) !important;
    border-color: var(--primary-color);
}

.blog-post-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-post-meta .badge {
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
}

.blog-post-excerpt {
    line-height: 1.8;
    font-size: 1rem;
}

.blog-post-image {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.blog-post-image img {
    transition: transform 0.3s ease;
    height: auto;
    object-fit: cover;
}

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

.blog-post-featured-image {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

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

.blog-post-featured-image:hover img {
    transform: scale(1.02);
}

.blog-content-section {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 25px;
}

.blog-content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-content-section p {
    line-height: 1.8;
    font-size: 1rem;
}

.blog-post-footer {
    border-top: 2px solid #e0e0e0;
}

.sidebar-widget {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1) !important;
    border-color: var(--primary-color);
}

.widget-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.sidebar-widget ul li a {
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color) !important;
    padding-left: 10px;
}

.comments-section {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comments-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.1) !important;
}

.comment-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.social-share .btn {
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-share .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Blog Pages */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .blog-section,
    .blog-details-section {
        padding: 40px 0;
    }
    
    .blog-post-card,
    .blog-details-card {
        padding: 20px !important;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
    
    .blog-content-section {
        padding: 15px;
    }
    
    .blog-content-section h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .blog-post-title {
        font-size: 1.25rem;
    }
    
    .blog-post-meta .badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        margin-bottom: 5px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
}