*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto',sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Overall design */
.website-wrapper{
    width: 100%;
    max-width: 1600px;
    min-height: 100vh;
    margin: 0px auto;
    background-color: #edf0f6;
}

/* Header */
section.header{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0px 8%;
}

.header .header-overlay{
    position: absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
}

.header .main-navbar{
    position: fixed;
    width: 100%;
    height: 12vh;
    max-height: 100px;
    top: 0;
    left: 0;
    padding: 0px 8%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.70);
    z-index: 100;
    transition:all 0.3s;
}

.header .main-navbar .logo img{
    width: 150px;
    height: 80px;
}

.header .main-navbar .nav-list{
    list-style: none;
}

.main-navbar .nav-list li{
    display:inline-block;
    margin: 0px 15px;
}
    
.main-navbar .nav-list li a{
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.main-navbar .nav-list li a:hover{
    color: #fa5a20;
}

.header .main-navbar .hamburger-btn{
    user-select: none;
    cursor: pointer;
    display: none;
}

.main-navbar .hamburger-btn span{
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ccc;
    margin:6px auto;
    transition: all 0.3s;
}

.user-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content p {
  padding: 12px 16px;
  margin: 0;
  color: #333;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-content button {
  width: 100%;
  padding: 12px 16px;
  background: #ff6b6b;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
}

.dropdown-content button:hover {
  background: #ff4f4f;
}

.user-dropdown:hover .dropdown-content {
  display: block;
}

/* Home page */
.homepage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;  
    height: 100vh; 
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.78); 
    z-index: 2; 
}

.homepage .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}

.homepage img {
    width: 100%;  
    height: 100%;
    object-fit: cover;
    display: block;
}

.header .banner{
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    top: 80px;
    color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.header .banner .banner-content{
    position: relative;
    max-width: 1000px;
    top: -55px;
}

a#scroll-btn{
    position: absolute;
    height: 8em;
    width: 5em;
    border: 0.3em solid #ffffff;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 6.25em;
    border-radius: 3em;
}

a#scroll-btn::before{
    position: absolute;
    content: "";
    margin: auto;
    left: 0;
    right: 0;
    top: 1.2em;
    height: 1.2em;
    width: 1.2em;
    background-color: #ffffff;
    border-radius: 50%;
    animation: move-down 2s infinite;
}
@keyframes move-down{
    80%{
        opacity: 0.5;
    }
    100%{
        transform: translateY(5.3em);
        opacity: 0;
    }
}

a#scroll-btn::after{
    position: absolute;
    content: "SCROLL DOWN";
    width: 12em;
    display: block;
    text-align: center;
    left: -4.2em;
    bottom: -2.5em;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 500;
}

/* Homepage-2 */
.homepage-2 {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    top: 80px;
    color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10%;
    z-index: 3;
}
  
  .about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .image-container {
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bmi-image {
    max-width: 100%;
    height: auto;
    border-radius: 15%;
}

  .about-description {
    flex: 0.5;
    padding-left: 40px;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .about-description h2 {
    font-size: 60px;
    position: relative;
    font-family: 'Marine Elmour Bold Personal Use Only';
    color: transparent;
    -webkit-text-stroke: 0.3vw #f9f8da;
    text-transform: uppercase;
  }

  .about-description h2::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #f6bc76;
    -webkit-text-stroke: 0vw #e9edf6;
    border-right: 2px solid #ff8c00;
    overflow: hidden;
    animation: animate 6s linear infinite;
    white-space: nowrap;
  }

  .about-description h1 {
    font-size: 80px;
    position: relative;
    font-family: 'Marine Elmour Bold Personal Use Only';
    color: transparent;
    -webkit-text-stroke: 0.3vw #f9f8da;
    text-transform: uppercase;
  }

  .about-description h1::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #f3941f;
    -webkit-text-stroke: 0vw #e9edf6;
    border-right: 2px solid #ff8c00;
    overflow: hidden;
    animation: animate 6s linear infinite;
    white-space: nowrap;
  }

  @keyframes animate
  {
    0%,10%,100%
    {
        width: 0;
    }
    70%,90%
    {
        width: 100%;
    }
  }
  
  
  .about-description p {
    font-size: 23px;
    color: #ffffff;
    line-height: 2;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 800;
    text-align: center;
  }
  
