
        /* ===================================
           CSS VARIABLES (:root)
        =================================== */
        :root {
            /* Font Families */
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;

            /* Colors */
            --bg-start: #0b0e18;
            --bg-end: #08111f;
            --text-main: #c9d1d9;
            --heading: #f2f2f7;
            --primary: #22d3ee;
            --accent: #00ffff;
            --accent-dark: #0088ff;
            --glass: rgba(255, 255, 255, 0.1);
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(0, 255, 255, 0.3);
            --stat-bg: rgba(255, 255, 255, 0.05);
            --footer-bg: #161b22;
            --ellipse-start: #145c8f;
            --ellipse-end: #061a29;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-image: linear-gradient(to bottom, var(--bg-start), var(--bg-end));
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
        }

        /* All headings & buttons use Montserrat */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .section-title,
        .stat-number,
        .btn {
            font-family: var(--font-heading);
        }
/* navbar */
.custom-navbar {
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 0.7rem 1.2rem;
  margin: 18px auto;
  max-width: 96%;
  border: 1px solid rgba(0, 255, 255, 0.15);
}

.navbar-brand img {
  height: 48px;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 12px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent) !important;
}

/* Dropdown Main */
.main-dropdown {
  background: rgba(15, 20, 30, 0.95);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  min-width: 230px;
}

/* Dropdown Items */
.dropdown-item {
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #000;
}

/* Submenu */
/* .dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .sub-dropdown {
  top: 0;
  left: 100%;
  margin-left: 8px;
  background: rgba(15, 20, 30, 0.97);
  border-radius: 14px;
  padding: 10px;
  min-width: 220px;
  display: none;
} */


/* Submenu */
.dropdown-submenu {
  position: relative;
}

.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 8px;
  background: rgba(15, 20, 30, 0.97);
  border-radius: 14px;
  padding: 10px;
  min-width: 220px;
  display: none;
}

/* Show when active */
.sub-dropdown.show {
  display: block;
}

/* Mobile layout */
@media (max-width: 991px) {
  .sub-dropdown {
    position: static;
    margin-left: 0;
    margin-top: 6px;
  }
}


/* Show on hover (Desktop) */
/* @media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
  }

  .dropdown-submenu:hover > .sub-dropdown {
    display: block;
  }
} */

/* Mobile fix */
/* @media (max-width: 991px) {
  .sub-dropdown {
    position: static;
    margin-left: 0;
  }
} */



/* Login Button */
.btn-started {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 26px;
  transition: transform 0.25s ease;
}

