     :root {
          --primary: #2563eb;
          --primary-light: #dbeafe;
          --primary-dark: #1e40af;
          --secondary: #059669;
          --accent: #f59e0b;
          --secondary-light: #34d399;
          --text: #1f2937;
          --text-light: #6b7280;
          --light-bg: #f9fafb;
          --white: #ffffff;
          --dark: #111827;
          --gray: #9ca3af;
          --gray-light: #f3f4f6;
          /* --gradient: linear-gradient(135deg, var(--primary), var(--secondary)); */
          --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
     }

     * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
     }

     body {
          font-family: 'Poppins', sans-serif;
          background-color: var(--light-bg);
          color: var(--text);
          line-height: 1.6;
          overflow-x: hidden;
     }

     /* Navigation Bar */
     .navbar {
          background-color: var(--white);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          padding: 0.5rem 5%;
          position: sticky;
          top: 0;
          z-index: 100;
          backdrop-filter: blur(8px);
          background-color: rgba(255, 255, 255, 0.8);
     }

     .nav-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width: 1400px;
          margin: 0 auto;
     }

     .logo {
          font-size: 1.8rem;
          font-weight: 700;
          color: var(--primary);
          text-decoration: none;
          display: flex;
          align-items: center;
          gap: 0.5rem;
     }

     .logo-icon {
          color: var(--secondary);
     }

     .nav-cta {
          padding: 0.75rem 1.5rem;
          background: var(--gradient);
          color: var(--white);
          border-radius: 0.5rem;
          font-weight: 600;
          text-decoration: none;
          transition: all 0.3s;
          box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
     }

     .nav-cta:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
     }

     /* Hero Section */
     .hero {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 2rem 5%;
          max-width: 1400px;
          margin: 0 auto;
          position: relative;
          overflow: hidden;
     }

     .hero::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -20%;
          width: 80%;
          height: 200%;
          background: radial-gradient(circle, var(--primary-light) 0%, rgba(219, 234, 254, 0) 70%);
          z-index: -1;
          opacity: 0.6;
     }

     .hero-content {
          flex: 1;
          max-width: 600px;
          animation: fadeInUp 0.8s ease;
     }

     .hero-title {
          font-size: 3.5rem;
          font-weight: 700;
          color: var(--dark);
          margin-bottom: 1.5rem;
          line-height: 1.2;
     }

     .hero-title span {
          background: var(--gradient);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
     }

     .hero-subtitle {
          font-size: 1.25rem;
          color: var(--text-light);
          margin-bottom: 1rem;
          font-weight: 400;
     }

     .hero-text {
          display: flex;
          column-gap: 10px;
          font-size: 1.1rem;
          color: var(--text-light);
          margin-bottom: 2.5rem;
          line-height: 1.8;
     }

      .hero-text span{
          text-align: justify;
      }
     .btn-group {
          display: flex;
          gap: 1rem;
          flex-wrap: wrap;
     }

     .btn {
          padding: 0.875rem 1.75rem;
          border-radius: 0.5rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          border: none;
          font-size: 1rem;
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
     }

     .btn-primary {
          background: var(--gradient);
          color: var(--white);
          box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
     }

     .btn-primary:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
     }

     .btn-outline {
          border: 2px solid var(--primary);
          color: var(--primary);
          background: transparent;
     }

     .btn-outline:hover {
          background: var(--primary);
          color: var(--white);
     }

     .hero-image {
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          animation: fadeIn 1s ease;
     }

     .image-container {
          padding: 15px 0;
          position: relative;
          width: 100%;
          max-width: 37em;
          border-radius: 1rem;
          overflow: hidden;
          border: 5px solid rgba(30, 64, 175, 0.2);
          box-shadow: 0px 0px 30px 10px var(--primary-dark);
     }

     .hero .image-container h2 {
          text-align: center;
          text-transform: uppercase;
          margin-bottom: 10px;
     }

     .hero video {
          width: 100%;
     }

     .hero .image-container button {
          display: block;
          margin: auto;
          padding: 10px 20px;
          font-size: 16px;
          background: #007bff;
          color: white;
          border: none;
          border-radius: 5px;
          cursor: pointer;
     }

     .hero .image-container button:hover {
          background: #0056b3;
     }

     .shape {
          position: absolute;
          z-index: -1;
          border-radius: 1rem;
     }

     .shape-1 {
          width: 150px;
          height: 150px;
          background: var(--gradient);
          top: -2rem;
          left: -2rem;
          transform: rotate(15deg);
          opacity: 0.2;
     }

     .shape-2 {
          width: 100px;
          height: 100px;
          background: var(--gradient);
          border-radius: 50%;
          bottom: -1.5rem;
          right: -1.5rem;
          opacity: 0.2;
     }

     /* About Section */
     .about {
          padding: 3rem 5%;
          text-align: center;
          background-color: var(--white);
     }

     .section-title {
          font-size: 2.5rem;
          font-weight: 700;
          color: var(--dark);
          margin-bottom: 1.5rem;
          position: relative;
          display: inline-block;
     }

     .section-title::after {
          content: '';
          position: absolute;
          bottom: -0.75rem;
          left: 50%;
          transform: translateX(-50%);
          width: 5rem;
          height: 0.25rem;
          background: var(--gradient);
          border-radius: 0.125rem;
     }

     .section-subtitle {
          font-size: 1.125rem;
          color: var(--text-light);
          margin: 0 auto 3rem;
          line-height: 1.8;
     }

     .features {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
          max-width: 1050px;
          margin: 0 auto;
     }

     .feature-card {
          background: var(--white);
          border-radius: 1rem;
          padding: 2.5rem 2rem;
          text-align: center;
          transition: all 0.3s ease;
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          border: 1px solid var(--gray-light);
          position: relative;
          overflow: hidden;
     }

     .feature-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 0.25rem;
          background: var(--gradient);
     }

     .feature-card:hover {
          transform: translateY(-0.5rem);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     }

     .feature-icon {
          width: 5rem;
          height: 5rem;
          background: var(--gradient);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 1.5rem;
          color: var(--white);
          font-size: 1.75rem;
          box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
     }

     .feature-title {
          font-size: 1.5rem;
          color: var(--dark);
          margin-bottom: 1rem;
          font-weight: 600;
     }

     .feature-text {
          font-size: 1rem;
          color: var(--text-light);
          line-height: 1.7;
     }

     /* Stats Section */
     .stats {
          background: var(--gradient);
          color: var(--white);
          padding: 2rem 5%;
          text-align: center;
          position: relative;
          overflow: hidden;
     }

     .stats::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' opacity='0.1'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     }

     .stats-title {
          font-size: 2.5rem;
          margin-bottom: 1.5rem;
          position: relative;
     }

     .stats-subtitle {
          font-size: 1.125rem;
          opacity: 0.9;
          margin: 0 auto 2rem;
          line-height: 1.8;
     }

     .stats-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 3rem;
          max-width: 1000px;
          margin: 0 auto;
     }

     .stat-item {
          position: relative;
          z-index: 1;
     }

     .stat-number {
          font-size: 3.5rem;
          font-weight: 700;
          margin-bottom: 0.5rem;
          background: linear-gradient(to right, var(--white), var(--primary-light));
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
     }

     .stat-label {
          font-size: 1.125rem;
          opacity: 0.9;
          font-weight: 500;
     }

     /* Team Section */
     .team {
          padding: 3rem 5%;
          background-color: var(--light-bg);
          text-align: center;
     }

     .team-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 2rem;
          max-width: 1200px;
          margin: 3rem auto 0;
     }

     .team-member {
          background: var(--white);
          border-radius: 1rem;
          overflow: hidden;
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
     }

     .team-member:hover {
          transform: translateY(-0.5rem);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     }

     .member-image {
          width: 100%;
          height: 250px;
          object-fit: cover;
     }

     .member-info {
          padding: 1.5rem;
     }

     .member-name {
          font-size: 1.25rem;
          font-weight: 600;
          color: var(--dark);
          margin-bottom: 0.25rem;
     }

     .member-role {
          font-size: 0.875rem;
          color: var(--primary);
          font-weight: 500;
          margin-bottom: 1rem;
     }

     .member-bio {
          font-size: 0.875rem;
          color: var(--text-light);
          line-height: 1.6;
     }

     /* CTA Section */
     .cta {
          padding: 0rem 0% 2em;
          background: var(--white);
          text-align: center;
          position: relative;
     }

     .cta-container {
          max-width: 1200px;
          margin: 0 auto;
          background: var(--gradient);
          padding: 3rem 1rem;
          border-radius: 1rem;
          position: relative;
          overflow: hidden;
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     }

     .cta-container::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -50%;
          width: 100%;
          height: 200%;
          background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
          z-index: 0;
     }

     .cta-title {
          font-size: 2rem;
          color: var(--white);
          margin-bottom: 1.5rem;
          position: relative;
          z-index: 1;
     }

     .cta-text {
          font-size: 1.125rem;
          color: rgba(255, 255, 255, 0.9);
          margin-bottom: 2rem;
          line-height: 1.8;
          position: relative;
          z-index: 1;
     }

     .cta-btn {
          background: var(--white);
          color: var(--primary);
          padding: 0.875rem 2rem;
          border-radius: 0.5rem;
          font-weight: 600;
          text-decoration: none;
          transition: all 0.3s ease;
          display: inline-block;
          position: relative;
          z-index: 1;
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     }

     .cta-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
     }

     /* Footer */
     .footer {
          background: var(--dark);
          color: var(--white);
          padding: 4rem 5% 2rem;
     }

     .footer-container {
          max-width: 1400px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 2rem;
     }

     .footer-logo {
          font-size: 1.5rem;
          font-weight: 700;
          color: var(--white);
          margin-bottom: 1rem;
          display: flex;
          align-items: center;
          gap: 0.5rem;
     }

     .footer-text {
          color: var(--gray);
          line-height: 1.8;
          margin-bottom: 1.5rem;
     }

     .social-links {
          display: flex;
          gap: 1rem;
     }

     .social-link {
          width: 2.5rem;
          height: 2.5rem;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.1);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--white);
          transition: all 0.3s ease;
     }

     .social-link:hover {
          background: var(--primary);
          transform: translateY(-3px);
     }

     .footer-heading {
          font-size: 1.125rem;
          font-weight: 600;
          margin-bottom: 1.5rem;
          color: var(--white);
     }

     .footer-links {
          list-style: none;
     }

     .footer-link {
          margin-bottom: 0.75rem;
     }

     .footer-link a {
          color: var(--gray);
          text-decoration: none;
          transition: all 0.3s ease;
     }

     .footer-link a:hover {
          color: var(--white);
     }

     .footer-bottom {
          text-align: center;
          padding-top: 3rem;
          margin-top: 2rem;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          color: var(--gray);
          font-size: 0.875rem;
     }

     /* Animations */
     @keyframes fadeIn {
          from {
               opacity: 0;
          }

          to {
               opacity: 1;
          }
     }

     @keyframes fadeInUp {
          from {
               opacity: 0;
               transform: translateY(30px);
          }

          to {
               opacity: 1;
               transform: translateY(0);
          }
     }

     @keyframes float {
          0% {
               transform: translateY(0px);
          }

          50% {
               transform: translateY(-15px);
          }

          100% {
               transform: translateY(0px);
          }
     }

     /* Responsive Styles */
     @media (max-width: 1024px) {
          .hero {
               flex-direction: column;
               text-align: center;
               padding: 4rem 5%;
          }

          .hero-content {
               margin-bottom: 3rem;
               max-width: 100%;
          }

          .btn-group {
               justify-content: center;
          }
     }

     @media (max-width: 768px) {
          .hero-title {
               font-size: 2.5rem;
          }

          .hero-subtitle {
               font-size: 1.1rem;
          }

          .section-title {
               font-size: 2rem;
          }

          .stats-grid {
               grid-template-columns: repeat(2, 1fr);
          }
     }

     @media (max-width: 480px) {
          .hero-title {
               font-size: 2rem;
          }

          .btn-group {
               flex-direction: column;
               gap: 1rem;
          }

          .btn {
               width: 100%;
               justify-content: center;
          }

          .stats-grid {
               grid-template-columns: 1fr;
               gap: 2rem;
          }
     }