   :root {
            --primary: #63dfb8;
            --primary-dark: #232a2f;
            --primary-light: #7fe8c5;
            --bg-dark: #2d353a;
            --bg-darker: #1e2327;
            --text-white: #ffffff;
            --text-gray: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
        font-family: 'IBM Plex Sans', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
    h1, h2, h3, h4, h5, h6, .hero h1 {
        font-family: 'Rajdhani', sans-serif;
    }

    .toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  font-family: sans-serif;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-success { background: #28a745; }
.toast-error { background: #dc3545; }
.toast-info { background: #007bff; }
     header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s 
cubic-bezier(0.4, 0, 0.2, 1);
}

        header.scrolled {
            background: rgba(30, 35, 39, 0.95);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            transition: transform 0.4s ease;
        }

        .logo-section:hover .logo-icon {
            transform: rotate(10deg) scale(1.05);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--text-white), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            letter-spacing: 0.02em;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav a:hover {
            color: var(--text-white);
        }

        nav a:hover::after {
            width: 100%;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--text-white);
        }

     /* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;
    filter: brightness(1.5);}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 53, 58, 0.9) 0%, rgba(30, 35, 39, 0.85) 100%);
    z-index: 1; 
}

.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 1200px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}


        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: var(--bg-darker);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.02em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 40px rgba(99, 223, 184, 0.3);
            position: relative;
            overflow: hidden;
        }

      
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 50px rgba(99, 223, 184, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

      .vision-section {
  padding: 8rem 2rem;
  position: relative;
  background:
   linear-gradient(
      180deg,
      rgba(45, 53, 58, 0.8) -1%,
      rgba(30, 35, 39, 0.95) 0%
    ),
    url("../images/features.svg") center center no-repeat;
  background-size: cover;
      filter: brightness(1);
}



        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            margin: 1.5rem auto;
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 3rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(99, 223, 184, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

       .feature-icon {
    width: 60px;
    height: 60px;
    background: #63dfb8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem; 
    color: var(--bg-darker);
}


        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        .services-section {
            padding: 8rem 2rem;
            background:linear-gradient(
      180deg,
      rgba(45, 53, 58, 0.8) -1%,
      rgba(30, 35, 39, 0.95) 0%
    );
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-item {
            background: linear-gradient(135deg, rgba(99, 223, 184, 0.1), rgba(99, 223, 184, 0.05));
            border: 1px solid rgba(99, 223, 184, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(99, 223, 184, 0.2);
        }

        .service-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .service-item h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .service-item p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .contact-section {
            padding: 8rem 2rem;
            background: linear-gradient(
      180deg,
      rgba(45, 53, 58, 0.8) -1%,
      rgba(30, 35, 39, 0.95) 0%
    );
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 2.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-white);
            padding: 1rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--text-muted);
        }

        .form-input:focus,
        .form-textarea:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 223, 184, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-button {
            width: 100%;
            background: var(--primary);
            color: var(--bg-darker);
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(99, 223, 184, 0.3);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            group: contact-item;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(99, 223, 184, 0.3);
            transform: translateX(5px);
        }

        .contact-icon-wrapper {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon-wrapper {
            background: var(--primary);
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            fill: var(--primary);
            transition: fill 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            fill: var(--bg-darker);
        }

        .contact-details h4 {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 0.25rem;
            color: var(--text-white);
        }

        .contact-details p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        footer {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 3rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-social-link {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-social-link svg {
            width: 22px;
            height: 22px;
            fill: var(--text-white);
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 1rem 1.5rem;
            }

            nav {
                display: none;
            }

            .hero {
                padding: 6rem 1.5rem 4rem;
            }

            .vision-section,
            .services-section,
            .contact-section {
                padding: 4rem 1.5rem;
            }

            .features-grid,
            .services-list,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card,
            .contact-form {
                padding: 2rem;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }