    .hero-section {
      position: relative;
      background: linear-gradient(135deg, #4ababa 0%, #30d0cb 50%, #88e6e3 100%);
      padding: 80px 60px 120px;
      overflow: hidden;
      min-height: 600px;
      display: flex;
      align-items: center;
    }
    
    
    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    
    .hero-text {
      color: white;
      z-index: 1;
    }
    
    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .highlight {
      background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }
    
    .hero-subtitle {
      font-size: 1.25rem;
      line-height: 1.6;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      max-width: 500px;
    }
    
    .hero-buttons {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    
    .btn-primary {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-primary:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .btn-secondary {
      background: white;
      color: #88e6e3;
    }
    
    .btn-secondary:hover {
      background: #f8fafc;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .hero-stats {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    
    .stat {
      text-align: center;
    }
    
    .stat-number {
      display: block;
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    
    .stat-label {
      font-size: 0.9rem;
      opacity: 0.9;
      font-weight: 500;
    }
    
    .hero-image {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .hero-image-container {
      position: relative;
      width: 400px;
      height: 400px;
    }
    
    .hero-main-image {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      border: 3px solid rgba(255, 255, 255, 0.2);
      animation: float 6s ease-in-out infinite;
    }
    
    .hero-main-image i {
      font-size: 4rem;
      color: white;
    }
    
    .floating-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.9);
      padding: 1rem 1.5rem;
      border-radius: 15px;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      color: #2d3748;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .floating-card i {
      font-size: 1.2rem;
      color: #88e6e3;
    }
    
    .card-1 {
      top: 1%;
      right: -15%;
      animation: float 4s ease-in-out infinite;
    }
    
    .card-2 {
      bottom: 20%;
      left: 1%;
      animation: float 5s ease-in-out infinite;
    }
    
    .card-3 {
      top: 29%;
      right: 15%;
      animation: float 3s ease-in-out infinite;
    }
    
    .card-4 {
      bottom: 20px;
      right: -57%;
      animation: float 4.5s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }
    
    .hero-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 120px;
      z-index: 1;
    }
    
    .hero-wave svg {
      width: 100%;
      height: 100%;
      fill: #f8f9fa;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
      
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-image-container {
        width: 300px;
        height: 300px;
      }
      
      .hero-main-image {
        width: 150px;
        height: 150px;
      }
      
      .hero-main-image i {
        font-size: 3rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero-section {
        padding: 60px 30px 100px;
        min-height: 500px;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .hero-buttons {
        justify-content: center;
      }
      
      .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
      }
      
      .hero-stats {
        justify-content: center;
        gap: 1.5rem;
      }
      
      .stat-number {
        font-size: 2rem;
      }
      
      /* Hide hero image section on mobile */
      .hero-image {
        display: none;
      }
      
      .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
      }
      
      .card-4 {
        bottom: 5%;
        right: 2%;
      }
    }
    
    @media (max-width: 480px) {
      .hero-section {
        padding: 40px 20px 80px;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
      
      .hero-stats {
        flex-direction: column;
        gap: 1rem;
      }
      
      .card-4 {
        bottom: 5%;
        right: 1%;
      }
    }


    /* FEATURES SECTION */
    .features-section {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    .features-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, #88e6e3 50%, transparent 100%);
    }
    
    .features-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }
    
    .features-header {
      text-align: center;
      margin-bottom: 80px;
    }
    
    .features-title {
      font-size: 3rem;
      font-weight: 800;
      color: #1a202c;
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .features-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #88e6e3 0%, #6dd6d3 100%);
      border-radius: 2px;
    }
    
    .features-subtitle {
      font-size: 1.25rem;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 80px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(136, 230, 227, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #88e6e3 0%, #6dd6d3 100%);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(136, 230, 227, 0.15);
    }
    
    .feature-card:hover::before {
      transform: scaleX(1);
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }
    
    .feature-card:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
    }
    
    .feature-icon i {
      font-size: 2rem;
      color: white;
    }
    
    .feature-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 16px;
    }    
    
    .feature-description {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 24px;
      font-size: 1rem;
    }
    
    .feature-highlight {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 20px;   
      background: linear-gradient(135deg, rgba(136, 230, 227, 0.1) 0%, rgba(109, 214, 211, 0.1) 100%);
      border-radius: 12px;
      border: 1px solid rgba(136, 230, 227, 0.2);
      text-align: center;
      min-height: 50px;
    }
    
    .highlight-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: #88e6e3;
      line-height: 1;
      display: inline-block;
    }
    
    .highlight-text {
      font-size: 0.9rem;
      color: #64748b;
      font-weight: 600;
      line-height: 1.2;
      display: inline-block;
    }
    
    
    .features-cta {
      background: linear-gradient(135deg, #4ababa 0%, #30d0cb 50%, #88e6e3 100%);
      border-radius: 24px;
      padding: 60px 40px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    
    .features-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }
    
    .cta-content {
      color: white;
      z-index: 1;
    }
    
    .cta-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .cta-subtitle {
      font-size: 1.2rem;
      opacity: 0.95;
      margin-bottom: 2rem;
      line-height: 1.6;
    }
    
    .cta-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .cta-primary {
      background: white;
      color: #88e6e3;
    }
    
    .cta-primary:hover {
      background: #f8fafc;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .cta-secondary {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border-color: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
    }
    
    .cta-secondary:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }
    
    .cta-stats {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      z-index: 1;
    }
    
    .cta-stat {
      text-align: center;
      color: white;
    }
    
    .cta-stat .stat-number {
      display: block;
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .cta-stat .stat-label {
      font-size: 1rem;
      opacity: 0.9;
      font-weight: 500;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
      .features-container {
        padding: 0 40px;
      }
      
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 900px;
      }
      
      .features-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
      
      .cta-stats {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
      }
    }
    
    @media (max-width: 768px) {
      .features-section {
        padding: 60px 0;
      }
      
      .features-container {
        padding: 0 30px;
      }
      
      .features-title {
        font-size: 2.5rem;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
      }
      
      .feature-card {
        padding: 30px 25px;
      }
      
      .features-cta {
        padding: 40px 30px;
      }
      
      .cta-title {
        font-size: 2rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
      
      .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
      }
    }

    @media (max-width: 1024px) {
      .services {
        grid-template-columns: repeat(4, 1fr);
        padding: 40px;
      }
    }
    @media (max-width: 768px) {
      .hero-slide { height: 260px; }
      .hero-caption { font-size: 14px; padding: 8px 12px; left: 12px; bottom: 10px; }
      .hero-btn { width: 40px; height: 40px; }
      .hero-dots { bottom: 10px; gap: 8px; }
      .services {
        grid-template-columns: repeat(3, 1fr);
        padding: 30px 20px;
        gap: 20px;
      }
      .service {
        max-width: 280px;
      }
    }
    
    @media (max-width: 480px) {
      .services {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 15px;
        gap: 15px;
      }
      
      /* Perfect square on mobile */
      .service {
        aspect-ratio: 1 / 1;
        height: auto;
        max-width: 100%;
        padding: 12px;
      }
      
      /* Adjust image container to leave room for title */
      .service img {
        height: auto;
        aspect-ratio: 1 / 1;
        flex: 0 0 55%;
      }
      
      /* Make content area flexible to fit title */
      .service p {
        font-size: 0.9rem;
        height: auto;
        min-height: auto;
        line-height: 1.3;
        margin-top: 8px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
      }
      
      /* Service price if exists */
      .service-price {
        font-size: 0.85rem;
        margin-top: 4px;
      }
    }
    
    /* SERVICES */
    .section-title {
      text-align: center;
      font-size: 28px;
      font-weight: 600;
      color:#1a202c;
      margin-top: 50px;
      margin-bottom: 20px;
    }

    .services {
      padding: 60px;
      background-color: transparent;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
      justify-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .service {
      background-color: #fffdfb;
      border-radius: 12px;
      padding: 16px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: 0.3s ease;
      width: 100%;
      height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .service:hover {
      transform: translateY(-5px);
    }
    
    .service img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      flex-shrink: 0;
    }

    .service p {
      font-size: 16px;
      font-weight: 600;
      color: #333;
      margin: 0;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.3;
    }

    .view-more {
      text-align: center;
      margin: 30px 0;
    }

    .btn {
      background-color: #007e7a;
      color: white;
      padding: 12px 22px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn:hover {
      background-color: #6dd6d3;
    }

    /* FOOTER */
    footer {
      background-color: #ffffffff;
      padding: 50px 60px;
      border-top: 1px solid #e0c89e;
      text-align: center;
    }

    footer h3 {
      font-size: 20px;
      margin-bottom: 15px;
    }

    footer .contact-info p {
      font-size: 14px;
      margin: 4px 0;
    }