:root {
    --bg: #B7A99C;
    /* main dark bg */
    --panel: #131D29;
    /* slightly lighter panels */
    --grey: #8A8E8F;
    /* grey accent */
    --muted: #A3A3A3;
    /* secondary text */
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.04);
    --radius: 14px;
}

* {
    box-sizing: border-box
}

/* html {
  scroll-snap-type: y mandatory;
}
section {
  scroll-snap-align: start;
} */

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    cursor: pointer;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: #a3a3a3 6px 4px 7px;
}

h2:hover {
    font-style: italic;
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

h1:hover {
    font-style: italic;
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

.btn {
    display: inline-block;
    text-transform: uppercase;
    margin-top: 18px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--panel);
    background-color: var(--white);
    border: 1px solid var(--panel);
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--panel);
    color: var(--white);
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

/* container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-box img {
    width: 61px;
    margin-top: 6px;
    border-radius: 50%;
}

.brand-name {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--panel);
}

/* Burger icon base */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
}

.burger div {
    background-color: var(--panel);
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Burger animation when active */
.burger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* nav */
.main-nav a {
    margin-left: 18px;
    color: var(--panel);
    text-decoration: none;
    font-weight: 600
}

.main-nav a:hover {
    color: var(--grey);
}

.main-nav .cta {
    /* background: linear-gradient(90deg, var(--grey), var(--grey)); */
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--panel);
}

