* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@font-face {
    font-family: 'SaansTRIAL-Medium';
    src: url('../fonts/SaansTRIAL-Medium.woff') format('woff');
}

@font-face {
    font-family: 'SaansTRIAL-Regular';
    src: url('../fonts/SaansTRIAL-Regular.woff') format('woff');
}

@font-face {
    font-family: 'HelveticaNowDisplay-Regular';
    src: url('../fonts/HelveticaNowDisplay-Regular.woff') format('woff');
}

@font-face {
    font-family: 'urban';
    src: url('../fonts/urban.woff') format('woff');
}

@font-face {
    font-family: 'times';
    src: url('../fonts/times');
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0px;
}


.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.main-menu1 li a.active {
  color: #FF8F2A;
}


.main-menu1 .sub-menu {
 display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 260px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  flex-direction: column;
  margin: 5px 0 0 0;      
  padding: 5px 0;         
  opacity: 0;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.main-menu1 li:hover > .sub-menu {
 opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.main-menu1 li {
  position: relative;
}

.main-menu1 li a {
  display: block;
  padding: 8px 15px;      
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li a:hover {
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
  padding-left: 25px;
  border-radius: 8px;
}

.main-menu1 .sub-menu li ul {
  position: absolute;
  margin-left: 0px;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 5px 0;      
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.main-menu1 .sub-menu li:hover > ul {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.main-menu1 .sub-menu li ul li ul li a {
    background: #00000070;
}

.main-menu1 .sub-menu li ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li ul li a:hover {
padding: 8px 15px;       
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
}

.container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 5rem;
  box-sizing: border-box;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-section {
  position: relative;
  z-index: 1000;
  padding: 10px 0;
}

.head-img img {
  width: 190px;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  z-index: 1100;
  color: #fff;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
  padding: 8px 15px;         
  line-height: 1.3;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:active {
  color: #FF8F2A;
}

.dropdown > a::after,
.dropdown-sub > a::after {
  content: "▸";
  float: right;
  transition: transform 0.3s;
}

.dropdown.open > a::after,
.dropdown-sub.open > a::after {
  transform: rotate(90deg);
}

.nav-menu ul li .sub-menu li ul {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 0px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  color: #000;
}


@media (max-width: 1024px) {

.nav-menu ul li a.active,
.nav-menu ul li .sub-menu li a.active,
.nav-menu ul li .sub-menu li ul li a.active {
  color: #FF8F2A;
}

.nav-menu ul li .sub-menu li ul {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-width: 80%;
  padding-left: 10px;
  color: #ffffff;
}

.nav-menu ul li .sub-menu li.open > ul {
  max-height: 1000px;
  background: #000;
  width: 100%;
  margin: 0;
  border-radius: 0px;
}

.nav-menu ul li .sub-menu li ul li a {
  font-size: 14px;
  background: #000;
}

.main-menu1 .sub-menu li a:hover {
  border-radius: 0;
}

.nav-menu ul li .sub-menu li.open > ul {
  margin-left: 15px;
}

.nav-menu ul li.open > .sub-menu {
  max-height: 1000px;
  overflow: visible;
  margin-left: 15px;
  box-shadow: none;
}

.nav-menu ul li .sub-menu {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
}

.hamburger {
  display: block;
  font-size: 28px;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  color: white;
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s ease;
  padding-top: 60px;
}

.nav-menu.active {
  display: flex;
}

.nav-menu ul{
  gap: 15px;
}

.nav-menu ul {
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 25px;
  margin: 0;
}

.nav-menu ul li {
  position: relative;
  width: 100%;
  border-width: 40%;
}

.nav-menu ul li.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 15px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.nav-menu ul li.has-submenu > a::after {
  content: "+";
  font-size: 22px;
  color: #FF8F2A;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease, content 0.3s ease;
}

  .nav-menu ul li.open > a::after {
    content: "|";
    transform: rotate(0deg);
    font-size: 12px;
  }

  .nav-menu ul li .sub-menu {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #ffffff;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1000px;
    width: 90%;
    padding: 10px 25px;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px;
    font-size: 15px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li ul {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1200px;
    width: 85%;
    padding: 2px;
  }

  .nav-menu ul li .sub-menu li ul li a {
    font-size: 14px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li a,
  .nav-menu ul li .sub-menu li ul li a {
    line-height: 1.3;
  }

  #closeBtn {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    z-index: 2000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu {
    width: 100vw !important;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 60px;
    z-index: 1500;
  }

  .nav-menu ul li {
    border-width: 40%;
  }

  .nav-menu ul li .sub-menu li {
    border-width: 40%;
  }

  .nav-menu {
    background: radial-gradient(circle at top, #000, #000);
    transition: all 0.4s ease;
  }

  .nav-menu.active {
    animation: slideInMenu 0.4s ease forwards;
  }

  @keyframes slideInMenu {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu ul li {
    transition: all 0.3s ease;
  }

  .nav-menu ul li a {
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .nav-menu ul li a:hover {
    color: #FF8F2A;
  }

  .nav-menu ul li.has-submenu > a::after {
    color: #FF8F2A;
  }

  .nav-menu ul li.open > a::after {
    transform: rotate(90deg);
  }

  .nav-menu ul li .sub-menu {
    background: #000;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    margin-left: 10px;
    border-radius: 0 0 12px 12px;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1500px;
    opacity: 1;
    padding: 1px 0;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px 25px;
    background: transparent;
    display: block;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li a:hover {
    color: #FF8F2A;
    border-radius: 6px;
    padding-left: 35px;
  }

  .nav-menu ul li .sub-menu li ul {
    margin-left: 20px;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1100px;
    border-bottom: 1px solid #333232;
  }

  .nav-menu ul li .sub-menu li ul li a {
    padding: 10px 35px;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li ul li a:hover {
    color: #FF8F2A;
  }

  #closeBtn {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  #closeBtn:hover {
    color: #FF8F2A;
    transform: rotate(90deg);
  }

  
  .nav-menu ul li .sub-menu li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 25px;
    font-size: 17px;
    color: #ffffff;
    background: transparent;
    position: relative;
  }

  .nav-menu ul li .sub-menu li.has-submenu > a::after {
    content: "+";
    font-size: 18px;
    color: #FF8F2A;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease, content 0.3s ease;
  }

  .nav-menu ul li .sub-menu li.open > a::after {
    content: "|";
    font-size: 12px;
  }

  .nav-menu ul li {
  margin: 0;
  padding: 0;
}


.nav-menu ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 0;  
  margin: 0;  
}


.nav-menu ul li:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0); 
}
}

span#closeBtn {
  display: none;
}



/* faq hero section */

.faq-hero {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url("../images/faq-hero-image.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.faq-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.faq-logo {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.faq-logo img {
    width: 150px;
}

.faq-nav-links {
    display: flex;
    gap: 30px;
}

.faq-nav-links a {
     transition: 0.3s;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.faq-nav-links a:hover {
    color: #f57c00;
}

.faq-nav-links a.active {
    color: #FF8F2A;
}



/* Hamburger Button */

.faq-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.faq-hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}


/* Centered Heading */

.faq-hero-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5.2rem;
    color: #fff;
    /* font-weight: 600; */
    text-align: center;
}

.faq-highlight {
    color: #FF8F2A;
    font-weight: 510;
    font-style: italic;
    font-family: times;
}

/* Responsive Navbar */

@media (max-width: 768px) {

    .faq-hamburger {
        display: flex;
    }

    .faq-nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 60px;
        flex-direction: column;
        gap: 20px;
        background-color: #fff;
        padding: 15px 25px;
        border-radius: 20px;
        z-index: 999;
    }

    .faq-nav-links.active {
        display: flex;
    }
}


/* footer section */

.footer-section {
    background-color: #f8f8f8;
    padding: 60px 0 20px;
    /* font-family: sans-serif; */
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-box.footer-logo-box {
    width: 30%;
}

.footer-box.footer-logo-box a {
    color: #fff;
}

.footer-logo-box img {
    width: 175px;
    margin-bottom: 15px;
}

.footer-box h4 {
    font-size: 20px;
    margin: 12px 0;
    color: #1c1c1c;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
}

.footer-box p,
.footer-box ul li a {
    font-size: 18px;
    text-decoration: none;
    line-height: 1.6;
    /* font-family: 'SaansTRIAL-Medium'; */
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* .footer-box.footer-logo-box p {
  color: #00262C;
  max-width: 280px;
  font-family: 'SaansTRIAL-Medium';
  font-weight: 500;
  padding-bottom: 20px;
  letter-spacing: 1px;
} */


.footer-box p,
.footer-box ul li a,
.footer-box a {
    color: #A6A6A6;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}


.footer-bottom {
    margin-top: 30px;
    text-align: center;
}

/* Social Icons With Effects */

.social-icons {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
    padding: 0;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    /* background-color: #fff; */
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    /* border: 2px solid #fff; */
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icons a i {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
}

.social-icons a:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 2;
}

.social-icons a:hover::before {
    top: 0;
}


.social-icons a:nth-child(1)::before {
    background: #3b5999;
    /* Facebook */
}

.social-icons a:nth-child(2)::before {
    background: #0077b5;
    /* LinkedIn */
}

.social-icons a:nth-child(3)::before {
    background: #ff0000;
    /* YouTube */
}

.social-icons a:nth-child(4)::before {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    /* Instagram */
}

.copyright {
    text-align: center;
    font-size: 15px;
    color: #A6A6A6;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}



/* responsive */

@media (max-width: 1440px) {
    .elevated-section .features {
        width: 45%;
    }
}

@media (max-width: 1024px) {


    /* footer section */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        gap: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 125%;
    }

}



@media(max-width:990px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 58vw;
    /* height: 50vh; */
    background: #fff;
    flex-direction: column;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    font-family: SaansTRIAL-Regular;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger {
    display: block;
    color: #fff;
    font-size: 35px;
  }

  .head-img img {
        width: 100px;
    }


 .nav-menu ul li .submenu {
  display: block;
  position: absolute;
  top: 120%; 
  left: -5%; 
  min-width: 160px;
  border-radius: 16px;
  margin-top: 15px;
}


.nav-menu ul li .submenu li a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000; 
  transition: all 0.3s ease;
  position: relative;
}
}


@media (max-width: 768px) {


    /* footer-section */

    .footer-box p,
    .footer-box ul li a {
        font-size: 15px;
    }

    .footer-box {
        width: 32%;
    }

    .footer-box.footer-logo-box p {
        margin: 0 auto;
    }

    .social-icons {
        text-align: center;
    }

    .footer-grid {
        gap: 10px;
    }

    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-logo-bottom img {
        width: 120px;
    }

    .footer-box.footer-logo-box p {
        max-width: 100%;
        text-align: center;
    }

}

.glow-button {
    position: relative;
    padding: 12px 10px;
    font-size: 14px;
    /* font-weight: 600; */
    color: white;
    background: #FF8F2B;
    /* Solid orange initial look */
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    width: 130px;
    text-align: center;
    height: 48px;
    justify-content: center;
    font-family: 'helvetica neue', sans-serif;
}

.glow-button span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, filter 0.3s ease;
}

.glow-button .icon {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.glow-button::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 999px;
    background: conic-gradient(from 0deg,
            #FF8F2B 0%,
            #ffc382 25%,
            #FF8F2B 50%,
            #ffbc7a 75%,
            #FF8F2B 100%);
    z-index: 0;
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-button::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #FF8F2B;
    /* Same solid orange to match front */
    border-radius: 999px;
    z-index: 1;
    pointer-events: none;
}

.glow-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #FF8F2Baa;
}

.glow-button:hover::before {
    opacity: 1;
    animation: spinBorder 3s linear infinite, pulseGlow 1.5s ease-in-out infinite;
}

.glow-button:hover span {
    filter: brightness(1.3);
}

@keyframes spinBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: brightness(1.1) drop-shadow(0 0 6px #FF8F2B);
    }

    50% {
        filter: brightness(1.6) drop-shadow(0 0 16px #ffc382);
    }
}

@media (max-width: 500px) {
    .glow-button {
        padding: 3px 1px;
        font-size: 12px;
    }
}




@media(max-width:560px) {

    .container {
        padding: 0 20px;
    }


    /* property hero section */

    .property-hero {
        height: 200px;
    }

    .property-hero-heading {
        font-size: 2.0rem;
    }

    .property-navbar {
        padding: 15px;
    }

    .property-logo img {
        width: 90px;
    }

    /* Book a Site Visit */

    .site-visit-content .left-content h2 {
        font-size: 1.9rem;
    }

    .floating-input label {
        font-size: 13px;
    }

    .site-visit-section{
        padding: 30px 0;
    }

    /* inquery-section */

    .inquery-section {
        width: 100%;
        height: 350px;
    }

    .inquery h2 {
        color: #00262C;
        margin-bottom: 20px;
        font-size: 30px;
    }

    /* .glow-button {
        font-size: 12px;
        gap: 10px;
        width: 115px;
        height: 40px;
    } */

    /* footer section */

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-box,
    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 30px 0;
    }

    /* .inquiry-btn {
        width: 30%;
        padding: 10px;
        justify-content: center;
    } */

    .copyright {
        font-size: 12px;
    }

    .social-icons {
        width: 100%;
    }


    .orion-residence-section .btn {
        font-size: 11px;
        padding: 5px 8px
    }

    .glow-button{
        height: 35px;
    }

}



/* animation-heading */

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
}

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
    line-height: 1.4;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
    margin-right: 6px;
}

.word.visible {
    opacity: 1;
    transform: translateY(0);
}

.line {
    display: block;
}




  .footer-section {
    width: 100vw;             /* full viewport width */
    margin: 0;                /* remove side gaps */
    padding: 60px 0 20px;
    background-color: #f8f8f8;
    overflow-x: hidden;       /* prevent scrollbar */
}

.footer-grid {
    max-width: 1600px;        
    margin: 0 auto;           
    padding: 0 5rem;         
}


  h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
    font-weight: 600;
  }

  /* Contact Box */
  .contact-box {
    background-color: #F9F9F9;
    border-left: 5px solid #D0CFAE;
    padding: 20px 25px;
    margin-bottom: 40px;
    border-radius: 8px;
    margin-top: 50px;
  }

  .contact-box p {
    margin: 10px 0;
    font-size: 16px;
  }

  .contact-box a {
    color: #0073AA;
    text-decoration: none;
    font-weight: 500;
  }

  body{
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }

  .contact-box a:hover {
    text-decoration: underline;
  }

  /* Sections */
  .section {
    margin: 30px 0;
    padding: 25px 30px;
    border-radius: 10px;
    background-color: #F7F8F5;
    border: 1px solid #E2E2E2;
  }

  .section h2 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
    font-family: "Libre Bodoni", serif;
  }

  .section p, .section ul {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
    line-height: 1.6;
     font-family: 'Helvetica Neue', Arial, sans-serif;
  }

  /* FAQ Section */
  .faq-section {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .faq-section h2 {
    font-size: 26px;
    color: #222;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: "Libre Bodoni", serif;
  }

  .faq-list {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid #E8E8E8;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    background-color: #F2F4F0;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }

  .faq-question:hover {
    background-color: #E8EAE5;
  }

  .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-question::after {
    transform: rotate(45deg);
  }

  .faq-answer {
    display: none;
    padding: 18px 22px;
    background-color: #fff;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .container {
      padding: 30px 20px;
    }
    h1 {
      font-size: 28px;
    }
    .section {
      padding: 20px;
    }
    .faq-question {
      font-size: 15px;
      padding: 16px 18px;
    }
  }
