:root {
    --primary-color: #ED1D7E;
    --secondary-color: #F5F5F5;
    --text-color: #181818;
    --font-family: 'Arial', sans-serif;
}

.navbar {
    box-shadow: none !important;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent !important;
}

.navbar .navbar-nav .nav-link {
    color: white !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

/* Hover effect with star icon */
.navbar .navbar-nav .nav-link:hover::before {
    content: "\f005"; /* Star icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -15px;
    opacity: 1;
}

/* Active link underline */
.navbar .navbar-nav .nav-link.active {
    /*border-bottom: 2px solid white;*/
}

.navbar.scrolled .navbar-nav .nav-link.active {
    /*border-bottom: 2px solid rgba(0, 0, 0, 0.7);*/
}

.navbar .navbar-brand {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
    background-color: rgb(255, 255, 255) !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.7) !important;
}

.navbar.scrolled .navbar-brand {
    filter: none;
}

/* Hover effect for scrolled state */
.navbar.scrolled .navbar-nav .nav-link:hover::before {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5) !important;
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand {
    height:auto;
    width:150px;
}
#home {
    background-image: url("https://images.unsplash.com/photo-1669101602108-fa5ba89507ee?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax effect */
    height: 100vh;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Add a subtle overlay to improve text visibility */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Make sure the content is above the overlay */
#home .container {
    position: relative;
    z-index: 1;
}



.hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.hero-section .title {
    font-weight: 700;
}

.hero-section img {
    max-width: 300px;
    margin: 0 auto;
}

.cta-buttons {
    margin-top: 2rem;
}
.title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
}
#about {
    padding: 5rem 0;
}

#about h2 {
    margin-bottom: 1.5rem;
    position: relative;
    /*color: var(--primary-color);*/
}

#about h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color); /* Match your primary color */
}

.about-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper img {
    max-height: 650px; /* Sets a maximum height */
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    #about .row {
        flex-direction: column-reverse;
    }

    .about-image-wrapper {
        margin-top: 2rem;
    }

    .about-image-wrapper img {
        max-height: 300px;
    }
}



/* Owner section styling */
#owner {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

#owner h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

#owner h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.owner-image-wrapper {
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-image-wrapper img {
    max-height: 650px;
    object-fit: cover;
    width: 100%;
}

#owner-short-text, #owner-expanded-text, #short-text, #expanded-text {
    transition: all 0.3s ease-in-out;
}

#owner-expanded-text p, #expanded-text p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    #owner .row {
        flex-direction: column;
    }

    .owner-image-wrapper {
        margin-top: 2rem;
    }

    .owner-image-wrapper img {
        max-height: 300px;
    }
}


/* Services Section Styling */
#service {
    padding: 5rem 0;
    background-color: #fff;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subheading {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.heading-underline {
    height: 3px;
    width: 70px;
    background-color: var(--primary-color);
    margin: 1rem auto 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card:before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background-color: rgba(237, 29, 126, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(237, 29, 126, 0.08);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: #d5006d;
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .section-heading {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    #service {
        padding: 4rem 0;
    }

    .section-heading {
        font-size: 2rem;
    }

    .service-icon {
        height: 70px;
        width: 70px;
        font-size: 2rem;
    }
}


/* Contact Section Styling */
#contact {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
}

.contact-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: white;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-text a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-text a:hover {
    opacity: 0.8;
}

.social-links {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    padding: 3rem 2rem;
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.form-control, .form-select {
    border: 1px solid #e1e1e1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 29, 126, 0.15);
}

textarea.form-control {
    resize: none;
}

@media (max-width: 992px) {
    .contact-card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-info, .contact-form {
        padding: 2rem;
    }

    .contact-info {
        border-radius: 15px 15px 0 0;
    }

    #contact::before {
        height: 50px;
    }
}

/* Footer Section Styling */
#footer {
    background-color: #181818;
    color: white;
    padding: 2rem 0;
}
/* button color */
.primary {
    background-color: var(--primary-color);
    border: none;
}
.primary:hover {
    background-color: #d5006d;
}