.language-selector {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 10px 5px 35px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn .globe-icon {
    position: absolute;
    left: 8px;
    width: 35px;
    height: 35px;
    color: var(--panel);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: none;
    border-radius: 5px;
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
    min-width: 100%;
    z-index: 100;
}

.lang-dropdown li a {
    display: block;
    padding: 4px 0px 3px;
    text-decoration: none;
    color: var(--panel);
    margin-left: 15px;
}

.lang-dropdown li a:hover {
    background: #f0f0f0;
}





hr {
    color: var(--panel);
    width: 21%;
    background: var(--panel);
    padding-top: 3px;
}


/*hero section */
.hero-container {
    width: 100%;
    height: auto;
    margin-top: 84px;

}

.hero-img-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-img-container img {
    width: 100%;
    height: 78vh;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-content {
    text-align: center;
}

.hero-img-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.hero-text-container {
    width: 40%;
    position: absolute;
    top: 12%;
    left: 4%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 20px;
    border-radius: var(--radius);
}

.hero-text-container h1 {
    font-size: 64px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.hero-text-container h1:hover {
    color: var(--panel);
    font-style: italic;
}

.hero-subtitle:hover {
    color: var(--panel);
    font-style: italic;
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

.hero-text-container .btn {
    border: none;
    padding: 19px 22px;
    width: 40%px;
}


/*about section */
.about {
    background-color: var(--white);
    color: var(--panel);
    padding: 60px 20px;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-family: inherit;
    font-style:oblique;
    margin-top: 20px;
    line-height: 1.8;
    color: #404242;
}

.about h2 {
    color: var(--panel);
    text-transform: uppercase;
}

/* services section */
.services {
    background: var(--panel);
    padding: 60px 20px;
    /* color: var(--white); */
    /* margin-top: 40px; */
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 18px;
    width: 100%;
    margin: 53px auto;
}

.service-item {
    background-color: var(--white);
    text-align: center;
    color: var(--panel);
    border-radius: var(--radius);
    padding: 29px;
}

.service-item:hover {
    background-color: var(--bg);
    color: var(--white);
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

/*team section */
.team {
    padding: 60px 20px;
    color: var(--panel);
}

.team h2 {
    color: var(--panel);
    text-transform: uppercase;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22%, 1fr));
    gap: 18px;
    width: 80%;
    margin: 53px auto;
}

.team-member {
    text-align: center;
    border: 2px solid;
    border-radius: 12px;
    padding-top: 28px;
    padding-bottom: 15px;

}

.team-member-border {
    border: 2px solid var(--panel);
    padding: 0px 13px 13px 0px;
    border-radius: 12px;
    border-top: none;
    border-left: none;
}

.team-member :hover {
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
    border-color: var(--bg);

}
.team-member-border:hover {
    border-color: var(--bg);
     transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

/* footer */
.site-footer {
    padding: 28px 0;
    background: var(--panel);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--muted)
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.footer-inner a {
    color: var(--white);
    text-decoration: none;
    padding-left: 5px;
}

.footer-inner a:hover {
    color: var(--grey);
    text-decoration: underline;
}

.socials {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.socials a {
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
    transform: scale(1.2);
    color: var(--grey);
    /* bright cyan hover */
}

/* small */
.muted {
    color: var(--muted)
}

/* animations: fade-up with stagger */
/* Entrance animations on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }


/* about page */
.about-page {
 background-color: var(--white);
    color: var(--panel);
}
.about-work-container {
     max-width: 800px;
    margin: 0 auto;
    color: var(--panel);
}
.about-page h2 {
    color: var(--panel);
}
.about-work-container p {
    margin-top: 20px;
    font-weight: 500;
    font-style: italic;
}

.about-page-img {
    width: 100%;
    margin-top: 103px;
    border-radius: var(--radius);
}

.about-page-img:hover {
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

.about-page h2:hover {
    font-style: italic;
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}

.about-page-team {
    width: 29%;
    margin: 0 auto;
    margin-bottom: 56px;
}
/*services-page*/
.services-page-header{
    width: 100%;
    height: 340px;
    background-color: var(--bg);
    color: var(--panel);
    text-align: center;
    align-items: center;
    top: 60%;
}
.services-page-header h1{
    margin-top: 115px;
    padding-top: 109px;
    font-size: 43px;
    text-transform: uppercase;
}
.services-page h1{
    color: #212e3c;
}
.services-page h2{
    color: var(--white);
    text-transform: uppercase;
}
.services-page h3{
    color:#212e3c;
    font-size: 29px;
    text-transform: uppercase;
}
.services-page h3:hover{
     color:var(--bg);
    font-style: italic;
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}
.services-page h1:hover{
    color:var(--white);
    font-style: italic;
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
}
.services-page li{
    list-style: auto;
    font-style: oblique;
}
.services-work-container{
    width: 80%;
    margin:10px auto;
    color: var(--panel);
}
.services-work-block{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.services-work-block h3{
    width: 30%;
}
.services-work-block ul{
    width: 50%;
}
.services-work-container .btn:hover{
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
    color: var(--white);
    background-color: var(--panel);
}
.services-work-container .btn{

    margin-bottom: 30px;
    background-color: var(--bg);

}
.services-hr{
    color: var(--bg);
    width: 100%;
    background: var(--bg);
    padding-top: 1px;
}

/*contact-section*/
/* Input Fields & Textarea */
/* input[type="text"],
input[type="email"],
input[type="tel"], */
.contact{
background: linear-gradient(135deg, var(--bg), var(--panel));
    border-radius: 50px 0;
    margin-top: 178px;

}
.contact img{
    margin-top: 115px;
    border-radius: 50%;
    width: 100px;
}
.contact .logo{
    width: 17%;
    margin: 0 auto;
}
.contact textarea {
  width: 100%;
  padding: 13px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  color: var(--panel);
  background-color: #fff;
  border: 1px solid var(--panel);
  border-radius: 0.25rem;
  margin-bottom: 20px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  border: none;
  font-style: oblique;


}
.contact input{
    width: 100%;
  padding: 13px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  color: var(--panel);
  background-color: #fff;
  border: 1px solid var(--panel);
  border-radius: 0.25rem;
  margin-bottom: 20px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  border: none;
  font-style: oblique;
}
/* Form Container */
.form {
  padding: 30px;
    color: var(--panel);
    font-size: 20px;
}
.form_container{
  width:39%;
  margin: 99px auto;
}
/* Submit Button */
.btn {
  background: var(--white);
    color: var(--panel);
    border: none;
    font-size: 30px;
    font-weight: 500 ;
    cursor: pointer;
    /* transition: background 0.3s; */
}


/*gallery and slider styles*/
.portfolio{
    background: linear-gradient(135deg, var(--bg), var(--panel));
}
.portfolio .title{
    text-transform: uppercase;
    text-align: center;
}
  .gallery-container {
    max-width: 700px;
    margin: auto;
    margin-top: 96px;
    padding-top: 50px;
    position: relative;
    padding-bottom: 87px;
  }

  /* Main image */
  .gallery-slide img {
    width: 100%;
    border-radius: 50px 0 50px 0;
  }

  /* Hide all slides by default */
  .gallery-slide {
    display: none;
  }

  /* Next & Prev buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 22%;
    width: auto;
    padding: 12px;
    /* margin-top: -22px; */
    color: var(--panel);
    font-weight: bold;
    font-size: 22px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    /* background-color: rgba(0,0,0,0.5); */
  }

  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  /* Dots */
  .dots {
    text-align: center;
    margin: 15px 0;
  }

  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
  }

   .dot:hover {
    background-color: #717171;
  }

  /* Thumbnails */
  .thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .thumbnails img {
   width: 150px;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    border-radius:5px;
    transition: 0.3s;
  }

  .thumbnails img:hover {
    opacity: 0.7;
  }

  .selected-thumb {
    border: 3px solid #555;
  }


  /*FAQ page styles*/
.faq-container {
    max-width: 800px;
    margin: 140px auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .faq-header {
    background: linear-gradient(135deg, var(--bg), var(--panel));
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
  }

  .faq-header h1 {
    margin: 0;
    font-size: 2em;
    text-transform: uppercase;
  }

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

  .faq-question {
    background: #fff;
    color: #212e3c;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    font-weight: 500;
  }

  .faq-question:hover {
    background: #f3f5ff;
  }

  .faq-question::after {
    content: "+";
    position: absolute;
    right: 34px;
    top: 32px;
    font-size: 22px;
    color: var(--panel);
    transition: 0.3s;
  }

  .faq.active .faq-question::after {
    content: "-";
    transform: rotate(180deg);
  }

  .faq-answer {
    display: none;
    background: #f9f9ff;
    color: #333;
    padding: 27px 20px 20px;
    line-height: 1.6;
    border-left: 4px solid var(--bg);
    animation: fadeIn 0.4s ease;
  }

  .faq.active .faq-answer {
    display: block;
  }

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

  @media (max-width: 600px) {
    .faq-header h1 {
      font-size: 1.6em;
    }
    .faq-question {
      font-size: 0.95em;
      padding: 18px;
    }
    .gallery-slide{
    padding: 15px;
}
.prev .next{
    top: 11%;
}
  }

/*mobile styles*/
/* mobile nav */

 @media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .main-nav {
        width: 100%;
        margin-top: 15px;
        padding-bottom: 23px;
        align-items: center;
        display: none;
        flex-direction: column;
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 5px 10px rgb(0 0 0 / 30%);

    }

    .main-nav a {
        color: var(--panel);
        margin: 10px 0;
        text-align: right;
    }

    .main-nav.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
    }
    .header-inner{
        flex-direction: column;
    }
    .form{
        margin-top: 135px;
    }
     .contact-container {
      width: 95%;
      padding: 15px;
  }
  .section-title{
    font-size: 20px;
  }
.about-text{
    padding: 10px;
}
  iframe {
      height: 300px;
  }

  .about_title {
      width: 100%;
      text-align: center;
  }

  .row {
      flex-direction: column;
  }

  .form {
      margin-top: 30px;
  }
  .contacts_title{
    width: 56%;
  }
  .form_container{
  width: 95%;
}
.hero-text-container h1{
    font-size: 27px;

}
.hero-text-container{
    width: 100%;
    text-align: center;
    align-items: center;
    top: 23%;
}
.hero-text-container .btn{
    width: 65%;
    font-size: 17px;
}
.services-list{
    display: flex;
    flex-wrap: wrap;
}
.team-members{
    display: flex;
    flex-wrap: wrap;
}
.about-page-team img{
    width: 100%;
};
.about-page .about-text{
    padding: 15px;
}
  .services-page-header{
        padding:0 25px 25px 25px;
        height: auto;
        top: 0;
    }
    .services-page-header h1{
        font-size:26px;
    }
    .services-work-block{
        flex-direction: column;
    }
    .services-work-block ul{
        width: 100%;
    }
    .services-work-block h3{
        width: 100%;
        font-size: 20px;
    }
}


@media (max-width: 1024px){
    .team-member{
        height: 500px;
    }
    .team-member img{
        width: 100%;
    }
}


@media (max-width:280px){
    .hero-text-container .btn{
        font-size: 11px;

    }
    .hero-text-container h1{
        font-size: 21px;
    }
    .services-page-header h1 {
    font-size: 19px;
}
.services-page li {

    font-size: 11px;
}
.services-page p{
    font-size: 11px;
}
.gallery-slide{
    padding: 15px;
}
.prev .next{
    top: 11%;
}
}
@media (max-width:480px){
.hero-text-container h1 {
    font-size: 19px;
}
.hero-text-container .btn {
    font-size: 12px;
}
  .services-page-header h1 {
    font-size: 19px;
}
.services-page li {

    font-size: 11px;
}
.services-page p{
    font-size: 11px;
}
.gallery-slide{
    padding: 15px;
}
.prev, .next{
    top: 11%;
    padding:21px;
}

}
@media (max-width:360px){
.hero-text-container h1 {
    font-size: 19px;
}
.hero-text-container .btn {
    font-size: 12px;
}
  .services-page-header h1 {
    font-size: 19px;
}
.services-page li {

    font-size: 11px;
}
.services-page p{
    font-size: 11px;
}
.gallery-slide{
    padding: 15px;
}
.prev, .next{
    top: 11%;
    padding: 21px;
}
}
