
      body {
        background-color: #000;
        color: #fff;
        scroll-behavior: smooth;
        margin: 0;
      }

      section {
        padding: 80px 0;
      }

      /* Navbar Styles */
      .navbar {
        background-color: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
      }

      .navbar-brand img {
        height: 40px;
        transition: all 0.3s ease;
      }

      .nav-link {
        color: #e4e9f2 !important;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 30px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
      }

      /* .nav-link:hover, .nav-link.active {
      background-color: rgba(13, 202, 240, 0.1);
      color: #0dcaf0 !important;
    } */

      .nav-pills {
        background-color: rgba(17, 17, 17, 0.8);
        border-radius: 40px;
        padding: 6px;
        border: 1px solid rgba(65, 65, 65, 0.5);
        backdrop-filter: blur(10px);
      }

      .call-btn {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        padding: 8px 20px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 600;
        backdrop-filter: blur(8px);
      }

      /* .call-btn:hover {
      background-color: #0dcaf0;
      color: #000;
    } */

      /* Custom toggler */
      .navbar-toggler {
        border: none;
        padding: 4px 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
      }

      .navbar-toggler:focus {
        box-shadow: none;
      }

      .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%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      }

      /* Hero Section */
      .hero-section {
        position: relative;
        height: 100vh;
        overflow: hidden;
      }

      .hero-section video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
      }

      .hero-content {
        position: relative;
        z-index: 1;
      }

      .hero-content h1 {
        font-family: "Inter", sans-serif;
        background: linear-gradient(90deg, #e4e9f2, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero-content em {
        font-family: "Inter", sans-serif;
        background: linear-gradient(90deg, #e4e9f2, #cdd3dc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero-content .btn {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid #444;
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
      }

      .hero-content .btn:hover {
        color: #fff !important;
      }

      .social-icons a {
        color: #bbb;
        font-size: 1.5rem;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .social-icons a:hover {
        color: #0dcaf0;
      }

      /* Data Analysis Section */
      .data-analysis-section {
        padding: 120px 0;
        position: relative;
        overflow: hidden;
      }

      .data-analysis-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(
            circle at 25% 25%,
            rgba(120, 119, 198, 0.12) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 75% 75%,
            rgba(255, 119, 198, 0.08) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 50% 50%,
            rgba(120, 219, 255, 0.06) 0%,
            transparent 50%
          );
        pointer-events: none;
      }

      /* Section Badge */
      .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        padding: 14px 28px;
        margin-bottom: 50px;
        backdrop-filter: blur(15px);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #ffffff;
        transition: all 0.3s ease;
      }

      .section-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(120, 119, 198, 0.2);
        background: rgba(255, 255, 255, 0.12);
      }

      .section-badge i {
        color: #4ade80;
        font-size: 16px;
      }

      /* Main Quote */
      .main-quote {
        margin-bottom: 80px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
      }

      .quote-text {
        font-size: clamp(1.8rem, 4vw, 3.2rem);
        font-weight: 400;
        line-height: 1.4;
        color: #ffffff;
        margin-bottom: 40px;
        font-style: italic;
      }

      .quote-text .highlight {
        color: #8b9dc3;
        font-weight: 500;
        position: relative;
      }

      .quote-text .highlight::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #1f2937, #374151);
        border-radius: 2px;
        opacity: 0.6;
      }

      /* Profile Section */
      .profile-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 20px;
      }

      .profile-avatar {
        position: relative;
      }

      .profile-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
      }

      .profile-avatar::after {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 50%;
        background: linear-gradient(45deg, #4ade80, #06b6d4, #8b5cf6);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .profile-section:hover .profile-avatar::after {
        opacity: 1;
      }

      .profile-info {
        text-align: left;
      }

      .profile-title {
        color: #8b9dc3;
        font-size: 16px;
        font-weight: 500;
        display: block;
      }

      /* About Content */
      .about-content-wrapper {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 60px 50px;
        backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
      }

      .about-content-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
      }

      .section-title {
        font-size: clamp(2rem, 3vw, 2.8rem);
        font-weight: 700;
        margin-bottom: 35px;
        color: #ffffff;
        text-align: center;
        position: relative;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #b3b4b6, #374151);
        border-radius: 2px;
      }

      .about-description {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
      }

      .about-text {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #a1a8b8;
        margin-bottom: 25px;
        font-weight: 400;
      }

      .content-highlight {
        color: #ffffff;
        font-weight: 600;
        background: linear-gradient(90deg, #949aa2, #d8dade);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* Animations */
      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards;
      }

      .fade-in-delay {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease 0.3s forwards;
      }

      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Mobile Responsive Styles */
      @media (max-width: 992px) {
        .navbar-brand img {
          height: 35px;
        }

        .nav-pills {
          background: none;
          border: none;
          padding: 0;
          flex-direction: column;
          width: 100%;
        }

        .navbar-collapse {
          background: rgba(11, 11, 11, 0.98);
          backdrop-filter: blur(20px);
          border-radius: 15px;
          margin-top: 15px;
          padding: 20px;
          border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-link {
          padding: 12px 20px;
          margin: 5px 0;
          border-radius: 10px;
          text-align: center;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .call-btn {
          margin-top: 15px;
          padding: 12px 24px;
          text-align: center;
          display: block;
          width: 100%;
        }
      }

      @media (max-width: 768px) {
        .data-analysis-section {
          padding: 80px 0;
        }

        .section-badge {
          padding: 12px 24px;
          font-size: 12px;
          margin-bottom: 40px;
        }

        .main-quote {
          margin-bottom: 60px;
        }

        .profile-section {
          flex-direction: column;
          gap: 12px;
          text-align: center;
        }

        .profile-info {
          text-align: center;
        }

        .about-content-wrapper {
          padding: 40px 30px;
          margin: 0 15px;
        }

        .about-text {
          font-size: 1rem;
          margin-bottom: 20px;
        }

        .hero-content .social-icons a {
          font-size: 1.25rem;
        }
      }

      @media (max-width: 480px) {
        .data-analysis-section {
          padding: 60px 0;
        }

        .section-badge {
          padding: 10px 20px;
          font-size: 11px;
        }

        .profile-img {
          width: 50px;
          height: 50px;
        }

        .profile-title {
          font-size: 14px;
        }

        .about-content-wrapper {
          padding: 30px 20px;
        }

        .about-text {
          font-size: 0.95rem;
          margin-bottom: 18px;
        }

        .section-title::after {
          width: 40px;
          height: 2px;
        }

        .hero-content {
          padding: 0 15px;
        }
      }

      footer {
        background-color: #111;
        padding: 20px 0;
        text-align: center;
      }

      /***digital marketing ****/
      .hero-wrapper {
        background: linear-gradient(180deg, #0b0b0b 0%, #1a1a1a 100%);
        color: #fff; /* optional for white text */

        padding: 100px 0;
      }

      .content-header {
        text-align: left;
        margin-bottom: 0;
      }

      .topic-label {
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #cccccc;
        margin-bottom: 20px;
      }

      .main-heading {
        font-size: 3.2rem;
        font-weight: 300;
        line-height: 1.1;
        color: #ffffff;
        margin-bottom: 30px;
        max-width: 600px;
      }

      .hero-text {
        font-size: 1.15rem;
        line-height: 1.7;
        color: #cccccc;
        max-width: 500px;
        margin-bottom: 40px;
      }

      .service-box {
        background-color: #2a2a2a;
        border-radius: 20px;
        padding: 60px 40px;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
        border: 1px solid #404040;
        position: relative;
        transform: rotate(0deg);
        box-shadow: -8px 12px 25px rgba(0, 0, 0, 0.4),
          -4px 6px 15px rgba(0, 0, 0, 0.2);
      }

      .service-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: inherit;
        border-radius: inherit;
        transform: rotate(4deg);
        z-index: -1;
        box-shadow: -6px 10px 20px rgba(0, 0, 0, 0.3),
          -3px 5px 12px rgba(0, 0, 0, 0.15);
      }

      .symbol-holder {
        width: 70px;
        height: 70px;
        background-color: #000000;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
      }

      .symbol-holder i {
        font-size: 1.8rem;
        color: #ffffff;
      }

      .service-heading {
        font-size: 1.5rem;
        font-weight: 400;
        color: #ffffff;
        text-align: center;
        margin-bottom: 20px;
      }

      .service-info {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #cccccc;
        text-align: center;
      }

      .benefits-wrapper {
        margin-top: 0;
      }

      .benefit-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        padding: 0;
      }

      .point-marker {
        width: 6px;
        height: 6px;
        background-color: #ffffff;
        border-radius: 50%;
        margin-right: 20px;
        margin-top: 10px;
        flex-shrink: 0;
      }

      .benefit-content {
        font-size: 1.15rem;
        line-height: 1.6;
        color: #cccccc;
        font-weight: 300;
      }

      @media (max-width: 768px) {
        .main-heading {
          font-size: 2.5rem;
        }

        .service-box {
          padding: 40px 30px;
          margin-bottom: 40px;
          max-width: 100%;
        }

        .hero-wrapper {
          padding: 60px 0;
        }
      }

      @media (max-width: 992px) {
        .content-header {
          margin-top: 40px;
        }
      }

      /***Why digital marketing require ***/

      #action {
        background: linear-gradient(180deg, #0b0b0b 0%, #1a1a1a 100%);
      }

      #action h2 {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        letter-spacing: 0.5px;
      }
      #action p {
        font-size: 19px;
      }
      .card-custom {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        height: 100%;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .icon-box {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: transform 0.3s ease;
      }

      .card-custom:hover .icon-box {
        transform: scale(1.2);
      }

      /*************OUR SERVICES ************************/
      #services {
        background: linear-gradient(180deg, #0b0b0b 0%, #1a1a1a 100%);
      }

      .service-list {
        list-style: none;
        padding-left: 0;
      }

      .service-list li {
        padding: 10px 20px;
        margin-bottom: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
      }

      /*************************EXPLORE MORE *************/
      #core-services {
        background: linear-gradient(180deg, #0b0b0b 0%, #1a1a1a 100%);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Arial, sans-serif;
      }

      .service-box {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: transform 0.3s ease;
      }

      .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
      }

      .service-box ul {
        padding-left: 1.2rem;
        margin: 0;
      }

      /*******Industries we serve *************/
      .comparison-section {
        background: radial-gradient(
          ellipse at center,
          #0f1113 0%,
          #070707 100%
        );
        padding: 80px 0;
        color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", sans-serif;
      }

      .industries-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 40px;
        color: #fff;
      }

      .industries-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
      }

      .industry-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 0 0 transparent;
      }

      .industry-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      }


