:root {
    --primary-color: #00d4ff;
    --secondary-color: #a855f7;
    --dark-bg: #0a0e1a;
    --card-bg: #141820;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #0a0e1a 0%, #141820 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

a {

    text-decoration: none;
}

.text-primary {

    color: rgb(13 202 240) !important;
}

@media (max-width: 992px) {
    .new_logo {
        width: 150px;
    }
}

.new_logo {
    width: 200px;
}

.stylish {
    font-weight: 300;
    font-size: 20px;
    color: #656E76;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(20, 24, 32, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

/* Navigation */
.navbar {
    background: rgba(20, 24, 32, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
}

.blob-2 {
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.badge-custom {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.text-muted {
    color: rgb(241 248 255 / 75%) !important;
}

.feature-pill {
    background: rgba(20, 24, 32, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Feature Cards */
.feature-card {
    padding: 2.5rem;
    height: 100%;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-box-cyan {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.icon-box-purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.icon-box-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.glass-card:hover .icon-box {
    transform: rotate(360deg);
}

/* Accordion Custom */
.accordion-custom {
    background: transparent;
}

.accordion-item {
    background: rgba(20, 24, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 212, 255, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%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");
}

.accordion-body {
    color: var(--text-muted);
    padding: 1.5rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
    pointer-events: none;
}

.cta-card {
    position: relative;
    padding: 2rem 2rem;
    text-align: center;
}

.text-info {
    color: #AFB3BC !important;
}

html {
    scroll-behavior: smooth;
}

.phone-link {
    color: #ccd4d3;
    /* initial text color */
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.phone-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.phone-link:hover {
    color: #fff;
    /* hover पर text का रंग हल्का change */
}

.phone-link:hover::after {
    width: 100%;
    /* hover पर नीचे line animate होकर दिखे */
}

.advantage-box {
    border: 1px solid rgba(0, 200, 255, 0.35);
    border-radius: 15px;
    backdrop-filter: blur(40px);
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem !important;
    }

    .feature-pill {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.advantage-icon {
  font-size: 32px;
  color: #dce6f4;
  margin-bottom: 15px;
}
.advantage-icon img {
   width: 52px;

}