  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #F6F5F1;
      color: #5A4A43;
      font-size: clamp(14px, 2.5vw, 16px);
      line-height: 1.6;
      overflow-x: hidden !important;
    }
        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #ffffff, #fff7ed);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0;
        }
        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            /* padding: 0.75rem 1.5rem; */
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
        }
        .logo-img {
            height: 80px;
            width: auto;
            transition: transform 0.3s ease;
        }
        .logo-img:hover {
            transform: scale(1.05);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }
        .nav-link {
            position: relative;
            color: #2d3748;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: #f97316;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -4px;
            left: 50%;
            background: #f97316;
            transition: width 0.3s ease, left 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
            left: 0;
        }
        .menu-icon {
            font-size: 1.8rem;
            color: #1a2a44;
            cursor: pointer;
            z-index: 1100;
            /* padding: 0.5rem; */
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            transition: color 0.3s ease;
            position: absolute;
            right: 1.5rem;
        }
        .menu-icon.active {
            color: #f97316;
        }
        .overlay-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, #ffffff, #fff7ed);
            padding: 2rem;
            z-index: 1050;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
            box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        }
        .overlay-menu.active {
            transform: translateX(0);
        }
        .overlay-menu a {
            color: #2d3748;
            font-size: 1.6rem;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .overlay-menu a:hover {
            color: #f97316;
        }
        /* Header Slider */
        .header-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            max-width: 100%;
        }
        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .header-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
            transform: scale(1);
        }
        .header-slide.active {
            opacity: 1;
            transform: scale(1.05);
        }
        .header-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .header-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }
        .slider-btn {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.75rem 1.25rem;
            border: none;
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            border-radius: 0.25rem;
            transition: background 0.3s;
        }
        .slider-btn:hover {
            background: #f97316;
        }
        .slider-btn.prev { left: 1.5rem; }
        .slider-btn.next { right: 1.5rem; }
        .slider-dots {
            position: absolute;
            bottom: 2rem;
            text-align: center;
            width: 100%;
            z-index: 10;
        }
        .dot {
            height: 12px;
            width: 12px;
            background-color: #fff;
            opacity: 0.7;
            border-radius: 50%;
            display: inline-block;
            margin: 0 8px;
            cursor: pointer;
            transition: opacity 0.3s, background 0.3s;
        }
        .dot.active {
            opacity: 1;
            background-color: #f97316;
        }
        /* Responsive Design */
        @media (min-width: 769px) {
            .menu-icon {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                height: 60px;
            }
            .navbar-container {
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
            }
            .logo-container {
                /* position: absolute; */
                left: 50%;
                transform: translateX(-50%);
                z-index: 1001;
            }
            .logo-img {
                height: 50px;
            }
            .menu-icon {
                display: block;
                position: absolute;
                left: 7rem;
                top: 50%;
                transform: translateY(-50%);
                z-index: 1002;
            }
            .nav-links {
                display: none;
            }
            .overlay-menu {
                top: 60px;
                height: calc(100vh - 60px);
            }
            header {
                margin-top: 60px;
                min-height: calc(100vh - 60px);
            }
            .header-slider {
                height: calc(100vh - 60px);
            }
            .slider-btn {
                padding: 0.5rem 1rem;
                font-size: 1.2rem;
            }
            .slider-btn.prev {
                left: 10px;
            }
            .slider-btn.next {
                right: 10px;
            }
            .slider-dots {
                bottom: 15px;
            }
            .dot {
                width: 10px;
                height: 10px;
            }
        }
        @media (max-width: 480px) {
            .navbar {
                height: 50px;
            }
            .navbar-container {
                padding: 0.3rem;
            }
            .logo-img {
                height: 40px;
            }
            .menu-icon {
                font-size: 1.5rem;
                left:7rem;
            }
            .overlay-menu {
                top: 50px;
                height: calc(100vh - 50px);
            }
            header {
                margin-top: 50px;
                min-height: calc(100vh - 50px);
            }
            .header-slider {
                height: calc(100vh - 50px);
            }
            .slider-btn {
                padding: 0.4rem 0.8rem;
                font-size: 1rem;
            }
            .slider-dots {
                bottom: 10px;
            }
            .dot {
                width: 8px;
                height: 8px;
            }
        }
