*{
    text-decoration: none;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    text-align: center;
}
html{
    scroll-behavior: smooth;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    display: flex;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 946px;
    width: 100%;
    border-radius: 20px;
    margin-top: 130px;
    position: fixed;
    z-index: 0;
    box-sizing: border-box; /* ensures padding doesn't break layout */

    margin-top: 100px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
}
.logo a{
    color: black;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links li {
    display: inline;
}
.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}
.contact-btn {
    background-color: #ff7f50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

.custom-translate {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 20px;
}

.custom-translate img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, opacity 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-translate img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.Product_Photo{
    width: 60%;
    height: 300px;
    margin-top: 120px;
    border-radius: 30px;
}

/* General Styling */
.climablock-section {
    padding: 50px 20px;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Title */
.climablock-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

/* Underline */
.climablock-underline {
    width: 80px;
    height: 4px;
    background-color: #d87f3b; 
    border: none;
    margin: 10px 0;
}

/* Bold Highlight Text */
.climablock-highlight {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

/* Paragraph Styling */
.climablock-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .climablock-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .climablock-underline {
        margin: 10px auto;
    }
    
    .climablock-highlight,
    .climablock-text {
        font-size: 1rem;
        text-align: center;
    }
}

/* General Styling */
.climablock-certification {
    padding: 50px 20px;
    background-color: #f8f8f8;
}

/* Flex Container */
.certification-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Text Section */
.certification-text {
    flex: 1;
    color: #333;
}

.certification-highlight {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
}

.certification-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Image Section */
.certification-image {
    flex: 1;
    text-align: right;
}

.certification-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    background: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certification-container {
        flex-direction: column;
        text-align: center;
    }

    .certification-image {
        text-align: center;
    }

    .certification-image img {
        width: 90%;
    }
}

/* General Styling */
.applications {
    padding: 50px 20px;
    background-color: #f8f8f8;
}

/* Flex Container */
.applications-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Image Section */
.applications-image {
    flex: 1;
}

.applications-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text Section */
.applications-text {
    flex: 1;
    color: #333;
}

.applications-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
}

.applications-line {
    width: 50px;
    height: 4px;
    background-color: #d97c42;
    border: none;
    margin: 10px 0;
}

.applications-list {
    font-size: 1rem;
    line-height: 1.6;
    list-style-type: disc;
    padding-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .applications-container {
        flex-direction: column;
        text-align: center;
    }

    .applications-image img {
        width: 90%;
    }

    .applications-list {
        text-align: left;
        margin: 0 auto;
        max-width: 80%;
    }
}


/* General Styling */
.applications {
    padding: 50px 20px;
    background-color: #ffffff;
}

/* Flex Container */
.applications-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Reverse Layout (Text on Left, Image on Right) */
.applications-container.reverse {
    flex-direction: row-reverse;
}

/* Image Section */
.applications-image {
    flex: 1;
}

.applications-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text Section */
.applications-text {
    flex: 1;
    color: #333;
}

.applications-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
}

.applications-line {
    width: 50px;
    height: 4px;
    background-color: #d97c42;
    border: none;
    margin: 10px 0;
}

.applications-list {
    font-size: 1rem;
    line-height: 1.6;
    list-style-type: disc;
    padding-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .applications-container {
        flex-direction: column;
        text-align: center;
    }

    .applications-container.reverse {
        flex-direction: column;
    }

    .applications-image img {
        width: 90%;
    }

    .applications-list {
        text-align: left;
        margin: 0 auto;
        max-width: 80%;
    }
}


.projects-section {
    background: url("../assets/background.jpg") no-repeat center center/cover;
    color: #444;
    text-align: center;
    padding: 50px 20px;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.projects-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.download-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

/* Carousel Styling */
.projects-carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #ccc;
    padding: 30px;
}

.project-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.project-item img:hover {
    transform: scale(1.1);
}


.energy-performance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
}

.energy-text {
    width: 50%;
}

.energy-text h2 {
    font-size: 36px;
    font-weight: bold;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #d98237;
    border: none;
    margin: 10px 0;
}

