@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

}

.header img {
  height: 75px;
  margin-left: 30px;
}

/* Wrapper styling */
.menu-wrapper {
  position: relative;
}

/* Hamburger menu styling */
.hamburger {
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.hamburger span {
  background-color: #000;
  width: 100%;
  height: 3px;
  transition: 0.3s ease;
  position: relative;
}

.hamburger span:nth-child(1) {
  transform-origin: top left;
}

.hamburger span:nth-child(3) {
  transform-origin: bottom left;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(35deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-35deg);
}

/* Sliding background */
.nav-background {
  position: fixed;
  top: 60px; /* Adjust based on header height */
  right: 0;
  width: 0px;
   height: calc(100vh - 60px); /* Full height minus header */
  background-color: #000;
  z-index: 5; /* Ensure it's above the canvas but below the nav links */
  transition: width 0.4s ease;
}


/* Hidden nav links */
#nav-links {
  list-style: none;
  padding: 0;
  position: fixed;
  top: 80px; /* Adjust based on header height */
  right: 20px;
  opacity: 0;
  z-index: 10; /* Above the background */
  display: none;
  transition: all 0.3s ease;

}

#nav-links.open {
  display: block;
  opacity: 1;
}

#nav-links li {
  padding: 10px 15px;
}

#nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  display: block;
  font-size: x-large;
}

#nav-links a:hover {
  color: #6a6a6a;
}

/* Animation for sliding in the nav items */
#nav-links.open li {
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}





@media (max-width:767px){
  .header img {
      height: 40px;
      margin: 0;
  }
  
  .header{
      justify-content: flex-start;
      gap: 57%;
  }

  .hamburger{
      height: 20px;
      width: 25px;
      margin-top: 5px;
    }
  
    .hamburger span{
      height: 3px;
    }

    #nav-links a{
      font-size: large;
      margin-top: -5px;
    }
    #nav-links{
      margin-top: -10px;
      margin-right: -5px;
      justify-items: end;
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-42deg);
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(42deg);
    }
    
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin-top: -80px;
    }
}







* {
  overflow-x: clip;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
    font-family: "Lato", sans-serif;
  }
  

header {
  height: 200vh;
}

.logo{
    position: fixed;
    z-index: 1;
    padding-top: 30px;
    padding-left: 50px;
}
.container {
  /* hide fixed overflow contents */
  clip: rect(0, auto, auto, 0);

  /* does not work if overflow = visible */
  overflow: hidden;

  /* only works with absolute positioning */
  position: absolute;

  /* Make sure containers are full-width and height */
  height: 100vh;
  left: 0;
  width: 100%;
  
  
  /* safari hack */
  -webkit-mask-image: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 100%);
}

.container_solid {
  background: white;
  
  /* position this container at the top of its parent element */
  top: 0;
}

