    /* Global styles */

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      color: #333;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    a {
      color: #007bff;
      transition: color 0.3s ease-in-out;
    }

    a:hover {
      color: #0056b3;
      text-decoration: none;
    }
    /* Navigation styles */

    .navbar {
      background-color: #343a40;
      padding: 10px 0;
    }

    .navbar .navbar-brand {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
    }

    .navbar .nav-link {
      color: #ffffff !important;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
      color: #e9ecef;
    }

    .navbar .nav-link::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #ffffff;
      transform: scaleX(0);
      transition: transform 0.3s ease-in-out;
    }

    .navbar .nav-link:hover::before,
    .navbar .nav-link:focus::before {
      transform: scaleX(1);
    }
    /* Home section */

    #home {
      position: relative;
      background-color: #f8f8f8;
      padding: 40px 0;
    }

    #home .container {
      position: relative;
      z-index: 2;
      max-width: 100%;
      padding: 0;
    }

    #home .owl-carousel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    #home .owl-carousel .item {
      height: 100%;
    }

    #home .owl-carousel .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* About Section */

    #about {
      background: linear-gradient(135deg, #3f51b5, #673ab7);
      color: #fff;
      margin-top: 150px;
    }

    #about .section-title {
      color: #fff;
    }

    #about p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    /* Section styles */

    section {
      padding: 80px 0;
    }

    section h2 {
      font-size: 36px;
      margin-bottom: 30px;
    }

    section p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    section ul {
      list-style: none;
      padding-left: 0;
    }

    section ul li {
      font-size: 18px;
      padding-bottom: 10px;
    }
    /* Services section */

    #services .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .service-item {
      text-align: center;
      margin-bottom: 30px;
    }

    .service-item i {
      font-size: 48px;
      color: #fd7e14;
      margin-bottom: 15px;
    }

    .service-item h3 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .service-item p {
      font-size: 16px;
      color: #777;
    }
    /* Client Section */

    #clients {
      background-color: #eceff1;
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      font-size: 36px;
      margin-bottom: 40px;
    }

    .client-list {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .client-item {
      margin: 10px;
      padding: 10px 20px;
      font-size: 18px;
      background-color: #f2f2f2;
      border-radius: 4px;
      transition: background-color 0.3s ease-in-out;
    }

    .client-item:hover {
      background-color: #e2e2e2;
    }
    /* Contact Section */

    #contact {
      background-color: #f9f9f9;
      padding: 80px 0;
    }

    .contact-content {
      text-align: center;
    }

    .contact-content h2 {
      font-size: 36px;
      margin-bottom: 30px;
    }

    .contact-content p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .contact-content a {
      color: #007bff;
      transition: color 0.3s ease-in-out;
    }

    .contact-content a:hover {
      color: #0056b3;
      text-decoration: none;
    }
    /* Footer styles */

    footer {
      background-color: #343a40;
      padding: 30px 0;
    }

    .footer-text {
      font-size: 14px;
      color: #ffffff;
      margin-bottom: 0;
    }

    .social-icons {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
      text-align: center;
    }

    .social-icons li {
      display: inline-block;
      margin: 0 10px;
    }

    .social-icons a {
      color: #343a40;
      font-size: 24px;
      transition: color 0.3s ease-in-out;
    }

    .social-icons a:hover {
      color: #007bff;
    }
    /* Media queries */

    @media (max-width: 767.98px) {
      .header {
        height: 400px;
      }

      .section-title {
        font-size: 30px;
        margin-bottom: 30px;
      }
      .client-item {
        font-size: 16px;
      }
    }

    @media (max-width: 575.98px) {
      .header h1 {
        font-size: 36px;
      }

      .header .subheading {
        font-size: 18px;
      }

      .footer-text {
        font-size: 12px;
      }
    }