html{
   max-width: 100%;
  overflow-x: hidden;
}

body {
     margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: #f6f8fa;
    color: #222;
   max-width: 100%;
  overflow-x: hidden;
}

header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 0;
}

.container.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}

.logo img {
    height: 2vw;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

nav .nav-links li a {
    text-decoration: none;
    color: #ed96bf;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

nav .nav-links li a.active,
nav .nav-links li a:hover {
    background: #ed96bf;
    color: #fff;
}


/* Triggers on screens smaller than tablet size */
@media (max-width: 768px) {
    
    /* 1. Allow header to grow vertically */
    .container.header-flex {
        flex-direction: column; /* Stack items vertically */
        height: auto;           /* Remove fixed height */
        padding: 16px;          /* Add breathing room */
        gap: 20px;              /* Space between logo and links */
    }

    /* 2. Fix the microscopic logo issue */
    .logo img {
        height: 40px;           /* Fixed height for mobile */
        width: auto;            /* Maintain aspect ratio */
    }

    /* 3. Stack the links */
    nav .nav-links {
        gap: 10px;              /* Reduce gap between links */
        width: 100%;            /* Full width for alignment */
        justify-content: center; /* Center links visually */
        flex-wrap: wrap;        /* Allow wrapping if many links */
    }

    /* 4. Make links easier to tap */
    nav .nav-links li a {
        display: block;         /* Better hit area */
        text-align: center;
        padding: 10px 16px;     /* Larger touch target */
    }
}

main {
    width: 100vw;
    max-width: 2500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
   
    
   
}

@media (max-width: 768px) {
    main{
        margin-top: 50px;}
    }


main div{
    margin-bottom: 100px;
}

footer {
    background: #ed96bf;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 48px;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.centered-video {
   
   display: block;
   width:60%;
   margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    
}

.centered-video video,
.centered-video iframe {
    border: 4px solid #ed96bf; /* Pink border */
    border-radius: 12px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .centered-video {
        width: 90%; /* Full width on smaller screens */
    }
}


.reviews-section {
    background: #fff0f7;
    border: 2px solid #ed96bf;
    border-radius: 16px;
    padding: 32px 24px;
    margin: 48px auto 0 auto;
    max-width: 700px;
    width: 70%;
    box-shadow: 0 2px 12px rgba(237,150,191,0.07);
    text-align: center;
}

.reviews-section h2 {
    color: #ed96bf;
    margin-bottom: 24px;
    font-size: 2rem;
}

.review {
    margin-bottom: 24px;
}

.review-text {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 8px;
    font-style: italic;
}

.reviewer {
    color: #ed96bf;
    font-weight: 600;
    font-size: 1rem;
}


.contact-cta {
    
    border-radius: 16px;
    padding: 32px 24px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

@media (max-width: 600px) {
    .contact-cta {
        width: 90%;
       margin-top: 0px;
    }
}

.contact-cta p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #ed96bf;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.cta-button:hover {
    background: #e05fa8;
}

h2 {
    color: #ed96bf;
    margin-bottom: 16px;
}

.hero{
    width:90%;
    margin-left: auto;
    margin-right: auto;
}

.hero,
.Customisation,
.setup {
    text-align: center;
}

.Customisation ul,
.setup ul,
.hero ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto 24px auto;
    color: #e05fa8;
}



.team-member {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff0f7;
    border: 2px solid #ed96bf;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 900px;
    margin: 40px auto;
}

.team-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ed96bf;
    background: #fff;
}

.team-info h2 {
    margin: 0 0 8px 0;
    color: #ed96bf;
    font-size: 2rem;
}

.team-info h3 {
    margin: 0 0 16px 0;
    color: #2d6cdf;
    font-size: 1.2rem;
    font-weight: 500;
}

.team-info p {
    color: #444;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 600px) {
    
    /* --- 1. Team Member Container (Switch to Vertical) --- */
    .team-member {
        flex-direction: column; /* Stack the photo and info vertically */
        text-align: center;     /* Center text and photo horizontally */
        gap: 24px;              /* Slightly smaller gap for mobile */
        padding: 24px 16px;     /* Reduce horizontal padding */
        margin: 20px auto;      /* Reduce vertical margin */
         max-width: 70%;
    }

    /* --- 2. Photo (Center and Ensure Visibility) --- */
    .team-photo {
        /* Photo size is good, but ensure it's centered */
        margin: 0 auto; 
    }

    /* --- 3. Info Block (Ensure Text Alignment) --- */
    .team-info h2,
    .team-info h3 {
        /* Remove the top margin on the first heading/name for a tighter stack */
        margin-top: 0; 
    }
}
.slideshow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px auto;
    max-width: 600px;
   
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

@media (max-width: 600px) {
    .slideshow-container {
        
        max-width: 90%;
        gap: 16px;
          margin: 40px auto;
          margin-bottom: 0px;
    max-width: 600px;
   
    border-radius: 16px;
    padding: 0px;
    }
}

.slide-images {
    width: 320px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(237,150,191,0.07);
    position: absolute;
    left: 0;
    top: 0;
}

.slide-btn {
    background: #ed96bf;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: #e05fa8;
}


.contact-form-container {
    max-width: 550px;
    margin: 0 auto 48px auto;
    background: #fff0f7;
    border: 2px solid #ed96bf;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(237,150,191,0.07);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    font-weight: 600;
    color: #ed96bf;
    margin-bottom: 4px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1.5px solid #ed96bf;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e05fa8;
    background: #fff7fb;
}

.contact-form .cta-button {
    background: #ed96bf;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form .cta-button:hover {
    background: #e05fa8;
}


@media (max-width: 600px) {
    
    .contact-form-container {
        /* Reduce the padding inside the form box */
        padding: 24px 16px;
        
        /* Ensure there's no unnecessary space to the side */
        margin: 0 16px 30px 16px; 
    }

    .contact-form {
        /* Slightly reduce the space between form elements */
        gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        /* Make padding slightly smaller to fit more in the viewport */
        padding: 8px;
    }
}


.pricing-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Change 'gap' to only have a horizontal value */
    column-gap: 20px; /* This keeps the side-by-side spacing */
    row-gap: 0;      /* This removes the vertical spacing between top and bottom items */
    margin-bottom: 0px;
    /* OR use the shorthand: gap: row column */
     gap: 0 20px; 
     margin-top: 30px;
}
.pricing-item {
    background: #fff;
    border: 2px solid #ed96bf; /* Matches your pink theme */
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item h3 {
    color: #ed96bf;
    margin-bottom: 10px;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.delivery-info {
    margin-top: 40px;
    padding: 20px;
    background-color: #fce4ec; /* Light pink background */
    border-radius: 10px;
}

/* Mobile Fixes for the Grid */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}