/*import Google font*/
/**@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');**/
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Oleo+Script&family=Poppins:ital,wght@0,500;0,600;0,700;1,400&family=Unbounded:wght@200..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root{
    /*colors*/
    --white-color:#fff;
    --dark-color:#252525;
    --primary-color:#f60707;
    --secondary-color:#1f2937;
    --light-pink-color:#faf4f5;
    --medium-gray-color:#ccc;

    /*font size*/
    --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*/
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;

      /*Border radius*/
      --border-radius-s: 8px;
      --border-radius-m: 30px;
      --border-radius-circle: 50%;

        /*site max width*/
    --site-max-width: 1300px;

}
html {
    scroll-behavior: smooth;
}
/* styling for whole site*/
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 5px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 10px 0 5px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
    color: var(--secondary-color);
}

.section-title ::after{
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);  
    background:var(--primary-color);
    
}


/*Navbar styling */
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-color);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
   
}

.navbar .nav-logo .logo-text{
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semi-bold);
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);   
    border-radius: var(--border-radius-m);
    transition:  0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--secondary-color);
    border-color: var(--secondary-color);
    background: var(--white-color);
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/*Hero Section  */
.hero-section {
    min-height: 100vh;

}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--secondary-color);
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    font-family: "Oleo Script", cursive;

   
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-semi-bold);
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size:var(--font-size-s);
}
.hero-section .hero-details .button {
    display: flex;
    gap: 15px;
}

.hero-section .hero-details .button a {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    background:var(--secondary-color);
    font-size: var(--font-weight-medium);
    transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .button .contact-us {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background: transparent;
}




.hero-section .hero-details .button .contact-us:hover {
    color: var(--white-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.hero-section .hero-image-wrapper { 
    max-width: 1000px;
     margin-right: 30px;
     }

/* About Section    */    
.about-section {
    padding: 120px 0;
    background: var(--light-pink-color);
} 

.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;
    justify-content: center;
    gap: 25px;

}

.about-section .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link :hover {
    color: var(--secondary-color);
}

.services {
    background:var(--white-color);
    color: var(--light-pink-color);
    text-align: center;
    padding: 50px 20px;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.service-container {
    display: flex;
    justify-content: center;
    height: 50%;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
}

.service-box {
    background: white;
    color: #111;
    border-radius: 20px;
    padding: 20px;
    width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    justify-content: space-between; 
}
/* 🔥 Blur all boxes when hovering container */
.service-container:hover .service-box {
    filter: blur(5px);
    transform: scale(0.9);
}

/* 🔥 Focus the hovered one */
.service-container .service-box:hover {
    filter: blur(0);
    transform: scale(1.2);
    z-index: 10;
}

/* 🔥 Move hovered to center */
.service-container {
    align-items: center;
}

.service-container .service-box:hover {
    position: relative;
}


.service-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}
.service-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}


.services .service-container .service-box .button{
       display: flex;              /* ✅ FIX */
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;            /* ✅ allows stacking */
    margin-top: 15px;
   
}



.services .service-container .service-box .button a{
 
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-size: var(--font-weight-medium);
    transition: 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.services .service-container .service-box .button .btnPHO:hover, 
.services .service-container .service-box .button .btnVIEW{
    color: var(--secondary-color);
    border-color:var(--secondary-color);
    background: transparent;
}
.services .service-container .service-box .button .btnVIEW:hover{
    color: var(--white-color);
    border-color:var(--secondary-color);
    background: var(--secondary-color);
}

/* Testimonials Section styling*/
.testimonials-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.testimonials-section .slider-wrapper {
     display: flex;
    justify-content: center;
    gap: 40px;
}

.testimonials-section .testimonial {
    display: flex;
    padding: 35px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
  
}

.testimonials-section .testimonial .user-image{
    width: 180px;
    height: 180px;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
    object-fit: cover;
}

.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(--secondary-color);
}

/* Gallery Section styling*/

.gallery-section {
    padding: 50px 0 100px;
}

.gallery-section .gallery-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
   
}
.gallery-section .gallery-list .gallery-item {
    
    width: calc(100% / 3 - 32px);
    
}

.gallery-section  .gallery-item .gallery-image {
    
    cursor: zoom-in;
    object-fit: cover;
    border-radius: var(--border-radius-m);
}

.gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.05);
    transition: 0.3s ease;
}
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    background-color: #e60000; /* match your red theme */
    color: white;
    border: 2px solid transparent;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    
   color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
}

/*career*/
.careers-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.careers-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.coming-soon {
    font-size: 20px;
    color: #e60000; /* matches your red theme */
    font-weight: bold;
}

/*contact*/

.contact-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}
.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-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray-color);
}
.contact-section .contact-form{
  max-width: 50%;
}
.contact-section .contact-form .form-input:focus {
    border-color: var(--primary-color);
}
    
.contact-section .contact-form textarea .form-input  {
     padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}
.contact-section .contact-form .submit-button {
    padding: 10px 26px;
    margin-top: 10px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--secondary-color);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--secondary-color);
    transition: 0.3s ease;
}
.contact-section .contact-form .submit-button:hover {
    color: var(--secondary-color);
   
    background: transparent;
    
}


/* Footer Section styling*/
.footer-section {
    padding: 20px 0;
    background: var(--secondary-color);

}
.footer-section .section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section :where( .copyright-text , .social-link, .policy-link, .developed-text){
    color: var(--white-color);
    font-size: var(--font-size-s);
}
.footer-section .social-link-list {
    display: flex;
    gap: 20px;
}
.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}


.footer-section .social-link-list .social-link :hover {
    color: var(--primary-color);
}





/* Responsive media queries code for max width 1024px*/
@media screen and (max-width: 1024px) {

}

/* Responsive media queries code for max width 900px*/ 
@media screen and (max-width: 900px) {
:root {
    --font-size-n: 1rem;
    --font-size-m: 1.3rem;
    --font-size-l: 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: rgba(0, 0, 0, 0.2);
 }


.navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-l);
}

    .navbar #menu-close-button {
        position: absolute;
        top: 30px;
        right: 30px;
    }

     .navbar #menu-open-button {
       color: var(--white-color);
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;  /* 👈 THIS is the fix */
        left: -300px;
        width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px ;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu{
         left: 0;
    }



    .navbar .nav-menu .nav-link {
        color: var(--dark-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 90px 80px 80px;
        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 .button{
        justify-content: center;
      }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .about-section .section-content{
        gap: 70px;
        flex-direction: column;
    }

     .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;

     }

     .gallery-section .gallery-list .gallery-item{
        width: calc(100% / 2 - 30px);
     }


     .contact-section .section-content {
        align-items: center;
        flex-direction: column-reverse;
     }
    
}

/* Responsive media queries code for max width 900px*/ 
@media screen and (max-width: 640px){
    .testimonials-section .slider-wrapper {
        margin: 0 0 30px;
    
    }

     .testimonials-section .swiper-slider-button {
       display: none;
    }

     .services .service-container {
        flex-direction: column;
    }

     .services .service-container .service-box {
        width: 100%;
    }


.services .service-container .service-box .button {
        flex-direction: column;     /* ✅ stack buttons */
        align-items: center;
    }

    .services .service-container .service-box .button a {
        width: 80%;
    }

     .gallery-section .gallery-list .gallery-item{
        width: 100%;
     }
     .footer-section .section-content, .services .service-container .service-box .button {
        flex-direction: column;
        gap: 20px;
        text-align: center;
     }
}

