




/*-----------------------------
Font
------------------------------*/
@font-face {
    font-family:gestureblack ;
    src: url(/Fonts/GesturaDisplayTRIAL-Black-BF64b755043ed40.otf);
}

@font-face {
    font-family:gestureblackitalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-BlackItalic-BF64b7550432a4e.otf);
}

@font-face {
    font-family:gesturebold ;
    src: url(/Fonts/gesturadisplaytrial-bold-bf64b75504296e4.otf)
}

@font-face {
    font-family:gesturebolditalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-BoldItalic-BF64b755041c775.otf)
}

@font-face {
    font-family:gestureextralight ;
    src: url(/Fonts/GesturaDisplayTRIAL-Extralight-BF64b755044b041.otf)
}

@font-face {
    font-family:gestureextralightitalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-ExtralightItalic-BF64b755043453d.otf)
}


@font-face {
    font-family:gesturelight ;
    src: url(/Fonts/GesturaDisplayTRIAL-Light-BF64b755042b875.otf)
}

@font-face {
    font-family:gesturelightitalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-LightItalic-BF64b755042916b.otf)
}


@font-face {
    font-family:gestureregular ;
    src: url(/Fonts/GesturaDisplayTRIAL-Regular-BF64b755043c4b8.otf)
}

@font-face {
    font-family:gestureregularitalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-RegularItalic-BF64b755044df69.otf)
}

@font-face {
    font-family:gesturesemibold ;
    src: url(/Fonts//GesturaDisplayTRIAL-Semibold-BF64b755044a586.otf)
}

@font-face {
    font-family:gesturesemibolditalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-SemiboldItalic-BF64b755022ddfa.otf)
}

@font-face {
    font-family:gesturesemibold ;
    src: url(/Fonts/GesturaDisplayTRIAL-Semibold-BF64b755044a586.otf)
}

@font-face {
    font-family:gesturesemibolditalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-SemiboldItalic-BF64b755022ddfa.otf)
}

@font-face {
    font-family:gesturethin ;
    src: url(/Fonts/GesturaDisplayTRIAL-Thin-BF64b7550452dd6.otf)
}

@font-face {
    font-family:gesturethinitalic ;
    src: url(/Fonts/GesturaDisplayTRIAL-ThinItalic-BF64b755042f49b.otf)
}

@font-face {
    font-family:helvatica ;
    src: url(/Fonts/helvetica.ttf)
}

@font-face {
    font-family:helvaticabold ;
    src: url(/Fonts/helvetica-bold.ttf)
}










/*-----------------------------
Header
------------------------------*/
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
     
    }

   header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      color: white;
      transition: background 0.5s ease, color 0.3s;
    }

    header.scrolled {
      animation: slideDownBg 0.5s ease forwards;
      color: #000;
    }

    header.scrolled .hamburger svg line {
  stroke: #000 ;
}

    @keyframes slideDownBg {
      0% {
        background: transparent;
        transform: translateY(-100%);
      }
      100% {
        background: white;
        transform: translateY(0);
      }
    }

    header.scrolled nav a {
      color: black;
    }

header.scrolled .brochure-btn {
    border: 1px solid #000;
}

    .header-section {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


    .logo img {
      height: 40px;
    }

    nav {
      display: flex;
      gap: 35px;
      align-items: center;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-size: 0.7rem;
      transition: 0.3s;
      font-family:helvatica;
      font-weight: light;
    }

    nav a:hover {
      opacity: 0.8;
    }

    .brochure-btn {
      background: #fff;
      color: #000;
      padding: 5px 15px;
      border-radius: 20px;
     font-size: 0.7rem;
      font-family: helvatica;
      text-decoration: none;
    }

    .brochure-btn img{
      height: 12px; 
      margin-right: 8px; 
      vertical-align: top;
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .hamburger img {
      width: 30px;
      height: 30px;
    
    }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index:9999;

  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


    .mobile-menu a {
      color: #fff;
      font-size: 1rem;
      margin: 15px 0;
      text-decoration: none;
      font-family: helvatica;
    }


    .mobile-menu .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      cursor: pointer;
    }

   

    /*-------------------------------------
    Home Section 2
    -------------------------------------*/
        .home-section-2 {
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 60px 20px;
      position: relative;
    }

    .home-section-2 h1 {
      font-family:gesturelightitalic; 
      font-weight: 600;
      color: #0a1b3d;
      line-height: 1.4;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .home-section-2 h1 span {
      display: inline-block;
      opacity: 0;
      transform: translateY(40px);
      margin: 0 5px;
      white-space: nowrap;
      color: #000;
      font-size: 1.5rem;
    }

    .home-section-2 p {
      margin-top: 10px;
      font-size: 0.75rem;
      font-weight: 500;
      color: #000;
      opacity: 0;
      transform: translateY(20px);
      font-family: helvatica;
    }

    .home-section-2 .divider {
      width: 80px;
      height: 2px;
      background: #0a1b3d;
      margin-top: 15px;
      opacity: 0;
      transform: scaleX(0);
    }


     /*-------------------------------------
    Home Section 3
    -------------------------------------*/

      .home-section-3 {
      position: relative;
      height: 60vh;
      overflow: hidden;
    }

    .zoom-container {
      position: absolute;
      top: 0;
      left: 50%;
      width: 0;
      height: 100%;
      transform: translateX(-50%);
      z-index: 1;
      overflow: hidden;
    }

    .zoom-image {
      width: 100vw;
      height: 100%;
      object-fit: cover;
    }

    .home-section-3-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
    }

    .home-section-3-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 1000px;
      width: 100%;
      color: white;
      gap: 30px;
    }

    .home-section-3-left {
      flex: 1 1 50%;
      font-family: gestureextralightitalic;
      font-size: 1.2rem;
      line-height: 1.2;
    }

    #headline-text span {
      display: inline-block;
      opacity: 0;
      transform: translateY(40px);
  
    }

    .home-section-3-right {
      flex: 1 1 40%;
      text-align: left;

    }

    .home-section-3-right p {
      opacity: 0;
      transform: translateY(40px);
      margin-bottom: 15px;
      line-height: 1.3;
      font-family: helvatica;
     font-size: 0.8rem;
    }

   .discover-btn {
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.6rem;
  font-family: Helvetica, sans-serif;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.8);
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
  z-index: 1;
  background-color: transparent;
}

