* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    /* Changed font family from Inter to Roboto and reduced base font size */
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 14px;
  }
  html {
    scroll-behavior: smooth;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    background-color: #2c3e50;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo svg {
    height: 40px;
  }
  
  .nav {
    display: flex;
    gap: 30px;
  }
  
  .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    /* Reduced font size for navigation */
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #3498db;
  }
  
  /* Hero Section */
  .hero {
    /* Added background image and removed gradient */
    background-image: url("./assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 80px;
    margin-top: 52px;
    position: relative;
  }
  
  /* Added background overlay div styling */
  .elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0075c2;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h1 {
    /* Reduced hero title font size */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero-text p {
    /* Reduced hero paragraph font size */
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-button {
    background-color: white;
    color: #1e88e5;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    /* Reduced button font size */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
  }
  
  .hero-image {
    flex: 1;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  /* Services Section */
  .services {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .services h2 {
    text-align: center;
    /* Reduced services section title font size */
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
  }
  
  .services-grid {
    display: grid;
    /* Reduced minimum card width to make cards smaller */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    background: white;
    /* Reduced card padding to make cards smaller */
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-3px);
  }
  
  .service-icon {
    margin-bottom: 15px;
  }
  
  .service-icon img {
    /* Reduced icon size */
    width: 45px;
    height: 45px;
  }
  
  .service-card h3 {
    /* Reduced service card title font size */
    font-size: 16px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
  }
  
  .service-card p {
    color: #666;
    line-height: 1.5;
    /* Reduced service card description font size */
    font-size: 13px;
  }
  
  /* Assistance Section */
  .assistance {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/assets/background.jpg")
      center / cover;
    color: white;
    padding: 60px 0;
  }
  
  .assistance-content {
    max-width: 600px;
  }
  
  .assistance h2 {
    /* Reduced assistance section title font size */
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: #00bcd4;
  }
  
  .assistance p {
    /* Reduced assistance paragraph font size */
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-button-white {
    background-color: white;
    color: #2c3e50;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    /* Reduced white button font size */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .cta-button-white:hover {
    transform: translateY(-2px);
  }
  
  /* Help Details Section */
  .help-details {
    padding: 60px 0;
    background-color: white;
  }
  
  .help-details h2 {
    /* Reduced help details title font size */
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #00bcd4;
  }
  
  .help-list {
    list-style: none;
  }
  
  .help-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    /* Reduced help list font size */
    font-size: 15px;
    line-height: 1.6;
  }
  
  .help-list li::before {
    content: "•";
    color: #00bcd4;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
  }
  
  /* Installation Guide Section */
  .installation-guide {
    padding: 60px 0;
    background-color: #1e88e5;
    color: white;
  }
  
  .guide-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .guide-image {
    flex: 1;
  }
  
  .guide-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
  
  }
  #btn1.btn2{
    color: #3FE6FF !important;
  }
  
  .guide-text {
    flex: 1;
  }
  
  .guide-text h2 {
    /* Reduced guide text title font size */
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .guide-text p {
    /* Reduced guide text paragraph font size */
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  /* Testimonial Section */
  .testimonial {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .testimonial h2 {
    text-align: center;
    /* Reduced testimonial title font size */
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #00bcd4;
  }
  
  .testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .testimonial-card p {
    /* Reduced testimonial text font size */
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
  }
  
  .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .author-rating {
    font-size: 1rem;
  }
  
  .author-name {
    font-weight: 600;
    color: #2c3e50;
    /* Reduced author name font size */
    font-size: 14px;
  }
  
  /* Windows Update Section */
  .windows-update {
    padding: 60px 0;
    color: white;
    position: relative;
    background-image: url("./assets/bg-footer.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .windows-update::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0075C2;
    opacity: 0.7;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 0;
  }
  
  .windows-update .container,
  .windows-update .update-content,
  .windows-update .update-text,
  .windows-update .update-image {
    position: relative;
    z-index: 1;
  }
  
  .update-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .update-text {
    flex: 2;
  }
  
  .update-text h2 {
    /* Reduced update text title font size */
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .update-text p {
    /* Reduced update text paragraph font size */
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  .update-image {
    flex: 1;
  }
  
  .update-image img {
    width: 100%;
    height: auto;
  }
  
  /* Footer */
  .footer {
    background-color: #0e1220;
    color: white;
    padding: 50px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .footer-section h3 {
    /* Reduced footer section title font size */
    font-size: 16px;
    margin-bottom: 15px;
    color: #3498db;
  }
  
  .footer-section p {
    /* Reduced footer paragraph font size */
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
  }
  
  .footer-links h4 {
    margin-bottom: 12px;
    color: white;
    /* Reduced footer links title font size */
    font-size: 14px;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    /* Reduced footer link font size */
    font-size: 13px;
  }
  
  .footer-links a:hover {
    color: #3498db;
  }
  
  .footer-image img {
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #home,
    #services,
    #installation-guide,
    #update,
    #contact {
      scroll-margin-top: 72px;
    }
    .hero-content,
    .guide-content,
    .update-content {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text h1 {
      font-size: 1.5rem;
    }
    .hero-text p { font-size: 14px; }
    .cta-button, .cta-button-white { 
      font-size: 16px; 
      padding: 10px 20px; 
      background-color: #182141; 
      color: white !important; 
      border: none;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }
  .hero{
    padding: 55px 0 80px;
  }
    .services h2 { font-size: 1.6rem; }
    .help-details h2 { font-size: 1.5rem; }
    .help-list li { font-size: 13px; }
    .guide-text h2 { font-size: 1.5rem; }
    .guide-text p { font-size: 14px; }
    .testimonial { padding: 48px 0; }
    .testimonial h2 { font-size: 1.5rem; }
    .testimonial-card p { font-size: 14px; }
    .author-name { font-size: 13px; }
    .windows-update { padding: 48px 0; }
    .update-text h2 { font-size: 1.5rem; }
    .update-text p { font-size: 14px; }
    .footer-section h3 { font-size: 14px; }
    .footer-section p { font-size: 12px; }
    .footer-links a { font-size: 12px; }
    .nav {
      display: none;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    /* Added mobile-specific smaller card styling */
    .service-card {
      padding: 20px 15px;
    }
  
    .service-card h3 {
      font-size: 15px;
    }
  
    .service-card p {
      font-size: 12px;
    }

  }
  