html {
      scroll-padding-top: 60px;
      scroll-behavior: smooth;
    }

    body {
      font-family: sans-serif;
      color: #2d3748;
      margin: 0;
      padding: 0;
    }

    /* Navbar */
    .navbar {
      border-bottom: 4px solid #CE2238;
    }

    .navbar-logo {
      max-height: 60px;
      width: auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Logo Hover Effect */
    .navbar-logo:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    /* Navbar Hover Animation */
    .navbar-nav .nav-link {
      position: relative;
      color: #2d3748;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #CE2238;
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #CE2238;
    }

    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    /* Hero Section */
    #home {
      background-color: #1a202c;
      color: white;
      text-align: left;
      padding-top: 120px;
      padding-bottom: 40px;
    }

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .hero-left {
      flex: 1;
      max-width: 40%;
    }

    .hero-right {
      flex: 1.3;
      min-width: 300px;
      max-width: 60%;
    }

    .hero-title {
      font-size: 2.25rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 900;
      line-height: 1.2;
      color: #f7fafc;
    }

    .hero-subtext {
      font-size: 1.2rem;
      margin: 20px 0;
      color: #e2e8f0;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* GIF Styling */
    .hero-right img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .social-media {
      margin-top: 20px;
      text-align: left;
    }

    .social-icon {
      width: 32px;
      height: 32px;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .social-icon:hover {
      transform: scale(1.1);
      filter: brightness(0.8);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
      }

      .hero-left,
      .hero-right {
        max-width: 100%;
      }

      .hero-title {
        font-size: 2.25rem;
      }

      .hero-subtext {
        font-size: 1rem;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-right {
        margin-top: 20px;
      }

      .social-media {
        text-align: center;
      }
    }

    /* General Section Styling */
    section {
      padding: 64px 32px;
    }

    /* Services Section */
.services-title {
    font-size: 32px;
    font-weight: bold;
    color: black;
    margin-bottom: 16px;
    text-align: center;
}    
.services-subtitle {
  text-align: center;
  color: #718096;
  margin-bottom: 40px;
}

/* Grid spacing improvement */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card redesign */
.service-card {
  background: white;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  text-align: left;
  border: 2px solid #CE2238;
}

/* Hover effect (VERY important) */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Icon */
.service-icon-wrap {
  font-size: 28px;
  width: 50px;
  height: 50px;
  background: #f7fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Title */
.service-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Text */
.service-card p {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
}

/* Tags */
.service-tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tags span {
  font-size: 12px;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 999px;
  color: #334155;
}

/* Mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .featured-service {
    transform: none;
  }
}

    /* About Section */
    #about {
      padding: 60px 0;
      background-color: #CE2238;
    }

    .about-content {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      align-items: center;
    }

    .about-text {
      flex: 1;
      max-width: 50%;
    }

    .about-title {
      font-size: 32px;
      font-weight: bold;
      color: white;
      margin-bottom: 16px;
    }

    .about-subtitle {
      color: white;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .about-description {
      color: white;
      line-height: 1.6;
      font-size: 18px;
      margin-bottom: 24px;
    }

    .about-signature {
      color: white;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .about-image {
      flex: 1;
      max-width: 50%;
      margin-top: 20px;
    }

    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Quote Section */
    #quote {
      padding: 60px 0;
      background-color: #ffffff;
    }

    .quote-content {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }

    .quote-image {
      flex: 1;
      max-width: 50%;
      margin-top: 20px;
    }

    .quote-image img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .quote-text {
      flex: 1;
      max-width: 50%;
      text-align: center;
    }

    .quote-title {
      font-size: 32px;
      font-weight: bold;
      color: #CE2238;
      margin-bottom: 16px;
    }

    .quote-description {
      color: #4a5568;
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .primary-btn {
      background-color: #CE2238;
      color: white;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
    }

    .primary-btn:hover {
      background-color: #276749;
    }

    .secondary-btn {
      background-color: white;
      color: black;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
    }

    .secondary-btn:hover {
      background-color: gray;
      color: white;
    }

    .quote-call {
      color: #4a5568;
      font-weight: 500;
      margin-top: 16px;
    }

    .quote-call a {
      color: #CE2238;
      text-decoration: none;
    }

    .quote-call a:hover {
      text-decoration: underline;
    }

    /* Gallery Section */
    #gallery {
      background-color: #ffffff;
    }

    .gallery-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .gallery-title {
      font-size: 32px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* View Gallery Button */
    .view-gallery-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      font-size: 16px;
      background-color: #276749;
      color: white;
      font-weight: bold;
      text-decoration: none;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
    }

    .view-gallery-btn:hover {
      background-color: #CE2238;
      /* Hover color */
    }

    /* Responsive Grid */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        /* Stack images in a single column on smaller screens */
      }
    }


    /* Why Us Section */
    #why-us {
      margin: 0;
      padding: 0;
    }

    .why-us-row {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: stretch;
      text-align: center;
    }

    .why-us-box {
      flex: 1;
      padding: 100px 20px;
      color: white;
    }

    .why-us-box h3 {
      font-size: 18px;
      font-weight: bold;
      margin-top: 20px;
      line-height: 1.4;
    }

    /* Example Icon Styling */
    .why-us-icon {
      width: 100px;
      height: 100px;
    }

    /* why us Background Colors */
    .black-dark {
      background-color: #1A202C;
    }

    .black-mid {
      background-color: #141923;
    }

    .black-light {
      background-color: #0D1117;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .why-us-row {
        flex-direction: column;
      }
    }

    /* Reviews Background */
    #reviews {
      background: linear-gradient(135deg, #f7fafc, #edf2f7);
      padding: 90px 20px;
    }

    /* Title */
    .reviews-title {
      text-align: center;
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 10px;
      color: #2d3748;
    }

    .reviews-subtitle {
      text-align: center;
      color: #718096;
      margin-bottom: 50px;
      font-size: 16px;
    }

    /* Grid */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      align-items: stretch;
    }

    /* Card */
    .review-card {
      position: relative;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(10px);
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    /* Accent bar */
    .accent-bar {
      width: 50px;
      height: 4px;
      background: #CE2238;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    /* Hover effect */
    .review-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    }

    /* Featured (middle card highlight) */
    .featured {
      transform: scale(1.05);
      background: white;
    }

    /* Stars */
    .stars {
      color: #CE2238;
      font-size: 18px;
      margin-bottom: 12px;
      letter-spacing: 2px;
    }

    /* Text */
    .review-text {
      font-size: 15px;
      color: #4a5568;
      line-height: 1.6;
      margin-bottom: 18px;
    }

    /* Name */
    .review-name {
      font-weight: 700;
      color: #2d3748;
    }

    /* CTA */
    .review-cta {
      text-align: center;
      margin-top: 50px;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .featured {
        transform: none;
      }
    }




    /* Contact Section */
    #contact {
      padding: 60px 0;
      background-color: #CE2238;
    }

    .contact-container {
      width: 80%;
      max-width: 800px;
      margin: 0 auto;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .contact-title {
      font-size: 32px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      margin-bottom: 16px;
      font-size: 16px;
    }

    /* Footer */
    footer {
      background-color: black;
      color: white;
      text-align: center;
      padding: 40px;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {

      .services-grid,
      .gallery-grid,
      .features-grid {
        grid-template-columns: 1fr;
      }

      .about-text,
      .about-image,
      .quote-text,
      .quote-image {
        max-width: 100%;
      }

      .about-content,
      .quote-content {
        flex-direction: column;
        align-items: center;
      }
    }

    .scroll-fade {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .scroll-fade.show {
      opacity: 1;
      transform: translateY(0);
    }