    html {
      scroll-behavior: smooth;
    }

    .h2._30.our {
      padding: 20px;
      text-align: center;
      font-size: 32px;
      font-weight: 700;
    }

    .span-gradient {
      background: linear-gradient(90deg, #2563eb, #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      padding: 40px 20px;
    }

    .card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: 0.3s ease;
      width: auto;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
    }

    .card-content h3 {
      color: #2563eb;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .card-content p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    .our-services {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px;
    }

    .villas {
      padding: 15px 20px;
    }

    .whatsapp,
    .scroll-to-top {
      position: fixed;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
      z-index: 100;
      right: 30px;
    }

    .whatsapp {
      bottom: 30px;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    .whatsapp:hover {
      transform: scale(1.1);
    }

    .scroll-to-top {
      bottom: 100px;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    }

    .scroll-to-top:hover {
      transform: scale(1.1);
    }

    .whatsapp-icon,
    .scroll-to-top-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    @media (max-width: 1024px) {
      .services {
        grid-template-columns: repeat(2, 1fr);
        margin: auto;
      }
    }

    @media(max-width:600px) {
      .services {
        grid-template-columns: 1fr;
        margin: auto;
      }

      .h2._30.our {
        font-size: 24px;
      }

      .whatsapp,
      .scroll-to-top {
        width: 50px;
        height: 50px;
        right: 15px;
      }

      .whatsapp-icon,
      .scroll-to-top-icon {
        width: 32px;
        height: 32px;
      }

      .whatsapp {
        bottom: 20px;
      }

      .scroll-to-top {
        bottom: 80px;
      }
    }

    @media(max-width:480px) {

      .whatsapp,
      .scroll-to-top {
        width: 45px;
        height: 45px;
        right: 10px;
      }

      .whatsapp-icon,
      .scroll-to-top-icon {
        width: 28px;
        height: 28px;
      }

      .whatsapp {
        bottom: 15px;
      }

      .scroll-to-top {
        bottom: 70px;
      }
    }

    /* Popup Modal Styles */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .popup-overlay.active {
      display: flex;
      opacity: 1;
    }

    .popup-modal {
      background: white;
      border-radius: 16px;
      width: 90%;
      max-width: 900px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s ease;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .popup-overlay.active .popup-modal {
      transform: translateY(0);
    }

    .popup-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #f1f5f9;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
    }

    .popup-close:hover {
      background: #e2e8f0;
      transform: rotate(90deg);
    }

    .popup-close i {
      font-size: 20px;
      color: #64748b;
    }

    .popup-content {
      padding: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .popup-image {
      width: 100%;
      height: 300px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .popup-text {
      display: flex;
      flex-direction: column;
    }

    .popup-text h2 {
      color: #2563eb;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .popup-text p {
      color: #555;
      line-height: 1.6;
      font-size: 16px;
    }

    .popup-key-points {
      margin-top: 20px;
    }

    .popup-key-points h3 {
      color: #64009b;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .popup-key-points ul {
      list-style: none;
      padding: 0;
    }

    .popup-key-points li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .popup-key-points li i {
      color: #10b981;
      font-size: 14px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .popup-key-points li span {
      color: #444;
      line-height: 1.5;
    }

    /* Contact Section */
    .popup-contact {
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid #e5e7eb;
    }

    .popup-contact h3 {
      color: #64009b;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .contact-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      background: #f9fafb;
      padding: 15px;
      border-radius: 12px;
      transition: 0.3s ease;
      position: relative;
    }

    .contact-card:hover {
      background: #f1f5f9;
      transform: translateY(-2px);
    }

    .linkedin-corner {
      position: absolute;
      top: 10px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #0a66c2;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .linkedin-corner:hover {
      transform: scale(1.1);
      background: #004182;
    }

    .contact-avatar {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #64009b;
    }

    .contact-info h4 {
      margin: 0;
      font-size: 16px;
      color: #111827;
    }

    .contact-info a {
      color: #64009b;
      font-size: 14px;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .cloud-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .cloud-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .cloud-left {
      width: 100%;
    }

    .cloud-image {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .cloud-right h2 {
      color: #2563eb;
      font-size: 26px;
      margin-bottom: 10px;
    }

    .cloud-right p {
      color: #555;
      line-height: 1.6;
      font-size: 15px;
    }

    .cloud-benefits ul {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .cloud-benefits li {
      display: flex;
      align-items: flex-start;
      padding: 5px;
    }

    .cloud-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 35px;
      align-items: stretch;
    }

    .cloud-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .cloud-top {
        grid-template-columns: 1fr;
      }

      .cloud-image {
        height: 220px;
      }
      .cloud-benefits ul {
        grid-template-columns: 1fr;
      }
    }

    .outsourcing-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .outsourcing-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 35px;
      align-items: stretch;
    }

    .outsourcing-image {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .outsourcing-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .outsourcing-right h2 {
      color: #2563eb;
      font-size: 26px;
      margin-bottom: 10px;
    }

    .outsourcing-right p {
      color: #555;
      line-height: 1.6;
      font-size: 15px;
    }

    .outsourcing-benefits ul {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .outsourcing-benefits li {
      display: flex;
      gap: 8px;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .outsourcing-top {
        grid-template-columns: 1fr;
      }

      .outsourcing-benefits ul {
        grid-template-columns: 1fr;
      }

      .outsourcing-image {
        height: 220px;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .popup-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
      }

      .popup-text h2 {
        font-size: 24px;
      }

      .popup-modal {
        width: 95%;
      }

      .popup-image {
        height: 250px;
      }
    }

    @media (max-width: 768px) {

      .popup-key-points h3 {
        font-size: 20px;
      }

      .popup-key-points li span {
        font-size: 16px;
        line-height: 1.6;
      }

      .popup-key-points li i {
        font-size: 16px;
        margin-top: 2px;
      }

      .popup-key-points ul {
        gap: 8px;
      }

    }