:root {
      --bg-dark: #0c0c0f;
      --bg-hero-dark: linear-gradient(135deg, #1a1a1f 0%, #141420 50%, #111115 100%);
      --text-primary-dark: #ffffff;
      --text-secondary-dark: #ffffff;
      --bg-light: #f8f9fa;
      --bg-hero-light: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
      --text-primary-light: #1a1a1f;
      --text-secondary-light: #4a4a4f;
      --accent-gold: #d4af37;
      --accent-gold-light: #f0c952;
      --accent-gold-dark: #b8941f;
      --transition: all 0.3s ease;
      
      --bg-body: var(--bg-dark);
      --bg-hero: var(--bg-hero-dark);
      --text-primary: var(--text-primary-dark);
      --text-secondary: var(--text-secondary-dark);
      --illustration-primary: rgba(212, 175, 55, 0.1);
      --illustration-secondary: rgba(212, 175, 55, 0.05);
      --illustration-accent: rgba(212, 175, 55, 0.2);
    }

    body.light-theme {
      --bg-body: var(--bg-light);
      --bg-hero: var(--bg-hero-light);
      --text-primary: var(--text-primary-light);
      --text-secondary: var(--text-secondary-light);
      --illustration-primary: rgba(212, 175, 55, 0.15);
      --illustration-secondary: rgba(212, 175, 55, 0.08);
      --illustration-accent: rgba(212, 175, 55, 0.25);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--bg-body);
      color: var(--text-primary);
      height: 100%;
      transition: background-color 0.3s ease, color 0.3s ease;

    }

    html {
      height: 100%;
    }

    .hero-section {
      width: 100%;
      min-height: 100%;
      background: var(--bg-hero);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
      transition: background 0.3s ease;
      position: relative;
      overflow: hidden;
      position: relative;
      min-height: 85vh;
      /* background-image: url(Hero.jpg); */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      color: white;
      padding: 120px 0;
      margin-top: 5px;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
      z-index: 1;
    }

    .hero-container {
      max-width: 1400px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-content {
      z-index: 2;
      position: relative;
    }

    .hero-tagline {
      display: inline-block;
      color: var(--accent-gold);
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 1.5rem;
      padding: 0.65rem 1.5rem;
      background: rgba(212, 175, 55, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      border: 1px solid rgba(212, 175, 55, 0.3);
      box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-tagline:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
      background: rgba(212, 175, 55, 0.2);
    }

    .hero-heading {
      font-size: 3.75rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 2rem;
      color: white;
      transition: color 0.3s ease;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 4px 40px rgba(0, 0, 0, 0.2);
      letter-spacing: -0.5px;
    }

    .hero-heading-highlight {
      background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 18px;
      line-height: 1.8;
      color: rgb(255, 255, 255);
      margin-bottom: 2.5rem;
      max-width: 600px;
      transition: color 0.3s ease;
      -webkit-text-stroke: 0.5px #000000;
      }

    .hero-buttons {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
      color: var(--bg-dark);
      padding: 1.15rem 2.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.5px;
      border: none;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 4px 10px rgba(212, 175, 55, 0.2);
      display: inline-block;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover,
    .btn-primary:focus {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6), 0 6px 15px rgba(212, 175, 55, 0.3);
      outline: 2px solid var(--accent-gold);
      outline-offset: 2px;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      color: var(--bg-dark);
      padding: 1.15rem 2.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.5px;
      border: 2px solid rgba(212, 175, 55, 0.3);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-block;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
      color: var(--bg-dark);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5), 0 6px 15px rgba(212, 175, 55, 0.3);
      border-color: var(--accent-gold);
      outline: 2px solid var(--accent-gold);
      outline-offset: 2px;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .illustration-container {
      width: 100%;
      max-width: 500px;
      aspect-ratio: 1;
      position: relative;
    
    }

    .geometric-shape {
      position: absolute;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .shape-1 {
      width: 80%;
      height: 80%;
      top: 10%;
      left: 10%;
      background: var(--illustration-primary);
      border: 2px solid var(--illustration-accent);
      transform: rotate(45deg);
      animation: float 6s ease-in-out infinite;
    }

    .shape-2 {
      width: 60%;
      height: 60%;
      top: 20%;
      left: 20%;
      background: var(--illustration-secondary);
      border: 2px solid var(--illustration-accent);
      transform: rotate(-15deg);
      animation: float 8s ease-in-out infinite reverse;
    }

    .shape-3 {
      width: 40%;
      height: 40%;
      top: 30%;
      left: 30%;
      background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
      opacity: 0.3;
      border-radius: 50%;
      animation: pulse 4s ease-in-out infinite;
    }

    .shape-4 {
      width: 25%;
      height: 25%;
      top: 15%;
      right: 15%;
      background: var(--illustration-accent);
      border-radius: 50%;
      animation: float 5s ease-in-out infinite;
    }

    .shape-5 {
      width: 20%;
      height: 20%;
      bottom: 20%;
      left: 10%;
      background: var(--illustration-accent);
      transform: rotate(30deg);
      animation: float 7s ease-in-out infinite reverse;
    }
    .shape-img {
  width: 100%;                /* Size of image inside box */
  height: 100%;
  /* object-fit: contain;       Keeps image nice, no stretch */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers perfectly */
   opacity: 1.5;             /* Slight transparency to blend */
  transition: all 0.4s ease;
  border-radius: 20px;
}

/* Optional: Hover effect (image grows) */
.geometric-shape:hover .shape-img {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
}

    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(45deg);
      }
      50% {
        transform: translateY(-20px) rotate(45deg);
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.3;
      }
      50% {
        transform: scale(1.1);
        opacity: 0.5;
      }
    }

    @media (max-width: 1024px) {
      .hero-heading {
        font-size: 2.75rem;
      
      }

      .hero-description {
        font-size: 1.1rem;
      }

      .hero-container {
        gap: 3rem;
        margin-left: 40px;    
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        padding: 3rem 1.5rem;
        min-height: auto;
      }

      .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .hero-heading {
        font-size: 2.25rem;
      }

      .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 1rem;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.75rem;
      }

      .illustration-container {
        max-width: 350px;
      }

      .theme-toggle-demo {
        top: 1rem;
        right: 1rem;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 480px) {
      .hero-heading {
        font-size: 1.875rem;
      }

      .hero-tagline {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
      }

      .hero-description {
        font-size: 0.95rem;
      }

      .illustration-container {
        max-width: 280px;
      }
    }

    

    /* Light theme styles */
body.light {
  background: #f8fafc;
  color: #0f172a;
}

/* Adjust navbar for light mode */
body.light .sticky-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

body.light .nav-link {
  color: #334155;
}

body.light .nav-link:hover,
body.light .nav-link.active {
  color: #b45309;
}

body.light .btn-primary {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: white;
}

/* About section */
/* body {
            box-sizing: border-box;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body, .about-wrapper {
            height: 100%;
            width: 100%;
        } */

        .about-wrapper {
            background: linear-gradient( #101424 100%);
            overflow-y: auto;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            color: #e8edf4;
            transition: background 0.4s ease, color 0.4s ease;
        }

        /* Light Theme Styles */
        body.light-theme .about-wrapper {
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #e8eef5 100%);
            color: #2c3e50;
        }

        .about-section {
            width: 100%;
            padding: 100px 24px;
            min-height: 100%;
            display: flex;
            align-items: center;
        }

        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .text-content {
            max-width: 600px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d4af37;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
            transition: color 0.4s ease;
        }

        body.light-theme .section-label {
            color: #c4941f;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37);
            transition: background 0.4s ease;
        }

        body.light-theme .section-label::before {
            background: linear-gradient(90deg, transparent, #c4941f);
        }

        .main-heading {
            font-size: 52px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 28px;
            transition: color 0.4s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        body.light-theme .main-heading {
            color: #1a202c;
        }

        .description {
            font-size: 17px;
            color: #b8c0d0;
            line-height: 1.8;
            margin-bottom: 32px;
            transition: color 0.4s ease;
        }

        body.light-theme .description {
            color: #64748b;
        }

        .highlights-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: #e8edf4;
            margin-bottom: 16px;
            transition: color 0.4s ease;
        }

        body.light-theme .highlight-item {
            color: #2c3e50;
        }

        .checkmark {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
            border: 2px solid #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
        }

        .highlight-item:hover .checkmark {
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        body.light-theme .checkmark {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.15), rgba(196, 148, 31, 0.05));
            border-color: #c4941f;
        }

        .checkmark svg {
            width: 14px;
            height: 14px;
            stroke: #d4af37;
            transition: stroke 0.4s ease;
        }

        body.light-theme .checkmark svg {
            stroke: #c4941f;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            color: #0a0e1a;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
            position: relative;
            overflow: hidden;
        }

        body.light-theme .cta-button {
            background: linear-gradient(135deg, #c4941f 0%, #e6c84f 100%);
            color: #1a202c;
            box-shadow: 0 8px 25px rgba(196, 148, 31, 0.35);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        body.light-theme .cta-button::before {
            background: linear-gradient(135deg, #e6c84f 0%, #c4941f 100%);
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        body.light-theme .cta-button:hover {
            box-shadow: 0 15px 40px rgba(196, 148, 31, 0.5);
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .cta-button svg {
            width: 18px;
            height: 18px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        .visual-content {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .abstract-graphic {
            width: 100%;
            max-width: 500px;
            height: 500px;
            position: relative;
        }

        .shape {
            position: absolute;
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .shape-1 {
            width: 280px;
            height: 280px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.2);
            top: 10%;
            left: 5%;
            transform: rotate(-15deg);
        }

        body.light-theme .shape-1 {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.12), rgba(196, 148, 31, 0.06));
            border-color: rgba(196, 148, 31, 0.25);
        }

        .shape-2 {
            width: 220px;
            height: 220px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
            border: 2px solid rgba(212, 175, 55, 0.3);
            bottom: 15%;
            right: 8%;
            transform: rotate(20deg);
        }

        body.light-theme .shape-2 {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.18), rgba(196, 148, 31, 0.1));
            border-color: rgba(196, 148, 31, 0.35);
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
            border: 2px solid rgba(212, 175, 55, 0.15);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
        }

        body.light-theme .shape-3 {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.1), rgba(196, 148, 31, 0.04));
            border-color: rgba(196, 148, 31, 0.2);
        }

        .center-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
            border: 3px solid rgba(212, 175, 55, 0.4);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.4s ease;
        }

        body.light-theme .center-icon {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.25), rgba(196, 148, 31, 0.12));
            border-color: rgba(196, 148, 31, 0.45);
        }

        .center-icon svg {
            width: 50px;
            height: 50px;
            stroke: #d4af37;
            transition: stroke 0.4s ease;
        }

        body.light-theme .center-icon svg {
            stroke: #c4941f;
        }

        @media (max-width: 1024px) {
            .content-grid {
                gap: 60px;
            }

            .abstract-graphic {
                max-width: 400px;
                height: 400px;
            }

            .shape-1 {
                width: 220px;
                height: 220px;
            }

            .shape-2 {
                width: 180px;
                height: 180px;
            }

            .shape-3 {
                width: 120px;
                height: 120px;
            }

            .center-icon {
                width: 80px;
                height: 80px;
            }

            .center-icon svg {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 70px 20px;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .text-content {
                max-width: 100%;
            }

            .main-heading {
                font-size: 36px;
            }

            .description {
                font-size: 16px;
            }

            .abstract-graphic {
                max-width: 350px;
                height: 350px;
                margin: 0 auto;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 50px 16px;
            }

            .main-heading {
                font-size: 28px;
            }

            .section-label {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .description {
                font-size: 15px;
            }

            .highlight-item {
                font-size: 15px;
            }

            .abstract-graphic {
                max-width: 280px;
                height: 280px;
            }

            .shape-1 {
                width: 160px;
                height: 160px;
            }

            .shape-2 {
                width: 130px;
                height: 130px;
            }

            .shape-3 {
                width: 90px;
                height: 90px;
            }

            .center-icon {
                width: 60px;
                height: 60px;
            }

            .center-icon svg {
                width: 30px;
                height: 30px;
            }
        }

    /* services */

        .services-wrapper {
            background: linear-gradient(135deg, #0b0f1a 0%, #0a0d18 50%, #0d1319 100%);
            overflow-y: auto;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            color: #e8edf4;
            transition: background 0.4s ease, color 0.4s ease;
        }

        /* Light Theme Styles */
        body.light-theme .services-wrapper {
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #e8eef5 100%);
            color: #2c3e50;
        }

        .services-section {
            width: 100%;
            padding: 100px 24px;
        }

        .section-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d4af37;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
            transition: color 0.4s ease;
        }

        body.light-theme .section-label {
            color: #c4941f;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 24px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37);
            transition: background 0.4s ease;
        }

        body.light-theme .section-label::before,
        body.light-theme .section-label::after {
            background: linear-gradient(90deg, transparent, #c4941f);
        }

        .section-label::after {
            background: linear-gradient(90deg, #d4af37, transparent);
        }

        body.light-theme .section-label::after {
            background: linear-gradient(90deg, #c4941f, transparent);
        }

        .main-heading {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
            transition: color 0.4s ease;
        }

        body.light-theme .main-heading {
            color: #1a202c;
        }

        .intro-text {
            font-size: 17px;
            color: #b8c0d0;
            line-height: 1.7;
            margin-bottom: 0;
            transition: color 0.4s ease;
        }

        body.light-theme .intro-text {
            color: #64748b;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-bottom: 60px;
        }

        .service-card {
            background: rgba(26, 31, 53, 0.6);
            border: 1px solid rgba(212, 175, 55, 0.12);
            border-radius: 20px;
            padding: 48px 36px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(15px);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
        }

        body.light-theme .service-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }


        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(212, 175, 55, 0.25),
                inset 0 1px 0 rgba(212, 175, 55, 0.2);
            background: rgba(26, 31, 53, 0.75);
        }

        body.light-theme .service-card:hover {
            border-color: rgba(196, 148, 31, 0.3);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 0 30px rgba(196, 148, 31, 0.15);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .icon-container {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
            border: 2px solid rgba(212, 175, 55, 0.25);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(212, 175, 55, 0.2);
        }

        body.light-theme .icon-container {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.1), rgba(196, 148, 31, 0.05));
            border: 1px solid rgba(196, 148, 31, 0.2);
        }

        .service-card:hover .icon-container {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
            border-color: rgba(212, 175, 55, 0.5);
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3), inset 0 2px 0 rgba(212, 175, 55, 0.3);
        }

        body.light-theme .service-card:hover .icon-container {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.2), rgba(196, 148, 31, 0.1));
            border-color: rgba(196, 148, 31, 0.4);
        }

        .icon-container svg {
            width: 36px;
            height: 36px;
            stroke: #d4af37;
            transition: stroke 0.4s ease;
        }

        body.light-theme .icon-container svg {
            stroke: #c4941f;
        }

        .service-title {
            font-size: 22px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        body.light-theme .service-title {
            color: #1a202c;
        }

        .service-card:hover .service-title {
            color: #d4af37;
        }

        body.light-theme .service-card:hover .service-title {
            color: #c4941f;
        }

        .service-description {
            font-size: 15px;
            color: #a0a8b5;
            line-height: 1.7;
            transition: color 0.4s ease;
        }

        body.light-theme .service-description {
            color: #64748b;
        }

        .cta-container {
            text-align: center;
            margin-top: 60px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            color: #0a0e1a;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
            position: relative;
            overflow: hidden;
        }

        body.light-theme .cta-button {
            background: linear-gradient(135deg, #c4941f 0%, #e6c84f 100%);
            color: #1a202c;
            box-shadow: 0 8px 25px rgba(196, 148, 31, 0.35);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        body.light-theme .cta-button::before {
            background: linear-gradient(135deg, #e6c84f 0%, #c4941f 100%);
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        body.light-theme .cta-button:hover {
            box-shadow: 0 15px 40px rgba(196, 148, 31, 0.5);
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .cta-button svg {
            width: 18px;
            height: 18px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 70px 20px;
            }

            .main-heading {
                font-size: 36px;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .intro-text {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .service-card {
                padding: 32px 24px;
            }

            .service-title {
                font-size: 20px;
            }

            .cta-container {
                margin-top: 50px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 50px 16px;
            }

            .main-heading {
                font-size: 28px;
            }

            .section-label {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .intro-text {
                font-size: 15px;
            }

            .icon-container {
                width: 60px;
                height: 60px;
            }

            .icon-container svg {
                width: 30px;
                height: 30px;
            }
        }


        /* Why CHoose */

        html, body,
         /* Remove inner scrollbar from Why Choose IRIS section */
.why-choose-wrapper {
  height: auto !important;
  min-height: 100vh !important; /* Keeps it at least full screen */
  overflow-y: visible !important;
  overflow: visible !important;
}

/* Ensure inner containers don't cause scroll */
.why-choose-section,
.section-content,
.features-grid,
.section-header {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Prevent any hidden overflow */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  width: 100%;
}

        /* Light Theme Styles */
        body.light-theme .why-choose-wrapper {
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #e8eef5 100%);
            color: #2c3e50;
        }

        .why-choose-section {
            width: 100%;
            padding: 100px 24px;
        }

        .section-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d4af37;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
            transition: color 0.4s ease;
        }

        body.light-theme .section-label {
            color: #c4941f;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 24px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37);
            transition: background 0.4s ease;
        }

        body.light-theme .section-label::before,
        body.light-theme .section-label::after {
            background: linear-gradient(90deg, transparent, #c4941f);
        }

        .section-label::after {
            background: linear-gradient(90deg, #d4af37, transparent);
        }

        body.light-theme .section-label::after {
            background: linear-gradient(90deg, #c4941f, transparent);
        }

        .main-heading {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.5px;
            transition: color 0.4s ease;
        }

        body.light-theme .main-heading {
            color: #1a202c;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: rgba(26, 31, 53, 0.6);
            border: 1px solid rgba(212, 175, 55, 0.12);
            border-radius: 20px;
            padding: 48px 36px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(15px);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
        }

        body.light-theme .feature-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(212, 175, 55, 0.25),
                inset 0 1px 0 rgba(212, 175, 55, 0.2);
            background: rgba(26, 31, 53, 0.75);
        }

        body.light-theme .feature-card:hover {
            border-color: rgba(196, 148, 31, 0.3);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 0 30px rgba(196, 148, 31, 0.15);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .icon-wrapper {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
            border: 2px solid rgba(212, 175, 55, 0.25);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(212, 175, 55, 0.2);
        }

        body.light-theme .icon-wrapper {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.1), rgba(196, 148, 31, 0.05));
            border: 1px solid rgba(196, 148, 31, 0.2);
        }

        .feature-card:hover .icon-wrapper {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
            border-color: rgba(212, 175, 55, 0.5);
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3), inset 0 2px 0 rgba(212, 175, 55, 0.3);
        }

        body.light-theme .feature-card:hover .icon-wrapper {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.2), rgba(196, 148, 31, 0.1));
            border-color: rgba(196, 148, 31, 0.4);
        }

        .icon-wrapper svg {
            width: 36px;
            height: 36px;
            stroke: #d4af37;
            transition: stroke 0.4s ease;
        }

        body.light-theme .icon-wrapper svg {
            stroke: #c4941f;
        }

        .feature-title {
            font-size: 22px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        body.light-theme .feature-title {
            color: #1a202c;
        }

        .feature-card:hover .feature-title {
            color: #d4af37;
        }

        body.light-theme .feature-card:hover .feature-title {
            color: #c4941f;
        }

        .feature-description {
            font-size: 15px;
            color: #a0a8b5;
            line-height: 1.7;
            transition: color 0.4s ease;
        }

        body.light-theme .feature-description {
            color: #64748b;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .why-choose-section {
                padding: 70px 20px;
            }

            .main-heading {
                font-size: 36px;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .feature-card {
                padding: 32px 24px;
            }

            .feature-title {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .why-choose-section {
                padding: 50px 16px;
            }

            .main-heading {
                font-size: 28px;
            }

            .section-label {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .icon-wrapper svg {
                width: 30px;
                height: 30px;
            }
        }

        /* Portfolio */

        .portfolio-wrapper {
            background: linear-gradient(135deg, #06080e 0%, #090b14 50%, #0a0f14 100%);
            overflow-y: auto;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            color: #e8edf4;
            transition: background 0.4s ease, color 0.4s ease;
        }

        /* Light Theme Styles */
        body.light-theme .portfolio-wrapper {
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #e8eef5 100%);
            color: #2c3e50;
        }

        .portfolio-section {
            width: 100%;
            padding: 100px 24px;
        }

        .section-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d4af37;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
            transition: color 0.4s ease;
        }

        body.light-theme .section-label {
            color: #c4941f;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 24px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37);
            transition: background 0.4s ease;
        }

        body.light-theme .section-label::before,
        body.light-theme .section-label::after {
            background: linear-gradient(90deg, transparent, #c4941f);
        }

        .section-label::after {
            background: linear-gradient(90deg, #d4af37, transparent);
        }

        body.light-theme .section-label::after {
            background: linear-gradient(90deg, #c4941f, transparent);
        }

        .main-heading {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
            transition: color 0.4s ease;
        }

        body.light-theme .main-heading {
            color: #1a202c;
        }

        .intro-text {
            font-size: 17px;
            color: #b8c0d0;
            line-height: 1.7;
            margin-bottom: 0;
            transition: color 0.4s ease;
        }

        body.light-theme .intro-text {
            color: #64748b;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .project-card {
            background: rgba(26, 31, 53, 0.6);
  border-radius: 20px;
  overflow: hidden;                /* Important: clips image to card shape */
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);

        }

        body.light-theme .project-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .project-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(212, 175, 55, 0.25),
                inset 0 1px 0 rgba(212, 175, 55, 0.2);
        }

        body.light-theme .project-card:hover {
            border-color: rgba(196, 148, 31, 0.3);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 0 30px rgba(196, 148, 31, 0.15);
        }

        .project-image-container {
            width: 100%;
  height: 260px;                   /* Keep this height or use aspect-ratio below */
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(212,175,55,0.02));
        }

        .project-image img {
            width: 100%;
  height: 100%;
  object-fit: cover;               /* Key: makes image fill container without distortion */
  object-position: center;         /* Centers the image */
  transition: transform 0.6s ease;
  display: block;
        }

        body.light-theme .project-image-container {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.05), rgba(196, 148, 31, 0.02));
        }

        .project-image {
            width: 100%;
  height: 100%;
  position: relative;
        }

        body.light-theme .project-image {
            background: linear-gradient(135deg, rgba(241, 245, 249, 1), rgba(226, 232, 240, 1));
        }

        .project-card:hover .project-image {
            transform: scale(1.15);
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-placeholder-icon {
            width: 80px;
            height: 80px;
            stroke: rgba(212, 175, 55, 0.3);
            transition: all 0.4s ease;
        }

        body.light-theme .project-placeholder-icon {
            stroke: rgba(196, 148, 31, 0.3);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        body.light-theme .project-overlay {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.9), rgba(196, 148, 31, 0.7));
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .overlay-text {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transform: translateY(10px);
            transition: transform 0.4s ease;
        }

        .project-card:hover .overlay-text {
            transform: translateY(0);
        }

        .overlay-text svg {
            width: 20px;
            height: 20px;
            stroke: #ffffff;
        }

        .project-content {
            padding: 32px 28px;
        }

        .project-type-badge {
            display: inline-block;
            padding: 6px 14px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.08));
            border: 1px solid rgba(212, 175, 55, 0.2);
            color: #d4af37;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 6px;
            margin-bottom: 16px;
            transition: all 0.4s ease;
        }

        body.light-theme .project-type-badge {
            background: linear-gradient(135deg, rgba(196, 148, 31, 0.12), rgba(196, 148, 31, 0.08));
            border-color: rgba(196, 148, 31, 0.25);
            color: #c4941f;
        }

        .project-title {
            font-size: 22px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        body.light-theme .project-title {
            color: #1a202c;
        }

        .project-card:hover .project-title {
            color: #d4af37;
        }

        body.light-theme .project-card:hover .project-title {
            color: #c4941f;
        }

        .project-description {
            font-size: 15px;
            color: #a0a8b5;
            line-height: 1.6;
            transition: color 0.4s ease;
        }

        body.light-theme .project-description {
            color: #64748b;
        }

        .cta-container {
            text-align: center;
            margin-top: 60px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            color: #0a0e1a;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
            position: relative;
            overflow: hidden;
        }

        body.light-theme .cta-button {
            background: linear-gradient(135deg, #c4941f 0%, #e6c84f 100%);
            color: #1a202c;
            box-shadow: 0 8px 25px rgba(196, 148, 31, 0.35);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        body.light-theme .cta-button::before {
            background: linear-gradient(135deg, #e6c84f 0%, #c4941f 100%);
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        body.light-theme .cta-button:hover {
            box-shadow: 0 15px 40px rgba(196, 148, 31, 0.5);
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .cta-button svg {
            width: 18px;
            height: 18px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        @media (max-width: 1024px) {
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 70px 20px;
            }

            .main-heading {
                font-size: 36px;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .intro-text {
                font-size: 16px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .project-content {
                padding: 24px 20px;
            }

            .project-title {
                font-size: 20px;
            }

            .cta-container {
                margin-top: 50px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .portfolio-section {
                padding: 50px 16px;
            }

            .main-heading {
                font-size: 28px;
            }

            .section-label {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .intro-text {
                font-size: 15px;
            }

            .project-image-container {
                height: 200px;
            }

            .project-placeholder-icon {
                width: 60px;
                height: 60px;
            }
        }

        /* call To Action */

        html, body, .cta-wrapper {
            height: 100%;
            width: 100%;
        }

        .cta-wrapper {
            background: linear-gradient(135deg, #0b1222 100%);
            overflow-y: auto;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            color: #e8edf4;
            transition: background 0.5s ease, color 0.4s ease;
            position: relative;
        }

        /* Light Theme Styles */
        body.light-theme .cta-wrapper {
            background: linear-gradient(135deg, #e8eef5 0%, #f8f9fc 50%, #dce4ee 100%);
            color: #2c3e50;
        }

        /* Animated Background Pattern */
        .cta-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
            opacity: 1;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        body.light-theme .cta-wrapper::before {
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(196, 148, 31, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(196, 148, 31, 0.04) 0%, transparent 50%);
        }

        /* Floating Dots Pattern */
        .pattern-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            opacity: 0.15;
            pointer-events: none;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #d4af37;
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        body.light-theme .dot {
            background: #c4941f;
        }

        .dot:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 15s; }
        .dot:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; animation-duration: 18s; }
        .dot:nth-child(3) { left: 50%; top: 40%; animation-delay: 4s; animation-duration: 20s; }
        .dot:nth-child(4) { left: 70%; top: 70%; animation-delay: 1s; animation-duration: 17s; }
        .dot:nth-child(5) { left: 85%; top: 30%; animation-delay: 3s; animation-duration: 19s; }
        .dot:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; animation-duration: 16s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
            25% { transform: translateY(-20px) translateX(10px); opacity: 0.5; }
            50% { transform: translateY(-10px) translateX(-10px); opacity: 0.4; }
            75% { transform: translateY(-30px) translateX(5px); opacity: 0.6; }
        }

        .cta-section {
            width: 100%;
            padding: 120px 24px;
            position: relative;
            z-index: 1;
        }

        .section-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-content {
            margin-bottom: 50px;
        }

        .main-headline {
            font-size: 60px;
            font-weight: 900;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 28px;
            transition: color 0.4s ease;
            background: linear-gradient(135deg, #ffffff 0%, #e8edf4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        body.light-theme .main-headline {
            background: linear-gradient(135deg, #1a202c 0%, #2c3e50 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .supporting-text {
            font-size: 19px;
            color: #b8c5d8;
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto;
            transition: color 0.4s ease;
        }

        body.light-theme .supporting-text {
            color: #5a6c7d;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 20px 44px;
            font-size: 17px;
            font-weight: 600;
            border-radius: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        /* Primary Button */
        .btn-primary {
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            color: #0a0e1a;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        body.light-theme .btn-primary {
            background: linear-gradient(135deg, #c4941f 0%, #e6c84f 100%);
            color: #1a202c;
            box-shadow: 0 10px 30px rgba(196, 148, 31, 0.35);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        body.light-theme .btn-primary::before {
            background: linear-gradient(135deg, #e6c84f 0%, #c4941f 100%);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 18px 45px rgba(212, 175, 55, 0.6);
        }

        body.light-theme .btn-primary:hover {
            box-shadow: 0 18px 45px rgba(196, 148, 31, 0.55);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        /* Secondary Button */
        .btn-secondary {
            background: transparent;
            color: #d4af37;
            border: 2px solid #d4af37;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
        }

        body.light-theme .btn-secondary {
            color: #c4941f;
            border-color: #c4941f;
            box-shadow: 0 10px 30px rgba(196, 148, 31, 0.15);
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
            z-index: -1;
        }

        body.light-theme .btn-secondary::before {
            background: linear-gradient(135deg, #c4941f 0%, #e6c84f 100%);
        }

        .btn-secondary:hover {
            transform: translateY(-5px) scale(1.03);
            color: #0a0e1a;
            border-color: transparent;
            box-shadow: 0 18px 45px rgba(212, 175, 55, 0.4);
        }

        body.light-theme .btn-secondary:hover {
            color: #1a202c;
            box-shadow: 0 18px 45px rgba(196, 148, 31, 0.35);
        }

        .btn-secondary:hover::before {
            opacity: 1;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn svg {
            width: 20px;
            height: 20px;
            position: relative;
            z-index: 1;
            transition: transform 0.35s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(5px);
        }

        .btn-secondary svg {
            stroke-width: 2.5;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 90px 20px;
            }

            .main-headline {
                font-size: 38px;
                letter-spacing: -0.5px;
            }

            .supporting-text {
                font-size: 17px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 16px;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 18px 36px;
                font-size: 16px;
            }
        }

        /* Luxury Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        .fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
            opacity: 0;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Enhanced section spacing */
        .about-section,
        .services-section,
        .why-choose-section,
        .portfolio-section {
            position: relative;
        }

        @media (max-width: 480px) {
            .cta-section {
                padding: 70px 16px;
            }

            .main-headline {
                font-size: 32px;
            }

            .supporting-text {
                font-size: 16px;
            }

            .btn {
                padding: 16px 32px;
                font-size: 15px;
            }
        }


        /* link to service */

        .service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* team */
.why-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}





