
  :root {
    --primary-color: #d503d2;
    --secondary-color: #ff9900;
    --dark-color: #333;
    --light-color: #f8f8f8;
    --text-color: #333;
    --text-light: #666;
  }

  body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  /* Navbar Styles */
  .navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo-icon {
    color: var(--primary-color);
    font-size: 28px;
    margin-right: 10px;
  }

  .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
  }

  .logo-text span {
    color: var(--primary-color);
  }

  .nav-links {
    display: flex;
    list-style: none;
  }

  .nav-links li {
    margin-left: 30px;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-links a:hover {
    color: var(--primary-color);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .contact-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .contact-btn:hover {
    background-color: #b003ae;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 3, 210, 0.3);
  }

  .mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
  }

  /* Header Section */
  .header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 280px 0 120px;
    margin-top: 80px;
    text-align: center;
  }

  .header-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
  }

  .header h1 span {
    color: var(--primary-color);
  }

  .header p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #eee;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }

  .btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }

  .btn-primary:hover {
    background-color: #b003ae;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .btn-secondary:hover {
    background-color: white;
    color: var(--dark-color);
    transform: translateY(-3px);
  }

  /* About Section */
  .about {
    padding: 100px 0;
    background-color: var(--light-color);
  }

  .about-container {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .about-content {
    flex: 1;
  }

  .about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .about-image:hover img {
    transform: scale(1.05);
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
  }

  .section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
  }

  .about-text {
    margin-top: 30px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
  }

  .about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
  }

  .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .stat-text {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
  }

  /* Services Preview */
  .services-preview {
    padding: 100px 0;
  }

  .services-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .services-title .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
    background-color: rgba(213, 3, 210, 0.1);
    color: var(--primary-color);
    font-size: 40px;
    padding: 30px;
    text-align: center;
  }

  .service-content {
    padding: 25px;
  }

  .service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
  }

  .service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
  }

  .footer-column {
    flex: 1;
    min-width: 250px;
  }

  .footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }

  .footer-logo span {
    color: var(--primary-color);
  }

  .footer-about {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .footer-heading {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--primary-color);
  }

  .contact-info {
    color: #bbb;
  }

  .contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
  }

  .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-container {
      flex-direction: column;
    }

    .about-image {
      order: -1;
    }

    .header h1 {
      font-size: 40px;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      flex-direction: column;
      padding: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links li {
      margin: 10px 0;
    }

    .mobile-menu-btn {
      display: block;
    }

    .header {
      padding: 150px 0 80px;
    }

    .header h1 {
      font-size: 32px;
    }

    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .btn {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
  }

  @media (max-width: 576px) {
    .header h1 {
      font-size: 28px;
    }

    .header p {
      font-size: 18px;
    }

    .section-title {
      font-size: 30px;
    }

    .about-stats {
      justify-content: center;
    }
  }



  
    /* About Section */
    .about {
      padding: 100px 0;
      background-color: var(--light-color);
    }

    .about-container {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .about-content {
      flex: 1;
    }

    .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .section-title {
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--dark-color);
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 70px;
      height: 3px;
      background-color: var(--primary-color);
      bottom: -10px;
      left: 0;
    }

    .about-text {
      margin-top: 30px;
      color: var(--text-light);
      font-size: 17px;
      line-height: 1.8;
    }

    .about-stats {
      display: flex;
      justify-content: space-between;
      margin-top: 50px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .stat-item {
      text-align: center;
      flex: 1;
      min-width: 150px;
    }

    .stat-number {
      font-size: 42px;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 5px;
    }

    .stat-text {
      font-size: 16px;
      color: var(--text-light);
      font-weight: 600;
    }

    /* FAQ Section */
    .faq {
      padding: 100px 0;
      background-color: white;
    }

    .faq-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-title .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid #eee;
    }

    .faq-question {
      padding: 20px 25px;
      background-color: #f9f9f9;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 18px;
      color: var(--dark-color);
      transition: all 0.3s ease;
    }

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

    .faq-question.active {
      background-color: rgba(213, 3, 210, 0.1);
      color: var(--primary-color);
    }

    .faq-question .city-name {
      color: var(--primary-color);
      font-weight: 700;
      font-size: 16px;
      margin-left: 5px;
    }

    .faq-toggle {
      color: var(--primary-color);
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .faq-toggle.active {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      background-color: white;
    }

    .faq-answer.active {
      padding: 25px;
      max-height: 500px;
    }

    .faq-answer p {
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 15px;
    }

    /* Services Areas Section */
    .service-areas {
      padding: 100px 0;
      background-color: var(--light-color);
    }

    .areas-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .areas-title .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .areas-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      color: var(--text-light);
      font-size: 18px;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .area-card {
      background-color: white;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 4px solid var(--primary-color);
    }

    .area-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .area-card h3 {
      color: var(--dark-color);
      margin-bottom: 10px;
      font-size: 20px;
    }

    .area-card p {
      color: var(--text-light);
      font-size: 15px;
    }

    .primary-area {
      background-color: rgba(213, 3, 210, 0.1);
      border-left: 4px solid #b003ae;
    }

    /* Additional Services Section */
    .additional-services {
      padding: 100px 0;
      background-color: white;
    }

    .services-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .services-title .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .service-item {
      display: flex;
      align-items: center;
      margin-bottom: 80px;
      gap: 50px;
    }

    .service-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .service-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .service-image:hover img {
      transform: scale(1.05);
    }

    .service-content {
      flex: 1;
    }

    .service-content h3 {
      font-size: 28px;
      margin-bottom: 20px;
      color: var(--dark-color);
    }

    .service-content p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 17px;
    }

    /* Detailed Services Section */
    .detailed-services {
      padding: 100px 0;
      background-color: var(--light-color);
    }

    .detailed-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .detailed-service {
      background-color: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .detailed-service:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .detailed-service h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: var(--dark-color);
      display: flex;
      align-items: center;
    }

    .detailed-service h3 i {
      color: var(--primary-color);
      margin-right: 15px;
      font-size: 22px;
    }

    .detailed-service p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 15px;
    }

    /* Contact Section */
    .contact {
      padding: 100px 0;
      background-color: white;
    }

    .contact-container {
      display: flex;
      gap: 50px;
    }

    .contact-info {
      flex: 1;
    }

    .contact-map {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 500px;
    }

    .contact-info h3 {
      font-size: 28px;
      margin-bottom: 30px;
      color: var(--dark-color);
    }

    .contact-details {
      margin-bottom: 40px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .contact-detail i {
      color: var(--primary-color);
      font-size: 20px;
      margin-right: 15px;
      margin-top: 5px;
    }

    .contact-detail h4 {
      font-size: 18px;
      margin-bottom: 5px;
      color: var(--dark-color);
    }

    .contact-detail p {
      color: var(--text-light);
      line-height: 1.6;
    }

    .business-hours {
      background-color: rgba(213, 3, 210, 0.05);
      padding: 25px;
      border-radius: 8px;
      border-left: 4px solid var(--primary-color);
    }

    .business-hours h4 {
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--dark-color);
    }

    .business-hours p {
      margin-bottom: 8px;
      color: var(--text-light);
      display: flex;
      justify-content: space-between;
    }

    .business-hours p span {
      font-weight: 600;
    }

    /* Footer */
    .footer {
      background-color: var(--dark-color);
      color: white;
      padding: 70px 0 30px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-column {
      flex: 1;
      min-width: 250px;
    }

    .footer-logo {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
    }

    .footer-logo span {
      color: var(--primary-color);
    }

    .footer-about {
      color: #bbb;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .footer-heading {
      font-size: 20px;
      margin-bottom: 25px;
      position: relative;
    }

    .footer-heading::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background-color: var(--primary-color);
      bottom: -10px;
      left: 0;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary-color);
    }

    .contact-info-footer {
      color: #bbb;
    }

    .contact-info-footer p {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .contact-info-footer i {
      margin-right: 10px;
      color: var(--primary-color);
      width: 20px;
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid #444;
      color: #bbb;
      font-size: 14px;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {

      .about-container,
      .contact-container {
        flex-direction: column;
      }

      .service-item,
      .service-item:nth-child(even) {
        flex-direction: column;
      }

      .detailed-grid {
        grid-template-columns: 1fr;
      }

      .header h1 {
        font-size: 40px;
      }

      .contact-map {
        height: 400px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

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

      .nav-links li {
        margin: 10px 0;
      }

      .mobile-menu-btn {
        display: block;
      }

      .header {
        padding: 150px 0 80px;
      }

      .header h1 {
        font-size: 32px;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }

      .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
    }

    @media (max-width: 576px) {
      .header h1 {
        font-size: 28px;
      }

      .header p {
        font-size: 18px;
      }

      .section-title {
        font-size: 30px;
      }

      .about-stats {
        justify-content: center;
      }

      .areas-grid {
        grid-template-columns: 1fr;
      }

      .service-content h3 {
        font-size: 24px;
      }
    }




    
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 800px;
    /* enough to fit long text */
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .faq-toggle {
    font-size: 22px;
    transition: transform 0.3s ease;
  }

  /* Rotate + into - when opened */
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
