@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Lora:ital,wght@0,400..700;1,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* General Styling */
body {
    font-family: 'Lora', serif;
    margin: 0 0 0 0;
    /* padding-top: 20px; */
    background-color: #F5C1CC;
    overflow-x: hidden;
}

/* Header */
.header {
    width: 100%;
    height: fit-content;
    background-color: #33333379;
    margin-bottom: 1rem;
}

.header ul {
    display: flex;
    align-items: center;
    padding-right: 20px;
    list-style: none;
    margin-top: 0;
    margin-left: 80%;
}

.instagram {
    margin-right: 2rem;
    font-size: 2rem;
}

.facebook {
    margin-right: 2rem;
}

.header ul li {
    margin: 15px 10px;
}

.header ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
}

.instagram i:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.facebook:hover {
    color: #5182eb;
}

.whatsapp-button:hover {
    color: #25D366;
}


/* Navigation Bar */
nav {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-color: #F9F9F9;
    margin-bottom: 1rem;
    padding: 8px 16px;
    border-bottom: 2px solid #B0B0B0;
    border-radius: 50px;
}

nav img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

nav span {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 400;
    flex-grow: 1;
}

nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #F7CAC9;
}


/* Carousel */
.carosal {
    width: 100%;
    height: 700px;
    background-image: url(./Photos/carosal1.png);
    background-repeat: no-repeat;
}

.carosal-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.537);
    display: flex;
    align-items: center;
}

.carosal-text {
    width: 30%;
    margin-left: auto;
    margin-right: 2rem;
    color: #FFFFFF;
}

.carosal-text h1 {
    font-family: 'Lora', serif;
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 10px;
}

.carosal-text span {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 400;
}

/* Founder Section */
.founder {
    width: 100%;
    padding: 3rem 0;
}

.founder h1 {
    font-family: 'Lora', serif;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 0 auto 2rem;
}

.founder-details {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.founder-content {
    width: 50%;
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    padding: 0 2rem;
}

.founder-content h1 {
    align-items: start;
    font-size: 32px;
    width: fit-content;
    margin-left: 0;
    margin-bottom: 1rem;
}

.founder-image {
    width: 400px;
    background-color: #FFFFFF;
    padding: 1rem;
    margin: 0 2rem;
}

.founder-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Services Section */
.services {
    width: 100%;
    padding: 3rem 0;
    margin: 0;
}

.services h1 {
    font-family: 'Lora', serif;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 0 auto 2rem;
}

.services-cards,
.services-cards-2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    
}

.service-item1,
.service-item2,
.service-item3,
.service-item4,
.service-item5,
.service-item6 {
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-item1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Photos/services1.png');
}

.service-item2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Photos/services2.png');
}

.service-item3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Photos/services3.png');
}

.service-item4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Photos/service4.png');
}

.service-item5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Photos/services5.png');
}

.service-item6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Photos/services6.png');

}

.service-item1 h2 {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0;
}

.service-item2 h2,
.service-item3 h2,
.service-item4 h2,
.service-item5 h2{
    font-family: 'Lora', serif;
    font-size: 24px;
    color: #FFFFFF;
    margin: .2rem 0;
}

.service-item1 p {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: .3rem;
    margin-bottom: .2rem;
}

.service-item2 p,
.service-item3 p,
.service-item4 p,
.service-item5 p{
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 1rem;
    margin-bottom: 1rem;   
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}

.service-item6 .service-list li {
    list-style: none;
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
}

.service-list li {
    list-style: none;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    position: relative;
    text-align: left;
}

.service-list li:before {
    content: '\2713';
    color: #FFFFFF;
    font-weight: bold;
    margin-right: 10px;
}


.service-item1::before,
.service-item2::before,
.service-item3::before,
.service-item4::before,
.service-item5::before,
.service-item6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.service-item1:hover::before,
.service-item2:hover::before,
.service-item3:hover::before,
.service-item4:hover::before, 
.service-item5:hover::before,
.service-item6:hover::before {
    transform: scale(1.15);
}

.service-item1 > *,
.service-item2 > *,
.service-item3 > *,
.service-item4 > *,
.service-item5 > *,
.service-item6 > * {
    position: relative;
    z-index: 1;
}