.discover-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: left 0.4s ease;
  z-index: 0;
}

.discover-btn:hover::before {
  left: 0;
}

.discover-btn:hover {
  color: #000;
  border-color: #fff;
}

.discover-btn span {
  position: relative;
  z-index: 1;
}

.section-divider{
  height: 10vh;
}

  


/*------------------------------------------
Home Section 4
------------------------------------------*/

  .home-section-4 {
      padding: 100px 80px;
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 40px;
      background-color: #454442;
    }

    .home-section-4-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .home-section-4-row.centered {
      grid-template-columns: repeat(2, 1fr);
      justify-content: center;
      padding: 0px 100px;
      margin-top: 50px;
    }

    .home-section-4-card {
      text-align: center;
      padding: 20px;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background-color: transparent;
    }

    .home-section-4-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .home-section-4-icon img {
      width: 60px;
      height: auto;
      filter: brightness(0) invert(1);
    }

    .home-section-4-divider {
      width: 2px;
      height: 80px;
      background-color: #8b7766;
      margin: 0px 10px;
    }

    .home-section-4-stats {
      text-align: left;
    }

    .home-section-4-stats h3 {
      font-size: 2.5rem;
      margin: 0;
      color: #fff;
      font-family:gestureregular ;
      letter-spacing: 1px;
    }
    .home-section-4-stats span{
      font-weight: lighter;
      margin-left: 2px;
    }

    .home-section-4-stats p {
      margin: 0;
      font-size: 0.9rem;
          color: #fff;
          font-family: helvatica;
          margin-top: 5px;
    }

    .home-section-4-desc {
      margin-top: 20px;
      font-size: 0.65rem;
      line-height: 1.5;
          color: #ccc;
 
    }

    
 
/*------------------------------------------
Home Section 5
------------------------------------------*/

.section-5{
  background-color: #fafafa;
}


       .home-section-5 {
      padding: 60px 20px;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
   
    }

    .home-section-5 h2 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      font-family: gestureregularitalic;
    }

    .home-section-5 .subtitle {
      font-size: 0.75rem;
      color: #000;
      margin-bottom: 50px;
      font-family: helvatica;
    }

    .home-section-5-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }

    .custom-card {
      text-align: left;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;

    }

    .custom-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .text-container {
      display: flex;
      position: relative;
      margin-top: 0;
      padding-top: 20px;
      margin-left: 40px  ;
      padding-bottom: 40px;
      margin-top: 30px;
    }

    .border-divide {
      width: 1px;
      background-color: #d4a45c;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      margin-top: -100px;
    }

    .text-content {
      padding-left: 20px;
    }

    .text-content h4 {
     font-family: gestureregularitalic;
      color: #000;
      font-size: 0.9rem;
      margin: 0 0 8px 0;
      line-height: 1.3;
    }

    .text-content p {
      font-family: helvatica;
      font-size: 0.65rem;
      color: #333;
      line-height: 1.8;
      margin: 0;
      max-width: 200px;
    }

    .middle-bottom{
      margin-top: 50px;
    }

    .middle-bottom img{
      border: 5px solid #d4a45c;
    }

    .section-5-btn {
  text-align: center;
  margin-top: 40px;
}