.btn-started:hover {
  transform: translateY(-2px);
}



        /* Hero */
        .hero {
            padding: 140px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 36px;
            font-weight: 600;
            color: var(--heading);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 16px;
            max-width: 900px;
            line-height: 1.6;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .hero-buttons {
            gap: 20px;
            padding: 10px 25px;
            border-radius: 48px;
            backdrop-filter: blur(10px);
            background-color: var(--glass);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            flex-wrap: wrap;
            max-width: fit-content;
        }

        .hero-buttons .btn {
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            white-space: nowrap;
        }

        .btn-started {
    background-color: var(--primary);
    color: #fff;
    border: none;
    box-shadow: inset -3.9px -3.9px 3.1px rgba(41, 41, 58, 0.23);
    border-radius: 100px;

    /* Smooth transition */
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease;
}

.btn-started:hover {
    background-color: #08111f;
    box-shadow: inset -2px -2px 6px rgba(41, 41, 58, 0.35);
    transform: translateY(-2px);
}


        .btn-explore {
            color: #fff;
            background: transparent;
            border: none;
            
        }

        .btn-explore:hover {
            border: 2px solid #fff;
            
        }

        .hero-img {
            border-radius: 20px;
            box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
            max-width:80%;
            height: auto;
            margin: 40px 0;
        }

        .Ellipse {
            width: 80%;
            max-width: 662px;
            height: 5px;
            opacity: 0.1%;
            background-image: radial-gradient(circle at 0% 50%, var(--ellipse-start), var(--ellipse-end));
            margin: 60px auto 0;
            border-radius: 100%;
             box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
        }

        /* Stats */
        .stats-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 60px;
        }

        .stat-box {
            text-align: center;
            max-width: 260px;
            padding: 20px;
            border-radius: 11.1px;
            background-color: var(--stat-bg);
        }


        .stat-number {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.8;
            margin-top: 8px;
        }

        /* Sections */

        .title-badge{
            max-width: 200px;
            border-radius: 48px;
           -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.08);
            background-color: rgba(255, 255, 255, 0.1);
        }
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .section-subtitle {
            text-align: center;
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto 50px;
            opacity: 0.9;
            color:var(--text-muted);
        }

        /* Service & Why Cards */
        .service-card,
        .why-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.4s;
        }

        .service-card:hover,
        .why-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
            background: rgba(0, 255, 255, 0.05);
        }

        .service-icon img {
            width: auto;
            height: auto;
            object-fit: contain;
            margin-bottom: 20px;
        }


       /* OUR SOLUTIONS - PERFECTED VERSION */
        .solutions-diagram {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            /* padding: 120px 0; */
            padding: 40px 0;
            height: 700px; /* Adjust for larger center */
        }

        .solutions-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(0,255,255,0.25), transparent 70%);
            border: 0.1px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }

        .solutions-center img {
            width: 100%;
            height: auto;
        }

        .solution-branch {
            position: absolute;
            width: 240px;
            height: 110px;
            padding: 18px 35px;
            border-radius: 12px;
            -webkit-backdrop-filter: blur(10.8px);
            backdrop-filter: blur(10.8px);
            box-shadow: 0 27px 27px 0 rgba(0, 0, 0, 0.25);
            border: solid 1.1px rgba(255, 255, 255, 0.1);
            background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.13), rgba(0, 0, 0, 0));
            text-align: center;
            font-weight: 600;
            color: #fff;
            font-size: 1.1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .solution-branch span {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 8px;
            font-weight: 400;
        }

        .branch-top {
            top: 90px; /* Adjusted spacing for larger center */
            left: 50%;
            transform: translateX(-50%);
        }

        .branch-bottom {
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
        }

        .branch-left {
            left: 50px;
            top: 50%;
            transform: translateY(-50%);
        }

        .branch-right {
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .solutions-diagram { height: 800px; }
            .branch-top { top: 30px; }
            .branch-bottom { bottom: 30px; }
            .branch-left, .branch-right { width: 200px; height: 100px; padding: 15px; font-size: 1rem; }
        }

        @media (max-width: 768px) {
            .solutions-diagram {
                height: auto;
                padding: 80px 0;
            }

            .solutions-center {
                position: static;
                transform: none;
                margin: 0 auto 60px;
                width: 200px;
                height: 200px;
            }

            .solution-branch {
                position: static;
                transform: none;
                margin: 20px auto;
                width: 85%;
                max-width: 320px;
                height: auto;
                padding: 25px;
            }
             
        }
        /* .solutions-center {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            border: 3px solid var(--accent);
        }

        .solutions-center img {
            width: 100px;
        }

        .solution-branch {
            text-align: center;
            padding: 15px;
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid var(--accent);
            border-radius: 15px;
            margin: 15px 0;
            font-size: 0.95rem;
        } */

        /* Why Choose */
       .why-choose-section {
        padding: 120px 0;
    }

    .why-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        /* gap: 40px; */
        gap: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .why-card {
        /* width: 260px;
        height: 320px; */
        width:320px;
        height: 250px;
        /* padding: 40px 20px; */
        border-radius: 24px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
        border: 1.5px solid rgba(0, 255, 255, 0.4);
        backdrop-filter: blur(12px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .why-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 40px 80px rgba(0, 255, 255, 0.25);
        border-color: var(--accent);
    }

    .why-icon-wrapper {
        /* width: 120px;
        height: 120px; */
        width: 100px;
        height: 100px;
        background: rgba(0, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        border: 2px solid var(--accent);
        padding: 15px;
    }

    .why-img-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .why-card h5 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

    .why-card p {
        font-size: 1.05rem;
        color: #c9d1d9;
        opacity: 0.9;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .why-grid { gap: 30px; }
        .why-card { width: 240px; height: 300px; }
    }

    @media (max-width: 992px) {
        .why-grid { gap: 50px; }
        .why-card { width: 220px; height: 280px; padding: 30px 15px; }
        .why-icon-wrapper { width: 100px; height: 100px; }
    }

    @media (max-width: 768px) {
        .why-grid {
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        .why-card {
            width: 85%;
            max-width: 350px;
            height: auto;
            padding: 50px 30px;
        }
        .why-icon-wrapper {
            width: 130px;
            height: 130px;
        }
    }

        /* Footer */
        footer {
            background: var(--footer-bg);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
        }

        .footer-links a {
            color: var(--text-main);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .hero {
                padding: 120px 0 60px;
            }

            .hero h1 {
                /* font-size: 2.5rem; */
                font-size: 30px;
            }

            .hero p {
                /* font-size: 1rem; */
                font-size:12px;
            }

            .hero-buttons {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            .stats-row {
                gap: 20px;
            }

            .stat-box {
                min-width: 150px;
                padding: 15px;
            }

            .stat-number {
                font-size: 14px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                margin: 10px auto;
                border-radius: 30px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .hero-buttons {
                padding: 15px;
            }

            .hero-buttons .btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }

            .Ellipse {
                height: 8px;
            }

            .solution-branch {
                font-size: 0.9rem;
                padding: 12px;
            }

            .why-icon {
                font-size: 2rem;
            }
        }

/* About */

         /* .about-hero {
            background-image: url('images/about-bg.png');
            background-position: center;
            background-size: cover;
        } */

         /* About page */


        /* Scroll fade-in animation */
        .fade-in {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-hero {
            background-image: url('images/about-bg.png');
            background-position: center;
            background-size: conttain;
        }



        .about-hero {
            padding: 100px 5%;
            text-align: center;
        }

        .about-hero p {
            max-width: 900px;
            margin: 0 auto 4rem;
            color: var(--text-muted);
            font-size: 16px;
        }

        .about-hero-icon {
            width: 260px;
            filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8));
        }

       

        @keyframes pulseGlow {
            0% {
                filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
            }

            100% {
                filter: drop-shadow(0 0 40px rgba(0, 212, 255, 1));
            }
        }

        @keyframes pulseGlowRed {
            0% {
                filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.6));
            }

            100% {
                filter: drop-shadow(0 0 40px rgba(255, 51, 102, 1));
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Apply animations */
    

        .icon {
            animation: pulseGlow 4s infinite alternate;
        }

        .trusted .icon {
            animation: pulseGlowRed 4s infinite alternate;
        }

        .mv-icon,
        .why-img img {
            animation: float 6s infinite ease-in-out;
        }

        .about-section,
        .who-we-are,
        .why-choose {
            /* padding: 140px 5%; */
            padding: 90px 3%;
        }

        .about-text h2 {
            font-size: 36px;
            font-weight: 500;
        }



        .who-we-are h2 {
            font-size: 36px;
            margin-bottom: 1rem;
        }

        .who-we-are>p {
            max-width: 900px;
            margin: 0 auto 6rem;
            color: var(--text-muted);
            font-size: 16px;
        }

        /* .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 3.5rem;
            max-width: 1400px;
            margin: 0 auto;
        } */

        .about-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
            color: var(--text-muted);
        }

        .about-card:hover {
            transform: translateY(-12px);
        }

        .about-card h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 22px;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .mv-card {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        /* Why Choose - Glassmorphic Cards */
        .why-choose h2 {
            font-size: 36px;
            margin-bottom: 2rem;
        }

        .why-subtitle {
            /* text-align: t; */
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 4rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
            /* grid-template-columns: repeat(auto-fit, minmax(380px, 2fr)); */
            gap: 1rem;
            max-width: 1400px;
            margin: 0 auto 8rem;
        }

        .cardContainer {
            perspective: 1200px;
            position: relative;
            display: flex;
            justify-content: center;
            text-align: start;
        }

        .card {
            position: relative;
            /* width: 290px;
            height: 340px; */
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: space-between;
            /* padding: 35px 25px; */
            padding:10px 15px;
            /* padding: auto; */
            border-radius: 24px;
            backdrop-filter: blur(32px);
            background: var(--glass-bg);
            border: solid 1.1px rgba(255, 255, 255, 0.1);
            /* border: 1px solid var(--glass-border); */
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-20px) rotateX(8deg) rotateY(8deg);
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
            border-color: rgba(0, 212, 255, 0.6);
        }

        .title {
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0.4px;
            color: white;
            text-align: left;
            margin-bottom: 1px;
        }

        .subtitle {
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 0.6px;
            color: var(--text-main);
            text-align: left;
        }

        .icon {
            width: 140px;
            height: 140px;
            object-fit: contain;
        }

        /* Glowing orb */
        .cardContainer::before {
            content: "";
            position: absolute;
            width: 30px;
            height: 30px;
            background: rgba(0, 212, 255, 0.45);
            border-radius: 50%;
            left: 10%;
            top: 15%;
            transform: translate(-50%, -50%);
            transition: all 1.5s ease;
            z-index: -1;
        }

        .cardContainer:hover::before {
            transform: translate(-30px, 30px) scale(1.6);
            background: rgba(0, 212, 255, 0.8);
        }

        /* Trusted card variant */
        .cardContainer.trusted .card {
            background: var(--trusted-gradient);
            border: 1px solid rgba(255, 51, 102, 0.35);
        }

        .cardContainer.trusted::before {
            background: rgba(255, 51, 102, 0.55);
        }

        .cardContainer.trusted:hover::before {
            background: rgba(255, 51, 102, 0.9);
        }

        .why-img {
            text-align: center;
        }

        .why-img img {
            /* width: 380px; */
            filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7));
        }


        /* Responsive */
        @media (max-width: 1024px) {
            .about-section {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-img {
                order: -1;
                margin-bottom: 3rem;
            }

            .mission-vision {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.8rem;
            }

            .nav-container {
                flex-direction: column;
                gap: 1.8rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .cards-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .mv-card {
                flex-direction: column;
                text-align: center;
            }
        }


/* services page */

      .services-hero{
        background-image: url('images/services-hero-bg.png');
        background-position: center;
        background-size: cover;
      }

      /* API infrastructure */
      .API-infra-hero{
        background-image: url('images/api-infra-bg.png');
        background-position: center;
        background-size: cover;
      }

      .whatis-API{
        background-image: url('images/about-bg.png');
        background-position: center;
        background-size: cover;
      }

      /* API Solutions */
      .API-solutions-hero{
        background-image: url('images/api-solutions-bg.png');
        background-position: center;
        background-size: cover;
      }

      .api-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.floating-card {
  width: 160px;
  height: 190px;
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  text-align: center;
  padding: 25px;
  box-shadow: 0 0 30px rgba(13,202,240,.25);
}

.floating-card.active {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(13,202,240,.5);
}

.api-card {
  background: rgba(255,255,255,.04);
  padding: 25px;
  border-radius: 18px;
  height: 100%;
  transition: .3s;
  border-radius: 12.7px;
  -webkit-backdrop-filter: blur(11.5px);
  backdrop-filter: blur(11.5px);
  box-shadow: 7px 12px 5.5px 0 rgba(34, 211, 238, 0.25);
  border: solid 1.1px rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.13) 0%, rgba(0, 0, 0, 0) 100%);

}