/* Testimonials Carousel Styles */
.testimonials {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem .8rem 2rem 0;
    height: 350px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}
.testimonial-carousel {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}
.testimonial-slide {
    width: 340px;
    min-width: 220px;
    height: fit-content;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(59,130,246,0.13);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.testimonial-header {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0.7rem;
}
.testimonial-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(59,130,246,0.10);
    border: 2px solid #e0e7ff;
}
.testimonial-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #3b82f6;
    margin-top: 1.1rem;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 0.1rem;
}
.testimonial-message {
    font-size: 1.08rem;
    color: #333;
    font-family: 'Lora', serif;
    margin: 0.2rem 0 0 0;
    line-height: 1.5;
    text-align: left;
}
.testimonial-slide.active {
    opacity: 1;
    z-index: 3;
    border-radius: 30px;
    transform: translate(-50%, -50%) scale(1.08);
    pointer-events: auto;
}
.testimonial-slide.left {
    opacity: 0.7;
    z-index: 2;
    transform: translate(-160%, -50%) scale(0.85);
}
.testimonial-slide.right {
    opacity: 0.7;
    z-index: 2;
    transform: translate(60%, -50%) scale(0.85);
}

.testimonials-header {
    font-family: 'Lora', serif;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 5rem 0 0 1.5rem;
}