.energy-text ul {
    list-style: none;
    padding: 0;
}

.energy-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.energy-text ul li::before {
    content: "•";
    color: #d98237;
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
}

.energy-image {
    width: 50%;
}

.energy-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .energy-performance {
        flex-direction: column;
        text-align: center;
    }

    .energy-text {
        width: 100%;
    }

    .energy-image {
        width: 100%;
        margin-top: 20px;
    }
}

/* Construction Process Section */
.construction-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
}

.construction-text {
    width: 50%;
    padding-left: 40px;
}

.construction-text h2 {
    font-size: 36px;
    font-weight: bold;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #d98237;
    border: none;
    margin: 10px 0;
}

.construction-text ul {
    list-style: none;
    padding: 0;
}

.construction-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.construction-text ul li::before {
    content: "•";
    color: #d98237;
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
}

.construction-image {
    width: 50%;
}

.construction-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .construction-process {
        flex-direction: column;
        text-align: center;
    }

    .construction-text {
        width: 100%;
        padding: 0;
    }

    .construction-image {
        width: 100%;
        margin-top: 20px;
    }
}


/* Quality and Regulations Section */
.quality-regulations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
}

.quality-text {
    width: 50%;
    padding-right: 40px;
}

.quality-text h2 {
    font-size: 36px;
    font-weight: bold;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #d98237;
    border: none;
    margin: 10px 0;
}

.quality-text ul {
    list-style: none;
    padding: 0;
}

.quality-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.quality-text ul li::before {
    content: "•";
    color: #d98237;
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
}

.quality-image {
    width: 50%;
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quality-regulations {
        flex-direction: column;
        text-align: center;
    }

    .quality-text {
        width: 100%;
        padding: 0;
    }

    .quality-image {
        width: 100%;
        margin-top: 20px;
    }
}


/* Construction Process Section */
.construction-quality {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
}

.construction-text {
    width: 50%;
    padding-left: 40px;
}

.construction-text h2 {
    font-size: 36px;
    font-weight: bold;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #d98237;
    border: none;
    margin: 10px 0;
}

.construction-text ul {
    list-style: none;
    padding: 0;
}

.construction-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.construction-text ul li::before {
    content: "•";
    color: #d98237;
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
}

.construction-image {
    width: 50%;
}

.construction-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .construction-quality {
        flex-direction: column;
        text-align: center;
    }

    .construction-text {
        width: 100%;
        padding: 0;
    }

    .construction-image {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Sustainability Section */
.sustainability {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
}

.sustainability-text {
    width: 50%;
    padding-right: 40px;
}

.sustainability-text h2 {
    font-size: 36px;
    font-weight: bold;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #d98237;
    border: none;
    margin: 10px 0;
}

.sustainability-text ul {
    list-style: none;
    padding: 0;
}

.sustainability-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.sustainability-text ul li::before {
    content: "•";
    color: #d98237;
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
}

.sustainability-image {
    width: 50%;
}

.sustainability-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sustainability {
        flex-direction: column;
        text-align: center;
    }

    .sustainability-text {
        width: 100%;
        padding: 0;
    }

    .sustainability-image {
        width: 100%;
        margin-top: 20px;
    }
}


/* Design Optimization Section */
.design-optimization {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
}

.design-image {
    width: 50%;
}

.design-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.design-text {
    width: 50%;
    padding-left: 40px;
}

.design-text h2 {
    font-size: 36px;
    font-weight: bold;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #d98237;
    border: none;
    margin: 10px 0;
}

.design-text ul {
    list-style: none;
    padding: 0;
}

.design-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.design-text ul li::before {
    content: "•";
    color: #d98237;
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .design-optimization {
        flex-direction: column;
        text-align: center;
    }

    .design-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .design-text {
        width: 100%;
        padding: 0;
    }
}
/* Installation Section */
.installation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #ffffff;
}

.installation-text {
    width: 50%;
    padding-right: 40px;
}

.installation-text h2 {
    font-size: 36px;
    font-weight: bold;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #d98237;
    border: none;
    margin: 10px 0;
}

