 :root {
      --violet-deep: #5b0c80;
      --violet-light: #834fb4;
      --pink-accent: #ed6db7;
      --glass: rgba(255, 255, 255, 0.1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', 'Segoe UI', sans-serif; background-color: #fbfaff; overflow-x: hidden; }

    /* --- Navigation --- */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 5%;
      background: transparent;
      transition: all 0.4s ease-in-out;
      color: #fff;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    .navbar.scrolled {
      background: var(--violet-deep) !important;
      padding: 15px 5%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .nav-brand { font-size: 1.5rem; font-weight: bold; color: white !important; text-decoration: none; }
    .nav-links { list-style: none; display: flex; gap: 25px; margin-bottom: 0; }
    .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.3s; font-weight: 500; }
    .nav-links a:hover { color: var(--pink-accent); }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .nav-toggle span { width: 25px; height: 3px; background: #fff; }

    /* --- Side Socials --- */
    #side_nav {
      position: fixed;
      top: 35%;
      left: 0;
      z-index: 999;
      background: white;
      padding: 12px;
      border-radius: 0 10px 10px 0;
      box-shadow: 2px 2px 12px rgba(0,0,0,0.15);
    }
    #side_nav a { color: rgb(131, 79, 180); font-size: 1.4rem; display: block; margin: 12px 0; }

    /* --- Hero & Backgrounds --- */
       .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 100px 20px;
      /* Deep Violet Shade */
      background-color: rgb(38, 6, 53); 
      overflow: hidden;
    }

    /* The Image in background with light opacity */
    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: url('pictures/landingimg.png');
      background-size: cover;
      background-position: center;
      opacity: 0.1; /* Very light opacity */
      z-index: 1;
    }

    .hero-container {
      position: relative;
      z-index: 2; /* Sits above the background image */
      max-width: 900px;
    }

    .hero-title {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -2px;
      margin-bottom: 20px;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      opacity: 0.85;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    /* --- Wave (10% height) --- */
    .wave-wrapper {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 10%; 
      line-height: 0;
      z-index: 3;
    }
    .wave-wrapper svg { width: 100%; height: 100%; }


    /* --- Buttons --- */
    .btn-main {
      background: linear-gradient(90deg, var(--pink-accent), #cc3a53);
      border: none;
      color: white;
      padding: 14px 35px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
      box-shadow: 0 10px 20px rgba(237, 109, 183, 0.3);
      text-decoration: none;
    }
    .btn-main:hover { transform: scale(1.05); color: white; }

    .btn-outline-white {
      border: 2px solid rgba(255,255,255,0.4);
      background: var(--glass);
      backdrop-filter: blur(5px);
      color: white;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 500;
      transition: 0.3s;
    }
    .btn-outline-white:hover { background: white; color: var(--violet-deep); }

    /* --- Wave (10% Height at bottom) --- */
    .wave-container {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 120px; /* Constrained height */
      z-index: 3;
    }
    .wave-container svg { width: 100%; height: 100%; }

    
    /* --- Custom UI Elements --- */
    .btn-gradient {
      padding: 10px 25px;
      border: none;
      border-radius: 30px;
      color: #fff;
      background: linear-gradient(-200deg, rgb(131, 79, 180), #ed6db7, rgb(204, 58, 83));
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s;
    }
    .btn-gradient:hover { transform: scale(1.05); color: white; }

    .custom-card {
      border: 1px solid rgba(131, 79, 180, 0.3);
      box-shadow: 0 10px 20px rgba(131, 79, 180, 0.5);
      height: 100%;
      transition: 0.3s;
    }
    .custom-card:hover { transform: translateY(-10px); }

/*--- Services ---*/
    .service-bg {
      background-color: #5b0c80;
      color: white;
      padding: 80px 0;
      border-top-left-radius: 80px;
      border-bottom-right-radius: 80px;
    }

/* --- Sub services ---*/
.services-header {
      max-width: 800px;
      margin: 0 auto 60px auto;
    }

    .service-card {
      border: none;
      background: #ffffff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(131, 79, 180, 0.5);
      height: 100%;
      transition: all 0.3s ease-in-out;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 45px rgba(131, 79, 180, 0.8);
    }

    .card-icon {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .service-card .card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--violet-deep);
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .service-card .card-text {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
    }

    /* Spacing for sections */
    .section-padding {
      padding: 100px 0;
    }

    /* --- Form --- */
    #form {
      max-width: 850px;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(131, 79, 180, 0.);
      margin: 40px auto;
      color: #5b0c80;
    }

    /* --- Responsive Logic --- */
    @media (max-width: 991px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%; right: 0;
        background: rgb(38, 6, 53);
        width: 260px;
        padding: 30px;
        border-radius: 0 0 0 20px;
      }
      .nav-links.show { display: flex; flex-direction: column; }
      .nav-toggle { display: flex; }
      .hero { text-align: center; }
      .hero .illustration img { margin-top: 40px; width: 80%; }
    }