    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

    :root {
      --primary-hsl: 26, 97%, 58%;
      --primary: hsl(var(--primary-hsl));
      --primary-glow: hsla(var(--primary-hsl), 0.3);

      --secondary: #8E9196;
      --dark: #1A1C1E;
      --light: #F1F4F9;
      --white: #ffffff;

      --glass: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.3);
      --glass-blur: blur(12px);

      --bg-gradient: radial-gradient(circle at top right, hsla(26, 97%, 58%, 0.05), transparent 400px),
        radial-gradient(circle at bottom left, hsla(26, 97%, 58%, 0.05), transparent 400px);

      --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      --font-main: 'Outfit', sans-serif;
    }

    .reveal {
      position: relative;
      transform: translateY(50px);
      opacity: 0;
      transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .reveal.active {
      transform: translateY(0);
      opacity: 1;
    }

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

    html,
    body {
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

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

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

    a {
      text-decoration: none;
      color: var(--primary);
      transition: all 0.3s ease;
    }

    a:hover {
      color: var(--dark);
    }

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

    .btn {
      display: inline-block;
      padding: 12px 32px;
      background: var(--primary);
      color: white;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      transition: var(--transition);
      z-index: -1;
    }

    .btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px var(--primary-glow);
      color: white;
    }

    .btn:hover:before {
      width: 100%;
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--primary);
      color: var(--primary);
    }

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

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

    .section-title h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

    .section-title p {
      font-size: 1.1rem;
      color: var(--secondary);
      max-width: 600px;
      margin: 0 auto;
      font-weight: 400;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      /* High opacity for visibility */
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-bottom: 1px solid var(--glass-border);
      padding: 12px 0;
      transition: var(--transition);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -1.5px;
    }

    .logo span {
      color: var(--primary);
    }

    .nav-menu {
      display: flex;
      list-style: none;
      align-items: center;
    }

    .nav-menu li {
      margin-left: 24px;
    }

    .nav-menu a {
      color: var(--dark);
      font-weight: 500;
      font-size: 0.95rem;
      opacity: 0.7;
      transition: var(--transition);
      position: relative;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--dark);
      opacity: 1;
    }

    .nav-menu a:after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition);
    }

    .nav-menu a:hover:after,
    .nav-menu a.active:after {
      width: 100%;
    }

    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--dark);
    }

    /* Hero Section */
    .hero {
      padding: 200px 0 140px;
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-bg.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      text-align: center;
      position: relative;
      overflow: hidden;
      color: var(--white);
    }

    .hero:before {
      content: '';
      position: absolute;
      top: -10%;
      right: -10%;
      width: 40%;
      height: 60%;
      background: radial-gradient(circle, var(--primary-glow), transparent 70%);
      filter: blur(60px);
      z-index: -1;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      /* Extra Bold match */
      margin-bottom: 24px;
      color: var(--white);
      letter-spacing: -1.5px;
      line-height: 1.2;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 700px;
      margin: 0 auto 40px;
      line-height: 1.6;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .hero .btn-outline {
      border: 2px solid var(--primary);
      /* Orange Border */
      color: var(--primary);
      /* Orange Text */
      background: transparent;
      font-weight: 700;
    }

    .hero .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
    }

    /* Services Section */
    .services {
      padding: 120px 0;
      /* Increased breathing room */

      /* Increased breathing room */
      background: var(--light);
      position: relative;
    }

    .services:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5), transparent);
      pointer-events: none;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      position: relative;
    }

    .service-card {
      background: var(--white);
      padding: 48px 32px;
      border-radius: 24px;
      border: 1px solid rgba(0, 0, 0, 0.03);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: var(--transition);
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border-color: rgba(var(--primary-hsl), 0.1);
    }

    .service-icon {
      width: 64px;
      height: 64px;
      background: var(--light);
      color: var(--primary);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: var(--primary);
      color: var(--white);
      transform: scale(1.1) rotate(5deg);
    }

    .service-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.5px;
    }

    .service-card p {
      font-size: 1rem;
      color: var(--secondary);
      line-height: 1.6;
    }

    /* Portfolio Section */
    .portfolio {
      padding: 120px 0;
      /* Professional breathing room */

    }

    .portfolio-filters {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 60px;
      background: rgba(255, 255, 255, 0.7);
      /* Glass Background */
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 10px;
      border-radius: 50px;
      /* Capsule shape */
      width: fit-content;
      max-width: 95%;
      margin-left: auto;
      margin-right: auto;
      flex-wrap: wrap;
      border: 1px solid var(--glass-border);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      /* Soft shadow */
    }

    .portfolio-filters button {
      background: transparent;
      border: none;
      padding: 12px 28px;
      cursor: pointer;
      font-weight: 700;
      color: var(--secondary);
      border-radius: 40px;
      /* Pill buttons */
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      font-size: 0.85rem;
      text-transform: uppercase;
      /* Professional typography */
      letter-spacing: 1.5px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .portfolio-filters button.active,
    .portfolio-filters button:hover {
      color: var(--white);
      box-shadow: 0 8px 20px rgba(230, 81, 0, 0.3);
      /* Glow based on primary color */
    }

    /* Active State Gradient */
    .portfolio-filters button.active:before,
    .portfolio-filters button:hover:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary), #FF8F00);
      /* Vibrant Gradient */
      z-index: -1;
      border-radius: 40px;
      transition: opacity 0.3s ease;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 32px;
    }

    .portfolio-item {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--light);
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .portfolio-item:hover img {
      transform: scale(1.05);
      filter: brightness(0.7) blur(2px);
    }

    .portfolio-info {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      opacity: 0;
      transition: var(--transition);
      z-index: 2;
    }

    .portfolio-item:hover .portfolio-info {
      opacity: 1;
    }

    .portfolio-info h3 {
      color: var(--white);
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 8px;
      transform: translateY(20px);
      transition: var(--transition);
    }

    .portfolio-item:hover .portfolio-info h3 {
      transform: translateY(0);
    }

    .portfolio-info p {
      color: var(--primary);
      text-transform: uppercase;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 2px;
      transform: translateY(20px);
      transition: var(--transition);
      transition-delay: 0.1s;
    }

    .portfolio-item:hover .portfolio-info p {
      transform: translateY(0);
    }

    /* About Section */
    .about {
      padding: 120px 0;
      background: var(--white);
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image:before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--primary);
      border-radius: 24px;
      z-index: -1;
      opacity: 0.2;
    }

    .about-image img {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .about-text h2 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 24px;
      color: var(--dark);
      letter-spacing: -1.5px;
      line-height: 1.1;
    }

    .about-text p {
      margin-bottom: 24px;
      color: var(--secondary);
      font-size: 1.1rem;
    }

    .about-features {
      margin-top: 40px;
      display: grid;
      gap: 20px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      background: var(--light);
      color: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    /* Team Section */
    .team {
      padding: 120px 0;
      background: var(--light);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }

    .team-member {
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      text-align: center;
    }

    .team-member:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .team-member img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }

    .team-info {
      padding: 32px;
    }

    .team-info h3 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .team-info p {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .team-social {
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .team-social a {
      width: 40px;
      height: 40px;
      background: var(--light);
      color: var(--dark);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .team-social a:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* Experience Section */
    .experience {
      padding: 120px 0;
      background: var(--light);
      text-align: center;
    }

    .experience-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .experience-card {
      background: var(--white);
      padding: 60px 40px;
      border-radius: 24px;
      border: 1px solid rgba(0, 0, 0, 0.03);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: var(--transition);
    }

    .experience-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .experience-card i {
      font-size: 48px;
      color: var(--primary);
      margin-bottom: 24px;
      opacity: 0.8;
    }

    .experience-card h3 {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--dark);
      letter-spacing: -0.5px;
    }

    /* CEO Section */
    .ceo-section {
      padding: 120px 0;
      background: var(--white);
    }

    .ceo-header {
      text-align: center;
      margin-bottom: 80px;
    }

    /* CEO Section */
    .ceo-section {
      padding: 120px 0;
      /* Professional breathing room */
      background: var(--white);
    }

    .ceo-header {
      text-align: center;
      margin-bottom: 80px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .ceo-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .ceo-header p {
      font-size: 1.25rem;
      color: var(--secondary);
      line-height: 1.6;
      font-weight: 500;
      opacity: 0.9;
    }

    .ceo-content {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 80px;
      background: var(--light);
      padding: 60px;
      border-radius: 32px;
      position: relative;
    }

    .ceo-image {
      flex: 0 0 300px;
    }

    .ceo-img {
      width: 300px;
      height: 300px;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .ceo-message {
      flex: 1;
    }

    .ceo-message h3 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 24px;
      color: var(--dark);
      letter-spacing: -1px;
    }

    .ceo-message p {
      font-size: 1.2rem;
      color: var(--secondary);
      line-height: 1.8;
      font-style: italic;
    }

    .leadership-team {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .leader-card {
      display: flex;
      align-items: center;
      gap: 24px;
      background: var(--white);
      padding: 32px;
      border-radius: 24px;
      border: 1px solid rgba(0, 0, 0, 0.03);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: var(--transition);
    }

    .leader-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .leader-img {
      width: 120px;
      height: 120px;
      border-radius: 16px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .leader-info h4 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .leader-title {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .leader-desc {
      color: var(--secondary);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    /* Contact Section */
    .contact {
      padding: 120px 0;
      /* Professional breathing room */
      background: var(--light);
    }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 24px;
      color: var(--dark);
      letter-spacing: -1.5px;
      line-height: 1.1;
    }

    .contact-details {
      margin-top: 48px;
      display: grid;
      gap: 32px;
    }

    .contact-detail {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 56px;
      height: 56px;
      background: var(--white);
      color: var(--primary);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      flex-shrink: 0;
    }

    .contact-form {
      background: var(--white);
      padding: 60px;
      border-radius: 32px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
      /* Deep shadow */
      border: 1px solid rgba(0, 0, 0, 0.02);
      transform: translateY(0);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .contact-form:hover {
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
      transform: translateY(-5px);
    }

    /* Top border gradient accent */
    .contact-form:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), #FF8F00);
    }

    .form-group {
      margin-bottom: 24px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 16px 20px;
      background: #F8F9FA;
      /* Filled style */
      border: none;
      border-bottom: 2px solid #E0E0E0;
      border-radius: 8px 8px 0 0;
      /* Flat bottom */
      font-family: inherit;
      font-size: 1rem;
      transition: var(--transition);
      color: var(--dark);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      background: var(--white);
      border-bottom-color: var(--primary);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .contact-form .btn {
      width: 100%;
      padding: 16px;
      font-size: 1.1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--primary), #D84315);
      box-shadow: 0 10px 20px rgba(230, 81, 0, 0.2);
    }

    .contact-form .btn:hover {
      box-shadow: 0 15px 30px rgba(230, 81, 0, 0.4);
      transform: translateY(-3px);
    }

    /* Footer */
    footer {
      background: #0F1115;
      /* Rich Dark Theme */
      color: var(--white);
      padding: 100px 0 40px;
      position: relative;
    }

    footer:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 60px;
      margin-bottom: 80px;
    }

    .footer-col h3 {
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 32px;
      color: rgba(255, 255, 255, 0.9);
      position: relative;
      display: inline-block;
    }

    .footer-col h3:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--primary);
    }

    .footer-col p {
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.03);
      color: var(--white);
      border-radius: 50%;
      /* Circular icons */
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-social a:hover {
      background: var(--primary);
      border-color: var(--primary);
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 10px 20px rgba(230, 81, 0, 0.3);
    }

    .footer-col ul li {
      margin-bottom: 16px;
      list-style: none;
    }

    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.6);
      transition: cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
      display: inline-block;
    }

    .footer-col ul li a:hover {
      color: var(--white);
      transform: translateX(8px);
      /* Glide effect */
    }

    .copyright {
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
      }
    }

    @media (max-width: 992px) {

      .about-content,
      .contact-container,
      .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      /* Responsive Section Padding Override for Mobile */
      @media (max-width: 992px) {
        .hero {
          padding: 160px 20px 100px;
        }

        .services,
        .portfolio,
        .experience,
        .about,
        .ceo-section,
        .contact {
          padding: 60px 0;
          /* Smaller padding on mobile */
        }
      }

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

    @media (max-width: 768px) {
      .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.96);
        /* Premium Glass Effect */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: none;
        /* Clean look */
        max-width: none;
      }

      .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
      }

      .nav-menu li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
      }

      /* Staggered Animations for items */
      .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
      }

      .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
      }

      .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
      }

      .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
      }

      .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
      }

      .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
      }

      .nav-menu a {
        font-size: 2.2rem;
        /* Large, bold typography */
        font-weight: 800;
        color: var(--dark);
        letter-spacing: -1px;
        position: relative;
        display: inline-block;
      }

      .nav-menu a:after {
        display: none;
        /* Remove default underline */
      }

      .nav-menu a:hover {
        color: var(--primary);
        transform: scale(1.05);
        /* Subtle scale interaction */
      }

      .mobile-toggle {
        display: block;
        z-index: 1100;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
      }

      .hero .btn,
      .hero .btn-outline {
        width: 100%;
        max-width: 280px;
      }

      .hero h1 {
        font-size: 2.5rem;
        color: var(--white);
      }

      .hero p {
        color: rgba(255, 255, 255, 0.8);
      }

      /* Force single column and fix overflow for all grids */
      .services-grid,
      .portfolio-grid,
      .team-grid,
      .experience-content,
      .leadership-team {
        grid-template-columns: 1fr !important;
        /* Force single column */
        gap: 40px;
      }

      /* Center alignments for sections */
      .about-content,
      .contact-container,
      .section-title {
        text-align: center;
      }

      .about-text h2,
      .contact-info h2 {
        text-align: center;
      }

      .about-features {
        justify-content: center;
      }

      .feature-item {
        justify-content: center;
        /* Center feature items */
      }

      .leader-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        align-items: center;
        /* Center cross-axis */
      }

      .leader-img {
        margin: 0 auto 20px;
      }

      .leadership-team {
        grid-template-columns: 1fr;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr;
        /* Two columns */
        grid-template-areas:
          "company company"
          "services links"
          "newsletter newsletter";
        text-align: center;
        gap: 40px 10px;
        /* Vertical gap 40px, Horizontal gap 10px */
      }

      .footer-col:nth-child(1) {
        grid-area: company;
      }

      .footer-col:nth-child(2) {
        grid-area: services;
      }

      .footer-col:nth-child(3) {
        grid-area: links;
      }

      .footer-col:nth-child(4) {
        grid-area: newsletter;
      }

      .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center items */
        width: 100%;
      }

      .footer-social {
        justify-content: center;
        /* Center social icons */
      }

      .ceo-content {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
        text-align: center;
      }

      .ceo-image {
        flex: 0 0 auto;
      }

      .ceo-img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
      }

      .ceo-message h3 {
        font-size: 1.8rem;
        margin-bottom: 16px;
      }

      .ceo-message p {
        font-size: 1.1rem;
      }

      .contact-form {
        padding: 40px 24px;
      }

      .contact-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
        /* Ensure container takes full width */
      }

      .contact-form {
        width: 100%;
        /* Force full width to prevent shrinking */
        max-width: 100%;
        padding: 32px 20px;
        /* Optimized padding for mobile */
        margin: 0 auto;
        box-sizing: border-box;
      }

      .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center contact details */
        gap: 24px;
        text-align: center;
        width: 100%;
      }

      .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .contact-icon {
        margin-bottom: 12px;
      }

      .portfolio-filters {
        justify-content: center;
      }
    }