:root {
    --primary: #20D6FB;
    --primary-light: rgba(111, 66, 193, 0.1);
    --accent: #1ED2F7;
    --accent-light: rgba(255, 107, 107, 0.1);
    --bg: #f9f9f9;
    --dark: black;
    --text: #222;
    --text-light: #555;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --linear: linear-gradient(135deg, var(--primary), var(--text));

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

.hero-wrapper {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
}

/* Hero Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-background {
        object-position: 70% center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.premium-navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    z-index: 1000;
    border: 1px solid var(--primary);
    border-radius: 15px;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

@media (min-width: 992px) {
    .navbar-nav.nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.call-now-btn {
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
    font-weight: 600;
    padding: 10px 10px !important;
    transition: all 0.3s ease;
}

.call-now-btn:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.call-now-btn a{
    text-decoration: none;
    color: inherit;
}
.navbar-toggler {
    border: 2px solid var(--accent) !important;
    padding: 8px 10px !important;
    border-radius: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991.98px) {
    .premium-navbar {
        top: 15px;
        padding: 12px 20px;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        margin-top: 15px;
        padding: 20px;
        border: 1px solid var(--accent);
    }

    .nav-link {
        text-align: center;
        margin: 8px 0;
        padding: 12px !important;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: rgba(93, 188, 223, 0.1);
    }

    .call-now-btn {
        width: 100%;
        margin-top: 10px;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 150px;
    text-align: center;
}

.company-name {
    font-size: clamp(2.5rem, 2vw, 4rem);
    font-weight: 650;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1.3px;
    text-shadow: 2px 2px 4px rgba(83, 135, 157, 0.792);
}

.company-name span {
    color: var(--accent);
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--white);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-buttons a {
    text-decoration: none;
    color: inherit;
}

.btn-premium {
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--text));
    color: var(--white);
}

.btn-secondary {
    background: black;
    color: var(--white);
}

.btn-premium:hover {
    transform: translateY(-5px);
}

.social-floating {
    position: fixed;
    right: 30px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--text);
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateX(-10px) scale(1.1);
    background: var(--text);
    color: var(--accent);
}

@media (max-width: 992px) {
    .social-floating {
        right: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        height: 90vh;
        min-height: 600px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .btn-premium {
        width: 100%;
        max-width: 300px;
    }

    .social-floating {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .premium-navbar {
        top: 10px;
        width: 95%;
    }

    .social-floating {
        right: 10px;
        gap: 8px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
    width: 100%;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1 1 auto;
    max-width: 120px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--text));
    border-radius: 2px;
}

@media (max-width: 576px) {

    .section-title::before,
    .section-title::after {
        max-width: 40px;
    }
}

@media (max-width: 768px) {

    .section-title::before,
    .section-title::after {
        max-width: 40px;
    }
}

.feature-box {
    padding: 10px;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    /* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15); */

}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(111, 66, 193, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    background: #141313;
    color: #20D6FB;
    box-shadow: 0 4px 10px rgba(92, 168, 218, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: #00d2ff;
    color: #181616;
    transform: rotateY(180deg);
}

/* Button Group */
.custom-btn-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    min-width: 150px;
    transition: background 0.2s ease;
}

.custom-btn i {
    margin-right: 6px;
    font-size: 16px;
}

/* WhatsApp Button */
.custom-btn-whatsapp {
    background: black;
    color: #fff;
}

