
:root {
    --primary-color: #FF85A2;
    --secondary-color: #FFC0D3;
    --accent-color: #FFD700;
    --text-color: #2C3E50;
    --light-bg: #FFF5F7;
    --glass-bg: #ffffff26;
    --glass-border: #ffffff2e;
    --primary-rgb: 255, 133, 162;
    --neumorphic-shadow: 0 8px 32px #0000001a;
}

::-webkit-scrollbar {
    width:10px
    }
    
    ::-webkit-scrollbar-track {
    background:var(--light-bg)
    }
    
    ::-webkit-scrollbar-thumb {
    background:var(--primary-color);
    border-radius:5px;
    transition:all .3s ease
    }
    
    ::-webkit-scrollbar-thumb:hover {
    background:var(--secondary-color)
    }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background: #fff;
    line-height: 1.6;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: .75rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50d9;
}

/* Navbar */
.navbar {
    background: #fffffffa;
    padding: 0.5rem 0;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    padding: .5rem 1rem !important;
    color: var(--text-color) !important;
    transition: all .3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    box-shadow: 0 4px 15px #ff85a233;
    transition: all .3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #ff85a24d;
}

/* Hero Section */
.hero {
    background: linear-gradient(#ffffffeb, #ffffffeb), url(https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80);
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2c3e50d9;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: .5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #2c3e50b3;
}

/* Benefit Cards */
.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 8px 20px #0000000f;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px #0000001a;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all .3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    color: #fff;
}

.benefit-card h4 {
    color: #222;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: #666;
    font-size: .95rem;
    margin: 0;
}

/* Service Cards (Used for Team) */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--neumorphic-shadow);
    transition: all .4s ease;
    margin-bottom: 2rem;
    border: 1px solid #0000000d;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: .75rem;
}

.service-card p {
    font-size: .95rem;
    color: #2c3e50b3;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: var(--neumorphic-shadow);
    border: 1px solid #0000000d;
    height: 100%;
}

.testimonial-card p {
    font-size: .95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2c3e50d9;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: .25rem;
}

/* Contact Items */
.contact-item {
    transition: all .3s ease;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all .3s ease;
    box-shadow: 0 5px 15px #00000014;
    border: 1px solid #0000000d;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2);
}

.contact-text {
    flex-grow: 1;
}

.contact-text h5 {
    margin-bottom: .5rem;
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
}

.contact-text p {
    color: #444;
    font-size: .95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-card {
    margin-top: 0;
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px #0000001a;
    border: 1px solid #0000001a;
    position: relative;
    overflow: hidden;
}

.social-circle-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    transition: all .3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.social-circle-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.2);
}

.contact-form-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(var(--primary-rgb), 0.05);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h3 {
    color: #333;
    font-family: 'Lora', serif;
    margin-bottom: .5rem;
    font-weight: 600;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: .5rem;
    font-size: .9rem;
}

.contact-form-card .form-control {
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    color: #333;
    padding: 12px 15px;
    font-size: .95rem;
    background-color: #fff;
    box-shadow: inset 0 1px 3px #0000000d;
}

.contact-form-card .form-control::placeholder {
    color: #999;
    font-size: .9rem;
}

.contact-form-card .form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(var(--primary-rgb), 0.15);
    border-color: rgba(var(--primary-rgb), 0.4);
    background-color: #fff;
}

/* Map */
.map-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 3rem;
    box-shadow: 0 15px 30px #0000001a;
}

.map-wrapper h3 {
    color: #222;
    font-family: 'Lora', serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
    letter-spacing: -.5px;
}

.map-wrapper h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px #00000014;
}

/* Footer */
.footer {
    background: var(--light-bg);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.footer-heading {
    color: var(--primary-color);
    font-family: 'Lora', serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--primary-color);
}

.footer p, .footer li {
    font-size: .9rem;
    color: #2c3e50cc;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all .3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-text {
    color: #555;
    font-size: .95rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--primary-color);
    font-size: .9rem;
}

.footer-links li {
    transition: all .3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-link {
    color: #555;
    text-decoration: none;
    transition: all .3s ease;
    font-size: .95rem;
}

.footer-link:hover {
    color: var(--primary-color);
}

.newsletter .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.newsletter .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: .375rem 1rem;
}

.footer-divider {
    border-color: rgba(var(--primary-rgb), 0.1);
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}

.footer-copyright {
    color: #777;
    font-size: .85rem;
}

.footer-link-small {
    color: #777;
    font-size: .85rem;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-link-small:hover {
    color: var(--primary-color);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn .8s ease-out forwards;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero {
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
}
