  * {
    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;
  }

  /* Uniform Section */
  .uniform-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 20px;
    background: #fff;
    gap: 30px;
  }

  .uniform-box {
    width: 300px;
    padding: 20px;
    background: #f1fbfc;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .uniform-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .uniform-box img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .uniform-box:hover img {
    transform: scale(1.05);
  }

  .uniform-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0 10px;
  }

  .uniform-box a {
    font-size: 14px;
    text-decoration: none;
    color: #008cdd;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
  }

  .uniform-box a:hover {
    color: #0066a5;
    text-decoration: underline;
  }

  /* Accessories Section */
  .accessories-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
  }

  .circle-img {
    background: #fcf8e9;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
  }

  .circle-img:hover {
    transform: rotate(5deg) scale(1.05);
  }

  .circle-img img {
    width: 60%;
    margin-bottom: 15px;
    transition: all 0.5s ease;
  }

  .circle-img h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .circle-img .btn {
    padding: 8px 20px;
    background: #008cdd;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
  }

  .circle-img .btn:hover {
    background: #0066a5;
  }

  .info-box {
    max-width: 500px;
  }

  .info-box h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
  }

  .info-box p {
    font-size: 16px;
    color: #555;
    margin: 15px 0;
    line-height: 1.7;
  }

  .info-box ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 30px;
  }

  .info-box ul li {
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
  }

  .info-box ul li::before {
    content: "✔";
    color: #008cdd;
    margin-right: 10px;
    position: absolute;
    left: 0;
  }

  .info-box .btn {
    margin-top: 20px;
    background: #008cdd;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .info-box .btn:hover {
    background: #0066a5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Uniform Section */
  .uniform-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 20px;
    background: #fff;
    gap: 30px;
  }

  .uniform-box {
    width: 300px;
    padding: 20px;
    background: #f1fbfc;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .uniform-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .uniform-box img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .uniform-box:hover img {
    transform: scale(1.05);
  }

  .uniform-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0 10px;
  }

  .uniform-box a {
    font-size: 14px;
    text-decoration: none;
    color: #008cdd;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
  }

  .uniform-box a:hover {
    color: #0066a5;
    text-decoration: underline;
  }

  /* Solution Section */
  .solution-section {
    background: #ffe3eb;
    padding: 80px 20px;
  }

  .solution-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .solution-text {
    flex: 1;
    min-width: 300px;
  }

  .solution-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .solution-text p {
    color: #555;
    margin-bottom: 25px;
  }

  .solution-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .solution-buttons button {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .solution-buttons .btn-outline {
    background: transparent;
    border: 2px solid #333;
    color: #333;
  }

  .solution-buttons .btn-outline:hover {
    background: #333;
    color: white;
  }

  .solution-buttons .btn-solid {
    background: #333;
    color: white;
    border: 2px solid #333;
  }

  .solution-buttons .btn-solid:hover {
    background: #111;
    border-color: #111;
  }

  .solution-features {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .solution-feature {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .solution-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .solution-feature p {
    font-weight: 600;
    color: #333;
  }

  /* Features Section */
  .features-section {
    background: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
  }

  .features-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .feature-circle {
    background: #f7d645;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .feature-circle:hover {
    transform: scale(1.1) rotate(5deg);
  }

  .feature-circle i {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .feature-circle span {
    font-size: 14px;
    line-height: 1.4;
  }

  .feature-circle.blue {
    background: #00a6ef;
  }

  .feature-circle.green {
    background: #7ac142;
  }

  /* 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;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 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;
    }
  }