@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Philosopher&family=Poppins:wght@300&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

}

:root {
    --font-01: 'Poppins', sans-serif;
    --font-02: 'Philosopher', sans-serif;

    /* color  */
    --global-color-0: #B76E79;
    --global-color-1: #DCAE96;
    --global-color-2: #A9A9A9;
    --global-color-3: lightblue;
    --global-color-4: #f7f7f7;
    --global-color-5: #fff;
    --global-color-6: #A9A9A9;
    --global-color-7: #BFD1FF;

}

/* sectionFirst */

.sectionFirst {
    padding: 12rem 0% 15rem;
}

.sectionFirst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/service_background.jpeg");
    z-index: -1;
    opacity: .7;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectionFirst h1 {
    text-align: center;
    font-size: 5rem;
    font-family: var(--font-02);
}

/* aboutServices */

.aboutServices {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aboutServices .ser-litText {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-02);
    text-align: center;
    color: var(--global-color-1);
}

.aboutServices .ser-text {
    text-align: center;
    margin-bottom: 2rem;
}

.aboutServices .ser-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    color: #fff;
}

.aboutServices .ser-box .box {
    position: relative;
    top: 0;
}

.aboutServices .ser-box .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--global-color-1);
    z-index: 1;
    opacity: .1;
    transition: all .4s ease;
    border-radius: 2%;


}

.aboutServices .ser-box .box:hover:after {
    width: 0;
}

.aboutServices .ser-box .box .img {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.aboutServices .ser-box .box .img img {
    width: 100%;
    border-radius: 2%;
    height: 100%;

}

.aboutServices .ser-box .box .boxinfo {
    position: absolute;
    bottom: 5%;
    left: 3%;
    z-index: 2;

}

.aboutServices .ser-box .box .ser-name {
    padding-bottom: .8rem;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-02);

}

.aboutServices .ser-box .box .ser-discription {
    font-family: var(--font-02);
}

/* Container to group slider and pricing section */
.main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
}

/* --------img slider------- */

/* Make the video responsive */
.responsive-video {
    width: 100%; /* Makes the video stretch to fit the container */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes extra spacing below the video */
    object-fit: cover; /* Ensures the video fills the space properly */
}

/* Center the video inside a container */
.video-container {
    width: 100%;
    max-width: 900px; /* Adjust max width as needed */
    margin: 0 auto; /* Centers the video */
    overflow: hidden;
    border-radius: 10px; /* Optional: Adds rounded corners */
}

.imgslidertext {
    /* height: 100vh; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;

}

.imgslidertext .imgslider {
    width: 400px;
    box-shadow: 0 0 18px #1a1a1a;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
    padding: 18rem 0;
    margin: 1rem;

}

.imgslidertext .imgslider .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    height: 100%;
    z-index: -1;
    transition: all .5s ease;
    top: 0;
    left: 0;
}

.imgslidertext .imgslider .prev {
    position: absolute;
    left: 0%;
    top: 50%;
    margin-left: 1rem;
    color: wheat;
    transition: .4s;
    cursor: pointer;

}

.imgslidertext .imgslider .next {
    position: absolute;
    right: 0%;
    top: 50%;
    margin-right: 1rem;
    color: wheat;
    transition: .4s;
    cursor: pointer;

}

.imgslidertext .imgslider .prev:hover,
.imgslidertext .imgslider .next:hover {
    transform: scale(2);
    color: var(--global-color-1);
    transition: all 4 ease;

}

.imgslidertext .slideText {
    width: 60%;
    /* display: flex;
    flex-direction: column;
    gap: 1rem; */
    overflow-y: hidden;
    margin: 1rem;


}

.imgslidertext .slideText .st-heading {
    color: var(--global-color-0);
    font-size: 2.5rem;
    font-family: var(--font-02);
    font-weight: 0;
}

.imgslidertext .slideText .lit-text {}

.imgslidertext .slideText .lit-service {
    padding: 3rem 0 0;

}

.imgslidertext .slideText .lit-service .textinfo {
    padding: 1rem 0 0;
}

.imgslidertext .slideText .lit-service .textinfo .ti-head {
    font-family: var(--font-02);
    color: black;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* Pricing container to ensure alignment */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
}
.pricing-box {
    background-color: #f8f8f8; /* Light gray background */
    border: 2px solid #d1a0a7; /* Soft pinkish border */
    padding: 10px; /* Reduced padding */
    border-radius: 8px;
    width: 240px; /* Smaller width */
    height: 200px; /* Reduced height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text vertically */
    align-items: center; /* Centers text horizontally */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-family: Arial, sans-serif;
    color: #333;
    margin: 10px auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center; /* Center text */
    overflow: hidden; /* Prevent text from overflowing */
}

.content-container {
    max-width: 900px;
    margin: 40px auto 0; /* Ensures spacing between pricing and content */
    text-align: center;
    padding: 20px;
}

.paragraph {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.lit-text {
    font-size: 12px; /* Smaller font */
    line-height: 1.4;
    transition: color 0.3s ease-in-out;
}

.para {
    font-size: 14px; /* Adjust size as needed */
    line-height: 1.6; /* Improve readability */
    text-align: center; /* Keep it aligned */
    color: rgba(255, 255, 255, 0.7); /* Dim text for better blending */
    max-width: 80%;
    margin: 0 auto;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center aligns content */
    text-align: center;
}

/* Quick Links List */
.box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px; /* Space between Quick Links and Icons */
}

.box ul li {
    margin: 5px 0;
}

.box ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

/* Quick Links Hover Effect */
.box ul li a:hover {
    color: #B76E79; /* Rose Gold */
}

.icons {
    display: flex;
    justify-content: center; /* Center icons */
    align-items: center;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.social-icon {
    font-size: 15px; /* Adjusted icon size */
    color: #555; /* Neutral dark gray */
    background-color: white; /* Background for contrast */
    border-radius: 50%; /* Makes it circular */
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15); /* Subtle shadow */
}


/* Hover Effect - Light Up */
.f-para:hover {
    background-color: #e88a98; /* Soft pink on hover */
    box-shadow: 0px 0px 15px rgba(255, 100, 100, 0.6); /* Softer, more natural glow */
    color: white; /* Contrast for readability */
    transform: scale(1.02); /* Slight scaling effect for better user interaction */
}


.box:hover .boxinfo p, 
.box:hover .boxinfo .ser-name {
    color: #B76E79; /* Rose gold */
}

.logo {
    font-weight: bold;
    font-size: 14px; /* Smaller font */
    color: #d17a83; /* Elegant pink tone */
    margin-top: 5px;
    transition: color 0.3s ease-in-out;
}

.st-heading {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color: #d17a83; /* Elegant pink tone */
    color: white;
    border-radius: 8px;
    width: fit-content;
    margin: 20px auto;
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
} 

/* Hover Effects */
.pricing-box:hover {
    transform: translateY(-3px); /* Slightly lifts the box */
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15); /* Deeper shadow */
}

.lit-text:hover,
.logo:hover {
    color: #b3535c; /* Darker pink tone */
}

.st-heading:hover {
    background-color: #e88a98; /* Lighter pink when hovered */
    box-shadow: 0px 0px 12px rgba(255, 100, 100, 0.8); /* Glowing effect */
}

.title:hover, .title:hover .subtitle {
    color: #B76E79; /* Rose gold color */
}

.social-icon:hover {
    background-color: #B76E79; /* Rose Gold Background */
    color: white; /* Icon turns white */
    transform: scale(1.1); /* Slight pop effect */
}



.imgslidertext .slideText .lit-service .textinfo .des {}

/* footer */

footer{
    
}