.title_wrapper {
  position: fixed;
  display: block;  
  margin: auto;
  width: 100%;
  /* center the text wrapper vertically */
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.title_wrapper h1 {
  text-align: center;
  font-size: 64px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

.container_solid .title_wrapper h1 {
  /* the text background */
  background: url("image/Home\ 2\ \(1\)\ \(1\).jpg");
  background-size: 100vw auto;
  background-position: center;
  
  /* clip the text is possible */
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  
  /* fallback text color */
  color: black;
}

.container_image {
  /* Grab a free image from unsplash */
  background-image: url("image/Home\ 2\ \(1\)\ \(1\).jpg");
  background-size:100vw auto;
  background-position: center;
  background-attachment: fixed;
  
  /* position the second container below the first container */
  top: 100vh;
}

.container_image .title_wrapper h1 {
  color: white;
}

/* styles.css */

  .project_section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 100px;
  }
  
  .toggle-switch {
    left: 39%;
    margin-bottom: 7%;
    position: relative;
    display: flex;
    width: 100%;
    max-width: 300px;
    height: 50px;
    background-color: #cfcfcf;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .toggle-switch input[type="radio"] {
    display: none;
  }
  
  .toggle-option {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
  }
  
  .toggle-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 48%;
    height: 40px;
    background-color: #000;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }
  
  #commercial:checked ~ .toggle-slider {
    transform: translateX(0);
  }
  
  #residential:checked ~ .toggle-slider {
    transform: translateX(100%);
  }
  
  #commercial:checked + label[for="commercial"] {
    color: #fff;
  }
  
  #residential:checked + label[for="residential"] {
    color: #fff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 400px) {
    .toggle-switch {
      height: 40px;
      padding: 4px;
    }
    .toggle-option {
      font-size: 0.9rem;
    }
    .toggle-slider {
      height: 32px;
      top: 4px;
    }
  }
  
  @media (max-width: 320px) {
    .toggle-switch {
      height: 35px;
      padding: 3px;
    }
    .toggle-option {
      font-size: 0.8rem;
    }
    .toggle-slider {
      height: 28px;
      top: 3px;
    }
  }

  .res{
    margin-left: -9px;
  }
  
  .des{
    margin-right: 5px;
  }

  /* styles.css */

  
  .project_info {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
  }
  
  .project_section1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
  }
  
  .project_card {
    position: relative;
    background-color: #d3d3d3;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
  
  .project_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .project_button {
    position: absolute;
    bottom: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .project_button:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
  }
  
  /* Responsive design */
  @media (max-width: 768px) {

    .logo{
        position: fixed;
        left: -3%;
        width: 44%;
        height: auto;
        z-index: 1;
        
    }

    .container_solid .title_wrapper h1 {
        padding: 35px;
        letter-spacing: 7px;
        font-size: 23px;
        background-size: auto 100vh;
    }

    .title_wrapper h1 {
        padding: 35px;
        letter-spacing: 7px;
        font-size: 23px;
        background-size: auto 100vh;
    }

    .container_image{
        background-size:auto 100vh;

    }



    .toggle-switch {
        left: 7%;
        height: 40px;
        padding: 4px;
    }
    .project_section1 {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .project_card {
      height: 250px;
    }
  
    .project_button {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  }
  
  @media (max-width: 480px) {
    .project_card {
      height: 200px;
    }
  
    .project_button {
      font-size: 0.8rem;
      padding: 6px 12px;
    }
  }

 .p_s1{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
 }
nt-family: "Lato", sans-serif;

footer {
  background: linear-gradient(to bottom, #DEDEDE, #ffffff); /* Light to darker gradient */
  padding: 80px 0;
  font-family: "Lato", sans-serif;
  width: 100vw;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Section (Moved to the Top) */
.footer-nav {
  text-align: left;
  flex: 1;
  order: 1; /* Ensure navigation appears first */
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin: 10px 0;
}

.footer-nav ul li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  text-decoration: underline;
}

/* Logo and Contact Information (Moved Below Navigation) */
.footer-left {
  text-align: left;
  flex: 1;
  order: 2; /* Appears after the navigation */
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-contact {
  margin-top: 10px;
}

.footer-contact p {
  margin: 5px 0;
  color: #333;
  font-size: 14px;
}

.footer-contact strong {
  display: block;
  margin-top: 15px;
}

/* Newsletter Section */
.footer-newsletter {
  text-align: left;
  flex: 1;
  order: 3;
  margin-top: 50px;
}

.footer-newsletter h4 {
  font-weight: normal;
  color: gray;
  font-size: 14px;
}

.footer-newsletter h4 span {
  font-weight: bold;
  color: #555;
  font-size: 20px;
  position: relative;
}

.footer-newsletter form {
  display: flex;
  margin-top: 15px;
}

.footer-newsletter input {
  padding: 10px;
  border: 0px solid #ccc;
  border-radius: 10px 0 0 10px;
  width: 70%;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-newsletter button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Social Media Icons */
.footer-social {
  text-align: right;
  flex: 1;
  order: 4; /* Ensures social icons appear at the bottom */
}

.footer-social a {
  margin-right: 10px;
  color: black;
  font-size: 18px;
  text-decoration: none;
}

.footer-social i {
  margin: 0 5px;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-bottom: 30px;
}

.footer-bottom p,
.footer-bottom a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
  margin: 0 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-left,
  
  .footer-newsletter,
  .footer-social {
      margin-bottom: 20px;
      text-align: center;
      
  }
  .footer-nav  {
    margin-bottom: 20px;
    text-align: center;
    margin-top: 70px;
}


  .footer-newsletter form {
      flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
      width: 100%;
      margin: 5px 0;
  }

  .footer-bottom {
    margin-bottom: -20px;
  }

  .footer-newsletter {
    input {
      width: 70vw;
      border-radius: 8px;
    }
    button {
      border-radius: 8px;
    }
  }
}

/* Fine-tuning the spacing */
.footer-contact,
.footer-nav,
.footer-newsletter,
.footer-social {
  margin-bottom: 20px;
}

  
  


/* mid part */

.section{
  position: relative;
  .images{
      display: flex;
      justify-content: space-between;
      width: 100vw;
      height: 100vh;
      gap: 70px;

      .design{
          width: 400px;
          height: 400px;
          margin-top: 10%;
      }
  }

  .texts{
      display: flex;
      
      flex-direction: column;
      position: absolute;
      bottom: 0;
      font-family: "Lato", sans-serif;
      margin: 0 0 0 5%;
      


      h1{
          display: flex;
          flex-direction: column;
          font-size: 100px;
          font-weight: 200;
          letter-spacing: 0.4ch;
          margin: 4% 0 0 0;
          a{
              font-weight: 600;
              margin: 5% 0 0% 30%;
              
          }
      }

      p{
        font-family: "Lato", sans-serif;
          font-size: 12px;
          font-weight: 300;
         
          word-spacing: 1cap;
      }
  }
}


.page-3{
  margin-top: 5%;
  display: flex;
  .images{
      img{
          width: 50vw;
          height: 70vh;
      }
  }

  .texts{
      background-color: #202020;
      width: 70vw;
      height: 30vw;
      margin: 4% 0 0 -10%;

      p{
        font-family: "Lato", sans-serif;
          color: #fff;
          font-size: 20px;
          padding: 5%;
          word-spacing: 2cap;

      }
  }
}


.page-4{
  display: flex;
  flex-direction: column;
  
  .line{
      margin:  5% 0 0 2%;
  }

  .mission{
      display: flex;
      margin-top: -2%;
      .flex-col{
          display: flex;
          flex-direction: column;
          margin: 12% 0 0 1%;
          h1{
              font-size: 60px;
              font-family: "Lato", sans-serif;
              font-weight: 300;
          }
          p{
              margin: -5% 0% 0 0;
          }
      }

      .texts{
          font-size: 20px;
          font-family: "Lato", sans-serif;
          margin: 10% 0 0 2%;
          font-weight: 300;
          word-spacing: 1cap;
      }
  }


  .vision{
      
      display: flex;
      .flex-col{
          display: flex;
          flex-direction: column;
          margin: 12% 0 0 10%;

          h1{
              font-size: 60px;
              font-family: "Lato", sans-serif;
              font-weight: 300;
          }
          p{
              margin: -5% 0 0 0;
          }
      }

      .texts{
          font-size: 20px;
          font-family: "Lato", sans-serif;
          margin: 10% 0 0 2%;
          font-weight: 300;
          word-spacing: 1cap;
      }
  }


  .group-images{
      margin: 5% 0 0 0;
      img{
          width: 100vw;
          height: auto;
      }
  }
  

}


.page-5{
  display: flex;
  flex-direction: column;
  font-family: "Lato", sans-serif;
  margin-top: 3%;
  
  .title{
      letter-spacing: 0.3cm;
      display: flex;
      justify-content: center;
      font-size: 40px;

      span{
          font-weight: 200;
      }
  }

  .texts{
      display: flex;
      text-align: center;
      justify-content: center;
      padding: 2% 10% 2% 10% ;
      font-size: 20px;
      word-spacing: 1.4cap;
      font-weight: 300;
  }

  .owner-details{
      display: flex;
      
      .texts{
          display: flex;
          flex-direction: column;

          h1{
              font-size: 60px;
              letter-spacing: 0.1cm;
              font-weight: 300;
          }
          span{
              font-size: 60px;
              font-weight: 700;
          }
          p{
              word-spacing: -1px;
          }
      }

      .owner-image{
          img{
              width: 40vw;
              height: 50vh;
          }
      }

  }

  .statement{
      
      
      p{
        font-family: "Lato", sans-serif;
        text-align: center;
          padding: 5% 25% 5% 25%;
          word-spacing: 1cap;

          span{
              display: flex;
              justify-content: end;
              margin: 3% 0 0 0;
          }
      }
     
      
  }

  .siddhraj-lastimage{
      display: flex;
      justify-content: center;
      margin: 0 0 5% 0;
      img{
          width: 30vw;
          height: auto;
      }
      
  }

}

@media (max-width: 768px) {
  .ht{
    font-size: 25px;
    text-align: center;
  }

  .section{
    .texts{
      margin-top: 200px;
    }
  }

  .section {
    .images {
        display: flex;
        width: 100vw;
        height: 100vh;
        gap: 70px;
        flex-direction: column;
        margin-top: -200px;
    }
}
.design{
  visibility: hidden;
}




.section {
    .texts {
        top: 2%;
        display: flex;
        position: absolute;
        bottom: 0;
        font-family: "Lato", sans-serif;
        /* margin: 0 0 0 5%; */
        flex-direction: column;
    }
}

.section {
  & .texts {
      h1 {
          text-align: center;
          display: flex;
          flex-direction: column;
          font-size: 43px;
          font-weight: 200;
          letter-spacing: 0.4ch;
          
          /* margin: 4% 0 0 0; */
          a{
            margin-left: -50px;
          }
      }
  }
}

.section {
  & .texts {
      p {
        font-family: "Lato", sans-serif;
        font-size: 12px;
        font-weight: 300;
        padding: 20px 40px;
          /* margin: 20% 0 2% 30%; */
        word-spacing: 1cap;
      }
  }
}

.page-3 {
  margin-top: 5%;
  display: flex;
  flex-direction: column;
}


.page-3 {
    & .images {
        img {
            margin-top: 2%;
            object-fit: cover;
            width: auto;
            height: 70vh;
        }
    }
}

.page-3 {
  .texts {
      background-color: #202020;
      width: auto;
      height: auto;
      margin: 6px;
      /* margin: 4% 0 0 -10%; */
      letter-spacing: normal;
      word-spacing: normal;
  }
}

.page-4 {
  & .mission {
      & .flex-col {
          p {
              margin: 0% 0 0 0%;
              font-size: 25px;
              text-align: center;
              
              
          }
      }
  }
}

.page-3 {
  & .texts {
      p {
        font-family: "Lato", sans-serif;
          color: #fff;
          font-size: 20px;
          padding: 5%;
          text-align: justify;
          word-spacing: 9px;
      }
  }
}


.page-4 {
  display: flex;
  flex-direction: column;
}

.page-4 {
  .mission {
      display: flex;
      margin-top: -2%;
      flex-direction: column;
  }
}

.page-4 {
  & .mission {
      .flex-col {
        margin: 10% 0 0 0%;
          display: flex;
          flex-direction: column;
          /* margin: 10% 0 0 10%; */
      }
  }
}

.page-4 {
  & .mission {
      & .flex-col {
          h1 {
            text-align: center;
              font-size: 59px;
              font-family: "Lato", sans-serif;
              font-weight: 300;
          }
      }
  }
}

.page-4 {
  & .vision {
      & .flex-col {
          h1 {
            text-align: center;
              font-size: 59px;
              font-family: "Lato", sans-serif;
              font-weight: 300;
          }
      }
  }
}

.page-4 {
  & .mission {
      .texts {
          text-align: justify;
          font-size: 20px;
          font-family: "Lato", sans-serif;
          margin: 10%;
          font-weight: 300;
          word-spacing: 1cap;
      }
  }
}

.page-4 {
  .vision {
      display: flex;
      flex-direction: column-reverse;
  }
}

.page-4 {
  & .vision {
      .texts {
          text-align: justify;
          font-size: 20px;
          font-family: "Lato", sans-serif;
          margin: 10%;
          font-weight: 300;
          word-spacing: 1cap;
      }
  }
}

.page-4 {
  & .vision {
      .flex-col {
          display: flex;
          flex-direction: column;
          margin: 5%;
      }
  }
}

.page-4 {
  .group-images {
      display: flex;
      /* margin: 5% 0 0 0; */
      margin: 3%;
      flex-direction: column;
  }
}


.page-5 {
  .title {
      padding: 10%;
      letter-spacing: 0.3cm;
      display: flex;
      justify-content: center;
      font-size: 42px;
  }
}

.page-5 {
  .owner-details {
      display: flex;
      flex-direction: column-reverse;
  }
}

.page-5 {
  & .owner-details {
      .texts {
        text-align: center;
          display: flex;
          flex-direction: column;
      }
  }
}

.page-5 {
  & .owner-details {
      & .texts {
          h1 {
              font-size: 48px;
              letter-spacing: 0.1cm;
              font-weight: 300;
          }
      }
  }
}

.page-5 {
  & .owner-details {
      & .texts {
          span {
              font-size: 46px;
              font-weight: 700;
          }
      }
  }
}

.page-5 {
  & .owner-details {
      & .owner-image {
          img {
            object-fit: cover;
            width: 94vw;
            height: 45vh;
          }
      }
  }
}

.page-5 {
  & .owner-details {
      .owner-image {
          padding: 4%;
          display: flex;
      }
  }
}

.page-5 {
  & .statement {
      p {
        font-family: "Lato", sans-serif;
          padding: 10%;
          word-spacing: 1cap;
      }
  }
}

.section {
  & .texts {
      p {
        font-family: "Lato", sans-serif;
          font-size: 12px;
          font-weight: 300;
          margin: -1%;
          /* padding: 100px 40px; */
          /* margin: 20% 0 2% 30%; */
          word-spacing: 1cap;
      }
  }
}


  
}


/* tablet */

@media (min-width: 768px) and (max-width: 1024px){

  .container_solid .title_wrapper h1 {
    padding: 35px;
    letter-spacing: 7px;
    background-size: auto 100vh;
}

.title_wrapper h1 {
    padding: 35px;
    letter-spacing: 7px;
    background-size: auto 100vh;
}

.container_image{
    background-size:auto 100vh;

}

.section {
  .images {
      display: flex;
      width: 100vw;
      height: 100vh;
      flex-direction: column-reverse;
      margin-top: 30px;
      padding: 5px;
  }
}

.section {
  .texts {
      display: flex;
      position: absolute;
      bottom: 0;
      font-family: "Lato", sans-serif;
      flex-direction: column;
  }
}

.section {
  & .texts {
      p {
          padding: 1%;
          margin: 27px;
          text-align: center;
          font-family: "Lato", sans-serif;
          font-size: 33px;
          font-weight: 300;
          /* margin: 20% 0 2% 30%; */
          word-spacing: 1cap;
      }
  }
}

.design{
  visibility: hidden;
}

.section {
  & .texts {
      & h1 {
          a {
              font-weight: 600;
              /* margin: 0 0 -7% 30%; */
          }
      }
  }
}

.section {
  & .texts {
      h1 {
          text-align: center;
          display: flex;
          flex-direction: column;
          font-size: 100px;
          font-weight: 200;
          letter-spacing: 0.4ch;
          margin: 4% 0 0 0;
      }
  }
}


.page-3 {
  margin-top: 5%;
  display: flex;
  flex-direction: column;
}

.page-3 {
  & .images {
      img {
          padding: 53px;
          width: 100vw;
          height: 70vh;
          object-fit: cover;
      }
  }
}

.page-3 {
  .texts {
    width: auto;
    height: 29vh;
    background-color: #202020;
    margin: 0;
  }
}

.page-4 {
  .mission {
      display: flex;
      margin-top: -2%;
      flex-direction: column;
  }
}

.page-4 {
  & .mission {
      .flex-col {
          display: flex;
          flex-direction: column;
          margin: 10% 0 0 10%;
      }
  }
}

.page-4 {
  & .mission {
      & .flex-col {
          p {
             margin: 0;
          }
      }
  }
}

.page-4 {
  & .mission {
      .texts {
          font-size: 20px;
          font-family: "Lato", sans-serif;
          margin: 10%;
          font-weight: 300;
          word-spacing: 1cap;
      }
  }
}

.page-4 {
  & .vision {
      .texts {
          font-size: 20px;
          font-family: "Lato", sans-serif;
          margin: 10%;
          font-weight: 300;
          word-spacing: 1cap;
      }
  }
}

.page-4 {
  & .vision {
      .flex-col {
          display: flex;
          flex-direction: column;
          margin: 10% 0 0 10%;
      }
  }
}

.page-4 {
  & .vision {
      & .flex-col {
          p {
            margin: 0;
          }
      }
  }
}

.page-4 {
  .vision {
      display: flex;
      flex-direction: column-reverse;
  }
}

.page-5 {
  .owner-details {
      /* gap: 8%; */
      display: flex;
      flex-direction: column;
      align-items: center;
  }
}

.page-5 {
  & .owner-details {
      .texts {
          text-align: center;
          display: flex;
          flex-direction: column;
      }
  }
}


}



@media  (max-width:767px){
  .page-4{
    .mission{
      
      .texts{
        font-size: 17px;
        word-spacing: 0.2cm;
      }
    }
    .vision{
      .texts{
        font-size: 17px;
        word-spacing: 0.2cm;
      }
    }
  }


  .page-5{
    .texts{
      font-size: 17px;
      word-spacing: 0.2cm;
      /* margin: 0 7% 0 7%; */
    }
  }

}


.Realization h1 {
  font-size: 2.5rem; /* Default size */
  margin-top: 180px;
  text-align: center;
}

.Realization p {
  font-size: 1rem; /* Default size */
}

@media (max-width: 600px) {
  .Realization h1 {
      font-size: 2rem; /* Smaller font for mobile */
      text-align: center;
  }

  .Realization p {
      font-size: 0.8rem; /* Adjust line size for mobile */
  }
}
