/* 
  style.css 
  Custom CSS for WebVista website 
*/

/* -------------------------------
   GENERAL / GLOBAL STYLES
--------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fff;
  }
  
  /* Links */
  a {
    text-decoration: none;
    color: inherit;
  }
  a:hover {
    text-decoration: none;
    color: #0D6EFD; /* a bright blue */
  }
  
  /* Sections */
  .section-title {
    font-size: 2.4rem;
    font-weight: 700;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  
  /* Container spacing overrides (optional)
  .container {
    max-width: 1200px;
  }
  */
  
  /* -------------------------------
     NAVBAR
  --------------------------------- */
  .navbar-brand .logo {
    height: 40px;
    width: 40px;
  }
  .navbar-light .navbar-nav .nav-link.active {
    color: #0D6EFD;
  }
  .nav-link {
    font-weight: 500;
  }
  
  /* -------------------------------
     HERO SECTION
  --------------------------------- */
  .hero {
    min-height: 90vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
  }
  
  .hero-wave {
    z-index: -1;
    overflow: hidden;
  }
  
  .hero-content {
    padding-top: 80px; /* offset for fixed nav if needed */
    padding-bottom: 80px;
  
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
  }
  .hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
  }
  /* -------------------------------
     FEATURES SECTION
  --------------------------------- */
  .feature-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
  }
  .feature-box:hover {
    transform: translateY(-5px);
  }
  .feature-box .icon img {
    display: block;
    margin: 0 auto 1rem;
  }
  .feature-box h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  /* -------------------------------
     TESTIMONIAL SECTION
  --------------------------------- */
  .testimonial-box {
    max-width: 600px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  }
  .testimonial-text {
    font-size: 1rem;
    color: #555;
    font-style: italic;
  }
  
  /* -------------------------------
     FAQ SECTION
  --------------------------------- */
  .accordion-button {
    font-weight: 600;
  }
  .accordion-button:focus {
    box-shadow: none;
  }
  
  /* -------------------------------
     DOWNLOAD SECTION
  --------------------------------- */
  .download-section {
    background: linear-gradient(135deg, #0D6EFD, #4D9EF7);
    min-height: 60vh;
    display: flex;
    align-items: center;
  }
  .download-section h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  .download-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .download-section .btn {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
  }
  
  /* -------------------------------
     CONTACT SECTION
  --------------------------------- */
  #contact .form-control {
    border-radius: 0.375rem;
    font-size: 0.95rem;
  }
  
  /* -------------------------------
     FOOTER
  --------------------------------- */
  footer p {
    margin: 0.2rem 0;
  }
  footer a:hover {
    text-decoration: underline;
  }
  
  /* -------------------------------
     MEDIA QUERIES
  --------------------------------- */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.2rem;
    }
    .navbar-brand .logo {
      height: 35px;
      width: 35px;
    }
    .hero-content {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }