@import "tailwindcss";

@theme {
    --font-sans: "Open Sans", "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --font-serif: "Roboto", "Open Sans", Arial, sans-serif;
}

:root {
    --primary-blue: #2196F3;
    /* Bright Sky Blue (replaces gold) */
    --primary-blue-dark: #1976D2;
    --primary-blue-light: #E3F2FD;
    --dark-bg: #0F2A47;
    /* Softer navy for headings only */
    --light-bg: #f8fbff;
}

body {
    font-family: var(--font-sans);
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--dark-bg);
    font-weight: 700;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
}


/* Open dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Optional: smooth effect */
.dropdown-menu {
    transition: all 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: all 0.2s ease;
}


/* breadcrum  start*/


.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

/* .breadcrumb-item a {
    text-decoration: none;
    color: #999;
} */

.breadcrumb-item.active {
    color: #000;
    font-weight: 500;
}



/* end */


.ser-icon {
    width: 120px;
}




.header-logo {
    width: 150px;
}


.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.logo-container img {
    width: 150px !important;
}

@media (min-width: 992px) {
    .hero-section {
        height: 90vh;
    }

    .hero-img {
        height: 90vh;
    }
}

/* input ,select {
    border: 1px solid black !important;
} */

/*  */

.hero {
    /* background: linear-gradient(rgba(26, 42, 68, 0.65), rgba(26, 42, 68, 0.65)), url(../assetes/images/banner.png) center / cover no-repeat; */
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(../assetes/images/banner.png) center / cover no-repeat; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}


.hero-badge {
    background: rgba(33, 150, 243, 0.12);
    color: var(--primary-blue-dark);
    border: 1px solid rgba(33, 150, 243, 0.45);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}


.book-apt {
    background: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-blue-dark);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-gold {
    background: var(--primary-blue);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
}


/* Treatment Cards */
.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    text-align: center;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.12);
    border-color: var(--primary-blue);
    color: var(--dark-bg);
}

.treatment-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.treatment-card:hover .icon-wrapper {
    background: var(--primary-blue);
    color: white;
}

.treatment-card i {
    width: 28px;
    height: 28px;
}

/* Testimonials */
.testimonial-card {
    border: 1px solid #eee;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.12) !important;
}

.hover-white:hover {
    color: white !important;
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
    box-shadow: none;
    background-color: #fff !important;
    border: 1px solid var(--primary-blue) !important;
}

/* Avatar Group */
.avatar-group img {
    border-width: 2px !important;
}

.ms-n2 {
    margin-left: -0.5rem !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out forwards;
}

:root {
    --primary-blue: #2196F3;
    /* Bright Sky Blue */
    --deep-blue: #0F2A47;
    --soft-bg: #f8fbff;
}

#treatments {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    color: #333;
}

.treatment-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.12);
    border-color: var(--primary-blue);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.treatment-card:hover .icon-box {
    background: var(--primary-blue);
    color: white;
}

.treatment-card h4 {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.accent-line {
    height: 3px;
    width: 50px;
    background: var(--primary-blue);
    margin: 1.5rem 0;
}

.section-tag {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 1rem;
}


.cta-premium {
    background: radial-gradient(circle at top right, #f7fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background element for texture */
.cta-premium::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(33, 150, 243, 0.08);
    border-radius: 50%;
}

.cta-card {
    background: #ffffff;
    border: 1px solid rgba(33, 150, 243, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.08);
    padding: 4rem 2rem;
}

.cta-title {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    color: var(--deep-blue);
    letter-spacing: -0.01em;
    line-height: 1.3;
    font-weight: 700;
}

.cta-btn {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-width: 1.5px;
}

/* Primary Blue Button */
.btn-gold {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-gold:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

/* WhatsApp & Visit Buttons */
.btn-white {
    background: white;
    border-color: #e0e0e0;
    color: #444;
}

.btn-white:hover {
    background: #f8fbff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.urgency-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary-blue-dark);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}