@import url('https://fonts.googleapis.com/css2?family=Ubuntu=Varela+Round&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --bg-colour: snow;
    --second-bg-color: linen;
    --text-colour: black;
    --main-colour: #0ef;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-colour);
    color: var(--text-colour);
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-colour);
    direction: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header.sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

.logo {
    font-size: 2.5rem;
    color: var(--text-colour);
    font-weight: 600;
    cursor: default;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-colour);
    margin-left: 4rem;
    transition: .3s;
}

.navbar a:hover {
    color: var(--main-colour);
}
.nav,
.navbar {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: right;
    column-gap: 15px;
}

/* Mobile Menu Button - Only shown on mobile */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1001;
    font-size: 2rem;
    color: var(--text-colour);
    background: transparent;
    border: none;
}

/* Mobile Sidebar - Only shown on mobile */
.mobile-sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: rgba(51, 51, 51, 0.95);
    overflow-x: hidden;
    transition: 0.5s;
    backdrop-filter: blur(5px);
}

.mobile-sidebar a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.7rem;
    color: var(--text-colour);
    display: block;
    transition: 0.3s;
    margin-left: 0;
}

.mobile-sidebar a:hover {
    color: var(--main-colour);
}

.mobile-close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--text-colour);
    cursor: pointer;
}

/* Media Query for Mobile */
@media screen and (max-width: 768px) {
    .navbar {
        display: none; /* Hide desktop navbar on mobile */
    }
    
    .mobile-menu-btn {
        display: block; /* Show mobile menu button */
    }
    
    /* Copy your existing navbar link styles to mobile sidebar */
    .mobile-sidebar a {
        font-size: 1.7rem;
        color: var(--text-colour);
        transition: .3s;
    }
    
    .mobile-sidebar a:hover {
        color: var(--main-colour);
    }
    
    .mobile-sidebar a.active {
        color: var(--main-colour);
    }
}



.header img {
    width: 4vw;
}

#menu-icon{
    font-size: 3.6rem;
    color: var(--text-colour);
    display: none;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img img {
    width: 30vw;
}
.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 2rem;

}

span {
    color: var(--main-colour);
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p {
    font-size: 1.6rem;

}



.social-media a:hover {
    background: var(--main-colour);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-colour);
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-colour);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-colour);
    font-size: 1.6rem;
    color: var(--bg-colour);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.btn:hover {
    box-shadow: none;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--second-bg-color);
}

.about--img img {
    width: 25;
}

.heading {
    text-align: center;
    font-size: 4.5rem;

}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 2.6rem;

}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.services h2 {
    margin-bottom: 5rem;

}
.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-container .services-box {
    flex: 1 1 30rem;
    background: var(--second-bg-color);
    box-shadow: 0 0 1rem beige
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .1rem solid var(--bg-colour);
    transition: .5s ease;
}

.services-container .services-box:hover {
    border-color: whitesmoke;
    transform: scale(1.02);
}


.services-box i {
    font-size: 7rem;
    color: var(--main-colour);
}

.services-box h3 {
    font-size: 2.6rem;
}

.services-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}
.services-box img {
    width: 20vw;
}

.sold-out {
    text-decoration: line-through;
    font-size: 1.9rem;
    color: red;
}
.sold-in {
    font-size: 2.5rem;
    color: black;   
}
.sub-menu {
    display: none;
}
.navbar ul li:hover .sub-menu {
    display: block;
    position: absolute;
    background-color: beige;
    margin-top: 15px;
    margin-left: 15px;
}

.gs h2 {
    margin-bottom: 5rem;
}

.gs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Changed from 'center' to 'flex-start' if you want left alignment */
  align-items: stretch; /* Crucial for equal height */
  gap: 2rem;
  width: 100%;
  padding: 20px;
  box-sizing: border-box; /* Fixes padding issues */
 
}

/* BOX FIXES */
.gs-container .gs-box {
  flex: 1 1 calc(33.333% - 2rem); /* Better calculation for 3 columns */
  min-width: 280px; /* Minimum width before wrapping */
  max-width: 400px; /* Maximum width */
  background: var(--second-bg-color);
  padding: 3rem 2rem 4rem;
  border-radius: 2rem;
  text-align: center;
  border: 1rem solid var(--bg-colour);
  transition: all 0.5s ease;
  box-sizing: border-box; /* Includes border in width calculation */
  position: relative; /* Needed for z-index */
  display: flex; /* Nested flex */
  flex-direction: column;
  justify-content: center; /* Vertical center content */
}

/* HOVER EFFECTS */
.gs-container .gs-box:hover {
  border-color: whitesmoke;
  transform: scale(1.03);
  z-index: 2;
}

/* RESPONSIVE FIXES */
@media (max-width: 900px) {
  .gs-container .gs-box {
    flex: 1 1 calc(50% - 2rem); /* 2 columns */
  }
}

@media (max-width: 600px) {
  .gs-container .gs-box {
    flex: 1 1 100%; /* 1 column */
    max-width: 100%;
  }
}

.gs-box i {
    font-size: 7rem;
    color: pink;
}

.gs-box h3 {
    font-size: 2.8rem;
}

.gs-box p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}

.contact h2 {
    margin-bottom: 3rem;

}

.contact form {
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}
.contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-colour);
    background: var(--second-bg-color);
    border-radius: .8rem;
    margin: .7rem 0;
}

.contact form .input-box input {
    width: 49%;
}

.contact form textarea {
    resize: none;
}

.contact form .btn {
    margin-top: 2rem;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: gray;
}
.footer-text p {
    font-size: 1.6rem;
}
.footer-iconTop {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: black;
    border-radius: .8rem;
}
.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--second-bg-color);

}


.pdf-container {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  border-radius: 5px;
}


.gs-single-container {
    width: 100%;
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto 30px auto; /* Adds 30px bottom margin for spacing between boxes */
    padding: 0 20px; /* Side padding only */
    box-sizing: border-box;
}

.gs-box1 {
    width: 100%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #fff;
    box-sizing: border-box;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}
/* If you only want to center the h3 (not all text) */
.gs-box1 h3 {
   text-align: center;
    width: 100%; /* Ensures full width for proper centering */
    margin: 0 0 15px 0;
    font-size: 2.6rem;
}

/* Center the button */
.gs-box1 .btn {
     display: block;
    width: fit-content; /* Makes button only as wide as its content */
    margin: 20px auto 0;
    padding: 10px 20px;
    text-align: center;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.gs-box1 iframe {
    width: 100%;
    height: 400px;
    border: none; /* Removes default iframe border */
    margin: 15px 0;
}

/* Optional responsive adjustments */
@media (max-width: 768px) {
    .gs-single-container {
        margin-bottom: 20px; /* Smaller gap on mobile */
        padding: 0 15px;
    }
    
    .gs-box1 {
        padding: 15px;
    }
    
    .gs-box1 iframe {
        height: 300px;
    }
}



/* BREAKPOINTS */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}
@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }
    section {
        padding: 10rem 3% 2rem;
    }
    .footer {
        padding: 2rem 3%;
    }
}
@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }
}