.golden-btn {
  display: inline-block;
  padding: 5px 20px;
  background-color: transparent;
  color: #d4a45c;
  border: 1px solid #d4a45c;
  border-radius: 30px;
  font-size: 0.7rem;
  font-family: helvatica;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.golden-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #d4a45c;
  transition: all 0.4s ease;
  z-index: 0;
}

.golden-btn:hover::before {
  left: 0;
}

.golden-btn:hover {
  color: #fff;
  border-color: #d4a45c;
}

.golden-btn span {
  position: relative;
  z-index: 1;
}




  /*------------------------------------------
Home Section 6
------------------------------------------*/
 .home-section-6 {
      padding: 60px 80px;
      text-align: center;
    }

    .home-section-6-container {
      max-width: 100%;
      margin: 0 auto;
    }

    .home-section-6-title {
      font-size: 1.8rem;
      margin-bottom: 10px;
      font-family: gestureregularitalic;
    }

    .home-section-6-subtitle {
      font-size: 0.75rem;
      color: #000;
      margin-bottom: 50px;
      font-family: helvatica;
    }

    .home-section-6-projects {
      display: flex;
      gap: 50px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .home-section-6-card {
      border-radius: 12px;
      overflow: hidden;
      max-width: 400px;
      flex: 1 1 300px;
      transition: transform 0.3s ease;
    }

    .home-section-6-card:hover {
      transform: translateY(-10px);
    }

    .home-section-6-card img {
      width: 100%;
      height: auto;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .home-section-6-card-title {
      font-size: 0.9rem;
      font-weight: 500;
      padding: 16px 0;
      color: #000;
      font-family: helvaticabold;
      letter-spacing: 0.6rem;
      margin-top: 10px;

    }

    

    .home-section-6-button {
  display: inline-block;
  padding: 5px 20px;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 0.7rem;
  font-family: helvatica;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.home-section-6-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: all 0.4s ease;
  z-index: 0;
}

.home-section-6-button:hover::before {
  left: 0;
}

.home-section-6-button:hover {
  color: #fff;
  border-color: #000;
}

.home-section-6-button span {
  position: relative;
  z-index: 1;
}




  /*------------------------------------------
Home Section 7
------------------------------------------*/
  

 .home-section-7 {
      padding: 60px 0px;
    }

    .home-section-7-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 100%;
      margin: 0 auto;
    }

    .home-section-7-left {
      flex: 1 1 400px;
      text-align: center;
    }

    .home-section-7-left iframe {
      width: 80%;
      height: 350px;
      border: 0;
      padding-left: 70px;
    }

    .home-section-7-right {
      flex: 1 1 350px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .home-section-7-line {
      font-size: 1.5rem;
      color: #d3cfcf;
      font-family: gestureregularitalic;
      border-bottom: 2px solid #e3cbb6;
      padding-bottom: 6px;
      transition: color 0.3s ease;
      cursor: pointer;
      font-weight: 400;
    }

    .home-section-7-line:hover {
      color: #d4a45c;
    }

 
  /*------------------------------------------
Home Section 8
------------------------------------------*/

     .home-section-8 {
      padding: 60px 80px;
      text-align: center;
    }

    .home-section-8 h2 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      font-family: gestureregularitalic;
    }

    .home-section-8 p {
      font-size: 0.75rem;
      color: #000;
      margin-bottom: 30px;
      font-family: helvatica;
    }

    .swiper {
      padding: 60px 0;
      overflow: hidden;
    }

    .swiper-wrapper {
      overflow: visible;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      transition: transform 0.4s ease;
      transform: scale(0.95);
    }

    .swiper-slide.center-slide {
      transform: scale(1.2);
      z-index: 2;
    }

    .blog-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      width: 100%;
      max-width: 350px;
    }

    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .blog-card .content {
      padding: 20px;
      text-align: center;
    }

    .blog-card .content h4 {
      font-size:0.6rem;
      font-weight: 100;
      margin: 0 0 10px;
      text-transform: uppercase;
      color: #000;
      font-family: helvatica;
      line-height: 1.5;
      text-align: left;
    }

    .blog-card .content .date-blog {
      float: right;
      font-size: 0.6rem;
      color: #d4a45c;
      font-family: helvatica;
      margin-top: -15px;
      text-transform: capitalize;
      text-align: end;

    }
    .blog-card .content .pub-1 {
      float: right;
      font-size: 0.6rem;
      color: #000;
      font-family: helvaticabold;
      margin-bottom: 0px;
    }

    .blog-card .content .para {
      font-size: 0.5rem;
      color: #000;
      margin-top: 20px;
      line-height: 1.7;
      text-align: center;
      margin-bottom: 0px;
    }


 .blog-btn {
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #000;
  border-radius: 20px;
  background: transparent;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  font-size: 0.6rem;
  margin-top: 30px;
  font-family: helvatica;
}