.api-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(13,202,240,.4);
}

.api-card i {
  font-size: 25px;
  color: var(--accent);
}

.api-card ul {
  padding-left: 18px;
}

.ads{
    background-image: url('images/ads-bg.png');
    background-position: center;
    background-size: cover;
}

/* Recharge API */
.what-recharge{
    background-image: url('images/what-recharge.png');
    background-position: center;
    background-size: cover;
}

.glass{
  background-image: url('images/glass.png');
  background-position: center;
  background-size: cover;


}

/* AEPS API */
 .AEPS-card {
        /* width: 260px;
        height: 320px; */
        width:250px;
        height: 250px;
        /* padding: 40px 20px; */
        border-radius: 24px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
        border: 1.5px solid rgba(0, 255, 255, 0.4);
        backdrop-filter: blur(12px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .AEPS-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 40px 80px rgba(0, 255, 255, 0.25);
        border-color: var(--accent);
    }

    /* DMT-api  */
    .DMT-hero{
        background-image: url('images/DMT-api-bg.png');
        background-position: center;
        background-size: cover;
    }

    .dmt-features{
        background-image: url('images/DMT_bg.png');
        background-position: center;
        background-size: cover;
    }

    /* Verification api page */
    .verification-hero{
        background-image: url('images/verification-hero-bg.png');
        background-size: cover;
        background-position: center;
    }

    /* onboarding API */
    .Onboarding-hero{
        background-image: url('images/onboarding-hero-bg.png');
        background-position: center;
        background-size: cover;
    }

    /* Api documentation */
    .Api-documentation{
        background-image: url('images/api-hero-bg.png');
        background-position: center;
        background-size: cover;
    }

    .integration-section {
    /* background: radial-gradient(circle at top, #0c1220, #05070a); */
    background-image: url('images/integration-bg.png');
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.integration-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #cfd8ff;
    padding: 8px 16px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
}

.integration-card {
    /* background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08); */
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    color: #fff;
    transition: 0.4s ease;
    position: relative;
    height: 100%;
}

.integration-card:hover {
    transform: translateY(-10px);
    border-color: #4f8cff;
    box-shadow: 0 0 40px rgba(79, 140, 255, 0.3);
}



.integration-card.active {
    border-color: #4f8cff;
    box-shadow: 0 0 50px rgba(79, 140, 255, 0.45);
}

.icon-wrap {
    width: 100px;
    height: 100px;
    margin: auto;
    /* background: linear-gradient(135deg, #4f8cff, #6cffc2); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.integration-card p {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Connector Line */
.integration-line {
    position: absolute;
    z-index:-1;
    top: 40%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4f8cff, transparent);
    z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .integration-line {
        display: none;
    }
}


/* Server and Hosting */
.server-hero{
    background-image: url('images/server-hosting-hero.png');
    background-position: center;
    background-size: cover;
}


/* Contact  */
 .btn-xtract {
            background: linear-gradient(90deg, var(--primary), #6366f1);
            border: none;
            border-radius: 50px;
            padding: 10px 24px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-xtract:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
        }

        .contact-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #84ccfc, #346fed, #273eeb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-card {
            background: rgba(26, 26, 46, 0.7);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.25);
        }

        .input-group {
            position: relative;
        }

        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 12px;
            color: white;
            transition: all 0.3s ease;
        }

        .form-control::placeholder{
            color:#9d9d9d;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(168, 85, 247, 0.25);
        }

        .map-container {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(168, 85, 247, 0.2);
            background: rgba(26, 26, 46, 0.6);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(168, 85, 247, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
            }
        }

        /* Cloud Server Page */
        .cloud-server-hero{
            background-image: url('images/Cloud-hero-bg.png');
            background-position: center;
            background-size: cover;
        }
        .cloud-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.cloud-card .cloud-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

.cloud-card .cloud-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cloud-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cloud-card h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.cloud-card h3 a span {
  display: block;
}

 .cloud-card h3 a:hover {
  color: var(--accent-color);
}

 .cloud-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.cloud-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.cloud-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.cloud-card .card-action:hover i {
  transform: rotate(45deg);
}

.cloud-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cloud-card:hover {
  border-color: transparent;
}

.cloud-card:hover::before {
  opacity: 1;
  visibility: visible;
  background-color: var(--surface-color);
}

.cloud-card:hover h3 a {
  color: var(--accent-color);
}

.cloud-card:hover h3 a:hover {
  color: var(--accent-color);
}

.cloud-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.cloud-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cloud-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
 .cloud-card {
    padding: 150px 25px 25px;
  }

  .cloud-card h3 {
    font-size: 24px;
  }

 .cloud-card .cloud-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}

/* card */
.feature-card {
    position: relative;
    max-width: 340px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.01)
    );
    color: #ffffff;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 0.4s ease;
    clip-path: polygon(
        0 0,
        92% 0,
        100% 12%,
        100% 100%,
        0 100%
    );
}

/* 🔥 Animated glowing border */
.feature-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(
        120deg,
        #45eaff,
        #3b82f6,
        #7c3aed,
        #45eaff
    );
    background-size: 300% 300%;
    animation: borderGlow 6s linear infinite;
    z-index: -1;
}