.about-description .s-btnn a{
    display: inline-block;
    padding: 9px 23px;
    background: #f5e2ba;
    color: #111111;
    border: #111111;
    font-size: 14px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight: 1000; 
    letter-spacing: 1;
    border-radius: 3rem;
    transition: all .50s ease;
    text-decoration: none;
    z-index: 100 !important;
    position: relative !important;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.about-description .s-btnn a:hover{
    background: #f9cb77;
    color: #111111;
    box-shadow: #faf6d5 0px 1px 15px;
}

/*----service----*/
.service{
  width:100%;
  max-width: 1600px;
  min-height: 100vh;
  margin:0%;
  padding-top: 50px;
  color: #fff;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  font-family: monospace;
  padding: 50px 10% 40px;
  padding-bottom: 5px;
}

.c1{
  text-align: center;
}

.c1 h1{
  font-size: 50px;
  font-weight: 1500;
  color:#f49912;
  margin-bottom: 10px;
  font-family: monospace;
}

.c1 h2{
    font-size: 30px;
    font-weight: 900;
    color:#111111;
    margin-bottom: 10px;
    font-family: monospace;
  }

.c1 p{
  font-size: 23px;
  font-weight: 500;
  line-height: 30px;
  padding:10px;
  color: #545454;
  font-family: 'Times New Roman', Times, serif;
}

.food{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,auto));
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}

.item_h{
  position: relative;
  padding: 10px 35px 40px;
  border-radius: 3rem;
  background: #ede4d6;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.item_h img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transition: transform .50s ease;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.item_h h3{
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #111111;
}

.item_h p{
  line-height: 20px;
  margin-bottom: 1.1rem;
  font-size: 1.1 rem;
  color: #6a6868;
  font-family: monospace;
  font-weight: 580;
}

.in-text{
  display: flex;
  align-items: center;
  justify-content: center;
}

.in-text .s-btnn a{
  display: inline-block;
  padding: 9px 23px;
  background: #ecd3a8;
  color: #383838;
  font-size: 14px;
  font-weight: 600; 
  letter-spacing: 1;
  border-radius: 3rem;
  transition: all .50s ease;
  text-decoration: none;
}

.in-text .s-btnn a:hover{
  background: #faf7ce;
  color: #111111;
  box-shadow: #dfd9a3 0px 1px 25px;
}

.item_h img:hover{
  transform: scale(1.1);
}