.custom-btn-whatsapp:hover {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/* Contact Button */
.custom-btn-contact {
    background: #1ED2F7;
    color: #000;
}

.custom-btn-contact:hover {
    background: #20BEEA;
}

/* Modern Service Cards CSS */
.services {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a0a3c;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

.services-section {
    padding: 5rem 0;
    background-color: #f9fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.service-card {
    height: 270px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-bg {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.service-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    color: #fff;
    gap: 0.8rem;
}

.service-btn-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Base button */
.service-btn {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}
.service-btn a{
 text-decoration: none;
 color: inherit;
    
}

/* Outline style */
.service-btn.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Primary */
.service-btn.primary:hover {
    background: #fff;
    color: #000;
}

/* Secondary */
.service-btn.secondary {
    opacity: 0.85;
}

.service-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

/* Mobile stack */
@media (max-width: 576px) {
    .service-btn-group {
        flex-direction: column;
    }

    .service-btn {
        width: 100%;
    }
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .service-card {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem;
    }

    .service-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
    }

    .service-card {
        height: 260px;
        margin-bottom: 1.2rem;
    }

    .service-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        height: 240px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* Button container */
.service-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Base button */
.service-btn {
    color: #ffffff;
    padding: 6px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 10px;
    /* pill style */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.25s ease;
    backdrop-filter: 10px;
    border: 2px solid var(--bg);
    background: transparent;
}

/* Icons */
.service-btn i {
    font-size: 0.75rem;
}

/* Hover state */
.service-btn:hover {
    background: var(--linear);
    color: var(--bg);
    transform: translateY(-1px);
    border: #000;
}

/* Optional: slightly tighter on mobile */
@media (max-width: 480px) {
    .service-btn {
        padding: 5px 10px;
        font-size: 0.72rem;
    }
}

/* Booking Section Styles */
.booking {
    /*margin: 60px 0;*/
    position: relative;
    z-index: 10;
}

.booking-row {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-img {
    background: url('../image/book.jpeg') center/cover no-repeat;
    min-height: 500px;
}

.booking-form {
    background: linear-gradient(135deg, rgba(30, 210, 247, 0.08) 0%, rgba(173, 122, 44, 0.08) 100%), #fff;
    padding: 40px !important;
}

.booking-input {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    padding: 12px 15px;
    width: 100%;
    font-size: 0.95rem;
}

.booking-input:focus {
    border-color: #1ED2F7;
    box-shadow: 0 0 8px rgba(30, 210, 247, 0.3);
    outline: none;
}

.booking-btn {
    background: linear-gradient(135deg, #1ED2F7, #222222) !important;
    border: none;
    color: white !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 14px;
    font-size: 1rem;
    width: 100%;
}

.booking-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white !important;
}

.booking-col {
    margin-bottom: 20px;
}

/* Make sure form elements are visible */
.booking-form form {
    display: block !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-img {
        min-height: 300px;
    }
    
    .booking-form {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .booking {
        margin: 40px 0;
    }
    
    .booking-form {
        padding: 20px !important;
    }
}


/* Testimonial Section Background */
.testimonial-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../image/about2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Creates the fixed/parallax effect */
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
    margin-top: 20px;
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg);
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}


/* Testimonial Card */
.testimonial-card {
    border: none;
    border-radius: 12px;
    background-color: #f9fafb;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Rating Stars */
.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Client Info */
.testimonial-client-info {
    display: flex;
    align-items: center;
}

.testimonial-client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-client-details h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.testimonial-client-details p {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Carousel Customization */
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.testimonial-carousel .carousel-control-prev {
    left: -20px;
}

.testimonial-carousel .carousel-control-next {
    right: -20px;
}

.testimonial-carousel .carousel-control-prev:hover,
.testimonial-carousel .carousel-control-next:hover {
    background-color: #d1fae5;
    opacity: 1;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
    filter: invert(48%) sepia(13%) saturate(1031%) hue-rotate(130deg) brightness(95%) contrast(85%);
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.testimonial-carousel .carousel-indicators {
    bottom: -50px;
}

.testimonial-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    margin: 0 4px;
}

.testimonial-carousel .carousel-indicators button.active {
    background-color: #00d2ff;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-carousel .carousel-control-prev {
        left: 10px;
    }

    .testimonial-carousel .carousel-control-next {
        right: 10px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial-title {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }
}

/* Integration Note */
.testimonial-integration-note {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f1f5f9;
    border-radius: 8px;
    font-size: 0.85rem;
}

.testimonial-integration-note h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.testimonial-integration-note code {
    background-color: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.reach-us {
    color: #000;
}

.reach-us .section-title {
    font-weight: 700;
    font-size: 1.9rem;
}

.reach-us .lead {
    font-size: 1rem;
    
}


.reach-us .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #20D6FB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reach-us .icon-box:hover {
    transform: scale(1.1);
}

.reach-us .fw-bold {
    color: #000;
}

.reach-us .map-box iframe {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-modern {
    background-color: black;
    color: #e6e6e6;
    padding-top: 20px;
    padding-bottom: 5px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* margin-top: 80px; */
    border-top: 2px solid #1ED2F7;
}

.footer-modern .footer-logo-main {
    width: auto;
    height: 80px;
    transition: all 0.3s ease;
    justify-content: center;
}

.footer-modern .footer-logo-main:hover {
    transform: translateY(-3px);
}

.footer-modern .women-owned-logo {
    max-height: 90px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.footer-modern .women-owned-logo:hover {
    transform: scale(1.05);
}
.footer-modern .ft-sm{
    font-size: 0.9rem;
    color: #999;
}


.footer-modern .footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.footer-modern .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #1ED2F7;

}

.footer-modern .footer-links {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
}

.footer-modern .footer-links li {
    margin-bottom: 10px;
}

.footer-modern .footer-links li i {
    color: #1ED2F7;
}


.footer-modern .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-modern .footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-modern .contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-modern .contact-info i {
    color: #1ED2F7;
    width: 25px;
    font-size: 1.1rem;
}

.footer-modern .contact-info a{
    text-decoration: none;
}

.footer-modern .phone-number {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-modern .phone-number:hover {
    color: #1ED2F7;
}

.footer-modern .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-modern .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #e6e6e6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-modern .social-icons a:hover {
    background-color: #1ED2F7;
    color: #1a1a2e;
    transform: translateY(-5px);
}

.footer-modern .copyright-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
    font-size: 0.9rem;

}

.footer-modern .newsletter-form {
    margin-top: 15px;
}

.footer-modern .newsletter-input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    width: 100%;
}

.footer-modern .newsletter-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: #1ED2F7;

}

.footer-modern .newsletter-btn {
    background-color: #1ED2F7;
    color: #1a1a2e;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.footer-modern .newsletter-btn:hover {
    background-color: #1ED2F7;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .footer-modern .footer-logo-main,
    .footer-modern .women-owned-logo {
        max-height: 70px;
    }

    .footer-modern {
        padding-top: 35px;
    }
}

@media (max-width: 768px) {
    .footer-modern .footer-title {
        margin-top: 30px;
    }

    .footer-modern .footer-logo-main,
    .footer-modern .women-owned-logo {
        max-height: 60px;
    }

    .footer-modern .social-icons {
        justify-content: center;
    }
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 10px;
    font-weight: 600;
    text-align: center;
    background-color: black;
    color: var(--accent);
    /* background: #ffffff; */
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Unique class names to prevent overriding */
.diamond-social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 8px;
    z-index: 1000;
    background: transparent;
}

.diamond-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: white;
    font-size: 20px;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.diamond-social-icon i {
    color: white;
    pointer-events: none;
}

.diamond-social-icon:hover {
    background: #1ED2F7;
    transform: translateX(-5px);
    box-shadow: 0 6px 15px rgba(30, 210, 247, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .diamond-social-sidebar {
        right: 10px;
        gap: 12px;
    }

    .diamond-social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .diamond-social-sidebar {
        right: 5px;
        gap: 10px;
    }

    .diamond-social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}