  :root {
      --primary: #0056b3;
      --secondary: #00a0e1;
      --accent: #ff6b6b;
      --light: #f8f9fa;
      --dark: #343a40;
      --text: #495057;
      --white: #ffffff;
      --btn: #27a897;
  }

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
  }

  body {
      color: var(--text);
      line-height: 1.6;
      background-color: var(--light);
      overflow-x: hidden;
  }

  .container {
      padding: 10px 50px;
  }

  /* Scroll Animation Classes */
  .fade-in {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .fade-in.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .slide-in-left {
      opacity: 0;
      transform: translateX(-100px);
      transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .slide-in-left.animate {
      opacity: 1;
      transform: translateX(0);
  }

  .slide-in-right {
      opacity: 0;
      transform: translateX(100px);
      transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .slide-in-right.animate {
      opacity: 1;
      transform: translateX(0);
  }

  .scale-in {
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .scale-in.animate {
      opacity: 1;
      transform: scale(1);
  }

  .rotate-in {
      opacity: 0;
      transform: rotate(-10deg) scale(0.9);
      transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .rotate-in.animate {
      opacity: 1;
      transform: rotate(0) scale(1);
  }

  .stagger-1 {
      transition-delay: 0.1s;
  }

  .stagger-2 {
      transition-delay: 0.2s;
  }

  .stagger-3 {
      transition-delay: 0.3s;
  }

  .stagger-4 {
      transition-delay: 0.4s;
  }

  /* Navigation */
  .navbar {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      padding: 1rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transform: translateY(-100%);
      transition: transform 0.5s ease;
  }

  .navbar.show {
      transform: translateY(0);
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .logo {
      font-size: 1.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
  }

  .logo img {
      height: 40px;
      margin-right: 10px;
  }

  /* Hero Section */
  .hero {
      background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      left: 0;
      right: 0;
      text-align: center;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 86, 179, 0.7);
  }

  .hero-content {
      position: relative;
      z-index: 1;
      color: var(--white);
      max-width: 800px;
      text-align: center;
      animation: heroFadeIn 1.5s ease-out;
  }

  @keyframes heroFadeIn {
      0% {
          opacity: 0;
          transform: translateY(50px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      line-height: 1.2;
      animation: slideInUp 1s ease-out 0.3s both;
  }

  .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      animation: slideInUp 1s ease-out 0.6s both;
  }

  @keyframes slideInUp {
      0% {
          opacity: 0;
          transform: translateY(30px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .btn {
      display: inline-block;
      background-color: var(--accent);
      color: var(--white);
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      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: left 0.5s;
  }

  .btn:hover::before {
      left: 100%;
  }

  .btn:hover {
      background-color: var(--btn);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  }

  /* Sections */
  .about-section {
      padding: 5rem 0;
      position: relative;
  }

  .section-title {
      text-align: center;
      margin-bottom: 3rem;
  }

  .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 4px;
      background-color: var(--accent);
      border-radius: 2px;
      transition: width 0.8s ease;
  }

  .section-title.animate h2::after {
      width: 80px;
  }

  .section-title p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
  }

  .about-content {
      display: flex;
      align-items: center;
      gap: 3rem;
      margin-bottom: 4rem;
  }

  .about-text {
      flex: 1;
  }

  .about-text h3 {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
  }

  .about-text p {
      margin-bottom: 1.5rem;
  }

  .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      position: relative;
  }

  .about-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 1s;
      z-index: 1;
  }

  .about-image.animate::before {
      left: 100%;
  }

  .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
  }

  .about-image:hover img {
      transform: scale(1.05);
  }

  /* Services Section */
  .services-section {
      padding: 5rem 0;
      background-color: var(--white);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .service-card {
      background-color: var(--white);
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      text-align: center;
      border-top: 4px solid var(--primary);
      position: relative;
      overflow: hidden;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 0;
  }

  .service-card:hover::before {
      opacity: 0.1;
  }

  .service-card>* {
      position: relative;
      z-index: 1;
  }

  .service-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
      color: var(--secondary);
      transform: rotateY(360deg);
  }

  .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--dark);
      transition: color 0.3s ease;
  }

  .service-card p {
      color: var(--text);
  }

  /* Why Choose Us Section */
  .why-choose-us {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      position: relative;
      overflow: hidden;
  }

  .why-choose-us::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(180deg);
      }
  }

  .why-choose-us .section-title h2 {
      color: var(--white);
  }

  .why-choose-us .section-title h2::after {
      background-color: var(--accent);
  }

  .features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      position: relative;
      z-index: 1;
  }

  .feature-item {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 10px;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .feature-item:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-10px) rotateX(5deg);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .feature-item h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
  }

  .feature-item h3 i {
      margin-right: 10px;
      color: var(--accent);
      transition: transform 0.3s ease;
  }

  .feature-item:hover h3 i {
      transform: scale(1.2) rotate(360deg);
  }

  /* Stats Section */
  .stats-section {
      padding: 4rem 0;
      background-color: var(--light);
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      text-align: center;
  }

  .stat-item {
      padding: 2rem;
      transition: transform 0.3s ease;
  }

  .stat-item:hover {
      transform: scale(1.05);
  }

  .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
      transition: all 0.3s ease;
  }

  .stat-number.animate {
      animation: countUp 2s ease-out;
  }

  @keyframes countUp {
      0% {
          opacity: 0;
          transform: scale(0.5);
      }

      50% {
          transform: scale(1.2);
      }

      100% {
          opacity: 1;
          transform: scale(1);
      }
  }

  .stat-label {
      font-size: 1.1rem;
      color: var(--text);
      font-weight: 500;
  }

  /* Footer */
  .footer {
      background-color: var(--dark);
      color: var(--white);
      padding: 3rem 0 1rem;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .footer-col h3 {
      margin-bottom: 1rem;
      color: var(--accent);
  }

  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 0.5rem;
  }

  .footer-links a {
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--accent);
  }

  .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
  }

  .social-icon {
      display: inline-block;
      width: 40px;
      height: 40px;
      background-color: var(--primary);
      color: var(--white);
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .social-icon:hover {
      background-color: var(--accent);
      transform: translateY(-3px) rotate(360deg);
  }

  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
  }

  .contact-item i {
      margin-right: 0.5rem;
      color: var(--accent);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1rem;
      text-align: center;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .about-content {
          flex-direction: column;
      }

      .hero-content h1 {
          font-size: 2.5rem;
      }

      .container {
          padding: 10px 30px;
      }
  }

  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2rem;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      .container {
          padding: 10px 20px;
      }

      .hero {
          height: 70vh;
      }
  }

  @media (max-width: 576px) {
      .hero {
          height: 60vh;
      }

      .hero-content h1 {
          font-size: 1.8rem;
      }

      .btn {
          padding: 0.6rem 1.5rem;
      }

      .container {
          padding: 10px 15px;
      }
  }

  /* Scroll Progress Bar */
  .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--secondary));
      z-index: 1001;
      transition: width 0.1s ease;
  }

  /* Floating Action Button */
  .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
      opacity: 0;
      transform: scale(0);
      transition: all 0.3s ease;
      z-index: 1000;
  }

  .scroll-top.show {
      opacity: 1;
      transform: scale(1);
  }

  .scroll-top:hover {
      background: var(--primary);
      transform: scale(1.1) rotate(360deg);
  }

  .benefits-section {
      padding: 60px 20px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .section-title {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-title h2 {
      font-size: 2.5rem;
      color: #2c3e50;
      margin-bottom: 15px;
  }

  .con-section-title p {
      font-size: 1.2rem;
      color: #7f8c8d;
      max-width: 600px;
      margin: 0 auto;
  }

  .benefits-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
  }

  .benefit-item {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .benefit-item.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .benefit-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .benefit-item h3 {
      font-size: 1.4rem;
      color: #2c3e50;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
  }

  .benefit-item h3 i {
      margin-right: 12px;
      color: #3498db;
      font-size: 1.6rem;
  }

  .benefit-item p {
      color: #555;
      line-height: 1.6;
      font-size: 1rem;
  }

  /* Different colors for each card */
  .benefit-item:nth-child(1) h3 i {
      color: #3498db;
  }

  .benefit-item:nth-child(2) h3 i {
      color: #2ecc71;
  }

  .benefit-item:nth-child(3) h3 i {
      color: #e74c3c;
  }

  .benefit-item:nth-child(4) h3 i {
      color: #f39c12;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .benefits-content {
          grid-template-columns: 1fr;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      .section-title p {
          font-size: 1.1rem;
      }
  }
