/* Import the 'Lora' font from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");

body {
    font-family: "Lora", serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 20px;
    box-sizing: border-box;
    /*background-color: #f8f8ba;*/
}

.main-container {
    /*border: 4px solid rgba(255, 255, 255, 0);*/
    border-radius: 24px;
    width: 100%;
    height: 100%;
    max-width: 100%;
    justify-content: center;
}

.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
    height: 250px;
    background-color: white;
    border-radius: 15px 15px 0 0;
    padding-bottom: 20px;
    width: 80%;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.navigation-bar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(51, 51, 51, 0.1); /* Dark gray with transparency */
}

.menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
    transition:
        max-height 0.5s ease-in-out,
        opacity 0.5s ease-in-out,
        margin-top 0.5s ease-in-out;
    pointer-events: none;
}

.menu-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
}

.menu-visible {
    max-height: 200px; /* Expands to show content */
    opacity: 1;
    pointer-events: auto;
    margin-top: 1rem;
}

.menu-link {
    text-decoration: none;
    color: #333333;
    font-size: clamp(1.5rem, 1.5rem, 1.5rem);
    /*font-weight: bold;*/
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
}

.menu-link:hover {
    background-color: rgba(51, 51, 51, 0.1);
}

.logo h1 {
    font-size: 3.5rem;
}

.menu-toggle {
    font-size: 2rem;
}

.outer-box {
    background-color: white;
    width: 80%;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 5px;
    height: 850px;
    margin: 0 auto;
    padding-top: 50px;
}

.outer-box-2 {
    background-color: white;
    width: 1100px;
    justify-content: center;
    gap: 5px;
    height: 25rem;
    padding: 30px 0 0 auto;
    margin: 0 auto;
    align-items: center;
}

.outer-box-3 {
    background-color: white;
    width: 1100px;
    justify-content: center;
    gap: 5px;
    height: 36rem;
    padding: 30px auto 0 auto;
    margin: 0 auto;
    align-items: center;
}

.outer-box-4 {
    background-color: white;
    width: 1100px;
    justify-content: center;
    gap: 5px;
    height: 28rem;
    padding: 30px auto 0 auto;
    margin: 0 auto;
    align-items: center;
}

.outer-box-5 {
    background-color: white;
    width: 1100px;
    justify-content: center;
    gap: 5px;
    min-height: 36rem;
    padding: 30px auto 0 auto;
    margin: 0 auto;
    align-items: center;
}

.outer-box-6 {
    width: 100%;
    justify-content: center;
    gap: 5px;
    height: 340px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0 auto;
    align-items: center;
}

.outer-box1 {
    background-color: white;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    width: 80%;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5% 10% 5% 10%;
    margin-top: 5%;
}

.inner-box1 {
    border-radius: 0.5rem;
    width: 188px;
    height: auto;
    /*
    align-items: left;
    justify-content: left;
    */
    /*background-color: #3b82f6;*/
    color: white;
    padding-right: 30px;
}

.heading1,
.heading2,
.heading3,
.heading4,
.heading5 {
    font-size: 16px;
    text-decoration: underline;
    font-weight: 600;
    color: black;
}

.left-side-paragraph-1,
.left-side-paragraph-2,
.left-side-paragraph-3,
.left-side-paragraph-4,
.left-side-paragraph-5 {
    font-size: 10px;
    color: black;
}

img {
    width: 85%;
    height: 80px;
}

.inner-box3 {
    border-radius: 0.5rem;
    width: 150px;
    align-items: center;
    justify-content: center;
    /*background-color: #3b82f6;*/
    color: white;
    position: relative;
    top: 0;
    height: auto;
    padding-left: 30px;
}

.inner-box2 {
    border-radius: 0.5rem;
    width: 39.375rem;
    height: 30rem;
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: #f23bf6;
    color: white;
    max-width: 1200px;
    margin-left: 30px;
    margin-right: 30px;
    pointer-events: none;
}

.hero-title {
    pointer-events: auto;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block; /* Makes the entire heading area clickable */
}

.hero-title:hover {
    color: inherit; /* Or any hover color you prefer */
}

h1.inner-box2-2 {
    color: black;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    /*margin-top: 0px;*/
    
}

.hero-title{
 text-decoration: none;
 color: black;
}

.inner-box2-3 {
    color: black;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    margin-top: -18px;
    font-weight: bold;
}

.inner-box2-4 {
    color: black;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    margin-top: 10px;
}

h1.inner-box4-1 {
    color: black;
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 30px;
    text-align: left;
}

.inner-box4-3 {
    color: black;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    margin-top: 10px;
}

.inner-box4-3 {
    color: black;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
}

.box-content {
    border-radius: 0.5rem;
    width: 39.375rem;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f23bf6;
    color: white;
    max-width: 1200px;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 30px;
}

.box-content img{
    width: 39.375rem;
    height: 30rem;
}


.product-section-right-1 {
    font-size: 15px;
    /*margin: 0 10px 0 10px;*/
    text-decoration: underline;
    font-weight: 600;
    color: black;
}

.right-side-paragraph-1 {
    font-size: 10px;
    /*padding: 0 10px 0 10px;*/
    color: black;
}

.hr1 {
    width: 188px;
    height: 3px;
    background-color: black;
    border: none;
}

.hr2 {
    width: 150px;
    height: 3px;
    background-color: black;
    border: none;
}

.hr3 {
    width: 100%;
    height: 5px;
    background-color: black;
    border: none;
    margin-top: 35px;
}

.hr4 {
    height: 5px;
    background-color: black;
    border: none;
    margin-top: -13px;
    margin-left: 30px;
}

.hr5 {
    height: 5px;
    background-color: black;
    border: none;
}

.hr6 {
    height: 5px;
    background-color: black;
    border: none;
}

.hr7 {
    height: 1px;
    background-color: black;
    border: none;
    width: 100%;
}

.Title-Right-Section {
    text-align: left;
    padding-top: 10px;
    color: black;
    font-weight: bold;
}

.Title-Left-Section {
    text-align: left;
    padding-top: 10px;
    color: black;
    font-weight: bold;
}

.left-side-paragraph-1 {
    font-size: 10px;
    align-items: left;
    justify-content: left;
    color: black;
}

.left-side-paragraph-2 {
    font-size: 10px;
    align-items: left;
    justify-content: left;
    color: black;
}

.image-container {
    background-color: white;
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    gap: 1.563rem;
    margin: 0 auto;
    padding-top: 1.25rem;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    width: 80%;
}

.image-item {
    flex: 1 1 15rem;
    max-width: 15rem;
}

.image-item-3 {
    flex: 1 1 15rem;
    max-width: 15rem;
}

.image-item-3 img {
    width: 8.125rem;
    height: 4.688rem;
    border-radius: 0.5rem; /* Adds a nice rounded corner to the images */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.image-paragraph {
    font-size: 0.9rem;
    text-align: left;
}

.image-item img {
    width: 15rem;
    height: 10rem;
    border-radius: 0.5rem; /* Adds a nice rounded corner to the images */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.image-container-1 {
    background-color: white;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    gap: 1.563rem;
    margin: 0 auto;
    padding-top: 1.25rem;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    max-width: 90%;
}

.image-container-3 {
    background-color: white;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    gap: 1.563rem;
    margin: 0 auto;
    padding-top: 1.25rem;
    padding-bottom: 20px;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    max-width: 100%;
}

.image-container-1-1 {
    background-color: white;
    display: grid;
    grid-template-rows: auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    margin: 0 auto;
    width: 100%;
    height: 25rem;
}

.image-container-1-4 {
    background-color: white;
    display: grid;
    grid-template-rows: auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    margin: 0 auto;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    width: 100%;
    min-height: 30rem;
}

.image-container-1-2 {
    background-color: white;
    display: grid;
    grid-template-rows: auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    gap: 1.563rem;
    margin: 0 auto;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    width: 100%;
}

.image-container-2 {
    background-color: white;
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    margin-left: 30px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    width: 90%;
    gap: 8rem;
    min-height: 12rem;
}

.image-container-1-3{
     background-color: white;
    display: grid;
    grid-template-rows: auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    margin: 0 auto;
    width: 100%;
    height: 25rem;
}

.subsection-1 {
    background-color: white;
    display: grid;
    grid-template-columns: auto auto;
    width: 100%;
    height: 8rem;
}

.subsection-2 {
    background-color: white;
    display: grid;
    grid-template-rows: auto auto auto auto;
    width: 11rem;
    height: 8rem;
}

.subsection-3 {
    background-color: white;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: auto auto;
}

.subsection-1-1 {
    background-color: white;
    display: grid;
    grid-template-rows: auto auto;
    margin: 0 auto;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    height: 8rem;
}

.subsection-1-1-2 {
    background-color: white;
    display: grid;
    grid-template-rows: auto;
    height: 4rem;
}

.subsection-1-2 {
    background-color: white;
    display: grid;
    grid-template-rows: auto auto;
    justify-content: left;
    align-content: left;
    align-items: left;
    gap: 1.563rem;
    margin: 0 auto;
    padding-top: 1.25rem;
    margin-left: 1.875rem;
    margin-right: 1.875rem;
    /*width: 40%;*/
}

.paragraph1-1 {
    font-size: 0.8rem;
    height: 4rem;
}

.paragraph1-3 {
    font-size: 1rem;
    height: 4.688rem;
    text-align: left;
}

.paragraph1-2 {
    /*
    font-size: 0.8rem;
    height: 3rem;
    margin-top: 0;
    */
}

.title1 {
    font-size: 1.3rem;
    text-align: left;
    margin: 0 auto;
    width: 100%;
}

.title2 {
    font-size: 0.9rem;
    text-align: left;
    min-height: 2rem;
    margin-top: 0;
}

.title3 {
    font-size: 0.9rem;
    text-align: left;
    margin-top: -15px;
    /*margin-bottom: 0px;*/
}

.image-item {
    flex: 1 1 12.5rem;
    max-width: 12.5rem;
}

.image-item-1 {
    flex: 1 1 28.75rem;
    max-width: 28.75rem;
    height: 18.25rem;
}

.image-paragraph {
    font-size: 0.9rem;
    text-align: left;
}

.image-item img {
    width: 11rem;
    height: 8rem;
    border-radius: 0.5rem; /* Adds a nice rounded corner to the images */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.image-item-1 img {
    width: 28.75rem;
    height: 18.25rem;
    object-fit: cover;
    border-radius: 0.5rem; /* Adds a nice rounded corner to the images */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.image-item-2 {
    /*
    flex: 1 1 12.5rem;
    max-width: 12.5rem;
    */
}

.image-item-2 img {
    width: 15.5rem;
    height: 12rem;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 0.5rem; /* Adds a nice rounded corner to the images */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.subsection-1-1-2{
    /**/
}

.footer-section {
  background-color: #1d2938;
  padding: 40px 80px 40px;
  height: 335px;
}

/* Flex Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: auto;
  border-top: 1px solid #000;
  padding-top: 30px;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
  background-color: #1d2938;
  border-color: #fff;
}

.footer-box {
  flex: 1;
  min-width: 200px;
}

.footer-box-1 {
  flex: 1;
  min-width: 200px;
  display: grid;
  place-items: center;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
    color: #fff;
}

.footer-socials {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li,
.footer-socials li {
  margin-bottom: 10px;
}

.footer-list a,
.footer-socials a {
    color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover,
.footer-socials a:hover {
  color: #00aaff;
}

/* Social Icons */
.footer-socials a i {
  margin-right: 8px;
  font-size: 1rem;
}

/* Subscribe Button */
.subscribe-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.subscribe-btn:hover {
  background: black;
  border-color: black;
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  text-align: left;
  font-size: 0.9rem;
  color: #fff;
}

@media (min-width: 100%) {
    .main-container {
        padding: 4rem;
    }

    .page-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4rem;
    }

    .navigation-bar {
        flex-direction: row;
        gap: 2rem;
    }
    .logo {
        margin-right: auto; /* Pushes the logo to the left */
    }
    .navigation-bar {
        position: static; /* Resets position for desktop view */
    }
    .menu-toggle {
        display: none; /* Hides the menu button on large screens */
    }
    .menu-list {
        display: flex;
        max-height: none; /* Removes the max-height limit */
        opacity: 1;
        pointer-events: auto;
        padding-top: 0;
        margin-top: 0;
        gap: 1.5rem;
    }
    .outer-box {
        flex-direction: row;
    }
}

/* Responsive Design */
@media (min-width: 100%) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }
  .subscribe-box {
    text-align: left;
  }
}