/* price-section */
      .pricing-section {
            padding: 80px 15px;
            padding-top: 0 !important;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 80%, rgba(15, 15, 15, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(20, 20, 20, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(10, 10, 10, 0.5) 0%, transparent 50%),
                linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #111111 50%, #0a0a0a 75%, #000000 100%);
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(600px circle at 50% 200px, rgba(25, 25, 25, 0.06), transparent),
                radial-gradient(400px circle at 80% 300px, rgba(30, 30, 30, 0.05), transparent),
                radial-gradient(500px circle at 20% 500px, rgba(20, 20, 20, 0.06), transparent),
                radial-gradient(ellipse 800px 600px at 50% 0%, rgba(22, 22, 22, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 600px 400px at 100% 100%, rgba(28, 28, 28, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .pricing-section > * {
            position: relative;
            z-index: 2;
        }

        .pricing-section h2 {
            font-weight: 600;
            font-size: 3rem;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        }

        .pricing-section em {
            font-family: 'Georgia', serif;
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-secondary {
            color: rgba(255, 255, 255, 0.6) !important;
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .toggle-btn {
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: inline-flex;
            padding: 6px;
            margin-top: 20px;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .toggle-btn button {
            border: none;
            background: transparent;
            color: rgba(255, 255, 255, 0.8);
            padding: 10px 20px;
            font-size: 0.9rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .toggle-btn button.active {
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .toggle-btn button:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

        .pricing-card {
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
                radial-gradient(circle at 50% 0%, rgba(40, 40, 40, 0.08) 0%, transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 50px 35px;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.6),
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        }

        .pricing-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .pricing-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.7),
                0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .pricing-card:hover::after {
            opacity: 1;
        }

        .plan-title {
            font-size: 1.1rem;
            letter-spacing: 1px;
            margin-bottom: 15px;
            opacity: 0.8;
            font-weight: 500;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
        }

        .price {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
            line-height: 1.1;
        }

        .price small {
            font-size: 1rem;
            opacity: 0.7;
            font-weight: 400;
        }

        .btn-pricing {
            display: inline-block;
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%),
                radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            font-weight: 600;
            border-radius: 12px;
            padding: 14px 28px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        .btn-pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-pricing:hover {
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%);
            color: #000000;
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.4),
                0 4px 15px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .btn-pricing:hover::before {
            left: 100%;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .feature-list li {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            position: relative;
            padding-left: 25px;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.6);
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .pricing-section h2 {
                font-size: 2.2rem;
            }
            
            .pricing-card {
                padding: 40px 25px;
                margin-bottom: 30px;
            }
            
            .price {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 576px) {
            .pricing-section h2 {
                font-size: 1.8rem;
            }
            
            .pricing-section {
                padding: 60px 15px;
            }
        }
    /* .feature-list */

    .feature-list {
        text-align: left;
        margin-top: 25px;
    }

    .feature-list li {
        list-style: none;
        margin-bottom: 12px;
        opacity: 0.9;
    }

    .feature-list li::before {
        content: "✔";
        color: #00ff88;
        margin-right: 8px;
    }
      
    /****other services *****/
    .alphazet-services {
        padding: 80px 20px;
    }

    .alphazet-services-title {
        font-weight: 600;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .alphazet-services-title em {
        font-family: 'Georgia', serif;
        font-style: italic;
        color: #ccc;
    }

    .alphazet-services-text {
        font-size: 1rem;
        line-height: 1.7;
        color: #ccc;
    }

    .alphazet-service-item {
        margin-bottom: 25px;
    }

    .alphazet-service-item strong {
        display: block;
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 8px;
    }

    .alphazet-services-image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .alphazet-services-image {
        border: 4px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transform: rotate(3deg);
        overflow: hidden;
        box-shadow: 0 0 30px rgba(0,0,0,0.5);
        max-width: 300px;
        transition: transform 0.3s ease;
    }

    .alphazet-services-image:hover {
        transform: rotate(0deg) scale(1.02);
    }

    .alphazet-services-image img {
        width: 100%;
        display: block;
    }

    @media (max-width: 768px) {
        .alphazet-services {
            text-align: center;
        }
        .alphazet-services-image {
            transform: rotate(0deg);
            margin-top: 30px;
        }
    }

    /* contact */
 
    /****Footer *****/

.footer-cta-dark {
  background-color: #0e0e11;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.footer-cta-dark canvas#bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}

.footer-cta-dark .cta-subtitle {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.footer-cta-dark .cta-subtitle .line {
  height: 1px;
  width: 40px;
  background-color: #444;
}

.footer-cta-dark .cta-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.footer-cta-dark .cta-title em {
  font-style: italic;
  font-weight: 300;
  color: #ccc;
}

.footer-cta-dark .cta-desc {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer-cta-dark .cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #444;
  background: radial-gradient(ellipse at center, #ffffff22 0%, transparent 80%);
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.footer-cta-dark .cta-btn:hover {
  background-color: #1c1c1c;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.footer-cta-dark .social-icons a {
  font-size: 1.3rem;
  color: #888;
  margin: 0 10px;
  transition: 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.footer-cta-dark .social-icons a:hover {
  color: #fff;
}

.footer-cta-dark .cta-email {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}


 /*****CONTACT PAGE *****************/
 
    .custom-contact-container {
      padding: 100px 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .contact-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #fff;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 600;
    }

    .section-title p {
      color: #ccc;
      margin-top: 5px;
    }

    .custom-box {
      background: rgba(18, 19, 22, 0.9);
      border: 1px solid #1f2023;
      border-radius: 12px;
      padding: 30px;
      transition: all 0.3s ease-in-out;
      margin-bottom: 30px;
    }

    .custom-box h5 {
      margin-top: 15px;
      font-weight: 600;
    }

    .custom-box p {
      color: #e0e0e0;
    }

    .custom-box .email-border {
      display: inline-block;
      margin-top: 10px;
      padding-top: 10px;
      
      color: #fff;
      text-decoration: none;
    }

    .custom-box .book-call {
      display: inline-block;
      margin-top: 10px;
      padding-top: 10px;
      /* border-top: 1px solid #666; */
      color: #fff;
      text-decoration: none;
    }

    .custom-box:hover {
      border-color: #33363a;
    }

    .custom-form-box {
      background: linear-gradient(to bottom, #121316, #0e0f11);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid #1f2023;
    }

    .form-control,
    .form-control:focus,
    textarea.form-control {
      background-color: #1a1b1f;
      border: 1px solid #33363a;
      color: #ffffff;
      box-shadow: none;
    }

    .form-control::placeholder,
    textarea.form-control::placeholder {
      color: #cccccc;
      opacity: 1;
    }

    .custom-submit-btn {
      background: transparent;
      border: 1px solid #33363a;
      color: white;
      width: 100%;
      padding: 10px 0;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
    }

    .custom-submit-btn::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: #ffffff;
      transition: all 0.4s ease-in-out;
      transform: translateX(-50%);
    }

    .custom-submit-btn:hover::after {
      width: 100%;
    }

    .custom-submit-btn:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .icon-box {
      width: 40px;
      height: 40px;
      background: #1d1e22;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 18px;
    }

    @media (max-width: 767px) {
      .custom-contact-container {
        padding: 50px 15px;
      }

      .section-title h2 {
        font-size: 24px;
      }
    }


        .faq-section {
            padding: 80px 0;
            position: relative;
            z-index: 1;
            background: 
                radial-gradient(circle at 20% 80%, rgba(15, 15, 15, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(20, 20, 20, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(10, 10, 10, 0.5) 0%, transparent 50%),
                linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #111111 50%, #0a0a0a 75%, #000000 100%);
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(600px circle at 50% 200px, rgba(25, 25, 25, 0.06), transparent),
                radial-gradient(400px circle at 80% 300px, rgba(30, 30, 30, 0.05), transparent),
                radial-gradient(500px circle at 20% 500px, rgba(20, 20, 20, 0.06), transparent),
                radial-gradient(ellipse 800px 600px at 50% 0%, rgba(22, 22, 22, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 600px 400px at 100% 100%, rgba(28, 28, 28, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .faq-title {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .faq-title .highlight {
            font-style: italic;
            color: #ffffff;
            opacity: 0.8;
        }

        .faq-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
        }

        .faq-content {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        .faq-left {
            flex: 0 0 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
                radial-gradient(circle at 50% 0%, rgba(40, 40, 40, 0.08) 0%, transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px 30px;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .faq-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        }

        .question-icon {
            width: 70px;
            height: 70px;
            background: 
                linear-gradient(145deg, rgba(60, 60, 60, 0.15) 0%, rgba(40, 40, 40, 0.15) 100%),
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border: 1px solid rgba(80, 80, 80, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 26px;
            color: rgba(255, 255, 255, 0.9);
            box-shadow: 
                0 4px 20px rgba(40, 40, 40, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .question-icon:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 6px 25px rgba(60, 60, 60, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .question-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .question-subtitle {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .ask-question-btn {
            background: 
                linear-gradient(145deg, rgba(60, 60, 60, 0.15) 0%, rgba(40, 40, 40, 0.15) 100%),
                radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
            border: 1px solid rgba(80, 80, 80, 0.3);
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 
                0 4px 15px rgba(40, 40, 40, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
        }

        .ask-question-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
            transition: left 0.5s ease;
        }

        .ask-question-btn:hover {
            background: 
                linear-gradient(145deg, rgba(80, 80, 80, 0.25) 0%, rgba(60, 60, 60, 0.25) 100%),
                radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-color: rgba(100, 100, 100, 0.4);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 
                0 6px 20px rgba(60, 60, 60, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .ask-question-btn:hover::before {
            left: 100%;
        }

        .faq-right {
            flex: 1;
        }

        .accordion {
            --bs-accordion-bg: transparent;
            --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
            --bs-accordion-border-radius: 0;
        }

        .accordion-item {
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%),
                radial-gradient(circle at 0% 0%, rgba(40, 40, 40, 0.06) 0%, transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px !important;
            margin-bottom: 16px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: rgba(80, 80, 80, 0.15);
            box-shadow: 
                0 6px 25px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(40, 40, 40, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
            transform: translateY(-1px);
        }

        .accordion-header {
            border: none;
        }

        .accordion-button {
            background: transparent;
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 500;
            padding: 20px 24px;
            border: none;
            box-shadow: none;
            position: relative;
        }

        .accordion-button:not(.collapsed) {
            background: transparent;
            color: #ffffff;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        .accordion-body {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            padding: 0 24px 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .accordion-collapse {
            border: none;
        }

        @media (max-width: 768px) {
            .faq-content {
                flex-direction: column;
                gap: 30px;
            }

            .faq-left {
                flex: none;
                width: 100%;
            }

            .faq-title {
                font-size: 2.5rem;
            }

            .faq-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .faq-title {
                font-size: 2rem;
            }

            .accordion-button {
                font-size: 1rem;
                padding: 16px 20px;
            }

            .accordion-body {
                padding: 0 20px 16px;
            }
        }