/* No variables — All direct pink colors used */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    opacity: 0.9;
}








/* ==========================
        HERO SECTION
========================== */

.hero {
    position: relative;
    height: 50vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff000045, #000000);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: clamp(16px, 2vw, 19px);
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================
      HERO BUTTONS
========================== */

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* PRIMARY BUTTON → WHITE WITH PINK TEXT */
.btn-primary {
    background: #ffffff;
    color: red;
    box-shadow: 0 6px 20px rgba(255, 79, 166, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 159, 214, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: red;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 31, 138, 0.4);
    
}



/* SECONDARY BUTTON → OUTLINED WHITE */
.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #d91f8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 3, 3, 0.902);
}


.cta-buttons .btn-primary:hover {
    color: white;
}





/* ==========================
      HERO CONTROLS
========================== */

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 3;
    transform: translateY(-50%);
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ==========================
      HERO DOTS
========================== */

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}
/* ==========================
        ABOUT SECTION
========================== */

.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    color: orange; /* pink-dark */
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content .highlight {
    font-size: 18px;
    color: #000000; /* pink-primary */
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* ===== Features List ===== */

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #2d3748;
}

.feature-item i {
    color: red; /* pink-dark */
    font-size: 18px;
}

/* ===== About Image ===== */

.about-image {
    position: relative;
    margin-top: -135px;
    
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ===== Stats Card ===== */

.stats-card {
    position: absolute;
    bottom: -150px;
    right: 70px;
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: orange; /* pink-primary */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: orange; /* pink-dark */
    margin-bottom: 5px;
}

.stat-info p {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

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

@media (max-width: 991px) {
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image img {
        height: 400px;
        margin-top: 72px;
    }

    .features-list {
        gap: 10px;
    }

    .stats-card {
        bottom: -67px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 90%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 25px;
        text-align: center;
    }

    .about-content .highlight {
        font-size: 16px;
        text-align: center;
    }

    .about-content p {
        font-size: 15px;
        text-align: center;
    }

    .about-image img {
        height: 320px;
        border-radius: 15px;
        margin-top: 70px;
        
    }

    .stats-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stat-info h4 {
        font-size: 22px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }



}

@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* ==========================
        SERVICES SECTION
========================== */

/* Section Header */
.section-header {
    margin-bottom: 80px;
    max-width: 800px;
    margin: 0 auto; /* centers the whole block */
    text-align: center; /* centers text + badge */
    margin-top: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff0000 0%, #ff0000 100%);
    color: red;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    color: Orange;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    margin: 0 auto;
    margin-bottom: 30px;
}

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

@media (max-width: 992px) {
    .section-title {
        font-size: 42px;
    }

    .section-description {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .services-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .section-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.6;
    }

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

@media (max-width: 480px) {
    .section-title {
        font-size: 25px;
        text-align: center;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 16px;
        text-align: center;
    }

    .section-description {
        text-align: center;
    }

    .services-section {
        padding: 50px 0;
    }
}

/* ==========================
   FEATURED SERVICES CARDS
========================== */

.featured-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.featured-service {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #ffd2eb;
}

.featured-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 79, 166, 0.2);
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 79, 166, 0.8), rgba(217, 31, 138, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.featured-service:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
}

/* ==========================
      SERVICE CONTENT
========================== */

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #d91f8a;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-features i {
    color: #ff4fa6;
    margin-right: 12px;
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d91f8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #ff4fa6;
}

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

@media (max-width: 992px) {
    .featured-services {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 15px;
    }

    .service-link {
        font-size: 15px;
    }
}

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

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon i {
        font-size: 26px;
    }

    .service-content {
        padding: 24px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-content p {
        font-size: 14px;
        text-align: center;
    }

    .service-features li {
        font-size: 14px;
    }

    .service-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 180px;
        text-align: center;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 20px;
        text-align: center;
    }

    .service-features {
        margin-bottom: 24px;
        margin-left: 24%;
    }

    .service-link {
        gap: 6px;
        font-size: 13px;
    }
}
/* ==========================
        SERVICES GRID
========================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid red;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 79, 166, 0.2);
}

/* Card Header */
.card-header {
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, orange, red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-small i {
    font-size: 20px;
    color: #ffffff;
}

.card-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: red;
}

/* Card Image */
.card-image {
    height: 200px;
    overflow: hidden;
    margin: 0 24px;
    border-radius: 12px;
}

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

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

/* Card Content */
.card-content {
    padding: 24px;
}

.card-content p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features Tags */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-features span {
    background: orange;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ==========================
     VIEW ALL BUTTON
========================== */

.view-all-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, orange, red);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(255, 79, 166, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 79, 166, 0.4);
    gap: 16px;
}

.view-all-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

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

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 40px;
    }

    .card-header h4 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .card-image {
        height: 180px;
        margin: 0 20px;
    }

    .view-all-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .card-header {
        padding: 20px 20px 12px;
        gap: 12px;
    }

    .service-icon-small {
        width: 44px;
        height: 44px;
    }

    .service-icon-small i {
        font-size: 18px;
    }

    .card-header h4 {
        font-size: 17px;
    }

    .card-image {
        height: 160px;
        margin: 0 16px;
    }

    .card-content {
        padding: 20px;
    }

    .card-features span {
        font-size: 12px;
        padding: 5px 10px;
    }

    .view-all-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-image {
        height: 140px;
        margin: 0 12px;
    }

    .card-header h4 {
        font-size: 16px;
    }

    .card-content {
        padding: 16px;
        text-align: center;
    }

    .card-content p {
        font-size: 13px;
    }

    .card-features {
        gap: 6px;
    }

    .view-all-btn {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .view-all-btn:hover {
        gap: 12px;
    }
}

/* ==========================
        STATS SECTION
========================== */

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    background: #ffffff;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #ffd2eb;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d91f8a;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        gap: 20px;
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}
/* ==========================
        PRICING SECTION
========================== */

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-info h2 {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    color: #d91f8a; /* pink-dark */
    margin-bottom: 25px;
}

.pricing-info p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.call-text {
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 500;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
    color: #d91f8a;
}

/* Pricing Cards Wrapper */
.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Individual Price Card */
.price-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #ffd2eb;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 79, 166, 0.15);
}

.price-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

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

/* Price Content */
.price-content {
    padding: 30px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #d91f8a;
    margin-bottom: 15px;
    text-align: center;
}

.price-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ff4fa6; /* pink-primary */
    margin-bottom: 20px;
    text-align: center;
}

/* Price Card Features */
.price-content ul {
    list-style: none;
    margin-left: 30%;
}

.price-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.price-content li i {
    color: #d91f8a; /* pink-dark */
    font-size: 14px;
}

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

@media (max-width: 991px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pricing-info h2 {
        font-size: 32px;
        text-align: center;
    }

    .phone-number {
        font-size: 24px;
    }

    .price {
        font-size: 30px;
    }

    .price-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .pricing {
        padding: 60px 0;
        text-align: center;
    }

    .pricing-content {
        gap: 40px;
    }

    .pricing-info h2 {
        font-size: 28px;
    }

    .price {
        font-size: 26px;
    }

    .price-content {
        padding: 25px;
    }

    .price-content h3 {
        font-size: 16px;
    }

    .price-content li {
        font-size: 14px;
    }

    .phone-number {
        font-size: 22px;
    }
}
/* ==========================
      TESTIMONIALS SECTION
========================== */
.testimonials {
    padding: 40px 0;
    background: linear-gradient(90deg, orange, orange);
    position: relative;
    overflow: hidden;
}

.testimonial-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-decoration: dashed;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Slider */
.testimonial-slider {
    position: relative;
    height: auto;
    min-height: 150px;
    overflow: visible;
}

.testimonial-track {
    display: flex;
    position: relative;
}

/* Testimonial Card */
.testimonial-card {
    color: #ffffff;
    width: 100%;
    flex: 0 0 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
    padding-top: 20px;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

/* Text Animation */
.testimonial-card.active .testimonial-text {
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Main Paragraph */
.testimonial-text p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
}

.testimonial-text p::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: -30px;
    top: -10px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text p::after {
    content: '"';
    font-size: 60px;
    position: absolute;
    right: -30px;
    bottom: -20px;
    opacity: 0.3;
    font-family: serif;
}

/* Person Name */
.testimonial-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Role */
.testimonial-text span {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================
      ARROWS
========================== */

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 576px) {
    .testimonial-text p {
        font-size: 18px;
        padding: 0 20px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
/* ==========================
         TEAM SECTION
========================== */

.team {
    padding: 120px 0;
    background: linear-gradient(135deg, #fce8f5 0%, #ffffff 100%);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Badge */
.section-badge {
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    color: red;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Text Area */
.team-info h2 {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    color: #d91f8a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.team-info p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Cards */
.team-cards {
    display: flex;
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    border: 1px solid #ffd2eb;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 79, 166, 0.25);
}

/* Card Image */
.team-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

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

/* Social Links (Center Hover Icons) */
.social-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.team-card:hover .social-links {
    opacity: 1;
    visibility: visible;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    color: #ff4fa6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 79, 166, 0.3);
}

.social-links a:hover {
    background: #ff4fa6;
    color: #fff;
    transform: scale(1.1);
}

/* Card Details */
.team-details {
    padding: 25px;
    text-align: center;
}

.team-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.team-details p {
    color: #d91f8a; /* Pink dark */
    font-weight: 500;
    margin: 0;
}

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

@media (max-width: 991px) {
    .team {
        padding: 80px 0;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .team-info h2 {
        font-size: 32px;
    }

    .team-info p {
        font-size: 15px;
    }

    .team-cards {
        flex-direction: column;
        gap: 25px;
    }

    .team-image {
        height: 280px;
    }

    .team-details h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .team {
        padding: 60px 0;
        text-align: center;
    }

    .team-info h2 {
        font-size: 28px;
    }

    .team-cards {
        gap: 20px;
    }

    .team-image {
        height: 250px;
    }

    .team-details {
        padding: 20px;
    }

    .team-details h3 {
        font-size: 16px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .social-links {
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .team-image {
        height: 220px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}
/* ==========================
           CTA SECTION
========================== */

.cta {
    padding: 100px 0;
    background: linear-gradient(90deg, red, orange);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cta {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
        max-width: 500px;
    }

    .cta-buttons {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 14px;
    }
}



/* ========== BACK TO TOP & FLOATING ACTION BUTTONS ========== */
.back-to-top-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
}

#backToTopBtn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E88E5;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#backToTopBtn:hover {
    filter: brightness(0.95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

#backToTopBtn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-social-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    left: auto;
    z-index: 1201;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.floating-social-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

/* Individual Social Buttons */
.floating-social-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: scale(1);
}

/* Individual Button Colors */
.btn-call {
    background: #1E88E5;
}

.btn-whatsapp {
    background: #25D366;
}

.floating-social-btn[aria-label="instagram"],
.floating-social-btn[data-tooltip="instagram"] {
    background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
    color: #ffffff;
}

.btn-facebook {
    background: #1877F2;
}

.btn-youtube {
    background: #FF0000;
}

/* Hover Effects */
.floating-social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.floating-social-btn i {
    transition: transform 0.3s ease;
}

.floating-social-btn:hover i {
    transform: rotate(360deg);
}








/* ==========================
   ADVANCED PROCEDURES SLIDER
========================== */

.advanced-procedures {
    padding: 35px 0;
    background: #ffebeb;
    padding-bottom: 50px;
}

.procedure-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    gap: 25px;
    animation: slideProcedures 80s linear infinite;
    width: max-content;
}

.procedure-card {
    min-width: 300px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #ffd2eb;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 79, 166, 0.15);
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.procedure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 79, 166, 0.25);
}

/* Image */
.proc-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.proc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.procedure-card:hover .proc-img img {
    transform: scale(1.08);
}

/* Title Text */
.procedure-card p {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: orange;
    font-size: 16px;
    line-height: 1.4;
}

/* Animation */
@keyframes slideProcedures {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 576px) {
    .procedure-card {
        min-width: 240px;
        width: 2.5%;
    }
    .proc-img {
        height: 150px;
    }
    .slider-track {
        animation-duration: 69s;
    }
}
/* ==========================
   WHY WE ARE THE BEST CHOICE
========================== */

.why-best {
    padding: 80px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.why-image img:hover {
    transform: scale(1.03);
}

/* Right Content */
.why-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    color: orange;
    margin-bottom: 20px;
}

.why-intro {
    font-size: 17px;
    color: black;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-list li {
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.why-list li i {
    font-size: 20px;
    color: red;
}

/* Responsive */
@media (max-width: 991px) {
    .why-best {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image img {
        height: 350px;
    }

    .why-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .why-intro {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .why-best {
        padding: 60px 0;
    }

    .why-image img {
        height: 260px;
        border-radius: 15px;
    }

    .why-content h2 {
        font-size: 28px;
    }

    .why-intro {
        font-size: 15px;
        padding: 0 10px;
    }

    .why-list li {
        font-size: 14px;
    }
}
.phone {
    display: flex;
    justify-content: center;
}
:root {
      --pink-1: #FF4FA6;
      /* bright pink */
      --pink-2: #FF7BC4;
      /* lighter pink */
      --pink-3: #FFDDF0;
      /* very light pink */
      --text: #222;
      --muted: #777;
    }

    * {
      box-sizing: border-box
    }

    body {
      font-family: "Segoe UI", Roboto, Arial, sans-serif;
      margin: 0;
      background: #f6f6f8;
      color: var(--text);
    }

    body,
    * {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* ---------- overlay common ---------- */
    .overlay {
      position: fixed;
      inset: 0;
      display: none;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0.55);
      z-index: 9999;
      padding: 20px;
    }

    /* ---------- INTRO POPUP ---------- */
    .intro-popup {
      width: 70%;
      max-width: 1100px;
      border-radius: 18px;
      background: linear-gradient(
      135deg,rgba(255, 0, 0, 0.759) , rgba(255, 166, 0, 0.847)
  ) !important;
      padding: 40px;
      color: #fff;
      display: flex;
      gap: 36px;
      position: relative;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
      align-items: center;
    }

    .intro-close {
      position: absolute;
      right: 18px;
      top: 18px;
      background: none;
      border: none;
      color: #fff;
      font-size: 22px;
      cursor: pointer;
    }

    .intro-left {
      width: 56%;
    }

    .logo-title-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px
    }

    .popup-logo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      /* background: #fff; */
      display: inline-block;
      object-fit: cover;
      padding: 6px
    }

    .popup-title {
      font-weight: 700;
      font-size: 20px;
      color: #fff;
    }

    .main-heading {
      font-size: 33px;
      margin: 12px 0;
      line-height: 1.12;
      font-weight: 700;
    }

    .desc {
      color: rgba(255, 230, 244, 0.9);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .book-btn {
      display: inline-block;
      background: #fff !important;
      color: var(--pink-1);
      padding: 12px 28px;
      border-radius: 28px;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(255, 80, 160, 0.18);
      cursor: pointer;
    }

    .stats {
      display: flex;
      gap: 32px;
      margin-top: 28px;
      align-items: flex-end
    }

    .stat-item h3 {
      margin: 0;
      font-size: 22px;
    }

    .stat-item p {
      margin: 6px 0 0;
      color: rgba(255, 230, 244, 0.9);
      font-size: 14px
    }

    .intro-right {
      width: 44%;
      display: flex;
      justify-content: center;
      align-items: center
    }

    .intro-right img {
      width: 107%;
      border-radius: 6px;
      opacity: 0.95
    }

.intro-popup .appointment-btn{
    background-color: white;
    color: red
}

    /* ---------- FORM POPUP ---------- */
    /* .form-popup {
      width: 100%;
      max-width: 940px;
      border-radius: 14px;
      background: #fff;
      display: flex;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      position: relative;
    }

    .form-close {
      position: absolute;
      right: 14px;
      top: 10px;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: #333;
    }

    .form-left {
      width: 34%;
      padding: 48px 28px;
      background: linear-gradient(180deg, var(--pink-3), #ffe3f0);
      color: #92285f;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .form-left h2 {
      margin: 0;
      font-size: 26px;
      font-weight: 700;
      color: var(--pink-1)
    }

    .form-left .address {
      font-size: 14px;
      color: #6b2d53;
      margin-top: 8px;
      line-height: 1.5
    }

    .form-left .phone {
      margin-top: 8px;
      font-weight: 600;
      color: #6b2d53
    }

    .form-right {
      width: 66%;
      padding: 32px 38px;
      background: #fff;
    }

    .tabs {
      display: flex;
      gap: 12px;
      justify-content: flex-start;
      margin-bottom: 14px;
    }

    .tab {
      padding: 8px 16px;
      border-radius: 18px;
      border: 1px solid #ffd3e7;
      background: #fff;
      color: var(--pink-1);
      cursor: pointer;
      font-weight: 700;
    }

    .tab.active {
      background: var(--pink-1);
      color: #fff;
      box-shadow: 0 6px 18px rgba(255, 80, 160, 0.12);
    }

    .form-title {
      font-size: 20px;
      margin-bottom: 8px;
      color: var(--pink-1);
      font-weight: 700
    }

    .form-grid {
      display: block;
    }

    .form-row {
      display: flex;
      gap: 18px;
    }

    .form-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      margin-bottom: 12px;
    }

    label {
      font-size: 13px;
      color: #333;
      margin-bottom: 6px;
      font-weight: 600;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    select,
    input[type="date"] {
      padding: 11px 12px;
      border-radius: 6px;
      border: 1px solid #ddd;
      font-size: 14px;
      outline: none;
    }

    .full {
      width: 100%;
    }

    .recaptcha-placeholder {
      margin: 10px 0 12px;
      height: 66px;
      border: 1px solid #ddd;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px;
      color: #555;
      background: linear-gradient(180deg, #fafafa, #fff);
      box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
    }

    .recaptcha-placeholder .left {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .recaptcha-square {
      width: 28px;
      height: 28px;
      border: 2px solid #bbb;
      border-radius: 4px;
      background: #fff
    }

    .recaptcha-right {
      font-size: 12px;
      color: #666;
      text-align: right
    }

    .submit-row {
      margin-top: 12px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 12px;
    }

    .btn-submit {
      padding: 10px 22px;
      background: var(--pink-1);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 700;
    }

    .btn-back {
      padding: 8px 14px;
      background: #fff;
      border: 1px solid #f0c1da;
      color: var(--pink-1);
      border-radius: 8px;
      cursor: pointer;
    }

    /* ---------- TIME SLOT STYLING ---------- */
    /* .time-slot-container {
      display: none;
      margin-top: 8px;
      margin-bottom: 8px;
    }

    .time-slot {
      padding: 8px 18px;
      border: 2px solid var(--pink-1);
      border-radius: 25px;
      color: var(--pink-1);
      cursor: pointer;
      margin-right: 10px;
      display: inline-block;
      font-size: 14px;
      transition: 0.3s;
    }

    .time-slot:hover {
      background: var(--pink-1);
      color: white;
    }

    .active-time {
      background: var(--pink-1) !important;
      color: white !important;
    }

    /* SUCCESS POPUP */
    /* #successPopup {
      background: #fff;
      width: 380px;
      padding: 30px;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 900px) {
      .intro-popup {
        flex-direction: column;
        padding: 24px;
        text-align: center
      }

      .intro-left,
      .intro-right {
        width: 100%
      }

      .form-popup {
        flex-direction: column;
        width: 100%;
        max-width: 720px
      }

      .form-left {
        width: 100%;
        padding: 22px;
        text-align: center
      }

      .form-right {
        width: 100%;
        padding: 22px
      }

      .form-row {
        flex-direction: column
      }
    } */ 
















        /* ================================
         GLOBAL RESET & FIXES
    ================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
        /* ✅ IMPORTANT FIX: Prevent popup font from breaking icons */
        .fa,
        .fas,
        .far,
        .fal,
        .fab {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 900 !important;
        }
    
        /* ================================
         POPUP OVERLAY
    ================================ */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999999;
        }
    
        /* ================================
         INTRO POPUP
    ================================ */
        .intro-popup {
            width: 100%;
            max-width: 1100px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--pink-2), var(--pink-1));
            padding: 40px;
            color: #fff;
            display: flex;
            gap: 36px;
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
            align-items: center;
        }
    
        .intro-close {
            position: absolute;
            right: 18px;
            top: 18px;
            background: none;
            border: none;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
        }
    
        /* LEFT SIDE */
        .intro-left {
            width: 56%;
        }
    
        .logo-title-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }
    
        .popup-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #fff;
            object-fit: cover;
            padding: 6px;
        }
    
        .popup-title {
            font-weight: 700;
            font-size: 20px;
            color: #fff;
        }
    
        .main-heading {
            font-size: 40px;
            margin: 12px 0;
            line-height: 1.12;
            font-weight: 700;
        }
    
        .desc {
            color: rgba(255, 230, 244, 0.9);
            line-height: 1.6;
            margin-bottom: 20px;
        }
    
        .book-btn,
        .appointment-btn {
            background: orange;
            color: white;
            padding: 12px 26px;
            border-radius: 28px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            box-shadow: 0 8px 18px rgba(255, 80, 160, 0.18);
            cursor: pointer;
        }
    
        .stats {
            display: flex;
            gap: 32px;
            margin-top: 28px;
            align-items: flex-end;
        }
    
        .stat-item h3 {
            margin: 0;
            font-size: 22px;
        }
    
        .stat-item p {
            margin: 6px 0 0;
            color: rgba(255, 230, 244, 0.9);
            font-size: 14px;
        }
    
        /* RIGHT SIDE */
        .intro-right {
            width: 44%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    
        .intro-right img {
            width: 92%;
            border-radius: 6px;
            opacity: 0.95;
        }
    
        /* ====================================
        SUCCESS POPUP
    ==================================== */
        #successPopup {
            background: #fff;
            width: 380px;
            padding: 30px;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        }
    
        #successOverlay {
            display: none;
        }
    
        /* ====================================
           RESPONSIVE MOBILE FIXES
    ==================================== */
        @media (max-width: 900px) {
            .intro-popup {
                flex-direction: column;
                padding: 24px;
                text-align: center;
            }
    
            .intro-left,
            .intro-right {
                width: 100%;
            }
    
            .intro-right img {
                width: 80%;
                margin-top: 20px;
            }
    
            .stats {
                justify-content: center;
            }
        }



@media(max-width:480px){
    /* .section-badge{
        margin-left: 72px;
    } */
        .btn-primary{
            text-align: center;
            padding: 14px 105px;
        }

   /* .footer-about p{
    margin-left: 13px;
   }

   .contact-item-footer {
       flex-direction: column;
       text-align: center;
       align-items: center;
   }

   .footer-developed{
    display: flex;
        align-items: center;
        margin-left: 50px;
   } */

   .advanced-procedures{
    align-items: center;
   }

   .why-content .section-badge{
    margin-left: 49px;
   }

   .intro-popup{
    width: 90%;
    max-width: 1100px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pink-2), var(--pink-1));
    padding: 30px;
    color: #fff;
    display: flex;
    gap: 1px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    align-items: center;}

    .book-btn, .appointment-btn{
        margin: auto !important;
    }

    .main-heading{
        font-size: 26px;
    }
    .intro-right img{
        display: none;
    }

    .intro-left .appointment-btn {
        
        margin-right: 40px !important ;
        }

}


/* Fix for CLICKED / ACTIVE / FOCUSED dropdown items */
.dropdown-content li a:focus,
.dropdown-content li a:active {
    background-color: red !important;
    color: white !important;
    outline: none !important;
}




.floating-social-btn .fa-brands{
    color: white;
}


