:root {
      --primary: #4285F4;
      --primary-dark: #3367D6;
      --secondary: #0F9D58;
      --accent: #FF7043;
      --dark: #202124;
      --dark-light: #5F6368;
      --light: #F8F9FA;
      --light-gray: #F1F3F4;
      --white: #FFFFFF;

      --heading-font: "Poppins", sans-serif;
      --body-font: "Inter", sans-serif;

      --border-radius: 12px;
      --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.1);
      --hover-shadow: 0 14px 28px rgba(0, 0, 0, 0.12), 0 10px 10px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }

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

    body {
      font-family: var(--body-font);
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--heading-font);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 0.8rem;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
      padding: 0 20px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      border-radius: 2px;
    }

    .section-title p {
      font-size: 1.1rem;
      color: var(--dark-light);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      text-align: center;
      padding: 120px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: center bottom;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 3.2rem;
      margin-bottom: 20px;
      animation: fadeInUp 0.8s ease;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 35px;
      opacity: 0.9;
      animation: fadeInUp 0.8s ease 0.2s forwards;
      opacity: 0;
    }

    .btn {
      display: inline-block;
      background: var(--white);
      color: var(--primary);
      padding: 15px 35px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: var(--card-shadow);
      border: none;
      cursor: pointer;
      animation: fadeInUp 0.8s ease 0.4s forwards;
      opacity: 0;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--hover-shadow);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-secondary:hover {
      background: var(--white);
      color: var(--primary);
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .feature-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 30px;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--hover-shadow);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--white);
      font-size: 1.8rem;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--dark);
    }

    .feature-card p {
      color: var(--dark-light);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .service-features {
      list-style: none;
    }

    .service-features li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .service-features i {
      color: var(--secondary);
      margin-right: 10px;
      font-size: 0.9rem;
    }

    /* Projects Section */
    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .project-card {
      background: var(--white);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
    }

    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--hover-shadow);
    }

    .project-img {
      height: 220px;
      overflow: hidden;
      position: relative;
    }

    .project-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .project-card:hover .project-img img {
      transform: scale(1.05);
    }

    .project-info {
      padding: 25px;
    }

    .project-info h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    .project-info p {
      color: var(--dark-light);
      margin-bottom: 20px;
    }

    .project-stats {
     display: grid;
           grid-template-columns: repeat(3, 1fr);
           gap: 15px;
           margin-top: 20px;
    }

    .stat {
      text-align: center;
      padding: 12px;
      background: var(--light-gray);
      border-radius: 8px;
    }

    .stat h4 {
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 5px;
    }

    .stat p {
      font-size: 0.85rem;
      margin-bottom: 0;
      color: var(--dark-light);
    }

    /* Process Section */
    .process-steps {
      display: grid;
              grid-template-columns: repeat(3, 1fr);

              gap: 40px;
              counter-reset: step-counter;
              margin-top: 60px;
              margin-bottom:20px;
    }

    .step {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 30px 25px 25px;
      box-shadow: var(--card-shadow);
      transition: var(--transition);
      position: relative;
      text-align: center;
    }

    .step::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .step:hover {
      transform: translateY(-5px);
      box-shadow: var(--hover-shadow);
    }

    .step h3 {
      font-size: 1.3rem;
      margin: 15px 0 12px;
    }

    .step p {
      color: var(--dark-light);
    }

    /* CTA Section */
    .cta {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: center bottom;
    }

    .cta-container {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .hero h1 {
        font-size: 2.8rem;
      }

      .section-title h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }

      .hero {
        padding: 100px 20px;
      }

      .hero h1 {
        font-size: 2.3rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .section-title {
        margin-bottom: 40px;
      }

      .features-grid,
      .project-grid,
      .process-steps {
      grid-template-columns: repeat(1, 2fr);
        gap: 20px;
      }

      .project-stats {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .stat {
        padding: 10px;
      }
    }

    @media (max-width: 576px) {
      .hero {
        padding: 80px 15px;
      }

      .hero h1 {
        font-size: 2rem;
      }

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

      .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
      }

      .section-title h2 {
        font-size: 1.8rem;
      }

      .section-title p {
        font-size: 1rem;
      }

      .feature-card,
      .project-card,
      .step {
        padding: 20px;
      }

      .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }

      .cta {
        padding: 60px 15px;
      }

      .cta h2 {
        font-size: 2rem;
      }

      .cta p {
        font-size: 1rem;
      }
    }

    @media (max-width: 400px) {
      .features-grid,
      .project-grid,
      .process-steps {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 1.8rem;
      }
    }