@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root{
  --bg-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bd-font-sans-serif:'Open Sans', sans-serif;
  --bd-light: #F4F6F8;
  --bd-dark: #040F28;
  --primary: #FD5D14;
  --secondary: #FDBE33;
  --light: #F4F6F8;
  --dark: #040F28;
  --gray:#423f3f;
}
*,*::before,*::after{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
    margin: 0;
    font-size: clamp(1rem,2.2vh,1.5rem);
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--bd-font-sans-serif);
    background-color: #fff;
    background-color: whitesmoke;
}
img{
  display: block;
  /* overflow-clip-margin: content-box;
  overflow: clip; */
}
header {
  height: 50px;
  display: flex;
  justify-content: space-around; 
  align-items: center;
  padding: 2rem; 
  background-color: var(--bd-dark);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.4);
  position: fixed;
  top:0;
  width:100%;
  z-index: 1002; 
}
header .header-homepage-button{
  text-decoration: none;
}
.header-logo{
  display:flex;
  flex-wrap:nowrap;
  white-space: nowrap;
  gap:0.5rem;
  align-items:center;
   
}
.header-logo h1{
  font-family: "Roboto", sans-serif;
  font-weight:600;
  font-size:1.5rem;
  color:#fff;
}
.header-logo img{
  width:35%;
  height:auto;
}
nav ul{
  display:flex;
  gap:2rem;
  list-style: none;
}
nav ul li a{
  text-decoration:none;
  color:#fff;
}
nav ul li a:hover{
  color:var(--primary);
  transition: background 0.2s;
}
nav ul li a:active{
  color:var(--primary);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s ease;
}

/* Hide the checkbox */
#toggle-menu {
  display: none;
}
main{
  margin-top:50px;
}
.hero{
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url(../images/hero-bg-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height:100vh;
  
}
.hero-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-top: 20rem;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
}

/* Add animation to inner elements with staggered delays */
.hero-wrapper img,
.hero-wrapper h1,
.hero-wrapper a {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 3s ease-out infinite;
}

.hero-wrapper img {
  animation-delay: 0.2s;
}

.hero-wrapper h1 {
  text-align: center;
  font-size:4.5rem;
  color:var(--bd-light);
  animation-delay: 0.4s;
}


