 /* header section styles */
    .logo {
      max-height: 70px;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 200px;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-left: 0;
    }

    .menu .menu-link {
      font-weight: 500;
      color: #333;
      text-decoration: none;
      padding: 5px 10px;
      transition: color 0.3s;
    }

    .menu .menu-link:hover {
       color: red;
    }

    /* Get in touch section styles */
    .heading {
      font-weight: 700;
      font-size: 2rem;
      color: #271960; /* Red color for heading */
    }
    .description {
      color: #333;
      font-size: 1rem;
      line-height: 1.8;
      max-width: 600px;
    }
    .get-in-touch-btn {
      background: black;
      color: white;
      font-weight: 600;
      padding: 10px 25px;
      border: none;
      border-radius: 5px;
    }
    .get-in-touch-btn:hover {
      background: gray;
    }
    .arrow {
      max-width: 180px;
    }

    /* we do cards section styles */
    .section-title {
      color: #271960 !important;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2rem;
    }
    .service-card {
      background: #fff;
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
      height: 100%;
      transition: transform 0.3s;
    }
    .service-card:hover {
      transform: translateY(-5px);
    }
    .service-icon {
      max-height: 60px;
      margin-bottom: 15px;
    }
    .service-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 10px;
    }
    .service-text {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 15px;
    }
    .read-more {
      color: #e11b22;
      font-weight: 600;
      text-decoration: none;
    }
    .read-more:hover {
      text-decoration: underline;
    }

    /* we serve section styles */
    .section-title {
      color: #e11b22;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .segment-box {
      text-align: center;
      padding: 25px 15px;
      transition: all 0.3s ease-in-out;
    }
    .segment-box:hover {
      transform: translateY(-5px);
    }
    .segment-icon {
      height: 60px;
      margin-bottom: 15px;
    }
    .segment-label {
      font-size: 1rem;
      font-weight: 500;
      color: #222;
    }

    /* Testimonials section styles */
    .testimonial-section {
      padding: 60px 0;
      background-color: #fff;
    }
    .testimonial-title {
      color: #271960;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
    }
    .quote-icon {
      width: 60px;
      height: 60px;
      background-color: #e11b22;
      color: white;
      font-size: 30px;
      line-height: 60px;
      border-radius: 50%;
      text-align: center;
      margin: 0 auto 15px;
    }
    .testimonial-name {
      font-weight: 700;
      color: #e11b22;
      text-align: center;
    }
    .testimonial-role {
      font-style: italic;
      color: #888;
      text-align: center;
      margin-bottom: 15px;
    }
    .testimonial-text {
      color: #333;
      text-align: justify;
    }
    .read-more-btn {
      background-color: black;
      color: white;
      border: none;
      padding: 10px 25px;
      font-weight: 500;
      border-radius: 6px;
    }
    .read-more-btn:hover {
      background-color: gray;
    }
    .indicator-dots {
      text-align: center;
      margin: 30px 0 20px;
    }
    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #ccc;
      margin: 0 5px;
    }
    .dot.active {
      background-color: #e11b22;
    }

    /* number of clients section styles */
    .stats-section {
      background-color: #e11b22;
      color: white;
      border-radius: 2rem;
      padding: 40px 20px;
      margin: 40px 0;
      text-align: center;
    }
    .stats-number {
      font-size: 2rem;
      font-weight: bold;
    }
    .stats-label {
      text-transform: uppercase;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 1px;
      margin-top: 8px;
    }

    /* Our clients section styles */
    .client-section {
      padding: 40px 0;
      text-align: center;
    }
    .client-title {
      color: #271960;
      font-weight: bold;
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
    .client-logo {
      max-height: 80px;
      max-width: 100%;
      object-fit: contain;
      margin: auto;
    }

    /* Footer section styles */
    .footer-top {
      background-color: #9b9494;
      color: #fff;
      padding: 30px 0;
    }
    .footer-bottom {
      background-color: #555;
      color: #fff;
      padding: 15px 0;
      font-size: 14px;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      display: inline-block;
      margin: 10px 15px;
      border-bottom: 1px solid #ccc;
    }
    .footer-links a:hover {
      color: #ddd;
    }
    .footer-icons a {
      color: #fff;
      font-size: 16px;
      margin: 0 8px;
      border: 1px solid #ccc;
      padding: 6px;
      border-radius: 50%;
      display: inline-block;
    }
    .footer-icons a:hover {
      background-color: black;
      color: #fff;
    }

    
    /* Contact Us content styles page */ 
    body {
      /* background-color: #e6ecf8;  */
      min-height: 100vh;
      /* display: flex; */
      align-items: center;
      justify-content: center;
    }
    .contact-section {
      background: #e6ecf8;
      padding: 50px 20px;
    }
    .contact-card {
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      padding: 30px;
    }
    .form-control, .form-select {
      border-radius: 10px;
    }
    .submit-btn {
      border-radius: 10px;
    }
    .contact-info {
      margin-top: 30px;
      text-align: center;
    }
    .contact-info a {
      color: #3d5afe;
      font-weight: 600;
      text-decoration: none;
    }
    .contact-info i {
      margin-right: 8px;
      color: #3d5afe;
    }
    .form-title {
      text-align: center;
      margin-bottom: 20px;
    }
    .form-title h2 {
      font-weight: 700;
    }
    .form-title p {
      color: #666;
    }
    img.illustration {
      width: 100%;
      max-width: 400px;
    }