.blog-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
  transition: left 0.4s ease;
}

.blog-btn:hover::before {
  left: 0;
}

.blog-btn span {
  position: relative;
  z-index: 2; /* Ensure text is above background */
}

.blog-btn:hover {
  color: #fff;
}


    /* Pagination styles */
    .swiper-pagination {
      margin-top: 80px;
      position: static;
      text-align: center;
    }

    .swiper-pagination-bullet {
      background: #ccc;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: #000;
    }


    /*------------------------------
    Home section 9
    --------------------------------*/
     .home-section-9 {
      padding: 0px 20px;
      text-align: center;
    }

    .home-section-9 h2 {
     font-size: 1.8rem;
      margin-bottom: 10px;
      font-family: gestureregularitalic;
    }


    .home-section-9 p {
      font-size: 0.75rem;
      color: #000;
      margin-bottom: 30px;
      font-family: helvatica;
    }

    .swiper.testimonial-swiper {
      padding-bottom: 60px;
      overflow: hidden ;
    }

    .testimonial-swiper {
    padding: 20px 0;
    }

 .swiper-wrapper{
  overflow: visible;
 }

  .swiper-slide-1 {
      display: flex;
      justify-content: center;
      transition: transform 0.4s ease;
      transform: scale(0.95);
    }

    
   

    .testimonial-card {
      background: #fff;
      border: 1px solid #c49c72;
      border-radius: 12px;
      max-width: 400px;
      width: 100%;
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .testimonial-image img {
      width: 100px;
      height:100px;
    }

    .testimonial-content {
      text-align: left;
    }

    .testimonial-content h4 {
      font-size: 1rem;
      font-family: gestureregularitalic;
      margin: 0 0 8px;
      margin-top: 0px;
    }

    .stars {
      float: right;
      color: #c49c72;
      font-size: 1.2rem;
      margin-bottom: 0px;
      margin-top: -7px;
    }

    .testimonial-content p {
      font-size: 0.4rem;
      color: #333;
      line-height: 1.6;
      font-family: helvatica;
       margin-bottom: 0px;
    }

    .swiper-pagination {
      bottom: 10px;
    }

    .swiper-pagination-bullet {
      background: #ccc;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: #000;
    }


     /*------------------------------
    Footer
    --------------------------------*/
     footer {
      background-color: #3b3937;
      padding: 60px 150px ;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-left {
      flex: 1;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
    }


    .footer-info {
      max-width: 400px;
    }

    .footer-logo img {
      width: 180px;
      margin-bottom: 80px;
    }

    .footer-contact p {
      font-size: 0.6rem;
      margin: 10px 0;
      color: #ccc;
      font-family: helvatica;
    }

    .footer-contact strong {
      display: block;
      font-weight: 100;
      margin-bottom: 2px;
      color: #fff;
      font-family: helvatica;
    }

    .footer-social {
      margin-top: 20px;
       

    }

    .footer-social p {
      font-size: 0.6rem;
      color: #ccc;
      margin-bottom: 10px;
      font-family: helvatica;
      color: #d4a45c;
    }

    .footer-social a {
      margin-right: 15px;
      display: inline-block;
      vertical-align: middle;
    }

    .footer-social img {
      width: 15px;
      height: 15px;
      filter: brightness(0) invert(1);
    }

    .footer-sitemap {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
     padding: 30px 40px ;
    }

    .footer-sitemap p {
      font-size: 0.6rem;
      color: #d5ac8f;
      font-weight: bold;
      margin-bottom: 10px;
      font-family: helvatica;
    }

    .footer-sitemap a {
      text-decoration: none;
      color: #ccc;
      font-size: 0.5rem;
      margin-bottom: 10px;
      font-family: helvatica;
    }

    .footer-sitemap a:hover {
      color: #fff;
    }

    .footer-right {
      flex: 1;
      max-width: 420px;
        text-align: center;
    }

    .footer-right h3 {
      font-family: gesturelightitalic;
      font-size: 24px;
      margin-bottom: 10px;
      color: #fff;
    
    }

    .footer-right p {
      font-size: 0.8rem;
      color: #ccc;
      margin-bottom: 30px;
      font-family: helvatica;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px 20px;
    }

    .form-grid input,
    .form-grid textarea {
      padding: 5px 15px;
      border: none;
      border-radius: 4px;
      font-size: 0.7rem;
      width: 100%;
      font-family: helvatica;
      letter-spacing: 2px;
      text-align: center;
    }

    input::placeholder,
textarea::placeholder {
  color: #ccc; 
  opacity: 1;  
  font-weight: 100;
}

    .form-grid textarea {
      grid-column: span 2;
      resize: none;
      height: 25px;
    }

    .form-grid button {
      grid-column: span 2;
      width: 120px;
      margin: 0 auto;
      padding: 5px 0;
      background-color:#c7a386;
      color: #000;
      border: none;
      border-radius: 20px;
      font-size: 0.8rem;
      cursor: pointer;
      margin-top: 20px;
      font-family: helvatica;
    }

    input:focus,
textarea:focus,
button:focus {
  outline: none;
  box-shadow: none;
}
    .footer-bottom {
      width: 100%;
      text-align: left;
      font-size: 0.6rem;
      color: #999;
      margin-top: 10px;
      font-family: helvatica;
    }

 
    /*----------------------------------
    About-section-1
    ------------------------------------*/
      .about-section-1 {
      padding: 20px 20px 0px 80px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      min-height: 80vh;
    }

    .about-section-1 .content {
      max-width: 600px;
      margin-top: 100px;
    }

    .about-section-1 h2 {
      font-size: 3.5rem;
      font-family: gestureregularitalic;
      font-weight: bold;
      color: #444;
    }

   

    .about-section-1 hr {
      margin: 20px 0;
      width: 100px;
      border: 1px solid #d4a45c;
    }

    .about-section-1 p {
      font-size: 0.6rem;
      line-height: 1.6;
      font-family:helvatica;
      color: #000;
      max-width: 450px;
    }


      /*----------------------------------
    About-section-2
    ------------------------------------*/

    
       .about-section-2 {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
    }

    .about-section-2 video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-section-2 .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: 2px solid #fff;
      transition: 0.3s ease;
      z-index: 2;
    }

    .about-section-2 .play-button:hover {
      background: rgba(255, 255, 255, 0.4);
    }

    .about-section-2 .play-button::before {
      content: '';
      display: inline-block;
      margin-left: 5px;
      border-style: solid;
      border-width: 15px 0 15px 25px;
      border-color: transparent transparent transparent #fff;
    }

    .about-section-2::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    @media (max-width: 768px) {
      .about-section-2 .play-button {
        width: 60px;
        height: 60px;
      }

      .about-section-2 .play-button::before {
        border-width: 10px 0 10px 18px;
      }
    }

    /*-----------------------------------
    About section 3
    -----------------------------------*/
     .about-section-3 {
      display: flex;
      justify-content: space-between;
      align-items:center;
      background-color: #444;
      padding: 100px 10%;
      color: #fff;
      gap: 40px;
      flex-wrap: wrap;
    }

 .about-section-3 .left {
      flex: 1 1 40%;
      min-width: 280px;
      text-align: left;
    }

    .about-section-3 .left h2 {
      font-size: 1.6rem;
      font-family:gestureregularitalic;
      font-weight: 100;
      color: #e6e2dc;
      line-height: 1.1;
      margin: 0;
      position: relative;
    }

    .about-section-3 .left h2::after {
      content: '';
      display: block;
      width: 30px;
      height: 1px;
      background-color: #d2a661;
margin-top: 10px;
    }




    .about-section-3 .right {
      flex: 1 1 50%;
      min-width: 280px;
    }

    .about-section-3 .right p {
      position: relative;
      margin-bottom: 25px;
      line-height: 1.7;
      font-size: 0.8rem;
      padding-left: 20px;
      font-family: helvatica;
      max-width: 550px;
    }

    .about-section-3 .right p::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 1px;
      height: 90%;
      background-color: #d2a661;
    }

  
    /*-----------------------------
    About section 4
    ----------------------------*/
      .about-section-4 {
      display: flex;
      flex-wrap: wrap;
      padding: 80px 10% 160px 10%;
      background-color: #fff;
      color: #0d1a33;
      gap: 40px;
    }

    
    .about-section-4 .right {
      flex: 1 1 50%;
      min-width: 280px;
    }

    .about-section-4 .left{
      flex: 1 1 40%;
      min-width: 280px;
    }

    .about-section-4 .left {
      display: flex;
      align-items: center;       
      justify-content: flex-start;   
      text-align: center;
    }

    .about-section-4 .left h2 {
     font-size: 1.6rem;
      font-family:gestureregularitalic;
      font-weight: bold;
      margin: 0;
      line-height: 1.4;
      position: relative;
      color: #0d1a33;
    }

    .about-section-4 .left h2::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background-color: #c7b299;
      margin-top: 10px;
    }

    .about-section-4 .right {
      font-size: 0.65rem;
      line-height: 1.7;
      color: #0d1a33;
      font-family: helvatica;
    }

    /*-----------------------------
    About section 5
    ----------------------------*/
     .about-section-5 {
      margin: 0px 10% ;
      border-top: 1px solid #d2a661;
      border-bottom: 1px solid #d2a661;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      background-color: #fff;
      color: #0d1a33;
padding: 60px 0px;

    }

    .about-section-5 .text {
      flex: 1 1 50%;
    }

    .about-section-5 .text small {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 2px;
      color: #000;
      font-weight: 100;
      margin-bottom: 5px;
      text-transform: uppercase;
      font-family: helvatica;
    }

    .about-section-5 .text h2 {
      font-size: 1.6rem;
     font-family: gestureregularitalic;
      font-weight: bold;
      margin: 0;
      color: #000;
    }

    .about-section-5 .button {
      flex: 1 1 150px;
      display: flex;
      justify-content: flex-start;
    }

    .about-section-5 .button a {
      margin-top: 0px;
    }

  

   /*-----------------------------------
   About section 6
   --------------------------------*/
    .about-section-6 {
      display: flex;
      height: 500px;
      overflow: hidden;
      margin: 80px 0px;
    }

    .about-section-6 .box {
      flex: 1;
      min-width: 0;
      position: relative;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: flex 0.5s ease-in-out;
    }

     .about-section-6 .box1 , .box3{
      background-color: #4a4a4a;
     }

      .about-section-6 .box2 , .box4{
      background-color: #444;
     }
    .about-section-6:hover .box {
      flex: 1;
    }

    .about-section-6 .box:hover {
      flex: 2;
    }

    .about-section-6 .box .default-year {
      font-size: 2rem;
      font-family: gestureregularitalic;
      z-index: 2;
      transition: opacity 0.2s ease;
      opacity: 1;
      position: absolute;
    }

    .about-section-6 .box:hover .default-year {
      opacity: 0;
    }

    .about-section-6 .overlay {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .about-section-6 .overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5); 
    }

    .about-section-6 .box:hover .overlay {
      opacity: 1;
      transition-delay: 0s;
    }

    .about-section-6 .content {
      position: absolute;
      z-index: 3;
      text-align: left;
      padding: 20px;
      opacity: 0;
      transition: none; 
   max-width: 80%;
    }

    .about-section-6 .box:hover .content {
      opacity: 1;
      transition: opacity 0.4s ease 0.4s; 
    }

    .about-section-6 h3 {
      font-family: gestureregularitalic;
      font-size: 2rem;
      margin-bottom: 10px;
      font-weight: 100;
    }

    .about-section-6 .text-content {
      font-size: 0.7rem;
      font-family:helvatica;
      line-height: 1.5;
      padding-left: 0px;
      margin-top: 30px;
      max-width: 80%;
    }



  
    .box1 .overlay {
      background-image: url('/Images/Home Page/08.jpg');
    }

    .box2 .overlay {
      background-image: url('/Images/Home Page/08.jpg');
    }

    .box3 .overlay {
      background-image: url('/Images/Home Page/08.jpg');
    }

    .box4 .overlay {
      background-image: url('/Images/Home Page/08.jpg');
    }

 
/*-----------------------------------
About section 7
------------------------------------*/
.about-section-7 {
      padding: 0px 150px 60px 150px;
      text-align: center;
    }

    .about-section-7 h2 {
      font-family: gestureregularitalic;
      font-size: 1.6rem;
      margin-bottom: 10px;
    }

    .about-section-7 .subheading {
      font-size: 0.7rem;
      max-width: 530px;
      margin: 0 auto 40px;
      color: #555;
      font-family: helvatica;
    }



    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 100%;
      margin: 0 auto;
    }

    .team-member {
      text-align: left;
    }

    .team-member img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }

    .team-member .name {
      font-family: gestureregularitalic;
      font-weight: bold;
      margin-top: 15px;
      font-size: 1.5rem;
    }

    .team-member .position {
      font-size: 0.65rem;
      color: #555;
      margin-top: 5px;
      font-weight: 100;
      font-family: helvaticabold;
    }


    @media (max-width: 992px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

     /*-----------------------------
    About section 8
    ----------------------------*/
     .about-section-8 {
      padding: 100px 150px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      background-color: #fafafa;
      color: #0d1a33;
      margin-bottom: 60px;
    }

    .about-section-8 .text {
      flex: 1 1 50%;
    }

    .about-section-8 .text small {
      display: block;
      font-size: 0.75rem;
      letter-spacing:0px;
      color: #000;
      font-weight: 100;
      margin-bottom: 5px;
      font-family: helvatica;
      margin-top: 15px;
    }

    .about-section-8 .text h2 {
      font-size: 1.6rem;
     font-family: gestureregularitalic;
      font-weight: bold;
      margin: 0;
      color: #4a4a4a;
    }

    .about-section-8 .button {
      flex: 1 1 150px;
      display: flex;
      justify-content: flex-start;
    }

    .about-section-8 .button a {
      margin-top: 0px;
    }

  

    /*-----------------------------------
    Project section 1
    ---------------------------------*/
      .project-section-1 {
      text-align: center;
      padding: 60px 20px;
    }

    .project-section-1 h2 {
      font-size: 1.5rem;
     font-family: gestureregularitalic;
      color: #0c1c36;
      margin-bottom: 20px;
    }

    .project-section-1 p {
      font-size: 0.6rem;
      color: #333;
      max-width: 600px;
      margin: 0 auto 10px auto;
      line-height: 1.6;
      font-family: helvatica;
    }

    .project-section-1 a {
      margin-top: 10px;
    }

    .project-section-1 .btn:hover {
      background-color: #d4a07c;
      color: #fff;
    }

  /*---------------------------
  Project section 2
  ----------------------------*/
    .project-section-2 {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 20px;
    }

    .project-section-2 p {
      font-family:gesturebolditalic;
      color: #000;
      font-size: 1.5rem;
      line-height: 1.2;
      max-width: 800px;
      margin: 0;
    }

   
     /*-----------------------------
    Project section 2
    ----------------------------*/
     .project-section-3 {
      border-top: 1px solid #c7a47e;
      border-bottom: 1px solid #c7a47e;
      padding: 40px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      margin-bottom: 100px;
    }

    .project-section-3 h2 {
      font-family:gestureregularitalic;
      color: #000;
      font-size: 1.5rem;
      flex: 1 1 300px;
      margin: 0 1rem;
    }

    .project-section-3 .content {
      flex: 2 1 100px;
      text-align: center;
      margin: 0 1rem;
    }

    .project-section-3 .content p {
      font-family: helvatica;
      font-size: 0.7rem;
      color: #0a1b32;
      margin-bottom: 1rem;
    }

    .project-section-3 a {
      margin-top: 0px;
    }

 

    @media (max-width: 768px) {
      .project-section-3 {
        flex-direction: column;
        text-align: center;
      }
      .project-section-3 .content {
        text-align: center;
      }
    }

    /*-------------------------------
    Project-section-4
    --------------------------------*/
    .project-section-4 {
  width: 100%;
  height: auto;
}
.project-section-4 img {
  width: 100%;
  height: auto;
  display: block;
}

 /*-------------------------------
    Projectextend-section-1
    --------------------------------*/


.projectextend-section-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
  margin-top: -150px0;1
}