.about-footer {
    font-family: 'Lora', serif;
    width: 100%;
    background: #cd51c651;
    color: #ffffff;
    text-align: center;
    padding: 1.2rem 0 1rem 0;
    margin-top: 3rem;
    font-size: 1rem;
    letter-spacing: 1px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

footer {
    position: relative;
    display: block;
    width: 100%;
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
    margin-left: 90rem;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


/* Responsive Design */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
    nav {
        width: 90%;
        padding: 8px;
    }

    .carosal-text { 
        width: 40%;
        margin-right: 1rem;
    }

    .founder-details {
        flex-direction: column;
        align-items: center;
    }

    .founder-content {
        width: 80%;
        padding: 0 1rem;
    }

    .founder-image {
        width: 100%;
        max-width: 400px;
        margin: 2rem 0;
    }

    .services-cards,
    .services-cards-2 {
        padding: 0 1rem;
    }
}

/* Tablet (900px and below) */
@media (max-width: 900px) {

    .header {
        width: 100%;
        height: fit-content;
        background-color: #33333379;
        margin-bottom: 1rem;
    }

    .header ul {
        display: flex;
        align-items: center;
        padding-right: 20px;
        list-style: none;
        margin-top: 0;
        margin-left: 75%;
    }

    .instagram {
        margin-right: 1rem;
    }

    .facebook {
        margin-right: 1rem;
    }

    nav {
        flex-direction: column;
        align-items: center;
        width: 80%;
        border-radius: 30px;
        padding: 10px;
    }

    nav span {
        font-size: 20px;
        margin: 1rem 0;
        /* text-align: center; */
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav li {
        margin: 0 10px 10px;
    }

    .carosal {
        width: 100%;
        height: 400px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .carosal-container {
        height: 400px;
    }

    .carosal-text {
        width: 80%;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .carosal-text h1 {
        font-size: 32px;
        padding-top: 100px;
    }

    .carosal-text span {
        font-size: 16px;
    }

    .founder-content {
        width: 90%;
        font-size: 1.1rem;
    }

    .founder-image img {
        height: 350px;
    }

    .services-cards,
    .services-cards-2 {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .service-item1,
    .service-item2,
    .service-item3,
    .service-item4,
    .service-item5,
    .service-item6 {
        width: 50%;
        height: 300px;
    }

    .service-item1 h2,
    .service-item2 h2,
    .service-item3 h2,
    .service-item4 h2,
    .service-item5 h2,
    .service-item6 h2 {
        font-size: 20px;
        bottom: 0.5rem;
    }

    .testimonials {
        height: 500px;
        margin: 2rem 0;
    }

    .testimonial-slide {
        width: fit-content;
        min-width: 200px;
        padding: 2rem 2rem;
    }

    .testimonial-slide.left {
        opacity: 0.7;
        z-index: 2;
        transform: translate(-160%, -50%) scale(0.85);
    }
    .testimonial-slide.right {
        opacity: 0.7;
        z-index: 2;
        transform: translate(60%, -50%) scale(0.85);
    }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
    
    .header {
        width: 100%;
        height: fit-content;
        background-color: #33333379;
        margin-bottom: 1rem;
    }

    .header ul {
        display: flex;
        align-items: center;
        padding-right: 20px;
        list-style: none;
        margin-top: 0;
        margin-left: 63%;
    }

    .instagram {
        margin-right: 1rem;
    }

    .facebook {
        margin-right: 1rem;
    }

    nav {
        width: 80%;
        border-radius: 20px;
        padding: 8px;
    }

    nav img {
        width: 40px;
        height: 40px;
    }

    nav span {
        font-size: 18px;
        margin-left: -1rem;
    }

    nav ul li a {
        font-size: 13px;
        padding: 1px;
    }

    .carosal {
        height: 250px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .carosal-container {
        height: 250px;
    }

    .carosal-text {
        width: 90%;
        padding: 0 0.5rem;
    }

    .carosal-text h1 {
        font-size: 24px;
        padding-top: 60px;
    }

    .carosal-text span {
        font-size: 14px;
    }

    .founder h1 {
        font-size: 24px;
    }

    .founder-content {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .founder-image img {
        height: 250px;
    }

    .services h1 {
        font-size: 24px;
    }

    .service-item1,
    .service-item2,
    .service-item3,
    .service-item4,
    .service-item5,
    .service-item6 {
        width: 50%;
        height: 300px;
    }

    .service-item1 h2,
    .service-item2 h2,
    .service-item3 h2,
    .service-item4 h2,
    .service-item5 h2,
    .service-item6 h2 {
        font-size: 16px;
    }

    .testimonials {
        height: 600px;
        margin: 2rem 0;
    }

    .testimonial-slide {
        width: fit-content;
        min-width: 200px;;
        padding: 2rem 2rem;
    }

    .testimonial-slide.left {
        opacity: 0.7;
        z-index: 2;
        transform: translate(-160%, -50%) scale(0.85);
    }
    .testimonial-slide.right {
        opacity: 0.7;
        z-index: 2;
        transform: translate(60%, -50%) scale(0.85);
    }
}

@media (max-width: 400px) {
    
    .header {
        width: 100%;
        height: fit-content;
        background-color: #33333379;
        margin-bottom: 1rem;
    }

    .header ul {
        display: flex;
        align-items: center;
        padding-right: 20px;
        list-style: none;
        margin-top: 0;
        margin-left: 50%;
    }

    .instagram {
        margin-right: .5rem;
    }

    .facebook {
        margin-right: .5rem ;
    }

    nav {
        width: 80%;
        border-radius: 20px;
        padding: 8px;
    }

    nav img {
        width: 40px;
        height: 40px;
    }

    nav span {
        font-size: 18px;
        margin-left: -1rem;
    }

    nav ul li a {
        font-size: 13px;
        padding: 1px;
    }

    .carosal {
        height: 250px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .carosal-container {
        height: 250px;
    }

    .carosal-text {
        width: 90%;
        padding: 0 0.5rem;
    }

    .carosal-text h1 {
        font-size: 24px;
        padding-top: 60px;
    }

    .carosal-text span {
        font-size: 14px;
    }

    .founder h1 {
        font-size: 24px;
    }

    .founder-content {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .founder-image img {
        height: 250px;
    }

    .services h1 {
        font-size: 24px;
    }

    .service-item1,
    .service-item2,
    .service-item3,
    .service-item4,
    .service-item5,
    .service-item6 {
        width: 70%;
        height: 300px;
    }

    .service-item1 h2,
    .service-item2 h2,
    .service-item3 h2,
    .service-item4 h2,
    .service-item5 h2,
    .service-item6 h2 {
        font-size: 16px;
    }

    .testimonials {
        height: 600px;
        margin: 2rem 0;
    }

    .testimonial-slide {
        width: fit-content;
        min-width: 200px;;
        padding: 2rem 2rem;
    }

    .testimonial-slide.left {
        opacity: 0.7;
        z-index: 2;
        transform: translate(-160%, -50%) scale(0.85);
    }
    .testimonial-slide.right {
        opacity: 0.7;
        z-index: 2;
        transform: translate(60%, -50%) scale(0.85);
    }
}

