  :root {
      --primary-color: #1398F2;
      --primary-dark: #0d7bc7;
      --primary-light: #4db3f5;
      --secondary-color: #000000;
      --accent-color: #1398F2;
      --text-dark: #ffffff;
      --text-light: #e5e5e5;
      --text-muted: #999999;
      --bg-dark: #000000;
      --bg-darker: #000000;
      --bg-card: #111111;
      --bg-light: #222222;
      --white: #ffffff;
      --black: #000000;
      --shadow-soft: 0 0.5rem 2rem rgba(0, 0, 0, 0.6);
      --shadow-hover: 0 1.5rem 3rem rgba(19, 152, 242, 0.3);
      --shadow-glow: 0 0 20px rgba(19, 152, 242, 0.4);
      --border-radius: 1rem;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background: linear-gradient(135deg, var(--black) 0%, var(--bg-card) 30%, var(--black) 100%);
      overflow-x: hidden;
      font-size: 16px;
      position: relative;
      animation: pageLoad 1s ease-out;
    }

    @keyframes pageLoad {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Animated Background Pattern */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 80%, rgba(19, 152, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(19, 152, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
      animation: backgroundPulse 10s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: -1;
    }

    @keyframes backgroundPulse {
      0% { opacity: 1; transform: scale(1) rotate(0deg); }
      100% { opacity: 0.8; transform: scale(1.2) rotate(5deg); }
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      color: var(--text-dark);
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    h1 { font-size: 1.75rem; line-height: 1.2; }
    h2 { font-size: 1.5rem; line-height: 1.3; }
    h3 { font-size: 1.25rem; line-height: 1.3; }
    h4 { font-size: 1.1rem; line-height: 1.4; }

    @media (min-width: 768px) {
      h1 { font-size: 2.5rem; }
      h2 { font-size: 2rem; }
      h3 { font-size: 1.5rem; }
      h4 { font-size: 1.25rem; }
    }

    @media (min-width: 1200px) {
      h1 { font-size: 3.5rem; }
      h2 { font-size: 2.5rem; }
      h3 { font-size: 2rem; }
      h4 { font-size: 1.75rem; }
    }

    p {
      margin-bottom: 1rem;
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      p { font-size: 1rem; line-height: 1.7; }
    }

    /* Section Spacing */
    section {
      padding: 2.5rem 0;
      position: relative;
    }

    @media (min-width: 768px) {
      section { padding: 4rem 0; }
    }

    @media (min-width: 1200px) {
      section { padding: 5rem 0; }
    }

    /* Utility Classes */
    .rounded-2xl { 
      border-radius: var(--border-radius) !important; 
      overflow: hidden;
    }

    .shadow-soft { 
      box-shadow: var(--shadow-soft) !important; 
    }

    .eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      position: relative;
      display: inline-block;
      padding-left: 2rem;
    }

    .eyebrow::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1.5rem;
      height: 2px;
      background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
      animation: eyebrowGlow 2s ease-in-out infinite alternate;
    }

    @keyframes eyebrowGlow {
      0% { box-shadow: 0 0 5px var(--primary-color); }
      100% { box-shadow: 0 0 15px var(--primary-color); }
    }

    .section-title {
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Enhanced Dark Navbar */
    .navbar-sticky {
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 2px solid rgba(19, 152, 242, 0.3);
      transition: var(--transition);
      padding: 0.75rem 0;
      animation: slideDown 0.8s ease-out;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .navbar-sticky.scrolled {
      padding: 0.5rem 0;
      box-shadow: var(--shadow-soft);
      background: rgba(0, 0, 0, 0.98);
      border-bottom-color: var(--primary-color);
      transform: translateY(0);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--white) !important;
      text-decoration: none;
      transition: var(--transition);
      animation: logoGlow 3s ease-in-out infinite alternate;
    }

    @keyframes logoGlow {
      0% { filter: drop-shadow(0 0 5px rgba(19, 152, 242, 0.5)); }
      100% { filter: drop-shadow(0 0 15px rgba(19, 152, 242, 0.8)); }
    }

    .navbar-brand:hover {
      transform: scale(1.08);
      color: var(--primary-color) !important;
    }

    /* Updated Logo Container Styles */
    .navbar-logo {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.2rem;
      color: var(--white);
      transition: var(--transition);
      animation: logoSpin 8s linear infinite;
      box-shadow: 0 4px 15px rgba(19, 152, 242, 0.3);
      overflow: hidden;
      position: relative;
    }

    /* Logo Image Styles */
    .navbar-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 100px;
      transition: var(--transition);
    }

    @keyframes logoSpin {
      0% { transform: rotate(0deg) scale(1); }
      25% { transform: rotate(90deg) scale(1.1); }
      50% { transform: rotate(180deg) scale(1); }
      75% { transform: rotate(270deg) scale(1.1); }
      100% { transform: rotate(360deg) scale(1); }
    }

    .navbar-brand:hover .navbar-logo {
      transform: scale(1.2) rotate(15deg);
      box-shadow: 0 6px 25px rgba(19, 152, 242, 0.5);
    }

    .navbar-brand:hover .navbar-logo img {
      transform: scale(1.1);
    }

    /* Responsive Logo Adjustments */
    @media (max-width: 767px) {
      .navbar-logo {
        width: 40px;
        height: 40px;
      }
      
      .navbar-brand {
        font-size: 1.1rem;
        gap: 0.5rem;
      }
    }

    @media (max-width: 575px) {
      .navbar-logo {
        width: 35px;
        height: 35px;
      }
      
      .navbar-brand {
        font-size: 1rem;
        gap: 0.4rem;
      }
    }

    @media (min-width: 992px) {
      .navbar-logo {
        width: 55px;
        height: 55px;
      }
      
      .navbar-brand {
        font-size: 1.4rem;
        gap: 1rem;
      }
    }

    .navbar-nav .nav-link {
      color: var(--text-light);
      font-weight: 500;
      padding: 0.75rem 1rem;
      margin: 0.25rem 0;
      border-radius: 0.75rem;
      transition: var(--transition);
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }

    .navbar-nav .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(19, 152, 242, 0.2), transparent);
      transition: var(--transition);
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
      left: 100%;
    }

    @media (min-width: 992px) {
      .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        margin: 0 0.25rem;
        font-size: 1rem;
      }
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary-color);
      background: rgba(19, 152, 242, 0.15);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(19, 152, 242, 0.3);
    }

    /* Navbar Toggler Icon Styles */
    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
      background: transparent;
      border-radius: 0.5rem;
      transition: var(--transition);
    }

    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }

    .navbar-toggler:hover {
      background: rgba(19, 152, 242, 0.1);
      transform: scale(1.05);
    }

    .navbar-toggler-icon {
      display: inline-block;
      width: 1.5em;
      height: 1.5em;
      vertical-align: middle;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100%;
      transition: var(--transition);
    }

    .navbar-toggler:hover .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2819, 152, 242, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      transform: rotate(180deg);
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: var(--black);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 2s ease-in-out;
      animation: slideZoom 15s infinite;
    }

    .hero-slide.active {
      opacity: 0.3;
    }

    @keyframes slideZoom {
      0%, 33.33% {
        transform: scale(1);
      }
      16.66% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1.05);
      }
    }

    .hero-slide:nth-child(1) {
      background-image: linear-gradient(rgba(0,0,0,0.6), rgba(19,152,242,0.3)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/><g fill="%231398F2" opacity="0.1"><circle cx="200" cy="200" r="100"/><circle cx="1000" cy="300" r="150"/><circle cx="600" cy="600" r="120"/><rect x="100" y="400" width="200" height="100" rx="20"/><rect x="800" y="100" width="300" height="150" rx="25"/></g></svg>');
      animation-delay: 0s;
    }

    .hero-slide:nth-child(2) {
      background-image: linear-gradient(rgba(0,0,0,0.6), rgba(19,152,242,0.3)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/><g fill="%231398F2" opacity="0.15"><polygon points="100,100 300,100 200,300"/><polygon points="900,200 1100,200 1000,400"/><circle cx="400" cy="500" r="80"/><rect x="200" y="600" width="800" height="50" rx="25"/></g></svg>');
      animation-delay: 5s;
    }

    .hero-slide:nth-child(3) {
      background-image: linear-gradient(rgba(0,0,0,0.6), rgba(19,152,242,0.3)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23000" width="1200" height="800"/><g fill="%231398F2" opacity="0.12"><rect x="50" y="50" width="300" height="200" rx="30" transform="rotate(15 200 150)"/><rect x="700" y="300" width="400" height="150" rx="20" transform="rotate(-10 900 375)"/><circle cx="500" cy="150" r="60"/><circle cx="300" cy="650" r="90"/></g></svg>');
      animation-delay: 10s;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 30% 20%, rgba(19, 152, 242, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(19, 152, 242, 0.15) 0%, transparent 50%);
      z-index: 2;
      animation: heroOverlayMove 12s ease-in-out infinite alternate;
    }

    @keyframes heroOverlayMove {
      0% { transform: scale(1) rotate(0deg); opacity: 1; }
      100% { transform: scale(1.1) rotate(3deg); opacity: 0.8; }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      animation: heroContentReveal 2s ease-out;
      padding: 2rem;
    }

    @keyframes heroContentReveal {
      0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
      }
      50% {
        opacity: 0.5;
        transform: translateY(40px) scale(0.95);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .hero h1 {
      background: linear-gradient(135deg, var(--white), var(--primary-color), var(--white));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
      margin-bottom: 1.5rem;
      animation: titleGlow 4s ease-in-out infinite alternate, titleFloat 6s ease-in-out infinite;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    @keyframes titleGlow {
      0% { filter: drop-shadow(0 0 10px rgba(19, 152, 242, 0.5)); }
      100% { filter: drop-shadow(0 0 30px rgba(19, 152, 242, 1)); }
    }

    @keyframes titleFloat {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .hero h1::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
      animation: underlineGrow 3s ease-in-out infinite;
    }

    @keyframes underlineGrow {
      0%, 100% { width: 100px; opacity: 0.5; }
      50% { width: 200px; opacity: 1; }
    }

    .typed-text {
      background: linear-gradient(45deg, var(--primary-color), var(--white), var(--primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: typeGlow 2s ease-in-out infinite alternate;
      position: relative;
    }

    @keyframes typeGlow {
      0% { filter: brightness(1); }
      100% { filter: brightness(1.3); }
    }

    .typed-text::after {
      content: '|';
      color: var(--primary-color);
      animation: blink 1s infinite;
      margin-left: 2px;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1200px) {
      .services-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: var(--border-radius);
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
      opacity: 0;
      transition: var(--transition);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary-color);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(5deg);
      box-shadow: var(--shadow-glow);
    }

    .service-icon i {
      font-size: 1.5rem;
      color: var(--white);
    }

    /* Button Styles */
    .btn {
      font-weight: 600;
      border-radius: 0.75rem;
      padding: 0.75rem 1.5rem;
      transition: var(--transition);
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: var(--transition);
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      color: var(--white);
      border: 2px solid transparent;
      font-weight: 700;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      color: var(--white);
    }

    .btn-outline-primary {
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      background: transparent;
      backdrop-filter: blur(10px);
    }

    .btn-outline-primary:hover {
      background: var(--primary-color);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    /* About Section */
    .about-content {
      background: var(--bg-card);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: var(--border-radius);
      padding: 2rem;
      transition: var(--transition);
    }

    .about-content:hover {
      border-color: var(--primary-color);
      box-shadow: var(--shadow-soft);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon i {
      color: var(--white);
    }

    /* Customer Reviews Section */
    .reviews-display {
      margin-top: 3rem;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1200px) {
      .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .review-item {
      background: var(--bg-card);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      transition: var(--transition);
    }

    .review-item:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
      box-shadow: var(--shadow-soft);
    }

    .rating {
      color: var(--accent-color);
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .customer-name {
      color: var(--primary-color);
      font-weight: 600;
    }

    .customer-title {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* Form Controls */
    .form-control, .form-select {
      border: 2px solid rgba(19, 152, 242, 0.4);
      border-radius: 0.75rem;
      padding: 0.75rem 1rem;
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.1);
      color: var(--white) !important;
      backdrop-filter: blur(10px);
      font-size: 1rem;
      font-weight: 500;
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.6) !important;
      font-weight: 400;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--primary-color);
      box-shadow: var(--shadow-glow);
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
      color: var(--white) !important;
      outline: none;
    }

    .form-select {
      color: var(--white) !important;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 6 6 6-6'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 16px 12px;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    .form-select option {
      background: var(--bg-card);
      color: var(--white);
      padding: 0.5rem;
    }

    .form-select:focus {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231398F2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 6 6 6-6'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 16px 12px;
    }

    .form-label {
      font-weight: 600;
      color: var(--white) !important;
      margin-bottom: 0.5rem;
      font-size: 1rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Enhanced Form Input States */
    .form-control:hover, .form-select:hover {
      border-color: var(--primary-light);
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-1px);
    }

    .form-control:valid, .form-select:valid {
      border-color: #28a745;
    }

    .form-control:invalid:not(:placeholder-shown), .form-select:invalid:not([value=""]) {
      border-color: #dc3545;
    }

    /* Validation Feedback */
    .invalid-feedback {
      color: #ff6b6b !important;
      font-weight: 500;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .valid-feedback {
      color: #51cf66 !important;
      font-weight: 500;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Contact Section */
    #contact {
      background: linear-gradient(135deg, var(--bg-card), var(--black));
      position: relative;
      overflow: hidden;
    }

    #contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 30%, rgba(19, 152, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(19, 152, 242, 0.06) 0%, transparent 50%);
      animation: sectionPulse 10s ease-in-out infinite alternate;
      z-index: 0;
      pointer-events: none;
    }

    #contact .container {
      position: relative;
      z-index: 1;
    }

    .contact-info {
      background: linear-gradient(135deg, var(--bg-card), rgba(17, 17, 17, 0.9));
      border: 2px solid rgba(19, 152, 242, 0.3);
      border-radius: var(--border-radius);
      padding: 2rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .contact-info::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(19, 152, 242, 0.05), transparent);
      transform: rotate(45deg);
      transition: var(--transition);
      opacity: 0;
    }

    .contact-info:hover::before {
      animation: shimmer 1.5s ease-in-out;
      opacity: 1;
    }

    .contact-info:hover {
      border-color: var(--primary-color);
      box-shadow: var(--shadow-hover);
      transform: translateY(-5px);
    }

    .contact-info i {
      color: var(--primary-color);
      margin-right: 0.5rem;
      filter: drop-shadow(0 0 5px rgba(19, 152, 242, 0.5));
    }

    .contact-info h3, .contact-info h5 {
      color: var(--text-dark);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .contact-info p {
      color: var(--text-light);
    }

    .contact-info .social-media .btn {
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
    }

    /* Contact Form Card Enhancement */
    #contact .card {
      background: linear-gradient(135deg, var(--bg-card), rgba(17, 17, 17, 0.9));
      border: 2px solid rgba(19, 152, 242, 0.3) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    #contact .card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(19, 152, 242, 0.05), transparent);
      transform: rotate(45deg);
      transition: var(--transition);
      opacity: 0;
      z-index: 0;
    }

    #contact .card:hover::before {
      animation: shimmer 1.5s ease-in-out;
      opacity: 1;
    }

    #contact .card:hover {
      border-color: var(--primary-color) !important;
      box-shadow: var(--shadow-hover) !important;
      transform: translateY(-5px);
    }

    #contact .card-body {
      position: relative;
      z-index: 1;
    }

    #contact .card h3 {
      color: var(--text-dark);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, var(--secondary-color), var(--bg-darker));
      color: var(--text-light);
      padding: 2rem 0 1rem;
      border-top: 1px solid rgba(99, 102, 241, 0.2);
    }

    footer h6 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    footer a {
      color: var(--text-light);
      text-decoration: none;
      transition: var(--transition);
    }

    footer a:hover {
      color: var(--primary-color);
      transform: translateX(5px);
    }

    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: var(--white);
      border-radius: 50%;
      box-shadow: var(--shadow-hover);
      z-index: 1000;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      animation: whatsappPulse 2s ease-in-out infinite;
    }

    @keyframes whatsappPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .whatsapp-float:hover {
      transform: scale(1.2);
      color: var(--white);
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }

    /* Scroll Reveal Animation */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }

    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* Additional Animations */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @keyframes slideInLeft {
      0% { opacity: 0; transform: translateX(-50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      0% { opacity: 0; transform: translateX(50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInScale {
      0% { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* Section Background Animations */
    #about {
      background: linear-gradient(135deg, var(--black), var(--bg-card));
      position: relative;
      overflow: hidden;
    }

    #about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 10% 20%, rgba(19, 152, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(19, 152, 242, 0.08) 0%, transparent 50%);
      animation: sectionPulse 8s ease-in-out infinite alternate;
      z-index: 0;
    }

    @keyframes sectionPulse {
      0% { opacity: 1; transform: scale(1); }
      100% { opacity: 0.7; transform: scale(1.1); }
    }

    #services {
      background: linear-gradient(135deg, var(--bg-card), var(--black));
    }

    #reviews {
      background: linear-gradient(135deg, var(--black), var(--bg-card));
    }

    /* Enhanced Service Cards */
    .service-card {
      background: linear-gradient(135deg, var(--bg-card), rgba(17, 17, 17, 0.9));
      border: 2px solid rgba(19, 152, 242, 0.3);
      border-radius: var(--border-radius);
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      animation: fadeInScale 0.8s ease-out;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(19, 152, 242, 0.1), transparent);
      transform: rotate(45deg);
      transition: var(--transition);
      opacity: 0;
    }

    .service-card:hover::before {
      animation: shimmer 1.5s ease-in-out;
      opacity: 1;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
      100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }
    
    /* Mobile Responsive Adjustments */
    @media (max-width: 575px) {
      .container {
        padding-left: 1rem;
        padding-right: 1rem;
      }
      
      .hero {
        min-height: 70vh;
      }
      
      .hero h1 {
        font-size: 1.5rem;
      }
      
      .service-card {
        padding: 1.5rem;
      }
      
      .contact-info, .about-content {
        padding: 1.5rem;
      }
    }