.projectextend-section-1 img {
  max-width: 100%;
  height: 140px;
  display: block;
  background-color: #4a4a4a;
  padding: 20px 100px;
margin-top: -130px;
}


/*-------------------------------
    Projectextend-section-2
    --------------------------------*/

.productextend-section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  flex-wrap: wrap;
}

.productextend-section-2 .left {
  flex: 1;
  min-width: 300px;
}

.productextend-section-2 .left h2 {
  font-family: gestureregularitalic;
  font-weight: 600;
  color: #4a4a4a;
  font-size: 1.5rem;
}

.productextend-section-2 .right {
  flex: 2;
  min-width: 300px;
}

.productextend-section-2 .right p {
  font-size: 0.6rem;
  color: #222;
  line-height: 1.7;
  font-family: helvatica;
}

      /*-------------------------------
    Projectextend-section-3
    --------------------------------*/


.projectextend-section-3 {
  padding: 60px 0px;
  text-align: center;
  background: #fff;
}

.projectextend-section-3 .section-title h2 {
   font-size: 1.8rem;
      margin-bottom: 10px;
      font-family: gestureregularitalic;
}

.projectextend-section-3 .section-title p {
   font-size: 0.75rem;
      color: #000;
      margin-bottom: 60px;
      font-family: helvatica;
}