.hero-wrapper a{
  animation-delay: 0.6s;
  text-decoration: none;
  color:var(--bd-light);
  background-color:var(--primary);
  padding:1rem 3rem 1rem 3rem;
  font-size:1.1rem;
  font-weight:700;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.hero-wrapper a:hover{
  background-color: hsla(20, 98%, 63%, 0.9);
  color:black;
  transform: scale(1.05);
}
/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.checklist {
  list-style: none; /* Remove default bullets */
}
.second{
  margin-right:6rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  color: #333;
}

/* Add checkmark before each li */
.checklist li::before {
  content: "✔"; /* Unicode checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #FD5D14; /* Your custom color */
  font-weight: bold;
  font-size: 1rem;
}
.about-section{
  display:flex;
  align-items: center;
  margin:4rem;
  gap:2rem;

}
.about-section .about-image figure{
  width:100%;
  
}
.about-section .about-image figure img{
  width:100%;
  height:auto;
}
.about-list{
  display:flex;
  justify-content: space-between;
  margin-top:1.5rem;
  font-weight: 610;
}
.about-section .orange-text{
  color:var(--primary);
}
.about{
  width:1000px;
  line-height:1.5;
  color:var(--gray);
}
.about-section .about h2{
  font-size:2.5rem;
  font-weight: 700;
  color:var(--dark);
}
.photo-gallery{
  margin-bottom: -20rem;
}
.container{
  display:flex;
  flex-wrap: wrap;
  width:650px;
  margin:0 auto;
  height:10px;
  
}
.container img{
  width:25%;
  height:auto;
  aspect-ratio: 1/1;
}
.about-section-2{
  display:flex;
  align-items: center;
  margin: 2rem;
  gap:2rem;
}
.about-section-2 .about-image-2 figure{
  width:100%;
  
}
.about-section-2 .about-image-2 figure img{
  width:100%;
  height:auto;
}
.about-2{
  width:1000px;
  line-height:1.5;
  color:var(--gray);
}
.about-section-2 .about-2 h2{
  font-size:2.5rem;
  font-weight: 700;
  color:var(--dark);
}
.about-section-2 a{
  text-decoration: none;
  color:var(--bd-dark);
  border: 2px solid var(--primary);
  padding:0.3rem;
  width:25%;
  margin-top: 2rem;
  font-size:1rem;
  font-weight:500;
  display:block;
  border-radius: 0.5rem;
  text-align: center;
}
.about-section-3{
  display:flex;
  align-items: center;
  margin:5rem 4rem 4rem 4rem;
  gap:2rem;
}
.about-section-3 .about-image-3 figure{
  width:100%;
  
}
.about-section-3 .about-image-3 figure img{
  width:100%;
  height:auto;
}
.about-3{
  width:1000px;
  line-height:1.5;
  color:var(--gray);
}
.about-section-3 .about-3 h2{
  font-size:2.5rem;
  font-weight: 700;
  color:var(--dark);
}
.about-section-3 a{
  text-decoration: none;
  color:var(--bd-dark);
  border: 2px solid var(--primary);
  padding:0.3rem;
  width:25%;
  margin-top: 2rem;
  font-size:1rem;
  font-weight:500;
  display:block;
  border-radius: 0.5rem;
  text-align: center;
}
.visuals iframe{
  width:100%;
}
.testimonials-container{
  display:flex;
  margin-left:5rem;
  gap:2rem;
}
.testimonials-container figure{
  width:45%;
  text-align: center;
  background-color: white;
  border-radius: 2%;
  padding: 5%;
}
.testimonials-container .quote{
  margin: 0 auto;
  width: 20%;
  height: auto;
  margin-bottom: 1rem;
}
.testimonials-container .image{
  width:25%;
  height:auto;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.testimonials-container p{
  font-weight: 500;
}
.testimonials-container .content{
  margin-bottom: 2rem;
}
.testimonials-container figcaption{
  font-weight: 800;
  color: var(--bd-dark);
}
.testimonials{
  margin-top: 5rem;
}
.location .location-container{
  display: flex;
  gap: 1rem;
  margin: 1rem;
  background-color: white;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.location{
  display: flex;
  justify-content: space-between;
}
.footer-nav ul{
  display:flex;
  margin-right: 2rem;
  list-style: none;
  gap: 2rem;
}
.footer-nav ul li a{
  text-decoration: none;
  color: var(--bd-light);
}
footer{
  background-color: var(--bd-dark);
  height:50px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bd-light);
  margin-top: 3rem;
}

@media (max-width: 480px) {
 *,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}

  header{
  justify-content: space-between;
  width: 100%;
 }
  .header-logo {
  z-index: 1003;
}
  nav {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100%;
    height: 45vh;
    background-color: var(--bd-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  #toggle-menu:checked ~ nav {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
     z-index: 1004;
  }
  .hero{
   height: 50vh;
  }
  
  .hero-wrapper h1 {
    font-size: 1rem;
    margin-top: -1rem;
  }
  .hero-wrapper .btn{
    margin-top: -1rem;
    padding: 0.5rem;
    font-size: 1rem;
  }
.hero-wrapper{
  padding-top: 8rem;
}
  .about-section,
  .about-section-2,
  .about-section-3 {
    flex-direction: column;
    margin: 2rem 1rem;
  }
  .about-section-2{
    margin-top: 450px;
  }
  .about,
  .about-2,
  .about-3 {
    width: 100%;
  }
  .about-section .about h2{
    font-size: 2rem;
  }
  .about .about-list{
    flex-direction: column;
  }
  .photo-gallery .container img{
    aspect-ratio: 1/1;
    
  }
  .photo-gallery .container{
    width: 100%;
  }
  .about-section-2 a,
  .about-section-3 a {
    width: 100%;
    padding: 0.7rem;
  }
.visuals iframe{
  width:100%;
  height:230px;
}
  .testimonials-container {
    flex-direction: column;
    margin-left: 0;
  }

  .testimonials-container figure {
    width: 90%;
    margin: 0 auto;
  }

  .location {
    flex-direction: column;
    gap: 2rem;
  }
  .location img{
    width:30%;
  }

  .footer-nav ul {
   display: none;
  }

 .copyright{
  margin: 0 auto;
 }
  
}
@media (max-width: 932px) and (orientation: landscape) {
  /* Styles for mobile devices in landscape mode */
  *,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
 
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
  }
  .header-logo {
  z-index: 1003;
}
  nav {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100%;
    min-height: 55vh;
    background-color: var(--bd-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  #toggle-menu:checked ~ nav {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
    
  }
 
  .hero-wrapper{
    padding-top: 8rem;
  }
  .hero-wrapper h1 {
    margin-top: -1.5rem;
    font-size: 1.5rem;
  }
  .hero-wrapper a{
    margin-top: -1.5rem;
    padding:0.8rem;
  }


  .about-section,
  .about-section-2,
  .about-section-3 {
    flex-direction: row;
    flex-wrap: wrap;
    /* margin: 2rem 1rem; */
  }
  .photo-gallery .container img{
    aspect-ratio: 1/1;
    width: 50%;
  }
 .photo-gallery{
  margin-bottom: -40rem;
 }
  .about-image-2{
    margin-top: 1300px;
  }
  .about,
  .about-2,
  .about-3 {
    width: 100%;
  }

  .testimonials-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 5rem;
  }

 

  .location {
    flex-direction: column;
  }

  .footer-nav ul {
    flex-direction: row;
    justify-content: center;
    display: none;
  }
  .copyright{
    margin: 0 auto;
  }
}
@media (min-width: 600px) and (max-width: 1366px) and (orientation: portrait) {
   *,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
 
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }
  .header-logo {
  z-index: 1003;
}
  nav {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100%;
    min-height: 45vh;
    background-color: var(--bd-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  #toggle-menu:checked ~ nav {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
    
  }
 .hero-wrapper{
  padding-top: 300px;
 }

  .hero-wrapper h1 {
    font-size: 4rem;
  }

  .hero-wrapper .btn {
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
  }

  .about-section,
  .about-section-2,
  .about-section-3 {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem;
  }
.about-section-2{
  margin-top: 1000px;
}
  .about,
  .about-2,
  .about-3 {
    width: 100%;
  }

  .photo-gallery .container img {
    width: 50%;
  }

  .testimonials-container {
    flex-direction: column;
    align-items: center;
    margin-right: 100px;
  }

  .testimonials-container figure {
    width: 100%;
  }

 

  .location {
    flex-direction: column;
    align-items: center;
  }
  .location-container{
    width: 90%;
  }
  .footer-nav{
    display: none;
  }
  .copyright{
    margin: 0 auto;
  }
  footer{
    padding: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }

  .header-logo {
    z-index: 1003;
  }

  nav {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100%;
    min-height: 45vh;
    background-color: var(--bd-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  #toggle-menu:checked ~ nav {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  .hero-wrapper {
    padding-top: 200px;
  }

  .hero-wrapper h1 {
    font-size: 3rem;
  }

  .hero-wrapper .btn {
    padding: 0.8rem 1.2rem;
    font-size: 1.3rem;
  }

  .about-section,
  .about-section-2,
  .about-section-3 {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem;
  }

  .about-section-2 {
    margin-top: 1000px;
  }

  .about,
  .about-2,
  .about-3 {
    width: 100%;
  }

  .photo-gallery .container img {
    width: 45%;
  }

  .testimonials-container {
    flex-direction: column;
    align-items: center;
    margin-right: 50px;
  }

  .testimonials-container figure {
    width: 100%;
  }

  .location {
    flex-direction: column;
    align-items: center;
  }

  .location-container {
    width: 90%;
  }

  .footer-nav {
    display: none;
  }

  .copyright {
    margin: 0 auto;
  }

  footer {
    padding: 2rem;
  }
}


@media (min-width: 1441px) {
  /* Header */
  header {
    padding: 2.5rem 6rem;
    justify-content: space-between;
  }

  .header-logo h1 {
    font-size: 1.8rem;
  }

  nav ul {
    gap: 3rem;
  }

  .about,
  .about-2,
  .about-3 {
    width: 1200px;
    font-size: 1.1rem;
  }

  .about-section,
  .about-section-2,
  .about-section-3 {
    margin: 6rem;
    gap: 3rem;
  }
  .about-section-2{
    margin-top: 700px;
  }
  .about-section .about h2,
  .about-section-2 .about-2 h2,
  .about-section-3 .about-3 h2 {
    font-size: 3rem;
  }

  .about-section-2 a,
  .about-section-3 a {
    width: 40%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  /* Gallery Images */
  .container {
    width: 1200px;
  }

  .container img {
    width: 25%;
  }

  /* Testimonials */
  .testimonials-container {
    margin-left: 5rem;
    gap: 3rem;
  }

  .testimonials-container figure {
    width: 45%;
    padding: 6%;
  }

.location-container img{
  width:40%;
}
  /* Footer */
  .footer-nav ul {
    gap: 3rem;
    margin-right: 3rem;
  }

  footer {
    height: 60px;
    font-size: 1.1rem;
    padding: 0 2rem;
  }
}



