/*Styles import from google*/
<style>
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
</style>
{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root{
--white-colour: #fff;
--dark-colour:#05000c;
--primary-colour:#4d2f2f;
--secondry-colour:#e9a949;
--lightpink-colour:#FFbcd9;
--mediumgray-colour:#ccc;

--font-size-s:0.9rem;
--font-size-n:1rem;
--font-size-m:1.12rem;
--font-size-l:1.5rem;
--font-size-xl:2rem;
--font-size-xxl:2.3rem;

--font-weight-normal:400;
--font-weight-medium:500;
--font-weight-semibold:600;
--font-weight-bold:700;

--border-radius-s: 8px;
--border-radius-m: 30px;
--border-radius-circle: 50%;

--site-max-width: 1300px;
}

html {
    scroll-behavior: smooth;
}

ul{
    list-style: none;
}
a { 
    text-decoration: none;
}

button {
    cursor: pointer;
    border:none;
    background: none;
}

img {
    width: 100% ;
}

.sectioncontent {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondry-colour);

}

header{
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-colour);
}

header .navbar{
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-menu{
    display: flex;
    gap: 10px;
}

.navbar .nav-logo .logo-text{
    color: var(--white-colour);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-colour);
    font-size:var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}    

.navbar .nav-menu .nav-link:hover {
    color: var(--primary-colour);
    background: var(--secondry-colour);
}

.navbar :where(#menu-close-button, #menu-open-button){
    display: none;

}
   /*styling for new section here onwards*/
.hero-section {
    min-height: 100vh;
    background: var(--primary-colour);
    display: flex;
    align-items: center;
    padding-top: 100px; /* offset for fixed navbar*/
}

.hero-section .section-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-details {
    flex: 1;
    color: var(--white-colour);
    padding: 20px;
}

.hero-section .hero-details .title {
    font-size: 2.5rem;
    font-family: "Miniver", cursive;
    color: var(--secondry-colour);
    margin-bottom: 20px;
}

.hero-section .hero-details .subtitle {
    font-size: 1.8rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
    color: var(--white-colour);
}

.hero-section .hero-details .description {
    font-size: var(--font-size-m);
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--white-colour);
    max-width: 90%;
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .buttons .contact-me {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--primary-colour);
    border-radius: var(--border-radius-m);
    background: var(--secondry-colour);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .buttons .contact-me:hover {
    color: var(--white-colour);
    border-color: var(--lightpink-colour);
    background: transparent;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    max-width: 500px;
    margin-right:30px;

    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-m);
}
/*about section styling */
.about-section {
    padding: 120px 0;
    background: var(--lightpink-colour);
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details  .section-title {
    padding: 0;
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link {
    color: var(--primary-colour);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover{
    color: var(--secondry-colour);

}
/*services offered styling*/
.services-offered-section{
    color: var(--white-colour);
    background: var(--lightpink-colour);
    padding: 50px 0 100px;
}

.services-offered-section .services-list {
    display: flex;
    gap: 110px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.services-offered-section .services-list .services-item{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: calc(100% / 3 - 110px);
}

.services-offered-section .services-list .services-item .service-image {
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;

}

.services-offered-section .services-list .name {
    margin: 12px;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.services-offered-section .services-list .services-item .text {
    font-size: var(--font-size-m);
}

/*Testimonials section*/
.testimonials-section {
    padding: 50px 0 100px;
    background: var(--lightpink-colour);

}

.testimonials-section .slider-container {
    margin: 0 auto;
    max-width: 1200px;
}

.testimonials-section .testimonial {
    user-select: none;
    display: flex;
    padding: 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonials-section .testimonial .user-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);

}

.testimonials-section .testimonial .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
    line-height: 25px;

}

.testimonials-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondry-colour);
}

.testimonials-section .swiper-slide-button {
    margin-top: -50px;
    color: var(--secondry-colour);
    transition: all 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover {
    color: var(--primary-colour);
}

/* Contact Us */
.contact-section {
    padding: 50px 0 100px;
    background: var(--lightpink-colour);
}

.contact-section .section-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-section .contact-info-list .contact-info i {
    font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-colour);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--mediumgray-colour);
    box-sizing: border-box;
}

.contact-section .contact-form{
    max-width: 50%;
}

.contact-section .contact-form .form-input:focus {
    border-color: var(--secondry-colour );

}

.contact-section .contact-form textarea.form-input {
    height: 100px;
    padding: 12px;
    resize: vertical;
}

.contact-section .contact-form .submit-button {
    padding: 10px 26px;
    margin-top: 10px;
    color: var(--white-colour);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary-colour);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary-colour);
    transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
    color: var(--primary-colour);
    background: transparent;

}

/*Footer Styling*/
.footer-section {
    padding: 20px 0;
    background: var(--dark-colour);
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
    color: var(--white-colour);
    transition : 0.2s ease;
}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover, .footer-section .policy-text .policy-link:hover {
    color: var(--secondry-colour);
}

.footer-section .policy-text .seperator {
    margin: 0 5px;
    color: var(--white-colour);

}

/*mobile styling for 1024px*/
@media screen and (max-width: 1024px) {
    .services-offered-section .services-list {
        gap: 60px;
    }

    .services-offered-section .services-list .services-item {
         width: calc(100% / 3 - 60px);
    }
}


/*mobile styling*/
@media screen and (max-width: 900px) {
    :root{
        --font-size-m:1rem;
        --font-size-l:1.3rem;
        --font-size-xl:1.5rem;
        --font-size-xxl:1.8rem;
    }

    body.show-mobile-menu header::before{
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: #05000c rgba(0, 0, 0, 00.2s);
    }
    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);

    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        color: var(--white-colour);

    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -100%;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-colour);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;

    }

.navbar .nav-menu .nav-link {
    color: var(--dark-colour);
    display: block;
    margin-top: 17px;
    
    font-size: var(--font-size-l);
}

.hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
}

.hero-section .hero-details :is(.subtitle,.description), .about-section .about-details .contact-section .contact-form {
    max-width: 100%;
}

.hero-section .hero-details .buttons {
    justify-content: center;
}

.hero-section.hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
}

.about-section .section-content{
    gap: 70px;
    flex-direction: column-reverse;
    
}

.about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    
}

.services-offered-section .services-list {
        gap: 30px;
    }

    .services-offered-section .services-list .services-item {
         width: calc(100% / 2 - 30px);
    }

    .services-offered-section .services-list .services-item .service-image {
        max-width: 200px;
    }

    .contact-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
    }

    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;
    }
}

/*mobile styling for 640px*/
@media screen and (max-width: 640px) {
    .services-offered-section .services-list {
        gap: 60px;
    }
    .services-offered-section .services-list .services-item {
         width: 100%;
    }

     .testimonials-section .slider-container {
    padding: 0 16px; /* slight horizontal padding */
  }

  .testimonials-section .testimonial {
    padding: 20px 10px;
    max-width: 100%;
  }

  .testimonials-section .user-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .testimonials-section .swiper-slide-button {
    display: none; /* keep hidden on small screens */
  }

  .testimonials-section .feedback {
    font-size: 14px;
    line-height: 20px;
  }

  .testimonials-section .name {
    font-size: 16px;
  }
}

    



