@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #ffffff;
      color: #000000;
      line-height: 1.4;
      scroll-behavior: smooth;
    }

    /* Typography */
    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Top Bar */
    .top-bar {
      background: #f5f7fc;
      padding: 10px 0;
      font-size: 0.9rem;
      border-bottom: 1px solid #eef2f6;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .contact-info {
      display: flex;
      gap: 28px;
    }

    .contact-info a {
      text-decoration: none;
      color: #1a2c3e;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .contact-info a:hover {
      color: #3b82f6;
    }

    .quote-cta-top a {
      background: #3b82f6;
      color: white;
      padding: 6px 18px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.85rem;
      transition: background 0.2s;
    }

    .quote-cta-top a:hover {
      background: #2563eb;
    }

    /* Navigation */
    .navbar {
      position: sticky;
      top: 0;
      background: white;
      z-index: 1000;
      padding: 25px 0;
      border-bottom: 1px solid #edf2f7;
      transition: all 0.2s;
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-decoration: none;
      color: #000000;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      font-weight: 500;
      color: #1e293b;
      transition: color 0.2s;
      font-size: 1rem;
    }

    .nav-links li a:hover {
      color: #3b82f6;
    }

    .quote-nav-btn {
      background: #000000;
      color: white !important;
      padding: 8px 20px;
      border-radius: 40px;
      transition: background 0.2s, transform 0.1s;
    }

    .quote-nav-btn:hover {
      background: #3b82f6;
      color: white !important;
    }

    /* mobile menu toggle */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      background: none;
      border: none;
      cursor: pointer;
    }

    /* Buttons */
    .btn-primary {
      background: #000000;
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: all 0.25s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .btn-primary:hover {
      background: #3b82f6;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid #000000;
      color: #000000;
      padding: 10px 26px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: all 0.25s ease;
    }

    .btn-outline:hover {
      background: #000000;
      color: white;
      border-color: #000000;
    }

    /* Hero */
    .hero {
      padding: 80px 0 100px;
      background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    }

    .hero-grid {
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .hero-content {
      flex: 1;
    }

    .hero-visual {
      flex: 1;
      text-align: center;
    }

    .hero-visual img {
      width: 100%;
      height: auto;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    /* About */
    .about {
      padding: 90px 0;
      background: white;
    }

    .about-grid {
      display: flex;
      gap: 56px;
      align-items: center;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
    }

    .about-image {
      flex: 1;
      background: #eef2ff;
      border-radius: 32px;
      padding: 32px;
      text-align: center;
    }

    .about-image img{
      width: 100%;
      height: auto;
      border-radius: 32px;
    }

    .mission-vision {
      display: flex;
      gap: 32px;
      margin: 28px 0 24px;
      flex-wrap: wrap;
    }

    .mv-item {
      background: #f9fafb;
      padding: 18px 22px;
      border-radius: 24px;
      flex: 1;
    }

    /*Whatsapp Button Styles*/
          .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: all 0.3s ease;
      }

      .whatsapp-float:hover {
        background-color: #1ebe5d;
        transform: scale(1.1);
      }

    /* Optional pulse animation */
    .whatsapp-float::after {
      content: '';
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.4);
      animation: pulse 2s infinite;
      z-index: -1;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.6;
      }
      70% {
        transform: scale(1.6);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 0;
      }
    }

    /* Services */
    .services {
      padding: 80px 0;
      background: #fafcff;
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      margin-top: 48px;
    }

    .service-category {
      flex: 1;
      min-width: 260px;
    }

    .service-card {
      background: white;
      border-radius: 28px;
      padding: 28px;
      margin-bottom: 24px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.02);
      border: 1px solid #eff3f8;
      transition: all 0.25s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
      border-color: #cbdffc;
    }

    .service-icon {
      font-size: 2.2rem;
      margin-bottom: 18px;
    }

    .service-card-button {
      display: inline-block;
      margin-top: 16px;
      color: #3b82f6;
      text-decoration: none;
      font-weight: 600;
      background-color: #cbd5e1cc;
      padding: 5px 15px;
      border-radius: 5px;
    }

    /* Quote section */
    .quote-section {
      background: #eef4ff;
      padding: 80px 0;
    }

    .quote-box {
      max-width: 780px;
      margin: 0 auto;
      background: white;
      border-radius: 40px;
      padding: 48px 44px;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
    }

    .quote-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 32px;
    }

    .form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    input, select, textarea {
      padding: 14px 18px;
      border: 1px solid #e2e8f0;
      border-radius: 28px;
      font-size: 1rem;
      transition: 0.2s;
      font-family: inherit;
    }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
    }

    .submit-btn {
      background: #000000;
      color: white;
      border: none;
      padding: 14px 20px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s;
    }

    .submit-btn:hover {
      background: #3b82f6;
    }

    /* Blog */
    .blog {
      padding: 90px 0;
      background: white;
    }

    .blog-grid {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 48px;
    }

    .blog-card {
      flex: 1;
      min-width: 260px;
      background: #ffffff;
      border-radius: 28px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid #edf2f7;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    }

    .blog-img {
      height: 180px;
      background: #d9e6ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #2c5282;
    }

    .blog-content {
      padding: 24px;
    }

    .blog-content h3 {
      font-size: 1.35rem;
    }

    .read-more {
      color: #3b82f6;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      margin-top: 12px;
    }

    .btn-view-all {
      text-align: center;
      margin-top: 56px;
    }

    /* Footer */
    .footer {
      background: #0a0c10;
      color: #e2e8f0;
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      justify-content: space-between;
      margin-bottom: 48px;
    }

    .footer-col {
      flex: 1;
      min-width: 160px;
    }

    .footer-col h4 {
      color: white;
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .footer-col p, .footer-col a {
      color: #cbd5e1;
      text-decoration: none;
      line-height: 1.6;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 12px;
    }

    .footer-col a:hover {
      color: #3b82f6;
    }

    .social-icons {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .social-icons a {
      font-size: 1.5rem;
    }

    .copyright {
      border-top: 1px solid #1e293b;
      padding-top: 28px;
      text-align: center;
      font-size: 0.85rem;
      color: #94a3b8;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .container {
        padding: 0 24px;
      }
      h1 { font-size: 2.6rem; }
      h2 { font-size: 2rem; }
      .menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 24px 0 16px;
        gap: 20px;
        align-items: flex-start;
      }
      .nav-links.active {
        display: flex;
      }
      .navbar .container {
        flex-wrap: wrap;
      }
      .hero-grid, .about-grid {
        flex-direction: column;
      }
    }

    @media (max-width: 640px) {
      .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
      }
      .contact-info {
        flex-wrap: wrap;
        gap: 12px;
      }
      .quote-box {
        padding: 32px 24px;
      }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }