 /* Enhanced modern color scheme and base styles */
      /* Enhanced modern color scheme and base styles */
      :root {
        --primary: #2b3a55; /* Darker blue */
        --primary-light: #3f5379; /* Slightly lighter blue */
        --secondary: #3498db; /* Brighter blue */
        --secondary-light: #5dade2; /* Lighter blue */
        --accent: #e74c3c; /* Red accent */
        --light: #f5f7fa; /* Light background */
        --dark: #2c3e50; /* Dark text */
        --text-muted: #7f8c8d; /* Muted text */
        --shadow: rgba(0, 0, 0, 0.05); /* Lighter shadow */
        --shadow-hover: rgba(0, 0, 0, 0.12); /* Hover shadow */
        --card-bg: #ffffff;
        --gradient-primary: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-light)
        );
        --gradient-secondary: linear-gradient(
          135deg,
          var(--secondary),
          var(--secondary-light)
        );
        --success: #2ecc71;
        --danger: #e74c3c;
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.7;
        color: var(--dark);
        background-color: var(--light);
        margin: 0;
        padding: 0;
        overflow-x: hidden;
      }

      /* Simplified animations */
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes slideUp {
        from {
          transform: translateY(20px);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      /* Services section styling */
      .services-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 80px 30px;
        position: relative;
        animation: fadeIn 0.8s ease-out forwards;
      }

      /* Section header with cleaner elements */
      .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        animation: slideUp 0.8s ease-out forwards;
      }

      .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: var(--primary);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title:after {
        content: "";
        position: absolute;
        width: 60px;
        height: 3px;
        background: var(--secondary);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-muted);
        max-width: 700px;
        margin: 20px auto 0;
        font-weight: 400;
        line-height: 1.6;
      }

      /* Improved services grid */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
      }

      /* Service card styling */
      .service-card {
        background-color: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 20px var(--shadow);
        transition: all 0.3s ease;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.03);
        animation: fadeIn 0.6s ease-out forwards;
      }

      .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px var(--shadow-hover);
      }

      /* Service icon styling */
      .service-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90px;
        background: var(--gradient-primary);
        color: white;
        font-size: 2.2rem;
        position: relative;
      }

      .service-icon i {
        transition: transform 0.3s ease;
      }

      .service-card:hover .service-icon i {
        transform: scale(1.1);
      }

      /* Service content styling */
      .service-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .service-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 12px;
      }

      .service-title:after {
        content: "";
        position: absolute;
        width: 35px;
        height: 3px;
        background-color: var(--secondary);
        bottom: 0;
        left: 0;
        border-radius: 2px;
      }

      .service-description {
        color: var(--text-muted);
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 1rem;
      }

      /* Features list styling */
      .service-features {
        list-style-type: none;
        padding: 0;
        margin: 0 0 20px 0;
      }

      .service-features li {
        padding: 8px 0;
        position: relative;
        padding-left: 28px;
        color: var(--dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .service-features li:last-child {
        border-bottom: none;
      }

      .service-features li:before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--secondary);
        position: absolute;
        left: 0;
        font-size: 0.9rem;
      }

      /* Price display styling */
      .service-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 20px;
        margin-top: auto;
        padding: 8px 12px;
        background-color: rgba(231, 76, 60, 0.08);
        border-radius: 5px;
        display: inline-block;
      }

      /* Call-to-action button styling */
      .service-cta {
        display: inline-block;
        padding: 12px 24px;
        background: var(--gradient-secondary);
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
        border: none;
        cursor: pointer;
      }

      .service-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
      }

      /* Responsive adjustments */
      @media (max-width: 992px) {
        .services-grid {
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 25px;
        }

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

      @media (max-width: 768px) {
        .section-title {
          font-size: 2rem;
        }

        .services-grid {
          grid-template-columns: 1fr;
          gap: 25px;
        }

        .services-container {
          padding: 50px 20px;
        }

        .service-content {
          padding: 20px;
        }
      }

      /* Modal styling */
      .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0);
        transition: background-color 0.3s ease;
      }

      .modal.show {
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
      }

      .modal-content {
        background-color: #fff;
        margin: 5% auto;
        width: 90%;
        max-width: 600px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        transform: translateY(-30px);
        opacity: 0;
        transition: all 0.4s ease;
      }

      .modal.show .modal-content {
        transform: translateY(0);
        opacity: 1;
      }

      .modal-header {
        padding: 25px;
        background: var(--gradient-primary);
        color: white;
        position: relative;
      }

      .modal-title {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
      }

      .modal-subtitle {
        margin-top: 5px;
        font-weight: 400;
        font-size: 1rem;
        opacity: 0.8;
      }

      .close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 1.6rem;
        font-weight: 400;
        cursor: pointer;
        transition: transform 0.3s ease;
        height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
      }

      .close:hover {
        transform: rotate(90deg);
        background-color: rgba(255, 255, 255, 0.1);
      }

      .modal-body {
        padding: 25px;
      }

      /* Form styling */
      .form-group {
        margin-bottom: 20px;
      }

      .form-group:last-child {
        margin-bottom: 0;
      }

      .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--primary);
        font-size: 0.95rem;
      }

      .form-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e1e5e9;
        border-radius: 5px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: #f8f9fa;
      }

      .form-input:focus {
        outline: none;
        border-color: var(--secondary);
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        background-color: #fff;
      }

      .form-textarea {
        min-height: 120px;
        resize: vertical;
      }

      .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
      }

      .form-button {
        display: inline-block;
        padding: 12px 25px;
        background: var(--gradient-secondary);
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
        border: none;
        cursor: pointer;
        width: 100%;
      }

      .form-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
      }

      .form-button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
      }

      .form-button i {
        margin-right: 8px;
      }

      /* Alert boxes */
      .alert {
        padding: 12px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        display: none;
        font-weight: 500;
      }

      .alert-success {
        background-color: rgba(46, 204, 113, 0.1);
        border: 1px solid rgba(46, 204, 113, 0.2);
        color: var(--success);
      }

      .alert-error {
        background-color: rgba(231, 76, 60, 0.1);
        border: 1px solid rgba(231, 76, 60, 0.2);
        color: var(--danger);
      }

      .input-error {
        border-color: var(--danger);
      }

      .error-text {
        color: var(--danger);
        font-size: 0.85rem;
        margin-top: 5px;
        display: none;
      }

      /* Loader styling */
      .loader {
        display: none;
        margin-right: 10px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top: 3px solid #fff;
        width: 16px;
        height: 16px;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      /* Back to Home button styling */
      .backtohomebtn {
        display: flex;
        justify-content: center;
        margin: 40px 0;
        animation: fadeIn 0.8s ease-out forwards;
      }

      .backtohomebtn button {
        padding: 12px 25px;
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 12px rgba(43, 58, 85, 0.2);
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
      }

      .backtohomebtn button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(43, 58, 85, 0.25);
      }

      .backtohomebtn button:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(43, 58, 85, 0.2);
      }

      @media (max-width: 768px) {
        .backtohomebtn button {
          padding: 10px 20px;
          font-size: 0.95rem;
        }
      }