:root {
    /* Colors */
    --primary: #d63384;
    --accent: #f6e9d7;
    /* --bg-light-: #fff5f8; */
    --bg-light: #fff0f5;
    --text-dark: #333333;
    --text-light: #666666;

    /* Font Sizes */
    --fs-h1: clamp(2.5rem, 5vw, 4rem);
    --fs-h2: 2rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    /* Spacing */
    --section-padding: 60px 20px;

    /* Radius & Shadow */
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.btn {
    background: var(--primary);
    color: white;
    padding: 12px 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.btn:hover {
    background: #c2185b;
}

.card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/********************************************** navbar styling ***************************************************/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;

}

.navbar.scrolled {
    background: var(--bg-light);
    border-bottom: 1px solid var(--primary);
    transition: all 0.3s ease;
}

.wrapper1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.navbar .logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text img {
    width: 50px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.nav-links a.active::before {
    width: 100%;
}

.nav-links a {
    position: relative;
    display: inline-block;
    padding: 8px 12px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.nav-links a.active::before {
    width: 100%;
}


/****************************************** navbar sidebar in mobile styling ******************************************/
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-sidebar {
    display: none;
}

/****************************************** hero section styling ******************************************/
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0px;
    background: var(--bg-light);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 150px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: var(--fs-h1);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 20px 0;
}

.hero-button {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.hero-image {
    max-width: 100%;
    border-radius: var(--radius);
    position: relative;
}

.hero-image img {
    flex: 1;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.hero-image img:nth-child(1) {
    width: 200px;
    transform: rotate(-15deg);
}

.hero-image img:nth-child(2) {
    width: 200px;
    transform: rotate(15deg);
}

.hero-image img:nth-child(3) {
    width: 200px;
    transform: rotate(-15deg);
}

/****************************************** slider choose us ************************************/
.slider-choose-us {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: var(--section-padding);
    display: flex;
    align-items: center;
}

.slide {
    display: flex;
    align-items: center;
    animation: slider 20s infinite linear;
}

.slide span {
    padding: 20px;
}

@keyframes slider {
    0% {
        transform: translateX(-0%);
    }

    100% {
        transform: translateX(-100%);
    }

}

.slide-text {
    font-size: 4rem;
    user-select: none;
    font-weight: 600;
    color: var(--text-light);
}

.dot {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
}

/************************************ why choose wrapaura styling *****************************************/
.why-choose-us {
    display: grid;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background: var(--bg-light);
    padding: var(--section-padding);
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
}

.why-choose-us-card {
    background: #fff9f9;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    /* display: flex;
    justify-content: center;
    flex-direction: column; */
}

.why-choose-us-card:hover img {
    transform: scale(1.05);
}

.features-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.features-card {
    height: 200px;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .3s ease;
}

.all-info {
    padding: 15px 0px;
}

.all-info h3 {
    font-size: 1.3rem;
    margin-top: 10px;
    font-weight: 600;
}

.all-info p {
    margin-top: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* horizontal line */
.line {
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/***************************************** service section styling *********************************************/
.our-services {
    padding: var(--section-padding);
}

.service-provide {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.service-card h2 {
    text-align: center;
    font-size: 2.5rem;
}

.services-detailed {
    width: 100%;
    background: #fff9f9;
    margin: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s linear;
}

.services-detailed:hover{
    transform: translateY(-5px);
}


.imageee {
    width: 70%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.imageee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detailed {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detailed h2 {
    margin: 15px 0;
    font-weight: 600;
}

.service-detailed p {
    font-weight: 500;
    color: var(--text-light);
}

.service-detailed a {
    color: var(--text-dark);
    margin: 15px 0;
}

.service-detailed a:hover {
    color: var(--primary);
}

/*********************************** gallery section styling *********************************/

.gallery {
    padding: var(--section-padding);
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
}

.gallery-item {
    background: var(--bg-light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.gallery-card {
    width: 100%;
    height: 250px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all .3s linear;
}

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

.image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.overlay-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .3s ease;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image:hover .overlay-caption {
    opacity: 1;
}

/************************************ contact styling *************************************/

.contact-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}

.contact-section .section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 600px) {
    .form-group {
        flex-direction: row;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #c2185b;
}


/************************************ footer styling **************************************/

footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-brand h2 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 15px;
}

.social-icons a {
    color: #ccc;
    margin-right: 10px;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ff8ba7;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ff8ba7;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 40px;
}


/* responsive website */
@media (max-width:1138px) {
    .hero-button {
        gap: 30px;
    }
}

@media (max-width:1068px) {
    
    .hero-flex {
        justify-content: center;
    }

    .service-card h2 {
        font-size: 2rem;
    }

    .service-detailed h2{
        font-size: 1.5rem;
    }
}


@media (max-width: 768px) {

    .hero-section img {
        width: 90%;
        margin-bottom: 20px;
    }

    .hero-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .navbar-links {
        display: none;
    }

    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background-color: #111;
        padding-top: 60px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .mobile-sidebar.active {
        left: 0;
    }

    .mobile-sidebar ul {
        list-style: none;
        padding: 0;
        text-align: left;
    }

    .mobile-sidebar li {
        margin: 20px;
    }

    .mobile-sidebar a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

    .service-card h2 {
        font-size: 1.5rem;
    }

    .imageee {
        width: 100%;
    }

    .services-detailed {
        flex-direction: column;
    }

    .service-detailed h2 {
        font-size: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 30px;
    }

}