/* Why Choose Us */
.about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:40px 10%;
    background-color: #ffffff;
  }
  
  .about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    flex: 0.5;
  }
  
  .grid-item {
    position: relative;
    overflow: hidden;
  }
  
  .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
  }

  
  .large {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .about{
    flex: 0.5;
    padding-left: 40px;
    font-family: 'Marine Elmour Bold Personal Use Only';
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .about h2{
    font-size: 50px;
    color: #111111;
    margin-bottom: 20px;
    font-family: monospace;
    font-weight: 1500;
  }
  
  .about p{
    font-size: 18px;
    color: #545454;
    line-height: 2;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
  }

  .custom-shape-divider-top-1728984729 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1728984729  {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 106px;
}

.custom-shape-divider-top-1728984729 .shape-fill {
    fill: antiquewhite;
}


/* Project */
.project {
    width: 100%;
    max-width: 1600px;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 10%;
    padding-top: 0;
    background-color: #ffffff;
  }
    
    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      width: 100%;
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .image-container {
      flex: 0.4;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .project-video {
      max-width: 100%;
      height: 600px;
      border-radius: 10%;
  }
  
    .description {
      flex: 0.5;
      padding-left: 40px;
      font-family: monospace;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .c2 h1 {
        text-align: center;
        font-size: 60px;
        color: #f49912;
        font-family: monospace;
        font-weight: bold;
      }
      
      .c2 h1 span {
        display: inline-block; 
        font-family: monospace;
        position: relative;
      }
      
      .c2 h1 span::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        width: 100%; 
        border: 3px solid #fae6cb;
      }
      
    
    
    .description p {
      font-size: 20px;
      color: #545454;
      line-height: 2;
      font-family: 'Times New Roman', Times, serif;
      font-weight: 800;
    }
    
    

/* Footer */
footer{
    background-color: #ebeae1; /* #edf0f6 */
    box-sizing: border-box;
  }

  .footerContainer{
    width: 100%;
    padding: 50px 30px 20px;
  }
  
  .socialIcons{
    display: flex;
    justify-content: center;
  }
  
  .socialIcons a{
   text-decoration: none;
   padding: 10px;
   background-color: white;
   margin: 10px;
   border-radius: 50%;
  }
  
  .socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
  }
  
  .socialIcons a:hover{
    background-color: #ebeae1;
    transition: 0.5s;
  }
  
  .socialIcons a:hover i{
    color: #3971e0;
    transition: 0.5s;
  }
  
  .footerNav{
    margin:30px 0;
  }
  
  .footerNav ul{
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  .footerNav ul li a{
    color: black;
    margin: 20px;
    text-decoration: none;
    font-size: 1em;
    opacity: 0.5;
    transition: 0.5s;
  }
  
  .footerNav ul li a:hover{
    color: #e99555;
    opacity: 1;
    font-weight: 800;
  }
  
  .footerBottom{
    padding: 10px;
    text-align: center;
  }
  
  .designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
  }



/* Media styling */
@media screen and (max-width:968px){
    /* Home section */
    .header .main-navbar .hamburger-btn{
        display: block;
        margin-left: 30px;
        z-index: 101;
    }

    .header .main-navbar .logo img{
        width: 100px;
        height: 55px;
    }

    .header .main-navbar .nav-list{
        position: fixed;
        width: 60%;
        height: 100vh;
        top:0;
        /*right:0;*/
        right: -100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #191919;
        transition: right 0.3s;
        z-index: 100;
    }

    .header .main-navbar .nav-list.active{
        right: 0;
    }

    .main-navbar .nav-list li{
        margin: 25px 0px 0px;
    }
    .main-navbar .nav-list li:nth-child(1){
        margin-top: 180px;
    }
    .main-navbar .nav-list li a{
        font-size: 18px;
        letter-spacing: 2px;
    }
    .main-navbar .hamburger-btn.active span:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .main-navbar .hamburger-btn.active span:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .main-navbar .hamburger-btn.active span:nth-child(2){
        transform: translateX(-30px);
        opacity: 0;
    }
}


/* Scroll Bar Media*/
@media screen and (max-width:800px){
    a#scroll-btn{
        font-size: 8px;
    }
}

/* Homepage 2 */
@media (max-width: 800px){
    .about-description{
        padding-right: 5%;
    }
    .about-description h2 {
        font-size: 50px; 
    }

    .about-description h1 {
        font-size: 70px; 
    }
  
      @keyframes animate {
        0%, 10%, 100% {
          width: 0;
        }
        70%, 90% {
          width: 100%;
        }
      }

      .about-description p {
        font-size: 22px; 
      }
}

@media (max-width: 768px) {
    .about-description h2 {
      font-size: 40px; 
    }

    .about-description h1 {
        font-size: 56px; 
    }

    @keyframes animate {
      0%, 10%, 100% {
        width: 0;
      }
      70%, 90% {
        width: 100%;
      }
    }
  
    .about-description p {
      font-size: 18px; 
    }
}

@media (max-width: 500px) {
    .about-description h2 {
      font-size: 22px; 
    }

    .about-description h1 {
        font-size: 30px; 
    }

    @keyframes animate {
      0%, 10%, 100% {
        width: 0;
      }
      70%, 90% {
        width: 100%;
      }
    }
  
    .about-description p {
      font-size: 16px; 
    }
}

/* service */
@media (max-width: 1024px) {
    .c1 h1 {
        font-size: 40px;
    }
  
    .c1 p {
        font-size: 16px;
        line-height: 20px;
    }
  
    .item_h {
        padding: 10px 20px 30px;
    }
  
    .item_h img {
        width: 180px;
        height: 180px;
    }
  }
  
  @media (max-width: 768px) {
    .diet {
        padding: 30px 5%;
    }
  
    .food {
        grid-template-columns: 1fr;
    }
  
    .c1 h1 {
        font-size: 30px;
    }

    .c1 h2 {
        font-size: 25px;
    }
  
    .c1 p {
        font-size: 14px;
    }
  
    .item_h {
        padding: 10px 15px 20px;
        border-radius: 1.5rem;
    }
  
    .item_h img {
        width: 150px;
        height: 150px;
    }
  
    .item_h h3 {
        font-size: 16px;
    }
  
    .item_h p {
        font-size: 14px;
        line-height: 24px;
    }
  
    .in-text {
        flex-direction: column;
        gap: 10px;
    }
  
    .in-text .s-btnn a {
        padding: 7px 15px;
        font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .c1 h1 {
        font-size: 28px;
    }

    .c1 h2 {
        font-size: 20px;
    }
  
    .item_h img {
        width: 120px;
        height: 120px;
    }
  
    .item_h h3 {
        font-size: 14px;
    }
  
    .item_h p {
        font-size: 12px;
    }
  
    .in-text .s-btnn a {
        padding: 5px 12px;
    }
  }

/* Why choose us */
  @media (max-width: 768px) {
    .about-us {
      flex-direction: column;
      padding: 20px;
    }
  
    .about-container {
      flex-direction: column;
    }
  
    .image-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
  
    .about{
      padding-left: 0;
      margin-top: 30px;
    }
  
    .about h2{
      font-size: 1.8rem;
      text-align: center;
    }
  
    .about p {
      font-size: 1rem;
    }

    body, html {
        overflow-x: hidden;
    }
  }

/* certificate */
@media (max-width: 1024px) {
    .certificate {
      flex-direction: column;
      padding: 30px 5%;
    }
  
    .container {
      flex-direction: column;
      padding-top: 60px;
      padding-bottom: 60px;
    }
  
    .image-container,
    .description {
      flex: 1;
      width: 100%;
      padding-left: 0;
      margin-bottom: 30px;
    }
  
    .ssm-image {
      width: 40%;
      border-radius: 10%;
    }
  
    .c2 h1 {
      font-size: 40px;
    }
  
    .description p {
      font-size: 18px;
      line-height: 1.8;
      text-align: center;
    }

    body, html {
        overflow-x: hidden;
    }
  }
  
  @media (max-width: 600px) {
    .ssm-image {
      width: 100%;
      border-radius: 10%;
    }
  
    .c2 h1 {
      font-size: 32px;
    }
  
    .description p {
      font-size: 16px;
      line-height: 1.6;
    }
  }
  

/* Footer */
@media (max-width: 768px) {
    .footerContainer {
      padding: 30px 20px 10px;
    }
  
    .socialIcons a {
      padding: 8px;
      margin: 5px;
    }
  
    .socialIcons a i {
      font-size: 1.5em;
    }
  
    .footerNav ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .footerNav ul li a {
      font-size: 0.9em;
      margin: 10px 0;
    }
  
    .footerBottom p {
      font-size: 0.9em;
    }
  }
  
  @media (max-width: 480px) {
    .footerContainer {
      padding: 20px 10px 5px;
    }
  
    .socialIcons {
      flex-wrap: wrap;
    }
  
    .socialIcons a {
      padding: 5px;
      margin: 5px;
    }
  
    .socialIcons a i {
      font-size: 1.2em;
    }
  
    .footerNav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .footerNav ul li a {
      font-size: 0.8em;
    }
  
    .footerBottom p {
        font-size: 10px;
    }
  }
