:root {
    font-family: "Montserrat", serif;
}
  
*, *::before, *::after {
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}
  
body {
    min-height: 100vh;
    font-family: var(--ff1);
    font-weight: 400;
    line-height: 1.6;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
    overflow-x: hidden; /* Prevents horizontal scrolling */
}
  
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
}
  
h1 {
    font-family: var(--ff1); 
    color: var(--color3);
    font-weight: 600;
    line-height: 1;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add this for shadow */
  }
  
  /* Left Section */
  .navbar-left {
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 40px;
    margin-right: 10px;
  }
  
  .brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
  }
  
  /* Right Section */
  .navbar-right {
    display: flex;
    gap: 20px;
  }
  
  .navbar-button {
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    background-color: #007bff; /* Original blue */
    color: #fff; /* White text */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
    border: none;
  }
  
  .navbar-button:hover {
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    color: #fff; /* White text on hover */
    transform: scale(1.03); /* Subtle zoom effect */
  }
   
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .navbar-right {
      gap: 10px;
    }
    
    .navbar-button {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
  }

  .footer-wrapper {
    display: flex;
    justify-content: space-evenly;
    margin-top: 8rem;
  }
  
  .footer-wrapper h2 {
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 29px;
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-weight: 400;
  }
  
  .half-underline {
    display: block;
    position: relative;
  }
  
  .half-underline::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #007bff;
    margin-top: -2px;
  }
  
  .footer-sections p {
    color: #666;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 0.7rem;
  }
  
  .footer-sections p:hover, .footer-sections a:hover {
    color: #1b1b1b;
  }
  
  .footer-quoteBtn {
    display: block;
    width: 200px;
    text-align: center;
    background-color: #007bff;
    color: hsl(0, 0%, 100%);
    padding: 10px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    transition: all 0.5s ease;
  }
  
  .footer-quoteBtn:hover {
    letter-spacing: 1px;
    background-color: #fff;
    color: #1b1b1b;
  }
  
  .footer-sections ul {
    margin-left: -2.2rem;
  }
  
  .footer-tel, .footer-email {
    display: block;
    font-size: 18px;
    color: #666;
  }
  
  .footer-follow-icons {
    color: #007bff;
    display: flex;
    justify-content: space-between;
    width: 100px;
    margin-top: 1rem;
  }
  
  .instagram, .twitter, .facebook {
    cursor: pointer;
  }
  
  #number-email-icon {
    color: #007bff;
    margin-right: 3px;
  }
  
  .copyright-sect {
    margin-top: 2rem;
    border-top: 1px solid #007bff;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    font-size: 19px;
    text-align: center;
  }

  .copyright-sect p:nth-of-type(1) {
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .copyright-sect a {
    color: #5d18dc;
    font-weight: 700;
    text-decoration: underline;
  }
  
  .goTop-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .goTopBtn {
    position: absolute;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    margin-top: -5rem;
  }
  
  .goTop-container i {
    background-color: #007bff;
    padding: 25px 15px;
    border-radius: 100%;
    color: #fff;
  }
  
  .goTop-container i:hover {
    background-color: #fff;
    color: #1b1b1b;
  }
  
  @media (max-width: 670px) {
    .footer-wrapper {
      display: block;
      justify-content: space-evenly;
      margin-top: 8rem;
      margin-left: 1rem;
    }
  }

  @import url(https://necolas.github.io/normalize.css/8.0.1/normalize.css);

html {
  scroll-behavior: smooth;
}

  .whyus-container {
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 5rem;
  }
  
  .whyus-title1 {
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 72px;
    display: inline-block;
    width: auto;
    text-align: center;
    margin: auto;
    padding: 0 20px 5px;
    margin-bottom: 3rem;
  }
  
/* General FAQ container */
.faq-container {
  margin: 2rem auto;
  max-width: 800px;
}

/* FAQ Item Container */
.faq-item {
  padding: 1rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #242629; /* Default dark border */
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Show Gradient on Hover/Active */
.faq-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  transition: width 0.7s ease;
}

.faq-item:hover::after,
.faq-item.active::after {
  width: 100%; /* Expand gradient */
}

/* Question Styling */
.faq-question {
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left; /* Align text to the left */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Answer Styling */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  padding: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  opacity: 0;
  text-align: left; /* Align text to the left */
}

.faq-answer.active {
  max-height: 500px; /* Adjust based on content */
  padding: 1rem 0 0;
  opacity: 1;
}

/* Arrow Icon */
.arrow-icon {
  font-size: 1.2rem;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
  transform: rotate(90deg); /* Rotate on active */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-container {
    padding: 0 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}
  
  @media (max-width: 1050px) {
    .whyus-title1 {
      font-size: 52px;
    }
  
  }
  
  @media (max-width: 450px) {
  .whyus-title1 {
    font-size: 38px;
  }
  }
  
  @media (max-width: 400px) {
    .whyus-container {
      text-align: center;
      margin-top: 9rem;
    }
  }