.project-gallery-swiper {
  width: 100%;
  padding-bottom: 40px;
}

.project-gallery-swiper .swiper-slide {
  width: 80%;
  opacity: 1;
  transition: transform 1s ease, 
}

.project-gallery-swiper .swiper-slide img {
  width: 88%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.project-gallery-swiper .swiper-slide-active {
  transform: scale(1.30);
  opacity: 1;
}

.swiper-pagination-1 {
  position: relative;
  margin-top: 80px;
}


 /*-------------------------------
    Projectextend-section-4
    --------------------------------*/


.projectextend-section-4 {
  background: #333;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 100px;
}

.projectextend-section-4 .section-title h2 {
    font-size: 1.8rem;
      margin-bottom: 10px;
      font-family: gestureregularitalic;
      color: #fff;
}

.projectextend-section-4 .section-title p {
  font-size: 0.75rem;
      color: #ccc;
      margin-bottom: 60px;
      font-family: helvatica;
}

.amenities-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.amenity-box {
  text-align: center;
  padding: 10px 15px;
  max-width: 120px;
}

.amenity-box img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.amenity-box h3 {
 font-family: gestureregularitalic;
  font-size: 1rem;
  margin: 0;
  font-weight: 100;
}

.divider-1 {
  width: 1px;
  height: 150px;
  background: #b78e66;
}

.know-more-btn {
  margin-top: 40px;
}

.white-btn {
  display: inline-block;
  padding: 5px 20px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 0.7rem;
  font-family: helvatica;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.white-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #d4a45c;
  transition: all 0.4s ease;
  z-index: 0;
}

.white-btn:hover::before {
  left: 0;
}

.white-btn:hover {
  color: #fff;
  border-color: #d4a45c;
}

.white-btn span {
  position: relative;
  z-index: 1;
}


/*-------------------------------------
Blogs
---------------------------------*/
.blog-section-1 {
  padding: 100px 80px 50px 80px;
  max-width: 100%;
  margin: auto;
}

.blog-header-1 {
  text-align: left;
  margin-bottom: 40px;
}

.blog-header-1 p {
  letter-spacing: 4px;
  font-size: 12px;
  color: #333;
  margin-bottom: 8px;
  font-family: helvatica;
  margin-left: 40px;
}

.blog-header-1 h2 {
  font-size: 1.5rem;
margin-bottom: 10px;
      font-family: gestureregularitalic;
      margin-left: 40px;
      color: #333;
}

.blog-grid-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 80px;
}

