  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  }

  /* Topbar */
  .topbar {
    background: #008cdd;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }

  .topbar a {
    color: white;
    margin: 0 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .topbar a:hover {
    opacity: 0.8;
  }

  .social-icons a {
    margin: 0 5px;
  }

  .social-icons a i {
    color: white;
    font-size: 14px;
  }

  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(45deg, #d5438e, #347de4);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }

  .logo h1 {
    font-size: 22px;
    color: #008cdd;
    font-weight: 700;
  }

  .logo span {
    color: #444;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  nav ul li {
    position: relative;
  }

  nav ul li a {
    text-decoration: none;
    color: gold;
    font-weight: 500;
    padding: 8px;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: #fff;
  }

  nav ul ul {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
    min-width: 200px;
  }

  nav ul li:hover>ul {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  nav ul ul li a {
    padding: 10px;
    display: block;
  }

  .menu-toggle {
    display: none;
    cursor: pointer;
  }

  .cart-count {
    background: #008cdd;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
  }

  /* Banner - Carousel */
  .carousel {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
  }

  .slides {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Let the browser choose best rendering */
    filter: brightness(105%) contrast(105%) saturate(110%);
    -webkit-backface-visibility: hidden;
    /* Improve rendering performance */
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Trigger GPU acceleration */
  }


  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background: #000;
    opacity: 0.7;
  }

  .banner-text h2 {
    position: relative;
    top: 20%;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
  }

  .banner-text p {
    position: relative;
    top: 20%;
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease;
  }

  .banner-text .btn {
    position: relative;
    top: 20%;
    padding: 12px 30px;
    background: #00a8ff;
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
  }

  .banner-text .btn:hover {
    background: #008cdd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* Carousel Navigation */
  .carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .carousel-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .carousel-nav button.active {
    background: white;
    width: 30px;
    border-radius: 6px;
  }

  /* Section Styles */
  .section-title {
      text-align: center;
      margin-bottom: 40px;
  }

  .section-title p {
      color: #666;
      font-size: 16px;
      margin-bottom: 10px;
  }

  .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      color: #222;
      position: relative;
      display: inline-block;
  }

  .section-title h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: #008cdd;
  }

  /* .contact-container */
  .contact-container {
      display: flex;
      flex-wrap: wrap;
      padding: 30px;
      gap: 40px;
      justify-content: center;
  }

  .map-form {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
  }

  form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
  }

  input,
  textarea {
      padding: 10px;
      font-size: 16px;
      width: 100%;
      box-sizing: border-box;
      border: 1px solid #ccc;
  }

  button {
      background-color: orange;
      color: white;
      border: none;
      padding: 12px 20px;
      cursor: pointer;
      font-size: 16px;
  }

  button:hover {
      background-color: #e69500;
  }

  .contact-info {
      flex: 1;
      min-width: 200px;
  }

  .contact-info h3 {
      margin-top: 0;
  }

  .contact-info a {
      color: #007BFF;
      text-decoration: none;
  }

  .contact-info a:hover {
      text-decoration: underline;
  }
  
    /* Footer */
  .footer {
    background: #0d1b2a;
    color: #ffffff;
    padding: 60px 20px 0;
    font-size: 14px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #2d3e50;
    padding-bottom: 30px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-logo img {
    height: 60px;
    width: 60px;
  }

  .footer-logo h3 {
    font-size: 22px;
    font-weight: bold;
  }

  .footer-logo span {
    color: #00bfff;
  }

  .footer-social {
    display: flex;
    gap: 10px;
  }

  .footer-social a {
    background: #2d3e50;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .footer-social a:hover {
    background: #008cdd;
    transform: translateY(-3px);
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2d3e50;
  }

  .footer-box h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-box p {
    color: #a0a8b0;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .footer-box ul {
    list-style: none;
    padding: 0;
  }

  .footer-box ul li {
    margin-bottom: 10px;
  }

  .footer-box ul li a {
    color: #a0a8b0;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-box ul li a:hover {
    color: #008cdd;
    padding-left: 5px;
  }

  .footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #a0a8b0;
    font-size: 13px;
  }
  
    /* Responsive Styles */
  @media (max-width: 992px) {
    .banner-text h2 {
      font-size: 36px;
    }

    .info-box ul {
      columns: 1;
    }
  }

  @media (max-width: 768px) {
    header {
      flex-direction: column;
      padding: 15px;
    }

    .logo {
      margin-bottom: 15px;
    }

    nav {
      width: 100%;
    }

    nav ul {
      flex-direction: column;
      gap: 5px;
      display: none;
    }

    nav ul.active {
      display: flex;
    }

    nav ul li {
      width: 100%;
    }

    nav ul ul {
      position: static;
      box-shadow: none;
    }

    .menu-toggle {
      display: block;
    }

    .banner-text h2 {
      font-size: 28px;
    }

    .banner-text p {
      font-size: 16px;
    }

    .circle-img {
      width: 250px;
      height: 250px;
    }

    .testimonials h2,
    .faq h2,
    .contact-info h2,
    .blog-header h2 {
      font-size: 28px;
    }

    .solution-container,
    .contact-container {
      flex-direction: column;
    }

    .solution-text h2 {
      font-size: 28px;
    }
  }

  @media (max-width: 576px) {
    .topbar {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .banner-text h2 {
      font-size: 24px;
    }

    .banner-text .btn {
      padding: 10px 20px;
    }

    .feature-circle {
      width: 120px;
      height: 120px;
    }

    .feature-circle i {
      font-size: 24px;
    }

    .feature-circle span {
      font-size: 12px;
    }

    .solution-buttons {
      flex-direction: column;
    }

    .solution-buttons button {
      width: 100%;
    }

    .finder-text h2,
    .subscribe-box h2 {
      font-size: 24px;
    }

    .subscribe-input {
      flex-direction: column;
    }

    .subscribe-input input {
      border-radius: 30px;
    }

    .subscribe-input button {
      border-radius: 30px;
      margin-top: 10px;
    }
  }