/* CSS Variables */
        :root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary-color: #0f172a;
            --accent-color: #3b82f6;
            --light-bg: #f8fafc;
            --white: #ffffff;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        } 
     


        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
      /* Bootstrap container ko override karo */
.hero .container {
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-left: 20px; /* thoda gap */
}

/* sirf text box */
.hero-text {
    margin-left: 0 !important;
}
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease forwards;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            animation: slideUp 0.8s ease 0.2s forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .header.scrolled {
            padding: 10px 0;
            box-shadow: var(--shadow-lg);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            animation: fadeInLeft 0.8s ease;
        }

        @keyframes fadeInLeft {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .logo span {
            color: #ffae00;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            font-weight: 500;
            color: var(--secondary-color);
            transition: color 0.3s ease;
            position: relative;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        .nav-menu li:nth-child(1) .nav-link { animation-delay: 0.1s; }
        .nav-menu li:nth-child(2) .nav-link { animation-delay: 0.2s; }
        .nav-menu li:nth-child(3) .nav-link { animation-delay: 0.3s; }
        .nav-menu li:nth-child(4) .nav-link { animation-delay: 0.4s; }
        .nav-menu li:nth-child(5) .nav-link { animation-delay: 0.5s; }
        .nav-menu li:nth-child(6) .nav-link { animation-delay: 0.6s; }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 5px 0;
            transition: all 0.3s ease;
            animation: hamburgerLine 0.5s ease;
        }

        
        @keyframes hamburgerLine {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        /* Hero Section */
        .hero-text{
                background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 45px;
    max-width: 600px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);

        }
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a5f 50%, #0ea5e9 100%);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("assets/united.png") no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

        

        /* Floating shapes */
       

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 1s ease 0.3s forwards;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 1s ease 0.5s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 1s ease 0.7s forwards;
        }

        .hero-buttons .btn {
            opacity: 0;
            transform: translateY(20px);
        }

        .hero-buttons .btn:nth-child(1) {
            animation: fadeInUp 0.5s ease 0.9s forwards;
        }

        .hero-buttons .btn:nth-child(2) {
            animation: fadeInUp 0.5s ease 1.1s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(50px);
            animation: fadeInRight 1s ease 0.5s forwards;
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

       

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* About Section */
        .about {
            background-color: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-color);
            border-radius: 15px;
            z-index: -1;
            animation: borderMove 3s ease-in-out infinite;
        }

        @keyframes borderMove {
            0%, 100% { top: -20px; left: -20px; }
            50% { top: -10px; left: -10px; }
        }

        

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

        .about-feature:nth-child(1) { animation-delay: 0.5s; }
        .about-feature:nth-child(2) { animation-delay: 0.6s; }
        .about-feature:nth-child(3) { animation-delay: 0.7s; }
        .about-feature:nth-child(4) { animation-delay: 0.8s; }

        .about-feature i {
            color: var(--primary-color);
            font-size: 1.2rem;
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
       /* Scoped CSS - Sirf 'crm-section' ke liye */
.crm-section {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.crm-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.crm-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    width: 400px; /* Card size chota rakha hai */
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.crm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Choti Circle Photo */
.crm-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.crm-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crm-info h4 {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

.crm-info p {
    margin: 0 0 10px;
    font-size: 13px;
    color: #777;
}

/* Education Tags */
.edu-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.btech { background: #e3f2fd; color: #1976d2; }
.bba { background: #f1f8e9; color: #689f38; }
.mba { background: #fff3e0; color: #f57c00; }

/* Responsive adjustments */
@media (max-width: 600px) {
    .crm-container { flex-direction: column; align-items: center; }
}

        /* Services Section */
        .mobile-app{
            text-decoration: brown;
        }
        .services {
            background-color: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(50px);
        }

        .service-card:nth-child(1) { animation: cardSlideUp 0.6s ease 0.1s forwards; }
        .service-card:nth-child(2) { animation: cardSlideUp 0.6s ease 0.2s forwards; }
        .service-card:nth-child(3) { animation: cardSlideUp 0.6s ease 0.3s forwards; }
        .service-card:nth-child(4) { animation: cardSlideUp 0.6s ease 0.4s forwards; }
        .service-card:nth-child(5) { animation: cardSlideUp 0.6s ease 0.5s forwards; }

        @keyframes cardSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-card:hover h3 {
            color: var(--primary-color);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Portfolio Section */
        .portfolio {
            background-color: var(--white);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.9);
        }

        .portfolio-item:nth-child(1) { animation: zoomIn 0.6s ease 0.1s forwards; }
        .portfolio-item:nth-child(2) { animation: zoomIn 0.6s ease 0.2s forwards; }
        .portfolio-item:nth-child(3) { animation: zoomIn 0.6s ease 0.3s forwards; }
        .portfolio-item:nth-child(4) { animation: zoomIn 0.6s ease 0.4s forwards; }

        @keyframes zoomIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .portfolio-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .portfolio-item:hover .portfolio-image {
            transform: scale(1.1);
        }

        .portfolio-image i {
            font-size: 4rem;
            color: var(--white);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .portfolio-item:hover .portfolio-image i {
            transform: scale(1.2);
            opacity: 1;
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .portfolio-overlay h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .portfolio-overlay p {
            color: #cbd5e1;
            font-size: 0.9rem;
        }

        /* Team Section */
        .team {
            background-color: var(--light-bg);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .team-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .team-card:nth-child(1) { animation: cardSlideUp 0.6s ease 0.1s forwards; }
        .team-card:nth-child(2) { animation: cardSlideUp 0.6s ease 0.2s forwards; }

        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .team-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover .team-image::after {
            opacity: 1;
        }

        .team-info {
            padding: 30px;
        }

        .team-info h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .team-card:hover .team-info h3 {
            color: var(--primary-color);
        }

        .team-info .role {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .team-info p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Pricing Section */
        /* Popup ka background (Dhundhla karne ke liye) */

       
.popup-overlay {
    display: none; /* Pehle se hide rahega */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark transparent background */
    z-index: 9999;
    backdrop-filter: blur(5px); /* Background blur effect */
}
/* --- Button Group Layout (Buttons ko upar-niche karne ke liye) --- */
.button-group {
    display: flex;
    flex-direction: column; /* Buttons ko ek ke niche ek karne ke liye */
    align-items: flex-start; /* Left side se align karne ke liye */
    gap: 15px;               /* Buttons ke beech ka gap */
    margin-top: 25px;
}

/* Pehle do buttons (Get Started & Contact Us) ko side-by-side rakhne ke liye ek div */
.top-btns {
    display: flex;
    gap: 15px;
}

/* --- .btnb (Contact for Client) Button --- */


.btnb {
    display: inline-block;
    padding: 12px 30px;       /* Width thodi chhota karne ke liye padding kam ki */
    background-color: #ff0000; /* Pure Red */
    color: #ffffff !important;
    font-size: 20px;          /* Text size normal rakha */
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;       /* Ch चौकोर rounded corners */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    
    /* Animation: Pulse Effect */
    animation: btnbPulse 2s infinite; 
    margin-top: 5px;          /* Upar ke buttons se thoda aur gap */
    display: block;    /* Isse button puri line lega aur niche aa jayega */
    margin-top: 20px;  /* Upar waale buttons se thoda gap dene ke liye */
    width: fit-content; /* Taki button bahut lamba na ho jaye */
    /* Baaki aapka purana red color aur animation code yahan rahega... */
}

.btnb:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

/* Pulse Animation */
@keyframes btnbPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* Popup ka safed box */
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #cbc3c3;
    padding: 30px;
    width: 90%;
    max-width: 380px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* Close button (X) */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}
.close-btn:hover { color: #333; }

/* Form ke inputs */
#clientForm input, #clientForm select, #clientForm textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #a9a9a9;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

#clientForm input:focus { border-color: #ffae00; }

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #ffae00;
    color: white;
    border: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}
.submit-btn:hover { background: #0056b3; }
        .pricing {
            background-color: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
        }

        .pricing-card:nth-child(1) { animation: cardSlideUp 0.6s ease 0.1s forwards; }
        .pricing-card:nth-child(2) { animation: cardSlideUp 0.6s ease 0.2s forwards; }
        .pricing-card:nth-child(3) { animation: cardSlideUp 0.6s ease 0.3s forwards; }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .pricing-card.featured::before {
            content: 'Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            color: var(--white);
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            animation: pulse 2s ease-in-out infinite;
        }

        .pricing-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            animation: iconBounce 2s ease-in-out infinite;
        }

        .pricing-card:hover .pricing-icon {
            animation: iconRotate 0.5s ease;
        }

        @keyframes iconRotate {
            to { transform: rotate(360deg); }
        }

        .pricing-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            animation: priceGlow 2s ease-in-out infinite;
        }

        @keyframes priceGlow {
            0%, 100% { text-shadow: 0 0 10px rgba(37, 99, 235, 0.3); }
            50% { text-shadow: 0 0 20px rgba(37, 99, 235, 0.6); }
        }

        .pricing-price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .pricing-features {
            margin: 25px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 10px 0;
            color: var(--text-light);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li:hover {
            padding-left: 10px;
            color: var(--primary-color);
        }

        .pricing-features i {
            color: var(--primary-color);
            margin-right: 10px;
            transition: transform 0.3s ease;
        }

        .pricing-features li:hover i {
            transform: scale(1.2);
        }
        /* Styling Start */
.guarantee-container {
    position: relative;
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background: #1a1a1a; /* Dark professional theme */
    border-radius: 20px;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    border: 1px solid #333;
}

/* Background Glowing Animation */
.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #ff4d4d, transparent 30%);
    animation: rotate 4s linear infinite;
    z-index: 1;
}

.guarantee-content {
    position: relative;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    z-index: 2;
}

.icon-box {
    font-size: 50px;
    color: #ff4d4d;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 1px;
}

p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    margin-top: 15px;
    background: #ff4d4d;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
    animation: pulse-red 2s infinite;
}

/* Keyframes for Animations */
@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

        /* Contact Section */
        .contact {
            background-color: var(--light-bg);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info {
            background-color: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 0.8s ease forwards;
        }

        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(50px);
            animation: fadeInRight 0.8s ease 0.3s forwards;
        }

        .contact-info h3, .contact-form h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

        .contact-item:nth-child(1) { animation-delay: 0.3s; }
        .contact-item:nth-child(2) { animation-delay: 0.4s; }
        .contact-item:nth-child(3) { animation-delay: 0.5s; }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: iconBounce 2s ease-in-out infinite;
        }

        .contact-icon i {
            font-size: 1.3rem;
            color: var(--white);
        }

        .contact-item-text h4 {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 3px;
        }

        .contact-item-text p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #25D366;
            color: var(--white);
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.5s ease 0.6s backwards;
        }

        .whatsapp-btn:hover {
            background-color: #0df01c;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .form-group {
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.4s; }
        .form-group:nth-child(2) { animation-delay: 0.5s; }
        .form-group:nth-child(3) { animation-delay: 0.6s; }
        .form-group:nth-child(4) { animation-delay: 0.7s; }
        .form-group:nth-child(5) { animation-delay: 0.8s; }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary-color);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-section p {
            color: #94a3b8;
            line-height: 1.8;
        }

        .footer-section ul li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-section ul li:hover {
            padding-left: 5px;
        }

        .footer-section ul li a {
            color: #94a3b8;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0;
            animation: fadeIn 0.5s ease 0.5s forwards;
        }

        .footer-bottom p {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-text h1 {
                font-size: 2.8rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-15px);
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                text-align: center;
                padding: 30px 0;
                box-shadow: var(--shadow);
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .team-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 1.8rem;
            }

            .hero-text h1 {
                font-size: 1.9rem;
            }

            .services-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Classes for Scroll */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }



        /* Footer Base Styles */
.cyber-footer {
    position: relative;
    width: 100%;
    background: rgba(10, 10, 12, 0.95); /* Dark cyberpunk base */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 4% 20px;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* 1. Liquid Glow Wave Animation Background */
.footer-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow-wave {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(79, 79, 229, 0.05) 50%, transparent 100%);
    border-radius: 43%;
    animation: rotateWave 15s linear infinite;
}

.glow-wave.wave-2 {
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, rgba(0, 242, 254, 0.05) 60%, transparent 100%);
    animation: rotateWave 25s linear infinite;
    animation-delay: -5s;
    border-radius: 40%;
}

@keyframes rotateWave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Grid Content */
.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Style with Neon Glow */
.brand-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #00f2fe, #4f4fe5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.brand-logo span {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.brand-tagline {
    color: #8a8a93;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Links Hover Animation */
.footer-links h3, .footer-socials h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #00f2fe;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0a0ab;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Cyber Underline Hover Effect */
.footer-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #00f2fe, #ff0080);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
    padding-left: 5px;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

/* 2. Cyber-Glass Social Icons with Neon Hover */
.social-icons {
    display: flex;
    gap: 15px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-box:hover {
    transform: translateY(-8px);
    background: rgba(0, 242, 254, 0.1);
    border-color: #00f2fe;
    color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4), 
                inset 0 0 10px rgba(0, 242, 254, 0.2);
}

/* Footer Bottom border line animation */
.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #666670;
    font-size: 0.85rem;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-links ul li a:hover {
        padding-left: 0;
    }
}


/* --- PREMIUM CERTIFICATE MARQUEE SECTION --- */
.certifications-section {
    width: 100%;
    padding: 60px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ce4c4c;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

/* Outer Scroller Track Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Linear Endless Track Layer */
.marquee-content {
    display: flex;
    gap: 30px;
    animation: infiniteScroll 35s linear infinite;
    width: max-content;
}

/* Hover State: Smooth Halt */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* High-End Glassmorphic Card Styling */
.cert-card {
    width: 360px;
    background: rgba(18, 18, 24, 0.75);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card Hover Animation Matrix */
.cert-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00f2fe;
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.15), 
                inset 0 0 15px rgba(0, 242, 254, 0.05);
}

/* Image Scaler Framework */
.cert-img-wrapper {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-img {
    transform: scale(1.36);
}

/* Content Area Info Pad */
.cert-info {
    padding: 20px;
    background: rgba(10, 10, 14, 0.4);
}

.cert-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.cert-card:hover .cert-title {
    color: #00f2fe;
}

.cert-issuer {
    font-size: 0.85rem;
    color: #8c8c9a;
    margin-top: 8px;
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* Endless Animation Protocol */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Shifts loop matrix flawlessly */
    }
}

/* Chat Icon ki Styling - Screen par Fixed */
#custom-chat-icon {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #dc143c !important; /* Red Color */
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    z-index: 2147483647 !important; /* Sabse upar dikhne ke liye */
}

/* Chatbot Window ki Styling - Icon ke upar Fixed */
#custom-chatbot-window {
    position: fixed !important;
    bottom: 90px !important; 
    right: 20px !important;
    width: 350px !important;
    height: 500px !important;
    background-color: white !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.25) !important;
    z-index: 2147483647 !important;
    overflow: hidden !important;
    flex-direction: column !important;
}

/* Header Styling */
#chatbot-header {
    background-color: #dc143c;
    color: white;
    padding: 12px 15px;
    font-family: sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-header button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}