 :root {
      --gold: #C9A961;
      --gold-dark: #B8935A;
      --gold-light: #E0C589;
      --blue-dark: #1A2332;
      --blue-medium: #2C3E50;
      --blue-light: #34495E;
      --navy: #1C2833;
      --gray: #BDC3C7;
      --gray-light: #ECF0F1;
      --cream: #F8F6F3;
      --cream-dark: #F0EDE8;
      --white: #FFFFFF;
      --text-light: #E8EAED;
      --text-dark: #2C3E50;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Manrope', sans-serif;
    }

    body {
      background: var(--blue-dark);
      color: var(--text-light);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ================= HEADER ================= */
   header {
      background: linear-gradient(135deg, rgba(26,35,50,0.95), rgba(44,62,80,0.9)),
                  url('assets/hero.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    /* Subtle wave decoration */
    header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 150px;
      background: linear-gradient(to top, var(--blue-dark), transparent);
    }

    /* FIXED NAVBAR */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 8%;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(26, 35, 50, 0.7);
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
      border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    }

    nav.scrolled {
      background: rgba(26, 35, 50, 0.98);
      backdrop-filter: blur(15px);
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
      padding: 15px 8%;
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    }

    .logo {
      height: 65px;
      transition: all 0.3s ease;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 243, 0.9));
      padding: 10px 22px;
      border-radius: 8px;
      border: 1px solid rgba(201, 169, 97, 0.15);
    }

    nav.scrolled .logo {
      height: 55px;
      padding: 8px 18px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li a {
      text-decoration: none;
      color: var(--gray-light);
      font-weight: 600;
      transition: all 0.3s;
      padding: 8px 0;
      position: relative;
    }

    nav ul li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    nav ul li a:hover {
      color: var(--gold-light);
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    .hero {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 0 8%;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      max-width: 700px;
      animation: fadeInUp 1s ease-out;
    }

    .company-name {
      font-size: 20px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 15px;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h2 {
      font-size: 56px;
      color: var(--white);
      margin-bottom: 25px;
      line-height: 1.2;
      font-weight: 800;
    }

    .hero h2 span {
      color: var(--gold);
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 40px;
      color: var(--gray);
      animation: fadeInUp 1s ease-out 0.2s backwards;
    }

    .btn {
      display: inline-block;
      padding: 16px 45px;
      background: var(--gold);
      color: var(--navy);
      text-decoration: none;
      font-weight: 700;
      border-radius: 5px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(201, 169, 97, 0.25);
      animation: fadeInUp 1s ease-out 0.4s backwards;
      letter-spacing: 0.5px;
    }

    .btn:hover {
      background: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(201, 169, 97, 0.35);
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s infinite;
    }

    .scroll-indicator div {
      width: 28px;
      height: 48px;
      border: 2px solid var(--gold);
      border-radius: 20px;
      position: relative;
    }

    .scroll-indicator div::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 5px;
      height: 5px;
      background: var(--gold);
      border-radius: 50%;
      animation: scrollDown 2s infinite;
    }

    @keyframes scrollDown {
      0% { top: 8px; opacity: 1; }
      100% { top: 28px; opacity: 0; }
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }

    /* ================= SECTIONS ================= */
    section {
      padding: 100px 8%;
      position: relative;
    }

    /* About Section - Cream/Off-white Background */
    #about {
      background: var(--cream);
    }

    /* Vision Section - White with Subtle Pattern */
    #vision {
      background: var(--white);
      position: relative;
    }

    #vision::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(30deg, rgba(201, 169, 97, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.02) 87.5%, rgba(201, 169, 97, 0.02)),
        linear-gradient(150deg, rgba(201, 169, 97, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(201, 169, 97, 0.02) 87.5%, rgba(201, 169, 97, 0.02));
      background-size: 80px 140px;
      opacity: 1;
    }

    /* Services Section - Light Cream with gradient */
    #services {
      background: linear-gradient(to bottom, var(--cream-dark), var(--cream));
    }

    /* Contact Section - Dark Navy */
    #contact {
      background: var(--navy);
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
    }

    .section-title h3 {
      font-size: 44px;
      color: var(--gold-dark);
      margin-bottom: 15px;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .section-title p {
      color: var(--text-dark);
      font-size: 17px;
      opacity: 0.7;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--gold);
    }

    /* ================= ABOUT ================= */
    .about {
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .about-intro {
      text-align: center;
      max-width: 1000px;
      margin: 0 auto 50px;
      background: linear-gradient(135deg, var(--white), var(--cream));
      padding: 50px 60px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(201, 169, 97, 0.1);
      border-left: 5px solid var(--gold);
      position: relative;
    }

    .about-intro::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 30px;
      font-size: 80px;
      color: var(--gold);
      opacity: 0.2;
      font-family: Georgia, serif;
    }

    .about-intro p {
      color: var(--text-dark);
      font-size: 18px;
      line-height: 1.9;
      margin-bottom: 0;
      position: relative;
      z-index: 1;
    }

    .about-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 35px;
    }

    .about-box {
      background: var(--white);
      padding: 45px;
      border-radius: 8px;
      border: 1px solid rgba(201, 169, 97, 0.2);
      transition: all 0.4s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .about-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 0;
      background: linear-gradient(to bottom, var(--gold), var(--gold-light));
      transition: height 0.4s ease;
    }

    .about-box:hover::before {
      height: 100%;
    }

    .about-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(201, 169, 97, 0.15);
      border-color: var(--gold);
    }

    .about-box-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      font-size: 28px;
      box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
    }

    .about-box h4 {
      color: var(--gold-dark);
      font-size: 22px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .about-box p {
      color: var(--text-dark);
      line-height: 1.8;
      font-size: 16px;
    }

    @media(max-width: 900px) {
      .about-content {
        grid-template-columns: 1fr;
      }
      
      .about-intro {
        padding: 40px 35px;
      }
    }

    .about-image {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .about-image img {
      width: 100%;
      border-radius: 8px;
      transition: all 0.5s ease;
      display: block;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .about-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(201,169,97,0.15), transparent);
      opacity: 0;
      transition: all 0.4s;
    }

    .about-image:hover::after {
      opacity: 1;
    }

    /* ================= VISION MISSION ================= */
    .vision-mission {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 50px;
      position: relative;
    }

    .vm-card {
      background: var(--white);
      padding: 45px;
      border-radius: 8px;
      border: 1px solid rgba(201, 169, 97, 0.2);
      transition: all 0.4s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .vm-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 45px rgba(201, 169, 97, 0.15);
      border-color: var(--gold);
    }

    .vm-card img {
      width: 100%;
      border-radius: 5px;
      margin-bottom: 30px;
      transition: all 0.4s ease;
    }

    .vm-card:hover img {
      transform: scale(1.03);
    }

    .vm-card h4 {
      color: var(--gold-dark);
      font-size: 26px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .vm-card p {
      color: var(--text-dark);
      line-height: 1.8;
    }

    .vm-card ul {
      list-style: none;
      padding-left: 0;
    }

    .vm-card ul li {
      padding-left: 25px;
      position: relative;
      margin-bottom: 15px;
      color: var(--text-dark);
      line-height: 1.7;
    }

    .vm-card ul li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 16px;
    }

    /* ================= SERVICES ================= */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: linear-gradient(135deg, var(--white), var(--cream));
      padding: 50px 45px;
      border-radius: 12px;
      transition: all 0.4s ease;
      border: 2px solid rgba(201, 169, 97, 0.2);
      cursor: pointer;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent);
      transition: all 0.5s ease;
    }

    .service-card:hover::after {
      top: -20%;
      right: -20%;
      width: 300px;
      height: 300px;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(201, 169, 97, 0.2);
      border-color: var(--gold);
    }

    .service-card-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 35px;
      padding-bottom: 25px;
      border-bottom: 2px solid rgba(201, 169, 97, 0.2);
      position: relative;
      z-index: 1;
    }

    .service-card-icon {
      width: 65px;
      height: 65px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
      flex-shrink: 0;
    }

    .service-card h4 {
      color: var(--gold-dark);
      margin: 0;
      font-size: 26px;
      font-weight: 700;
    }

    .service-card ul {
      list-style: none;
      padding-left: 0;
      position: relative;
      z-index: 1;
    }

    .service-card ul li {
      padding-left: 35px;
      position: relative;
      margin-bottom: 18px;
      color: var(--text-dark);
      line-height: 1.7;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .service-card ul li:hover {
      padding-left: 40px;
      color: var(--gold-dark);
    }

    .service-card ul li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 20px;
      line-height: 1.3;
      transition: all 0.3s ease;
    }

    .service-card ul li:hover::before {
      left: 5px;
      transform: scale(1.2);
    }

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

      .service-card {
        min-width: auto;
      }
    }

    /* ================= CONTACT ================= */
    .contact {
      background: rgba(44, 62, 80, 0.4);
      border-radius: 8px;
      padding: 70px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 50px;
      border: 1px solid rgba(201, 169, 97, 0.2);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
    }

    .contact h4 {
      color: var(--gold-light);
      font-size: 24px;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .contact p {
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--gray);
      line-height: 1.7;
    }

    .contact p::before {
      content: '●';
      color: var(--gold);
      font-size: 12px;
      margin-top: 7px;
    }

    /* ================= FOOTER ================= */
    footer {
      text-align: center;
      padding: 35px;
      background: rgba(26, 35, 50, 0.9);
      color: var(--gray);
      font-size: 14px;
      border-top: 1px solid rgba(201, 169, 97, 0.15);
    }

    /* ================= SCROLL ANIMATIONS ================= */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-menu span {
      width: 28px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      transition: all 0.3s;
    }

    @media(max-width:768px) {
      nav ul {
        display: none;
      }
      
      .mobile-menu {
        display: flex;
      }
      
      .hero h2 {
        font-size: 40px;
      }
      
      section {
        padding: 70px 5%;
      }
      
      .contact {
        padding: 40px 30px;
      }

      .section-title h3 {
        font-size: 36px;
      }

      .services {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-width: auto;
      }

      .service-card-header {
        flex-direction: column;
        text-align: center;
      }
    }