.blog-card-1 {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-1 img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content-1 {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-title-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-title-row-1 h3 {
  font-size: 0.6rem;
  font-weight: 100;
  font-family:helvaticabold;
  flex: 1;
  text-align: left;
  color: #222;
  line-height: 1.4;
  max-width: 200px;
}

.blog-date-1 {
  font-size: 0.5rem;
  color: #d2a661;
  white-space: nowrap;
  font-family: helvatica;
}

.blog-content-1 p {
  font-size: 0.4rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: auto;
  margin-top: 10px;
  font-family: helvatica;
}

.read-more-1 {
  display: inline-flex;
  align-items: center;
  font-size: 0.5rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  gap: 6px;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-family: helvatica;
}

.read-more-1:hover {
  opacity: 1;
}

.read-more-1 img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.read-more-1:hover .readmore-arrow {
  transform: translateX(3px);
}


@media (max-width:768px){
  
   .mobile{
    display: none;
  }
}

@media (min-width:768px){
 .desktop{
    display: none;
  }
}


/*-------------------------------
Career section 1
-----------------------------*/
.career-section-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 20px 100px 20px;
  gap: 40px;
  max-width: 1100px; 
  margin: 0 auto;
}



.career-text {
  flex: 1 1 150px;
  text-align: left;
 
}

.career-text h2 {
  font-size: 1.6rem;
 font-family: gestureregularitalic;
  color: #4a4a4a;
  line-height: 1.4;
  
}

.career-image {
  flex: 1 1 550px;
  max-width: 100%;
}

.career-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  object-fit: cover;
}

/*-------------------------------
Career section 2
-----------------------------*/
.career-section-2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 100;
  color: #0b1831;
  margin-bottom: 40px;
  font-family: helvatica;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
}

.job-card {
  border: 1px solid #444;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.job-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #4a4a4a;
  font-family: helvatica;
}

.job-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.job-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #4a4a4a;
  font-family: helvatica;
  font-weight: bold;
}

.job-info a {
  font-size: 13px;
  color: #d2a661;
  text-decoration: none;
  font-weight: 500;
  font-family: helvatica;
}

/* Hover effect */
.job-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Tablet: 2 in a row */
@media (max-width: 992px) {
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 in a row */
@media (max-width: 600px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
}


/*------------------------------
Career section 3
----------------------------*/
.career-form {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.career-form h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 30px;
  font-weight: 100;
  font-family: helvatica;
}

.career-form form {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

.form-grid-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.form-grid-1 input[type="text"],
.form-grid-1 input[type="email"] {
  padding: 10px;
  font-size: 0.8rem;
  border: 1px solid #444;
  border-radius: 4px;
  width: 100%;
  text-align: start;
   color: #444;
   font-family: helvatica;
   letter-spacing: 0px;
}

.upload-section {
  margin-bottom: 20px;
}

.upload-section .resume {
  font-weight: 100;
  display: block;
  margin-bottom: 8px;
  font-family: helvatica;
  color: #4a4a4a;
  font-size: 0.8rem;
}

.custom-file-upload {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  background-color: #4a4a4a;
  color: #fff;
  border-radius: 6px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  font-family: helvatica;
  font-weight: 100;
}

.upload-btn:hover {
  background-color: #333;
}

.upload-icon {
  height: 18px;
  width: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
}

input[type="file"] {
  display: none;
}

.upload-section small {
  font-size: 0.6rem;
  color: #666;
  font-family: helvatica;
}


.submit-btn {
  background-color: #d2a661;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
  font-family: helvatica;
  margin-top: 10px;
}


/* Responsive */
@media (max-width: 768px) {
  .form-grid-1 {
    grid-template-columns: 1fr;
  }
}