.installation-text ul {
    list-style: none;
    padding: 0;
}

.installation-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.installation-text ul li::before {
    content: "•";
    color: #d98237;
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
}

.installation-image {
    width: 50%;
}

.installation-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

#faq {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
}

.faq-container {
    display: flex;
    width: 100%;
    max-width: 976px; 
    justify-content: space-between;
    gap: 40px;
}

.faq-tittle {
    width: 46%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}
.faq-tit-top{
    width: 100%;
    height: 14.17%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.faq-tit-mid{
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.faq-tit-bottom{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.faq-badge {
    width: 11%;
    height: 60%;
    background-color: black;
    color: #fff;
    padding: 5px 0px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.badge-text {
    margin: 0;
    font-size: 14px;
}

.mid-paragraph {
    font-size: 36px;
    font-weight: 700;
}

.bottom-paragraph {
    font-size: 16px;
    color: #606476;
    margin-top: 10px;
}

.download-button{
    width: 150px;
    height: 40px;
    background-color: #ddd;
    border: black solid 1px;
    text-decoration: none;
    color: black;
    cursor: pointer;
    font-size: 16px;
    float: left;
}
.download-button:hover{
    background-color: #d98237;
    color: black;
    transition: all ease-out 1s;
}
.download-button:active{
    background-color: #ff7f50;
    color: black;
}

.faq-content {
    width: 47%;
    background-color: #DFDFDF33;
    border-radius: 20px;
    display: grid;
    gap: 15px;
    padding: 20px;
}

.faq-form {
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 20px;
    margin-bottom: 10px;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.answer p {
    font-size: 14px;
    line-height: 1.6;
    padding-top: 1rem;
}

.faq-form.active .answer {
    max-height: 300px;
}

.faq-form.active svg {
    transform: rotate(180deg);
}

svg {
    transition: transform 0.5s ease-in;
}

@media screen and (max-width: 1024px) {
    #faq {
        margin-top: 60px; /* Increases space between previous section and FAQ */
        padding-bottom: 50px; /* Adds space at the bottom */
    }
    .faq-container {
        flex-direction: column;
        align-items: center;
        width: 90%;
        gap: 20px;
    }
  
    .faq-tittle {
        width: 100%;
        text-align: center;
    }
  
    .mid-paragraph {
        font-size: 24px;
    }
  
    .bottom-paragraph {
        font-size: 14px;
        text-align: center;
    }
  
    .faq-content {
        width: 100%;
        padding: 15px;
        text-align: center;
    }
  
    .faq-form {
        width: 100%;
        text-align: center;
    }
  
    .question {
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
  
    .answer {
        font-size: 14px;
        text-align: center;
    }
  
    .faq-badge {
        display: block;
        margin: auto;
    }
  }
/* Responsive Design */
@media (max-width: 1024px) {
    .installation {
        flex-direction: column;
        text-align: center;
    }

    .installation-text {
        width: 100%;
        padding: 0;
    }

    .installation-image {
        width: 100%;
        margin-top: 20px;
    }
}


@media screen and (max-width: 1024px) {
    .navbar {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 15px 20px;
      width: 100%;
    }
  
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
  
    .contact-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  
    .custom-translate,
    .social-icons {
      justify-content: center;
      gap: 12px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
      width: 100%;
      position: relative;
      top: -90px;
    }
  
    .logo {
      margin: 0;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .contact-btn {
      width: 100%;
      max-width: 200px;
    }
  
    .custom-translate {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .social-icons {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  


  
  /* Base styling */
/* Main styling remains the same */
/* Base layout */
/* Base header */
/* === Header container === */
.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* === Top navbar bar (logo + hamburger) === */
  .navbar-top {
    width: 90%;
    max-width: 1200px;
    background: white;
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 2px;
    transition: 0.3s;
  }
  
  /* Nav links, flags, socials (dropdown) */
  .navbar-items {
    width: 100%;
    max-width: 1200px;
    background: white;
    margin-top: 100px;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  /* Show on toggle */
  .navbar-items.active {
    max-height: 600px;
    opacity: 1;
    padding: 20px 0;
  }
  
  /* Links list */
  .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
  }
  
  /* Flags */
  .custom-translate {
    display: flex;
    gap: 10px;
  }
  .lang-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  
  /* Social */
  .social-icons {
    display: flex;
    gap: 15px;
  }
  .social-icons a {
    color: black;
    font-size: 20px;
  }
  
  /* Responsive trigger */
  @media (max-width: 980px) {
    .hamburger {
      display: flex;
    }
  }
  



  
  nav {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 100px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  nav .logo {
    color: #111;
    font-size: 28px;
    font-weight: bold;
  }
  
  nav .nav-items {
    display: flex;
    flex: 1;
    padding: 0 0 0 40px;
  }
  
  nav .nav-items li {
    list-style: none;
    padding: 0 15px;
  }
  
  nav .nav-items li a {
    color: #111;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }
  
  nav .nav-items li a:hover {
    color: #f0835a;
  }
  
  nav .menu-icon,
  nav .cancel-icon {
    font-size: 20px;
    color: #111;
    cursor: pointer;
    display: none;
    padding: 0 20px;
  }
  
  /* ========== Responsive ========== */
  @media (max-width: 1140px) {
    nav {
      padding: 0 20px;
    }
  
    nav .logo {
      flex: 1;
      text-align: center;
    }
  
    nav .nav-items {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: #ffffff;
      text-align: center;
      display: inline-block;
      transition: left 0.3s ease;
      z-index: 98;
      padding-top: 50px;
    }
  
    nav .nav-items.active {
      left: 0;
    }
  
    nav .nav-items li {
      margin: 25px 0;
    }
  
    nav .menu-icon {
      display: block;
    }
  
    nav .menu-icon span {
      display: block;
    }
  
    nav .cancel-icon {
      display: none;
    }
  
    nav .cancel-icon.show {
      display: block;
    }
  }

  .cancel-icon {
    display: none;
    font-size: 24px;
    color: #111;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000;
  }
  
  .cancel-icon.show {
    display: block;
  }
  

  .menu-icon.open span {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }


  /* Desktop styles - apply only when screen is wider than 980px */
@media (min-width: 981px) {
    nav {
      background: white;
      padding: 15px 50px;
      height: auto;
      justify-content: space-between;
      align-items: center;
      border-radius: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      position: relative;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1200px;
      z-index: 999;
    }
  
    nav .logo {
      font-size: 24px;
      font-weight: 700;
    }
  
    nav .nav-items {
      display: flex;
      flex: 1;
      justify-content: center;
      padding-left: 40px;
      position: static;
      height: auto;
      background: transparent;
    }
  
    nav .nav-items li {
      margin: 0 15px;
      list-style: none;
    }
  
    nav .nav-items li a {
      color: black;
      font-size: 16px;
      text-decoration: none;
      font-weight: 500;
    }
  
    /* Hide hamburger icon on desktop */
    .menu-icon {
      display: none !important;
    }
  }
  
  @media (max-width: 980px) {
    nav .nav-items {
      position: fixed;
      top: 70px;
      left: -150%;
      width: 100vw;
      height: 100vh;
      background: white;
      transition: left 0.3s ease;
      z-index: 998;
      padding-top: 50px;
      overflow-x: hidden;
      display: inline-block;
      text-align: center;
    }
  
    nav .nav-items.active {
      left: 0;
    }
  }
  
  
  .nav-items ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-items ul li a {
    color: #111;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
  }
  
  .nav-items ul li a:hover {
    color: #f0835a;
  }
  
  @media (max-width: 980px) {
    .nav-items ul {
      flex-direction: column;
      gap: 30px; /* optional spacing between items */
      padding: 0;
      margin: 0;
    }
  
    .nav-items ul li {
      list-style: none;
    }
  
    .nav-items ul li a {
      font-size: 20px;
      color: black;
      text-decoration: none;
      font-weight: 500;
    }
  }
  

  #particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  body {
    margin: 0;
    overflow-x: hidden;
    background-color: #1b1c0f;  
  }
  