/* Sections */
.section {
    padding: 80px 20px;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.section-two-column {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: linear-gradient(to right, rgba(246, 245, 241, 0.8), rgba(255, 255, 255, 0.9));
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-two-column img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.section-two-column img:hover {
    transform: scale(1.03);
}

.section-two-column .text-content h2 {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-two-column .text-content p {
    font-size: clamp(14px, 2.5vw, 16px);
}

/* Service Cards */
  /* Services Section */
  .services-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #F6F5F1, #ffffff);
}

.section-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
    font-weight: 600;
    color: #4d3f36;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #5A4A43;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Service Cards */
 .service-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      border: 2px solid transparent;
      background-clip: padding-box;
    }
    .service-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
      border-image: linear-gradient(135deg, #f97316, #fb7185) 1;
    }
    .service-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }
    .service-card:hover .service-image {
      transform: scale(1.1);
      opacity: 0.9;
    }
    .service-button {
      background: linear-gradient(135deg, #f97316, #fb7185);
      color: white;
      padding: 10px 20px;
      border-radius: 9999px;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-button:hover {
      background: linear-gradient(135deg, #e55e0d, #e53e3e);
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    .service-content {
      position: relative;
      z-index: 1;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.2), transparent 50%);
      z-index: 0;
      transition: opacity 0.4s ease;
    }
    .service-card:hover::before {
      opacity: 0.5;
    }
    .parallax {
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
    }
    @media (max-width: 768px) {
      .service-image {
        height: 220px;
      }
      .service-card {
        border-radius: 12px;
      }
    }

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.2);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(90, 74, 67, 0.2), rgba(90, 74, 67, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.cta-button {
    background-color: #5A4A43;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .cta-button {
    transform: translateY(0);
    opacity: 1;
}

.cta-button:hover {
    background-color: #7A665E;
}

.service-card .card-body {
    padding: 20px;
    background: #fff;
}

.service-card .card-title {
    font-size: clamp(1.2em, 2.5vw, 1.4em);
    font-weight: 700;
    color: #4d3f36;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: #7A665E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
    .section-title {
        font-size: clamp(1.8em, 4vw, 2.2em);
    }
    .section-subtitle {
        font-size: clamp(13px, 2.2vw, 15px);
    }
    .card-img-wrapper {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 10px;
    }
    .card-img-wrapper {
        height: 140px;
    }
    .service-card .card-title {
        font-size: clamp(1em, 2.2vw, 1.2em);
    }
}

/* Achievements & Moments Sections */
.achievements-section, .moments-section {
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.achievements-section .text-content, .moments-section .text-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Section */
.featured-section h2 {
    font-size: clamp(2em, 4.5vw, 2.8em);
    margin-bottom: 40px;
}

.slider-container {
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.5s ease;
    display: none;
}

.slide img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.slide.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    display: block;
    z-index: 2;
}

.slide.prev {
    transform: translateX(calc(-50% - 350px)) scale(0.7);
    opacity: 0.5;
    display: block;
}

.slide.next {
    transform: translateX(calc(-50% + 350px)) scale(0.7);
    opacity: 0.5;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(90, 74, 67, 0.8);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: #5A4A43;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Gallery Section */


 /* Gallery Section */
 .gallery-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #F6F5F1, #ffffff);
}

.section-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
    font-weight: 600;
    color: #4d3f36;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #5A4A43, #7A665E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #5A4A43;
    margin-bottom: 10px;
}

.gallery-desc {
    font-size: clamp(13px, 2.2vw, 15px);
    color: #5A4A43;
    max-width: 800px;
    margin: 0 auto;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #5A4A43;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover {
    background-color: #7A665E;
    transform: scale(1.05);
}

.filter-btn.active {
    background-color: #7A665E;
    transform: scale(1.05);
}

   /* Gallery Section General Styling */
    .gallery-section {
        padding: 80px 20px;
        background-color: #F6F5F1;
    }
    .section-title {
        font-size: clamp(2em, 5vw, 2.5em);
        font-weight: 700;
        color: #5A4A43;
        margin-bottom: 10px;
    }
    .section-subtitle {
        font-size: clamp(1em, 2.5vw, 1.2em);
        color: #7A6A63;
        margin-bottom: 15px;
        font-style: italic;
    }
    .gallery-desc {
        font-size: clamp(14px, 2.5vw, 16px);
        color: #5A4A43;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Filter Buttons */
    .filter-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .filter-btn {
        background-color: #fff;
        border: 1px solid #5A4A43;
        color: #5A4A43;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: clamp(12px, 2vw, 14px);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .filter-btn:hover, .filter-btn.active {
        background-color: #5A4A43;
        color: #fff;
        border-color: #5A4A43;
    }

    /* Gallery Items */
    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        aspect-ratio: 4/3;
    }
    .gallery-item:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .gallery-item:hover img {
        transform: scale(1.08);
    }

    /* Gallery Overlay */
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(90, 74, 67, 0.7), transparent);
        color: #fff;
        padding: 20px;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(3px);
    }
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    .gallery-overlay p {
        margin: 0;
        font-size: clamp(14px, 2.5vw, 16px);
        font-weight: 600;
    }
    .category-tag {
        font-size: clamp(12px, 2vw, 14px);
        padding: 5px 10px;
        border-radius: 5px;
        margin-top: 8px;
    }
    .category-tag.maternity { background: #FFB6C1; }
    .category-tag.kids { background: #87CEEB; }
    .category-tag.newborn { background: #98FB98; }
    .category-tag.family { background: #FFD700; }

    /* Modal Styling */
    .modal.fade .modal-dialog {
        transition: transform 0.3s ease-out;
        transform: scale(0.8);
    }
    .modal.show .modal-dialog {
        transform: scale(1);
    }
    .modal-dialog {
        max-width: 80vw; /* Reduced to ensure modal doesn't take full width */
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background: transparent;
        border: none;
        box-shadow: none;
        position: relative;
        display: inline-block;
        width: auto; /* Let content dictate width */
    }
    .modal-body {
        padding: 0;
    }
    .modal-body img {
        width: 100%;
        max-width: 600px; /* Fixed max-width for better control */
        max-height: 70vh; /* Reduced max-height */
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        animation: zoomIn 0.3s ease-in-out;
    }
    .btn-close {
        position: absolute;
        top: -15px;
        right: -15px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        z-index: 10;
    }
    .btn-close:hover {
        opacity: 1;
    }
    @keyframes zoomIn {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }
    .modal-backdrop {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(8px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .gallery-section {
            padding: 60px 15px;
        }
        .filter-buttons {
            flex-direction: column;
            gap: 8px;
        }
        .section-title {
            font-size: clamp(1.8em, 4vw, 2.2em);
        }
        .modal-dialog {
            max-width: 90vw;
        }
        .modal-body img {
            max-width: 500px;
            max-height: 60vh;
        }
        .btn-close {
            top: -10px;
            right: -10px;
            width: 25px;
            height: 25px;
        }
    }
    @media (max-width: 480px) {
        .gallery-section {
            padding: 40px 10px;
        }
        .modal-dialog {
            max-width: 95vw;
        }
        .modal-body img {
            max-width: 300px;
            max-height: 50vh;
        }
        .btn-close {
            top: -8px;
            right: -8px;
            width: 20px;
            height: 20px;
        }
    }

/* Contact Section */
.contact-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@supports not (backdrop-filter: blur(12px)) {
    .contact-section {
        background: rgba(255, 255, 255, 0.9);
    }
}

.contact-section h1 {
    font-size: clamp(2.5em, 5.5vw, 3.5em);
    font-weight: 800;
    background: linear-gradient(45deg, #5A4A43, #7A665E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.contact-section .intro-text {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .intro-text p {
    font-size: clamp(16px, 2.8vw, 18px);
    color: #5A4A43;
    font-weight: 500;
}
.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-link i {
    font-size: 1.4rem;
}

.contact-link.whatsapp {
    background: linear-gradient(45deg, #25D366, #20b358);
    color: #fff;
}

.contact-link.whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.contact-link.location {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.contact-link.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(255, 142, 83, 0.2));
    transition: opacity 0.3s ease;
    opacity: 0;
}

.contact-link.location:hover::before {
    opacity: 1;
}

.contact-link.location:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

.contact-link.instagram {
    background: linear-gradient(45deg, #E1306C, #c13584);
    color: #fff;
}

.contact-link.instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(225, 48, 108, 0.3);
}

.contact-link.youtube {
    background: linear-gradient(45deg, #FF0000, #cc0000);
    color: #fff;
}

.contact-link.youtube:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
}

.contact-link.google {
    background: linear-gradient(45deg, #4285F4, #3267d6);
    color: #fff;
}

.contact-link.google:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.3);
}

.contact-link.facebook {
    background: linear-gradient(45deg, #1877F2, #1565c0);
    color: #fff;
}

.contact-link.facebook:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.3);
}

.contact-link.twitter {
    background: linear-gradient(45deg, #1DA1F2, #1a91da);
    color: #fff;
}

.contact-link.twitter:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(29, 161, 242, 0.3);
}


/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.form-group {
    position: relative;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #5A4A43;
    font-size: clamp(15px, 2.2vw, 17px);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(122, 102, 94, 0.5);
    background: #fff;
}

.contact-form label {
    position: absolute;
    top: 16px;
    left: 18px;
    color: #967F78;
    font-size: clamp(15px, 2.2vw, 17px);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label,
.contact-form input:focus + label,
.contact-form textarea:focus + label {
    top: -12px;
    left: 14px;
    font-size: clamp(13px, 2vw, 15px);
    color: #5A4A43;
    background: rgba(255, 255, 255, 0.95);
    padding: 2px 8px;
    border-radius: 6px;
}

.contact-form button {
    background: linear-gradient(45deg, #5A4A43, #7A665E);
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    color: #fff;
    font-size: clamp(17px, 2.8vw, 19px);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #7A665E, #9A8276);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(122, 102, 94, 0.4);
}

.contact-form button i {
    font-size: 20px;
}

/* Contact Info (Contact Section) */
.contact-section .contact-info {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-section .contact-card {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



@supports not (backdrop-filter: blur(8px)) {
    .contact-section .contact-card {
        background: rgba(255, 255, 255, 0.85);
    }
}

.contact-section .contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section .contact-card p {
    margin: 0;
    font-size: clamp(15px, 2.3vw, 17px);
    color: #5A4A43;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-section .contact-card a {
    color: #5A4A43;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-section .contact-card a:hover {
    color: #FFB6C1;
}

.contact-section .contact-card i {
    font-size: 24px;
    color: #5A4A43;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-section .contact-card a:hover i {
    color: #FFB6C1;
    transform: scale(1.2);
}

/* Footer */
footer {
    padding: 40px 20px;
    background: rgba(246, 245, 241, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-icon.twitter {
    background: linear-gradient(45deg, #1DA1F2, #1a91da);
}

.footer-icon.twitter:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(29, 161, 242, 0.3);
}

.footer-icon.instagram {
    background: linear-gradient(45deg, #E1306C, #c13584);
}

.footer-icon.instagram:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(225, 48, 108, 0.3);
}

.footer-icon.pinterest {
    background: linear-gradient(45deg, #E60023, #cb1d1d);
}

.footer-icon.pinterest:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(230, 0, 35, 0.3);
}

.footer-icon.youtube {
    background: linear-gradient(45deg, #FF0000, #cc0000);
}

.footer-icon.youtube:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.3);
}

.footer-icon.linkedin {
    background: linear-gradient(45deg, #0A66C2, #0958a8);
}

.footer-icon.linkedin:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(10, 102, 194, 0.3);
}

.footer-icon i {
    font-size: 1.5rem;
    color: #fff;
}
@supports not (backdrop-filter: blur(10px)) {
    footer {
        background: rgba(246, 245, 241, 0.8);
    }
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-nav a {
    font-size: clamp(14px, 2.2vw, 16px);
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover {
    color: #7A665E;
    transform: scale(1.05);
    text-decoration: underline;
}

footer p {
    font-size: clamp(12px, 2vw, 14px);
    color: #4d3f36;
}

/* Popup Overlay */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@supports not (backdrop-filter: blur(10px)) {
    .contact-popup-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}

.contact-popup-overlay.active {
    display: flex;
    opacity: 1;
}

/* Popup Content */
.contact-popup-overlay .popup-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Close Button */
.contact-popup-overlay .popup-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: rgba(90, 74, 67, 0.9);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.contact-popup-overlay .popup-close-btn:hover {
    background: #5A4A43;
    transform: scale(1.1);
}

.contact-popup-overlay .popup-close-btn:focus {
    outline: 2px solid #7A665E;
}

/* Popup Title and Subtitle */
.contact-popup-overlay .popup-title {
    font-size: clamp(1.5em, 3.5vw, 1.8em);
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-popup-overlay .popup-subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* Contact Info (Popup) */
.contact-popup-overlay .contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    font-size: clamp(13px, 2.2vw, 15px);
    color: #f0f0f0;
}

.contact-popup-overlay .contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-popup-overlay .contact-info strong {
    color: #fff;
    font-weight: 600;
}

.contact-popup-overlay .contact-info a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-popup-overlay .contact-info a:hover {
    color: #FFB6C1;
    text-decoration: underline;
}
.popup-button {
    background: linear-gradient(45deg, #5A4A43, #7A665E);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.popup-button:hover {
    background: linear-gradient(45deg, #7A665E, #9A8276);
    transform: scale(1.05);
}

.popup-button i {
    font-size: 1.2rem;
}
/* Popup Buttons */
.contact-popup-overlay .popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-popup-overlay .popup-button {
    background: linear-gradient(45deg, #5A4A43, #7A665E);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-popup-overlay .popup-button:hover {
    background: linear-gradient(45deg, #7A665E, #9A8276);
    transform: scale(1.05);
}

.contact-popup-overlay .popup-button i {
    font-size: 18px;
}

.contact-popup-overlay .popup-button.whatsapp {
    background: linear-gradient(45deg, #25D366, #20b958);
}

.contact-popup-overlay .popup-button.whatsapp:hover {
    background: linear-gradient(45deg, #20b958, #1aa34a);
}

/* Quote Section */
.quote-section {
    padding: 2rem 0; /* Existing padding, adjust if needed */
}

.quote-section .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

.quote-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #4d3f36;
    margin-bottom: 1rem;
}

.quote-section hr {
    width: 100px;
    border: 2px solid #e91e63;
    margin: 0.5rem auto 1.5rem;
}

.quote-section .popup-button {
    display: inline-block; /* Ensure button behaves as a block for centering */
    padding: 0.75rem 1.5rem;
    background: #e91e63; /* Consistent with your slider button color */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.quote-section .popup-button a {
    color: #fff;
    text-decoration: none;
}

.quote-section .popup-button:hover {
    background: #d81b60; /* Slightly darker shade for hover */
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-section h2 {
        font-size: 2rem;
    }

    .quote-section .popup-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quote-section h2 {
        font-size: 1.5rem;
    }

    .quote-section .popup-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* WhatsApp Button */
.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #25D366;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.15);
}

.my-float {
    font-size: 36px;
    color: #fff;
}

/* Media Queries */
@media (max-width: 1024px) {
    .contact-section {
        margin: 60px 20px;
        padding: 40px 20px;
    }
    .contact-section h1 {
        font-size: clamp(2.2em, 5vw, 3em);
    }
    .contact-form {
        max-width: 100%;
    }
    .contact-section .contact-card {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .contact-page header {
        height: 10vh;
    }
    .logo {
        top: 10px;
        left: 10px;
    }
    .logo img {
        height: 50px;
    }
    .hamburger {
        width: 35px;
        height: 25px;
        top: 15px;
        right: 15px;
    }
    .overlay-menu a {
        font-size: clamp(1.2em, 3vw, 1.5em);
    }
    .contact-section {
        margin: 40px 15px;
        padding: 30px 15px;
    }
    .contact-section .intro-text {
        padding: 10px 15px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 14px;
    }
    .contact-form button {
        padding: 14px 25px;
        font-size: clamp(16px, 2.5vw, 18px);
    }
    .contact-popup-overlay .popup-content {
        padding: 20px;
        width: 90vw;
    }
    .contact-popup-overlay .popup-title {
        font-size: clamp(1.3em, 3vw, 1.6em);
    }
    .contact-popup-overlay .popup-subtitle,
    .contact-popup-overlay .contact-info {
        font-size: clamp(12px, 2.2vw, 14px);
    }
    .contact-popup-overlay .popup-button {
        padding: 10px 15px;
        font-size: clamp(13px, 2.2vw, 15px);
    }
    .contact-popup-overlay .popup-close-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: -12px;
        right: -12px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin: 30px 10px;
        padding: 20px 10px;
    }
    .contact-section h1 {
        font-size: clamp(1.8em, 4.5vw, 2.5em);
    }
    .contact-section .intro-text p {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }
    .contact-form button {
        padding: 12px 20px;
        font-size: clamp(15px, 2.3vw, 17px);
    }
    .contact-section .contact-card {
        min-width: 100%;
    }
    .contact-section .contact-card p {
        font-size: clamp(14px, 2.2vw, 16px);
    }
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    .my-float {
        font-size: 30px;
    }
    .contact-popup-overlay .popup-content {
        padding: 15px;
    }
    .contact-popup-overlay .popup-buttons {
        gap: 10px;
    }
}

/* Contact Section Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Info (Left Side) */
.contact-section .contact-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Form (Right Side) */
.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0;
}

/* Contact Cards */
.contact-section .contact-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@supports not (backdrop-filter: blur(8px)) {
    .contact-section .contact-card {
        background: rgba(255, 255, 255, 0.85);
    }
}

.contact-section .contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section .contact-card p {
    margin: 0;
    font-size: clamp(15px, 2.3vw, 17px);
    color: #5A4A43;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-section .contact-card a {
    color: #5A4A43;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-section .contact-card a:hover {
    color: #FFB6C1;
}

.contact-section .contact-card i {
    font-size: 24px;
    color: #5A4A43;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-section .contact-card a:hover i {
    color: #FFB6C1;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-section .contact-info,
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    .contact-section .contact-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-container {
        gap: 20px;
    }
    .contact-section .contact-card p {
        font-size: clamp(14px, 2.2vw, 16px);
    }
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }
    .contact-form button {
        padding: 12px 20px;
        font-size: clamp(15px, 2.3vw, 17px);
    }
}


/* teams */
 /* Team Cards */
 .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
  }
  .team-card {
    position: relative;
    background: linear-gradient(135deg, #fff, #fef7f7);
    border-radius: 1rem;
    padding: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffe4e1;
  }
  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(114, 91, 88, 0.2);
  }
  .team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff8e53;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
  }
  .team-card:hover img {
    transform: scale(1.05);
  }
  .team-card h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .team-card p {
    font-size: 0.9rem;
    color: #718096;
  }
  .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 142, 83, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .team-card:hover::before {
    opacity: 1;
  }

  /* services000 */
  .services-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
  }
  .service {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  }
  .service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
  }
  .service-content {
    padding: 1.5rem;
    width: 100%;
  }
  .service-content h2 {
    font-size: 1.6rem;
    color: #e91e63;
    margin-bottom: 1rem;
  }
  .service-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .service-content button {
    padding: 0.75rem 1.5rem;
    background-color: #e91e63;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  .service-content button a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .service-content button:hover {
    background-color: #d81b60;
  }
  @media (min-width: 768px) {
    .service {
      flex-direction: row;
    }
    .service-image {
      flex: 1;
      height: 300px;
    }
    .service-content {
      flex: 1;
      min-width: 300px;
    }
  }
  @media (max-width: 768px) {
  
    .services-section {
      padding: 0.5rem;
    }
    .service {
      margin-bottom: 1.5rem;
    }
    .service-image {
      height: 200px;
    }
    .service-content {
      padding: 1rem;
    }
    .service-content h2 {
      font-size: 1.4rem;
    }
    .service-content p {
      font-size: 0.9rem;
    }
    .service-content button {
      padding: 0.6rem 1.2rem;
    }
    .service-content button a {
      font-size: 0.9rem;
    }
  }
  @media (max-width: 400px) {
    .service-content h2 {
      font-size: 1.2rem;
    }
    .service-content p {
      font-size: 0.85rem;
    }
    .service-content button {
      padding: 0.5rem 1rem;
    }
    .service-content button a {
      font-size: 0.85rem;
    }
  }

  /* blogs */
   .blog-section {
            padding: 80px 20px;
            background: linear-gradient(to bottom, #F6F5F1, #ffffff);
        }
        .blog-section h2 {
            font-size: clamp(2em, 4.5vw, 2.8em);
            font-weight: 600;
            color: #4d3f36;
            text-align: center;
            margin-bottom: 40px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            border-image: linear-gradient(135deg, #f97316, #fb7185) 1;
        }
        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }
        .blog-card:hover .blog-image {
            transform: scale(1.1);
            opacity: 0.9;
        }
        .blog-card .card-body {
            padding: 20px;
        }
        .blog-meta {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 10px;
            display: block;
        }
        .blog-card h3 {
            font-size: clamp(1.2em, 2.5vw, 1.5em);
            font-weight: 700;
            color: #4d3f36;
            margin-bottom: 12px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            transition: color 0.3s ease;
        }
        .blog-card:hover h3 {
            color: #f97316;
        }
        .blog-card p {
            font-size: 1rem;
            color: #5A4A43;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .blog-button {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #f97316, #fb7185);
            color: white;
            padding: 10px 20px;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .blog-button:hover {
            background: linear-gradient(135deg, #e55e0d, #e53e3e);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .blog-button i {
            margin-right: 8px;
        } 
   @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh;
                padding-top: 70px;
            }
            .hero-content h1 {
                font-size: clamp(2rem, 4vw, 3.5rem);
            }
            .hero-content p {
                font-size: clamp(1rem, 2vw, 1.2rem);
            }
            .blog-section {
                padding: 60px 15px;
            }
            .blog-section h2 {
                font-size: clamp(1.8em, 4vw, 2.2em);
            }
            .blog-image {
                height: 180px;
            }
            .blog-card h3 {
                font-size: clamp(1.1em, 2.3vw, 1.3em);
            }
        }
        @media (max-width: 480px) {
            .hero-section {
                min-height: 50vh;
                padding-top: 60px;
            }
            .blog-section {
                padding: 40px 10px;
            }
            .blog-image {
                height: 160px;
            }
            .blog-card h3 {
                font-size: clamp(1em, 2.2vw, 1.2em);
            }
        }
  /* FAQ */
  .faq-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .faq-category h2 {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
  }
  .faq-category h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ff6f91);
    position: absolute;
    bottom: -8px;
    left: 0;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .faq-item {
    background: linear-gradient(180deg, #fff, #f9f9f9);
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }
  .faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    margin: 0;
    background: linear-gradient(90deg, #ffe4e1, #fff);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .faq-item h4:hover {
    background: linear-gradient(90deg, #ffcad4, #ffe4e1);
    color: #e91e63;
  }
  .faq-item h4 i {
    color: #e91e63;
    font-size: 1rem;
  }
  .faq-item h4::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s ease;
  }
  .faq-item.active h4::after {
    transform: rotate(180deg);
  }
  .faq-item p {
    padding: 1rem 1.5rem;
    margin: 0;
    display: none;
    background-color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .faq-item.active p {
    display: block;
  }

  @media (min-width: 768px) {
    .faq-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .faq-section {
      padding: 2rem;
    }
    .faq-category h2 {
      font-size: 2.2rem;
    }
    .faq-item h4 {
      font-size: 1.2rem;
    }
    .faq-item p {
      font-size: 1rem;
    }
  }
  @media (max-width: 768px) {
    .faq-section {
      padding: 1rem;
    }
    .faq-category h2 {
      font-size: 1.8rem;
    }
    .faq-item h4 {
      font-size: 1rem;
      padding: 0.8rem 1.2rem;
    }
    .faq-item p {
      font-size: 0.9rem;
      padding: 0.8rem 1.2rem;
    }
  }
  @media (max-width: 400px) {
    .faq-category h2 {
      font-size: 1.6rem;
    }
    .faq-item h4 {
      font-size: 0.95rem;
      padding: 0.7rem 1rem;
    }
    .faq-item p {
      font-size: 0.85rem;
      padding: 0.7rem 1rem;
    }
    .faq-item h4 i {
      font-size: 0.9rem;
    }
  }