  
    :root {
      --primary: #03A7E8;
      --primary-dark: #0284c7;
      --accent: #FF6B6B;
      --dark: #1e293b;
      --light: #f8fafc;
    }

    body {
      background-color: #f8f9fa;
      font-family: system-ui, Arial, sans-serif;
      overflow-x: hidden;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Custom 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);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Animation Classes */
    .animate-fadeUp {
      animation: fadeInUp 1s ease forwards;
    }

    .animate-fadeLeft {
      animation: fadeInLeft 1s ease forwards;
    }

    .animate-fadeRight {
      animation: fadeInRight 1s ease forwards;
    }

    .animate-scale {
      animation: scaleIn 0.8s ease forwards;
    }

    .animate-float {
      animation: float 3s ease-in-out infinite;
    }

    .animate-pulse {
      animation: pulse 2s ease-in-out infinite;
    }

    .delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
    .delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
    .delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }
    .delay-4 { animation-delay: 0.8s; opacity: 0; animation-fill-mode: forwards; }

    /* Navbar */
    .navbar {
      background: white !important;
      padding: 15px 0;
      border-bottom: 1px solid rgba(3, 167, 232, 0.1);
      transition: all 0.4s ease;
    }

    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 30px rgba(3, 167, 232, 0.1);
    }

    .navbar-brand {
      font-weight: bold;
      font-size: 24px;
      color: var(--primary);
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover {
      transform: scale(1.05);
    }

    .navbar-brand img {
      transition: transform 0.5s ease;
    }

    .navbar-brand:hover img {
      transform: rotate(5deg);
    }

    .navbar-nav .nav-link {
      color: #000;
      font-weight: 500;
      font-size: 18px;
      padding: 4px 12px;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 20px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary);
    }

    .custom-download-btn {
      background-color: var(--primary);
      border: none;
      transition: all 0.4s ease;
      color: white !important;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .custom-download-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--accent);
      transition: left 0.4s ease;
      z-index: -1;
    }

    .custom-download-btn:hover::before {
      left: 0;
    }

    .custom-download-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(3, 167, 232, 0.3);
    }

    h2 {
      scroll-margin-top: 100px;
    }

    /* Hero Section - Mobile App Launch Focus */
    .hero-section {
      background: linear-gradient(135deg, #667eea 0%, var(--primary) 100%);
      position: relative;
      height: 600px;
      color: #fff;
      margin-top: 85px;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: rotate 20s linear infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: rotate 15s linear infinite reverse;
    }

    .hero-overlay {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 20px;
      position: relative;
      z-index: 2;
    }

    .app-badge {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      padding: 10px 30px;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 30px;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.3);
      animation: fadeInUp 1s ease;
    }

    .hero-overlay h1 {
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      margin-bottom: 20px;
      animation: fadeInUp 1s ease 0.2s both;
    }

    .hero-overlay p {
      font-size: 1.2rem;
      margin: 20px 0 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease 0.4s both;
    }

    .app-store-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease 0.6s both;
    }

    .app-btn {
      background: #000;
      color: white;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.4s ease;
      border: 2px solid transparent;
    }

    .app-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      background: var(--accent);
      border-color: white;
    }

    .app-btn i {
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .app-btn:hover i {
      transform: rotate(360deg);
    }

    .rating-stars {
      margin-top: 30px;
      animation: fadeInUp 1s ease 0.8s both;
    }

    /* Service Boxes */
    .service-box {
      background: white;
      border-radius: 15px;
      padding: 15px;
      transition: all 0.4s ease;
      border: 1px solid #e0e0e0;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .service-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(3, 167, 232, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .service-box:hover::before {
      left: 100%;
    }

    .service-box:hover {
      transform: translateY(-5px) scale(1.02);
      border-color: var(--primary);
      box-shadow: 0 15px 30px rgba(3, 167, 232, 0.15);
    }

    .service-box img {
      width: 40px;
      height: 40px;
      object-fit: contain;
      margin-right: 12px;
      transition: transform 0.4s ease;
    }

    .service-box:hover img {
      transform: rotate(360deg);
    }

    .service-box span {
      font-weight: 500;
      color: #333;
      transition: color 0.3s ease;
    }

    .service-box:hover span {
      color: var(--primary);
    }

    /* Image Grid */
    .grid-image {
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .grid-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .grid-image:hover img {
      transform: scale(1.1);
    }

    .grid-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(3, 167, 232, 0.3), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .grid-image:hover::after {
      opacity: 1;
    }

    /* Product Cards - Book Now Removed */
    .product-card {
      border-radius: 15px;
      overflow: hidden;
      background-color: #fff;
      transition: all 0.5s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      padding: 20px;
      height: 100%;
      border: 1px solid #e0e0e0;
      position: relative;
      cursor: pointer;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    .product-card:hover::before {
      opacity: 0.05;
    }

    .product-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 20px 40px rgba(3, 167, 232, 0.2);
      border-color: var(--primary);
    }

    .product-card img {
      width: 100%;
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      transition: all 0.6s ease;
      position: relative;
      z-index: 1;
    }

    .product-card:hover img {
      transform: scale(1.1) rotate(5deg);
    }

    .product-title {
      font-size: 16px;
      font-weight: 600;
      color: #000;
      transition: color 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .product-card:hover .product-title {
      color: var(--primary);
    }

    /* App Feature Chip */
    .app-chip {
      background: var(--primary);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      display: inline-block;
      margin-bottom: 10px;
    }

    /* Section Headers */
    .section-header {
      position: relative;
      margin: 50px 0 30px;
      display: inline-block;
    }

    .section-header h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      position: relative;
      z-index: 2;
      margin: 0;
    }

    .section-header::before {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 10px;
      background: rgba(3, 167, 232, 0.2);
      border-radius: 5px;
      animation: pulse 2s ease-in-out infinite;
    }

    /* Banners */
    .banner-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      margin: 40px 0;
      cursor: pointer;
    }

    .banner-wrapper img {
      width: 100%;
      height: auto;
      transition: transform 0.8s ease;
    }

    .banner-wrapper:hover img {
      transform: scale(1.05);
    }

    .banner-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: skewX(-25deg);
      transition: left 0.8s ease;
      z-index: 2;
    }

    .banner-wrapper:hover::before {
      left: 150%;
    }

    /* Download Section */
    .download-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 30px;
      padding: 60px 40px;
      color: white;
      margin: 50px 0;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .download-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      animation: float 4s ease-in-out infinite;
    }

    .download-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 200px;
      height: 200px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      animation: float 3s ease-in-out infinite reverse;
    }

    .download-section h2 {
      color: white;
      margin-top: 0;
    }

    .download-buttons {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .btn-store {
      background: white;
      color: var(--primary);
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      transition: all 0.4s ease;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .btn-store::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--accent);
      transition: left 0.4s ease;
      z-index: 0;
    }

    .btn-store:hover::before {
      left: 0;
    }

    .btn-store span, .btn-store i {
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    .btn-store:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      border-color: white;
      color: white;
    }

    .btn-store:hover i {
      transform: rotate(360deg);
    }

    .btn-store:last-child {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .btn-store:last-child::before {
      background: white;
    }

    .btn-store:last-child:hover {
      color: var(--primary);
    }

    /* Footer */
    footer {
      background-color: #0e0f0f;
      color: #fff;
      padding-bottom: 12px;
      margin-top: 60px;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
      animation: slide 3s linear infinite;
    }

    @keyframes slide {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      font-size: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 2;
    }

    /* Scroll to top button */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transition: all 0.4s ease;
      z-index: 999;
      box-shadow: 0 5px 20px rgba(3, 167, 232, 0.3);
    }

    .scroll-top.show {
      opacity: 1;
    }

    .scroll-top:hover {
      transform: translateY(-5px);
      background: var(--accent);
    }

    .scroll-top i {
      transition: transform 0.3s ease;
    }

    .scroll-top:hover i {
      transform: translateY(-3px);
    }

    /* Loading bar */
    .loading-bar {
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      position: fixed;
      top: 0;
      left: 0;
      z-index: 99999;
      transition: width 0.3s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-overlay h1 {
        font-size: 2rem;
      }

      .app-store-buttons {
        flex-direction: column;
        align-items: center;
      }

      .app-btn {
        width: 100%;
        justify-content: center;
      }

      .download-buttons {
        flex-direction: column;
      }

      .btn-store {
        width: 100%;
        justify-content: center;
      }
    }
  