  :root {
      --primary-yellow: #FFD700;
      --dark-yellow: #FFC107;
      --primary-blue: #1e3a8a;
      --dark-blue: #0f172a;
      --accent-red: #dc2626;
      --light-blue: #dbeafe;
      --ice-white: #f8fafc;
      --text-dark: #0f172a;
      --text-gray: #64748b;
      --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
      --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
      --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Poppins', sans-serif;
  }

  /* Top Bar */
  .top-bar {
      background: var(--primary-blue);
      color: white;
      padding: 0.5rem 0;
      font-size: 0.9rem;
  }

  .top-bar a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
  }

  .top-bar a:hover {
      color: var(--primary-yellow);
  }

  /* Navigation */
  .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      padding: 0.8rem 0;
      transition: all 0.3s ease;
  }

  .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 4px 30px rgba(30, 58, 138, 0.15);
  }

  .navbar-brand {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 1.6rem;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .navbar-brand i {
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 2rem;
  }

  .nav-link {
      font-weight: 600;
      color: var(--text-dark) !important;
      margin: 0 0.3rem;
      padding: 0.5rem 1rem !important;
      border-radius: 50px;
      transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
      color: var(--primary-blue) !important;
      background: var(--light-blue);
  }

  .btn-nav {
      background: var(--gradient-primary);
      color: white !important;
      padding: 0.6rem 1.8rem !important;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  }

  .btn-nav:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
  }

  /* Hero Section */
  .hero {
      background: var(--gradient-hero);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 100px;
  }

  .hero-content {
      position: relative;
      z-index: 2;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 215, 0, 0.2);
      color: var(--primary-yellow);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255, 215, 0, 0.3);
  }

  .hero h1 {
      font-size: 3.8rem;
      font-weight: 800;
      color: white;
      line-height: 1.1;
      margin-bottom: 1.5rem;
  }

  .hero h1 span {
      color: var(--primary-yellow);
      position: relative;
      display: inline-block;
  }

  .hero h1 span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(255, 215, 0, 0.3);
      z-index: -1;
      border-radius: 4px;
  }

  .hero .lead {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      max-width: 600px;
  }

  .hero-services {
      display: flex;
      gap: 1rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
  }

  .service-tag {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 0.75rem 1.25rem;
      border-radius: 50px;
      color: white;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }

  .service-tag:hover {
      background: rgba(255, 215, 0, 0.2);
      border-color: var(--primary-yellow);
      transform: translateY(-2px);
  }

  .service-tag i {
      color: var(--primary-yellow);
      font-size: 1.2rem;
  }

  .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .btn-hero-primary {
      background: var(--gradient-gold);
      color: var(--dark-blue);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }

  .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
      color: var(--dark-blue);
  }

  .btn-hero-secondary {
      background: transparent;
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }

  .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
      transform: translateY(-3px);
      color: white;
  }

  .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item h4 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary-yellow);
      margin: 0;
  }

  .stat-item p {
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      font-size: 0.9rem;
  }

  .hero-image-container {
      position: relative;
      z-index: 2;
  }

  .hero-main-image {
      border-radius: 30px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  }

  .floating-element {
      position: absolute;
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      z-index: 3;
      animation: float 3s ease-in-out infinite;
  }

  .floating-element.element-1 {
      top: 10%;
      left: -30px;
      animation-delay: 0s;
  }

  .floating-element.element-2 {
      bottom: 15%;
      right: -20px;
      animation-delay: 1.5s;
      background: var(--gradient-gold);
  }

  .floating-element.element-2 h5 {
      color: var(--dark-blue);
      font-weight: 700;
      margin: 0;
  }

  .floating-element.element-2 p {
      color: var(--dark-blue);
      opacity: 0.8;
      margin: 0;
      font-size: 0.9rem;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-15px);
      }
  }

  /* Sections */
  section {
      padding: 6rem 0;
      position: relative;
  }

  .section-header {
      text-align: center;
      margin-bottom: 4rem;
  }

  .section-tag {
      display: inline-block;
      background: rgba(30, 58, 138, 0.1);
      color: var(--primary-blue);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1rem;
  }

  .section-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 1rem;
  }

  .section-header p {
      color: var(--text-gray);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
  }

  /* Services */
  .services {
      background: var(--ice-white);
  }

  .service-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
  }

  .service-card.featured {
      border: 2px solid var(--primary-yellow);
      transform: scale(1.02);
  }

  .service-card.featured:hover {
      transform: scale(1.02) translateY(-10px);
  }

  .service-header {
      background: var(--gradient-primary);
      color: white;
      padding: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .service-header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
          opacity: 0.5;
      }

      50% {
          transform: scale(1.1);
          opacity: 0.8;
      }
  }

  .service-icon {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 2.5rem;
      position: relative;
      z-index: 1;
  }

  .service-header h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      position: relative;
      z-index: 1;
  }

  .service-body {
      padding: 2rem;
  }

  .service-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
  }

  .service-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      color: var(--text-gray);
      font-size: 0.95rem;
  }

  .service-list i {
      color: var(--primary-blue);
      font-size: 1.1rem;
  }

  .btn-service {
      width: 100%;
      background: var(--light-blue);
      color: var(--primary-blue);
      border: none;
      padding: 0.875rem;
      border-radius: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn-service:hover {
      background: var(--gradient-primary);
      color: white;
  }

  /* Products */
  .products {
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  }

  .product-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
  }

  .tab-btn {
      padding: 0.875rem 2rem;
      border: 2px solid #e2e8f0;
      background: white;
      border-radius: 50px;
      font-weight: 600;
      color: var(--text-gray);
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .tab-btn.active,
  .tab-btn:hover {
      background: var(--gradient-primary);
      color: white;
      border-color: var(--primary-blue);
      box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  }

  .product-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  }

  .product-image {
      height: 220px;
      overflow: hidden;
      position: relative;
  }

  .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .product-card:hover .product-image img {
      transform: scale(1.1);
  }

  .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--gradient-gold);
      color: var(--dark-blue);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
  }

  .product-info {
      padding: 1.5rem;
  }

  .product-info h4 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
  }

  .product-info p {
      color: var(--text-gray);
      font-size: 0.9rem;
      margin-bottom: 1rem;
  }

  .product-meta {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.85rem;
  }

  .product-meta span {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      color: var(--text-gray);
  }

  .product-meta i {
      color: var(--primary-blue);
  }

  /* Why Us */
  .why-us {
      background: var(--gradient-primary);
      color: white;
  }

  .why-us .section-header h2,
  .why-us .section-header p {
      color: white;
  }

  .why-us .section-tag {
      background: rgba(255, 215, 0, 0.2);
      color: var(--primary-yellow);
  }

  .benefit-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
  }

  .benefit-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      border-color: var(--primary-yellow);
  }

  .benefit-icon {
      width: 70px;
      height: 70px;
      background: var(--gradient-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
      color: var(--dark-blue);
  }

  .benefit-card h4 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
  }

  .benefit-card p {
      opacity: 0.9;
      margin: 0;
      font-size: 0.95rem;
  }

  /* Contact */
  .contact {
      background: var(--ice-white);
  }

  .contact-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      height: 100%;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #f1f5f9;
  }

  .contact-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .contact-icon-wrapper {
      min-width: 55px;
      height: 55px;
      background: var(--gradient-gold);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark-blue);
      font-size: 1.5rem;
  }

  .contact-details h5 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
  }

  .contact-details p {
      color: var(--text-gray);
      font-size: 0.95rem;
      margin: 0;
  }

  .contact-form-wrapper {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  .form-control {
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      padding: 0.875rem 1rem;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .form-control:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
  }

  .form-label {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
  }

  .btn-submit {
      background: var(--gradient-primary);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 12px;
      font-weight: 600;
      width: 100%;
      transition: all 0.3s ease;
  }

  .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
  }

  .map-wrapper {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
  }

  .gst-badge {
      display: inline-block;
      background: rgba(255, 215, 0, 0.2);
      color: var(--primary-yellow);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 1rem;
  }

  /* Footer */
  footer {
      background: var(--dark-blue);
      color: white;
      padding: 5rem 0 2rem;
  }

  .footer-brand {
      font-family: 'Poppins', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .footer-desc {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 1.5rem;
      line-height: 1.8;
  }

  .social-links {
      display: flex;
      gap: 1rem;
  }

  .social-links a {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background: var(--primary-yellow);
      color: var(--dark-blue);
      transform: translateY(-3px);
  }

  .footer-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--primary-yellow);
  }

  .footer-links {
      list-style: none;
      padding: 0;
  }

  .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .footer-links a:hover {
      color: var(--primary-yellow);
      padding-left: 5px;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 4rem;
      padding-top: 2rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
  }

  /* Responsive */
  @media (max-width: 991px) {
      .hero h1 {
          font-size: 2.8rem;
      }

      .hero-image-container {
          margin-top: 3rem;
      }

      .floating-element {
          display: none;
      }

      section {
          padding: 4rem 0;
      }
  }

  @media (max-width: 768px) {
      .hero {
          min-height: auto;
          padding: 120px 0 60px;
      }

      .hero h1 {
          font-size: 2.2rem;
      }

      .hero-services {
          flex-direction: column;
      }

      .hero-stats {
          flex-direction: column;
          gap: 1.5rem;
      }

      .section-header h2 {
          font-size: 2rem;
      }
  }

  /* Snow Effect */
  .snowflake {
      position: fixed;
      top: -10px;
      color: rgba(255, 255, 255, 0.3);
      font-size: 1.5rem;
      animation: fall linear infinite;
      pointer-events: none;
      z-index: 9999;
  }

  @keyframes fall {
      to {
          transform: translateY(100vh) rotate(360deg);
      }
  }