/* Inner dark layer */
.feature-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    background: #0b0f1a;
    z-index: -1;
}

/* Hover lift */
.feature-card:hover {
    transform: translateY(-10px);
}

/* Border animation */
@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Dedicated hero */
.dedicated-hero{
    background-image: url('images/dedicated-server.png');
    background-position: center;
    background-size:cover;
}

/* security SSL */
.security-ssl-hero{
    background-image: url('images/security-SSL-hero.png');
     background-position: center;
    background-size:cover;
}
/* enterprise solutions */
.enterprise-hero{
    background-image: url('images/Enterprise-hero-bg.png');
    background-position: center;
    background-size:cover;
    
}

/* developer page */
 /* ---------- Cards ---------- */

 .developer-hero{
    background-image: url('images/developer-hero-bg.png');
    background-position: center;
    background-size:cover;
     padding: 140px 20px 80px;
  text-align: center;
 }

 .developer-hero h1 {
  font-size: 2.8rem;
  color: var(--heading);
  margin-bottom: 20px;
}

.developer-hero p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}


 .badge-soft{
  background:rgba(124,124,255,.15);
  color:var(--primary);
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
}
.glass{
  background:var(--glass);
  border:1px solid var(--border);
  backdrop-filter: blur(16px);
}
        .dev-card {
            padding: 28px;
            border-radius: 24px;
            height: 100%;
            position: relative;
        }

        .dev-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            background: linear-gradient(120deg, transparent, var(--primary), transparent);
            opacity: 0;
            transition: .4s;
        }

        .dev-card:hover::before {
            opacity: .4;
        }

        .dev-card i {
            font-size: 28px;
            color: var(--cyan);
        }

        /* ---------- Flow ---------- */
        .step {
            text-align: center;
        }

        .step span {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-dark), var(--ellipse-start));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
            font-weight: 700;
            color: #000;
        }

        /* ---------- Code Box ---------- */
        .code-box {
            background: #02040c;
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 24px;
            font-family: monospace;
            font-size: 14px;
            color: #9ff;
        }

        /* ---------- Integration Icons ---------- */
        /* ---------- Integration Icons ---------- */
.integrations img{
  width:54px;
  opacity:.8;
  transition:.3s;
}
.integrations img:hover{
  opacity:1;
  transform:scale(1.15);
}

/* Privacy policy*/
.page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1563206767-5eaa744a499e') center/cover;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }

        .privacy-section-title {
            color: var(--primary);
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
            font-size: 28px;
        }

        .privacy-section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        .content-card {
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
        }

        /* terms and condition */
          .terms-section-title {
            color: var(--primary);
            font-size: 28px;
            margin-bottom: 2rem;
            position: relative;
        }

        .terms-section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        .terms-card {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
        }


    
 