/* ==========================================================================
   1. CORE VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-blue: #2563eb;
    --sky-blue: #3b82f6;
    --dark-slate: #0f172a;
    --text-gray: #475569;
    --metallic-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 40%, #93c5fd 50%, #3b82f6 60%, #1e3a8a 100%);
    --main-font: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Target the specific hero/illustration image and remove rounded border/shadow */
img[src$="about-6.png"] {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Responsive: make Industry Solutions cards stack and center on small screens */
@media (max-width: 768px) {
    /* target the grid container (has Tailwind responsive classes) */
    div[class*="grid-cols-1"][class*="md:grid-cols-2"][class*="lg:grid-cols-3"] {
        grid-template-columns: 1fr !important;
        justify-items: center;
        gap: 18px;
    }

    .card-3d {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
        padding: 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-3d .w-16 {
        width: 72px !important;
        height: 72px !important;
        margin-bottom: 12px;
    }

    .card-3d h3,
    .card-3d p {
        width: 100%;
    }
}

html::-webkit-scrollbar {
        display: none;
    }

    /* Firefox, IE aur Edge ke liye scrollbar hide karein */
    html {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    /* Body ke liye bhi same rules taaki ensure ho sake */
    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    body::-webkit-scrollbar {
        display: none;
    }
/* Extra targeting for the 'Powering the Next / Digital Frontier' section to guarantee centering */
@media (max-width: 768px) {
    section.relative.py-32 .grid {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
    }

    section.relative.py-32 .card-3d > .relative.z-10 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    section.relative.py-32 .card-3d .w-16,
    section.relative.py-32 .card-3d .w-16 svg {
        margin: 0 auto;
        display: block;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--main-font);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. NAVIGATION & PROGRESS BAR
   ========================================================================== */
#navbar {
    transition: var(--transition);
    padding-top: 24px;
    padding-bottom: 24px;
}

.nav-active {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}



.nav-logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--dark-slate);
}

/* ==========================================================================
   3. HERO SECTION (LAYOUT & SPACING)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, #ffffff 100%);
    /* Navbar fixed hai, isliye upar se professional gap */
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    gap: 40px;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

/* ==========================================================================
   4. TYPOGRAPHY (SHINING TEXT & BADGE)
   ========================================================================== */
.glossy-badge {
    background: #f1f5f9;
    color: var(--primary-blue);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 1px;
}

.shining-text {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.glossy-gradient {
    background: var(--metallic-gradient);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 12px rgba(37, 99, 235, 0.15));
    display: inline-block;
}

/* ==========================================================================
   5. DESCRIPTION (GLASSMORPHISM)
   ========================================================================== */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 550px;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    padding: 24px 30px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 6px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.hero-description:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.8);
}

.text-glow-blue {
    font-weight: 700;
    color: var(--primary-blue);
}

/* ==========================================================================
   6. 3D LIGHT BUTTONS
   ========================================================================== */
.light-3d-group {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.btn-light-3d {
    position: relative;
    cursor: pointer;
    transition: transform 0.1s;
    border: none;
    background: none;
}

.btn-top {
    display: block;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    transform: translateY(-4px);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-bottom {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    z-index: -1;
}

.primary .btn-top {
    background: var(--sky-blue);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.primary .btn-bottom {
    background: var(--primary-blue);
}

.secondary .btn-top {
    background: #e2e8f0;
    color: #1e40af;
}

.secondary .btn-bottom {
    background: #cbd5e1;
}

.btn-light-3d:hover .btn-top {
    transform: translateY(-6px);
}

.btn-light-3d:active .btn-top {
    transform: translateY(-1px);
}

/* ==========================================================================
   7. VISUALS & RESPONSIVE
   ========================================================================== */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-3d-image {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 20px 50px rgba(59, 130, 246, 0.2));
    animation: float-simple 6s ease-in-out infinite;
}

@keyframes float-simple {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 110px;
    }

    .hero-image-container {
        display: none !important;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-description {
        border-left: none;
        border-top: 6px solid var(--primary-blue);
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 90%;
        margin: 1.5rem auto;
    }

    .light-3d-group {
        justify-content: center;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fafafa;
    color: #1e293b;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Side Illustration Styling */
.left-graphics {
    flex: 0.45;
    position: relative;
}

.img-box img {
    width: 100%;
    height: auto;
}

.bottom-img {
    margin-top: -50px;
}

/* Right Content Styling */
.right-content {
    flex: 0.55;
}

.header-main {
    margin-bottom: 50px;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.line {
    width: 40px;
    height: 4px;
    background: #ff6b35;
    /* Image ke hisab se orange line */
    border-radius: 2px;

    /* keep hero image visible on tablet but constrain its size */
    .hero-image-container {
        display: flex !important;
        justify-content: center;
        margin-top: 20px;
    }
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 1px;
}

.header-main h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.header-main h1 span {
    color: #3b82f6;
}

.header-main p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
}

/* Grid Layout for Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    border-color: #e2e8f0;
}

/* Icons and Colors */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* Responsive: center service cards and their contents on small screens */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
    }

    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        max-width: 620px;
        width: 100%;
    }

    .service-card .icon-box {
        margin-bottom: 12px;
        width: 72px;
        height: 72px;
        font-size: 34px;
    }

    .service-card h3, .service-card p {
        width: 100%;
    }
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

/* Specific Themes based on your Image */
.blue-theme {
    color: #00bcd4;
    background: #e0f7fa;
}

.navy-theme {
    color: #1a237e;
    background: #e8eaf6;
}

.pink-theme {
    color: #e91e63;
    background: #fce4ec;
}

.sky-theme {
    color: #03a9f4;
    background: #e1f5fe;
}

.purple-theme {
    color: #673ab7;
    background: #ede7f6;
}

.grad-theme {
    color: #ff5722;
    background: #fff3e0;
}

/* Floating Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0052cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1100px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .header-main {
        text-align: center;
    }

    .badge-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .header-main h1 {
        font-size: 32px;
    }
}

.left-graphics {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 3D perspective add karne ke liye */
    perspective: 1500px;
    gap: 40px;
    /* Dono images ke beech spacing */
    position: relative;
    padding: 20px;
}

.img-box {
    width: 100%;
    max-width: 500px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

/* Constrain and style images site-wide to prevent them from getting too large */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image-container img,
.hero-3d-image,
.floating-3d-img {
    border-radius: 18px;
    object-fit: cover;
}

/* Hero image size caps for different breakpoints */
.hero-3d-image { max-width: 520px; }
@media (max-width: 1024px) {
    .hero-3d-image { max-width: 420px; }
}
@media (max-width: 480px) {
    .hero-3d-image { max-width: 320px; }
}

.img-box img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.15));
}

/* --- 3D Floating Animations --- */

/* Top Image: Halka sa left-tilt aur floating */
.top-img {
    animation: float3D-top 6s ease-in-out infinite;
    transform: rotateY(-10deg) rotateX(5deg);
}

/* Bottom Image: Halka sa right-tilt aur floating */
.bottom-img {
    animation: float3D-bottom 6s ease-in-out infinite;
    transform: rotateY(10deg) rotateX(5deg);
    margin-top: -20px;
    /* Visual overlap balance karne ke liye (optional) */
}

/* Keyframes for Top Image */
@keyframes float3D-top {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-5deg) rotateX(10deg) translateY(-25px);
    }
}

/* Keyframes for Bottom Image */
@keyframes float3D-bottom {

    0%,
    100% {
        transform: rotateY(10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(5deg) rotateX(10deg) translateY(-20px);
    }
}

/* Hover Effect: Mouse le jane par image seedhi ho jaye aur chamke */
.img-box:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    z-index: 10;
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .left-graphics {
        gap: 20px;
        perspective: none;
        /* Mobile par 3D simple rakhein */
    }

    .top-img,
    .bottom-img {
        transform: none;
        animation: float-simple 5s ease-in-out infinite;
    }
}

@keyframes float-simple {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- About Section with Glossy Blue Theme --- */

.about-section {
    padding: 100px 0;
    position: relative;
    /* Glossy Blue-ish Mesh Background */
    background: radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(147, 51, 234, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
        #ffffff;
    overflow: hidden;
}

/* Container ko Glassy banana */
.about-section .container {
    background: rgba(255, 255, 255, 0.4);
    /* Semi-transparent */
    backdrop-filter: blur(12px);
    /* Frosty Glass Effect */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Soft border highlight */
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Service Cards ko bhi Lightweight Glassy rakhein */
.service-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.05) !important;
}

.service-card:hover {
    background: #ffffff !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
}

/* Background Animated Glows (Optional: Extra Glossiness) */
.about-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    from {
        opacity: 0.5;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* --- Content Color Update --- */

.service-card h3 {
    /* Pure black ki jagah Deep Tech Blue */
    color: #1e3a8a !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Hover karne par text thoda bright blue chamkega */
.service-card:hover h3 {
    color: #2563eb !important;
}

/* Icons ko modern blue shades mein convert karna */
.icon-box {
    /* Background ko bohot halka blue rakha hai taaki glossy lage */
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #2563eb !important;
    /* Icon ka primary color blue */
    transition: all 0.4s ease;
}

/* Alag-alag themes ko blue gradients mein badalna */
.blue-theme,
.navy-theme,
.sky-theme,
.lightblue-theme,
.purple-theme {
    color: #2563eb !important;
}

/* Hover par Icon Box ka effect */
.service-card:hover .icon-box {
    background: #2563eb !important;
    /* Solid blue on hover */
    color: #ffffff !important;
    /* Icon white ho jayega */
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transform: scale(1.1) rotate(5deg);
}

/* --- Glossy Text Shadow (Optional but looks great) --- */
.service-card h3 {
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.05);
}




/* --- Main Layout Alignment --- */
.main-wrapper {
    display: flex;
    align-items: center;
    /* Vertical centering */
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0;
}

/* --- Left Side: Graphics --- */
.left-graphics {
    flex: 1;
    /* Equal width */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: 1000px;
}

.img-box img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.1));
    animation: float3D 6s ease-in-out infinite;
}

.bottom-img {
    margin-left: 50px;
    /* Overlap effect */
    animation-delay: 2s !important;
}

/* --- Right Side: Content --- */
.right-content {
    flex: 1.2;
    /* Content thoda bada rakhein readability ke liye */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* --- Glossy Background & Cards --- */
.about-section {
    background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.05), transparent 40%),
        #ffffff;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.service-card h3 {
    color: #1e3a8a;
    /* Professional Blue */
    font-size: 16px;
    margin-top: 15px;
}

/* --- Animations --- */
@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

/* --- Responsive Fix --- */
@media (max-width: 1024px) {
    .main-wrapper {
        flex-direction: column;
        /* Tablet/Mobile par ek ke niche ek */
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .left-graphics {
        order: 2;
        /* Mobile par image content ke niche jaye */
    }
}



body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fafafa;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
}

.main-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.left-graphics {
    flex: 0.8;
    position: relative;
}

.img-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.bottom-img {
    margin-top: -60px;
}

.right-content {
    flex: 1.2;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.line {
    width: 35px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.badge-text {
    color: #3b82f6;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.header-main h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 20px;
}

.header-main h1 span {
    color: #3b82f6;
}

.header-main p {
    color: #64748b;
    font-size: 17px;
    margin-bottom: 40px;
}

/* CARDS GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: #e2e8f0;
}

.service-card h3 {
    font-size: 16px;
    color: #1e3a8a;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* ICON COLORS */
.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.blue {
    color: #00bcd4;
    background: #e0f7fa;
}

.navy {
    color: #1a237e;
    background: #e8eaf6;
}

.pink {
    color: #e91e63;
    background: #fce4ec;
}

.sky {
    color: #03a9f4;
    background: #e1f5fe;
}

.lightblue {
    color: #00acc1;
    background: #e0f2f1;
}

.purple {
    color: #673ab7;
    background: #ede7f6;
}

.orange {
    color: #f4511e;
    background: #fff3e0;
}

/* SOLUTIONS SECTION (Second Image) */
.solutions-section {
    padding: 80px 0;
    background: #fff;
}

.sub-badge {
    color: #0369a1;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    background: rgba(3, 105, 161, 0.06);
    padding: 6px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(3, 105, 161, 0.08);
}

.section-title {
    position: relative;
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    margin: 12px 0 30px;
    line-height: 1.05;
}

.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 70px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    border-radius: 4px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ind-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ind-card iconify-icon {
    font-size: 40px;
}

.ind-card span {
    font-weight: 700;
    color: #1e293b;
    font-size: 17px;
}

@media (max-width: 1024px) {

    .main-flex,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column;
        text-align: center;
    }

    .badge-container {
        justify-content: center;
    }
}

/* --- Flex Container Setup --- */
.solutions-main-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 0;
}

.solutions-left-content {
    flex: 1.5;
    /* Grid area */
    text-align: left;
    padding-left: 32px;
    max-width: 720px;
}

.solutions-right-graphic {
    flex: 1;
    /* Graphic area */
    display: flex;
    justify-content: center;
}

/* --- 3-Column Industry Grid --- */
.industry-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* EXACT 3 COLUMNS */
    gap: 20px;
}

.section-title.text-left {
    text-align: left;
    margin: 10px 0 45px;
    font-size: 38px;
    font-weight: 800;
}

/* --- Premium Card Styling --- */
.ind-card {
    background: #fff;
    padding: 30px 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.ind-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.ind-card span {
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}

/* --- Floating Graphic Animation --- */
.floating-3d-img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 30px 60px rgba(59, 130, 246, 0.2));
    animation: float-3d 5s ease-in-out infinite;
}

@keyframes float-3d {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

/* --- Responsive Behavior --- */
@media (max-width: 1100px) {
    .solutions-main-flex {
        flex-direction: column;
        text-align: center;
    }

    .section-title.text-left {
        text-align: center;
    }

    .solutions-left-content {
        padding-left: 0;
        padding: 0 20px;
        text-align: center;
        margin: 0 auto;
        max-width: 900px;
    }

    .section-title:before {
        left: 50%;
        transform: translateX(-50%);
    }

    .industry-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        /* Tablets par 2 columns */
    }
}

@media (max-width: 600px) {
    .industry-grid-3 {
        grid-template-columns: 1fr;
        /* Mobile par single column */
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .sub-badge {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* Global responsive helpers */
img, video, .floating-3d-img {
    max-width: 100%;
    height: auto;
}

.hero-content, .solutions-left-content, .trusted-by-container {
    box-sizing: border-box;
}

@media (max-width: 768px) {
    nav#navbar { padding-left: 1rem; padding-right: 1rem; }
    .hero-content { text-align: center; padding: 0 1rem; }
    .hero-content .glossy-badge { margin-left: auto; margin-right: auto; display: inline-block; }
    .solutions-right-graphic { margin-top: 24px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 22px; }
    .get-started-btn { padding: 10px 14px; font-size: 11px; }
}

/* Light Mode Background with Soft Mesh */
.solutions-section.light-theme {
    padding: 100px 0;
    position: relative;
    background-color: #f8fafc;
    /* Very light blue-grey */
    background-image:
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.08) 0px, transparent 40%),
        radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 40%);
    overflow: hidden;
}

/* White Glassmorphism Card */
.ind-card {
    background: rgba(255, 255, 255, 0.7);
    /* Translucent white */
    backdrop-filter: blur(8px);
    /* Frosty glass effect */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 1);
    /* Bright white border */
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Softest shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Hover Effect: Stronger Gloss */
.ind-card:hover {
    background: #ffffff;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

.ind-card span {
    font-weight: 600;
    color: #334155;
    /* Slate grey text */
}

/* Sub Badge Styling */
.sub-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Title Styling */
.section-title {
    color: #0f172a;
    font-size: 2.8rem;
    margin: 20px 0 40px;
    font-weight: 800;
}

/* Decorative Glossy Sphere behind image */
.glossy-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.1));
    filter: blur(60px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Card Container as Link */
.ind-card {
    text-decoration: none;
    /* Link underline hatane ke liye */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Icon Glossy Box */
.icon-box {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hover State */
.ind-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
    /* Hover par blue border */
}

/* Click Animation (Active State) */
.ind-card:active {
    transform: scale(0.96);
    /* Click karne par thoda dabega */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ind-card span {
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

/* Grid Layout */
.industry-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* In styles ko apne CSS block mein add karein */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.service-card-hover:hover .icon-bounce {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}



:root {
    --primary-blue: #2563eb;
    --dark-slate: #0f172a;
    --text-gray: #475569;
    --metallic-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 40%, #93c5fd 50%, #3b82f6 60%, #1e3a8a 100%);
    --main-font: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* --- 3D CANVAS BACKGROUND --- */
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Sabse piche */
    pointer-events: none;
    /* Text select karne mein problem nahi hogi */
}

/* --- NAVBAR --- */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Progress Bar */
#progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #2563eb;
    width: 0%;
    transition: width 0.1s ease;
    z-index: 150;
}

/* Navbar: No border initially */
#navbar {
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Active State */
.nav-active {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* --- MOBILE SIDEBAR --- */
#mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 320px;
    background: white;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

#mobile-sidebar.active {
    transform: translateX(0);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
}

/* Sidebar Links Animation */
.mobile-link {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

/* Overlay */
#sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 190;
}

#sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hamburger Animation */
.menu-line {
    transition: all 0.3s ease;
    transform-origin: center;
}

.active .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.active .line-2 {
    opacity: 0;
}

.active .line-3 {
    transform: translateY(-6px) rotate(-45deg);
}


/* --- Optimized Responsive Button --- */
.get-started-btn {
    background-color: #2563eb;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);

    /* Mobile Defaults (Chota size) */
    padding: 10px 16px;
    font-size: 10px;
    border-radius: 10px;
}

/* Tablet aur Desktop ke liye bada size */
@media (min-width: 768px) {
    .get-started-btn {
        padding: 12px 28px;
        font-size: 13px;
        border-radius: 16px;
    }
}

.get-started-btn:hover {
    background-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.get-started-btn:active {
    transform: scale(0.95);
}

/* Navbar gap fix for mobile */
@media (max-width: 640px) {
    #navbar {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;

    padding-top: 100px;
    /* 160px ko badal kar 100px kar do */
    padding-bottom: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.shining-text {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--dark-slate);
}

.glossy-gradient {
    background: var(--metallic-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 15px rgba(37, 99, 235, 0.2));
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    padding: 24px 30px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 6px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Buttons Style */
.light-3d-group {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.btn-light-3d {
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
}

.btn-top {
    display: block;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    transform: translateY(-4px);
    transition: var(--transition);
}

.btn-bottom {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    z-index: -1;
}

.primary .btn-top {
    background: #3b82f6;
}

.primary .btn-bottom {
    background: #2563eb;
}

.secondary .btn-top {
    background: #e2e8f0;
    color: #1e40af;
}

.secondary .btn-bottom {
    background: #cbd5e1;
}

.btn-light-3d:hover .btn-top {
    transform: translateY(-6px);
}

.btn-light-3d {
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

/* ==========================================================================
        trusted by section
   ========================================================================== */
/* --- Medium Balanced Colorful Section --- */
#trusted-by {
    position: relative;
    width: 100%;
    padding: 45px 0;
    /* Medium vertical padding */
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.trusted-by-container {
    width: 100%;
    max-width: 1150px;
    position: relative;
    text-align: center;
}

/* --- Attractive Slim Lines --- */
.line-divider {
    width: 85%;
    height: 1.2px;
    /* Thodi si visible line */
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 100%);
    margin: 0 auto;
}

.trusted-by-container h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 20px 0;
    /* Medium gap */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-logos {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    /* Logos ke upar-neeche ki jagah */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos {
    display: flex;
    width: max-content;
    align-items: center;
    animation: scroll-logos 32s linear infinite;
}

/* --- LOGO STYLE (Medium Height) --- */
.logos img {
    width: 170px;
    height: 42px;
    /* MEDIUM HEIGHT: Na badi na choti */
    object-fit: contain;
    margin: 0 45px;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- HOVER EFFECTS --- */
.brand-logos:hover .logos {
    animation-play-state: paused;
}

.brand-logos:hover .logos img {
    transform: scale(0.88);
    /* Subtle zoom out */
    opacity: 0.45;
}

.brand-logos .logos img:hover {
    transform: scale(1.1) !important;
    /* Sharp zoom in */
    opacity: 1 !important;
    cursor: pointer;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile: Better scaling for medium look */
@media (max-width: 768px) {
    .logos img {
        height: 30px;
        width: 120px;
        margin: 0 25px;
    }

    #trusted-by {
        padding: 30px 0;
    }
}

/* --- RESPONSIVE LOGIC --- */

/* Desktop & Tablets (1024px and below) */
@media (max-width: 1024px) {
    .trusted-by-container {
        width: 95%;
        /* Side margin thodi badhayi taaki screen touch na kare */
    }

    .logos img {
        width: 150px;
        /* Thoda sa size kam taaki 4 logos fit dikhein */
        margin: 0 30px;
    }
}

/* Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
    #trusted-by {
        padding: 35px 0;
        /* Vertical space thodi kam */
    }

    .logos img {
        height: 35px;
        /* Medium height scaling */
        width: 130px;
        margin: 0 20px;
    }

    .trusted-by-container h4 {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
}

/* Small Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .line-divider {
        width: 90%;
        /* Line mobile par thodi lambi achi lagti hai */
    }

    .logos img {
        height: 28px;
        /* Mobile par aur compact */
        width: 100px;
        margin: 0 15px;
    }

    /* Mobile par edge blur kam kar diya taaki logos dikhein */
    .brand-logos {
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
}

/* --- Header Enhancements --- */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- Premium Card Sizing (Medium Fix) --- */
.premium-card {
    perspective: 1500px;
    height: auto;
    /* Fixed height ki jagah auto rakhein taaki content fit ho */
    min-height: 320px;
}

.card-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    /* Thoda aur round premium dikhta hai */
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover: Floating Effect */
.premium-card:hover .card-content {
    transform: translateY(-12px) rotateX(6deg) rotateY(-2deg);
    background: white;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 20px 50px rgba(59, 130, 246, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.02);
}

/* --- Improved Mobile Experience --- */
@media (max-width: 1024px) {

    /* Header adjustments */
    .leading-tight {
        line-height: 1.2;
    }

    /* Description border fix: Mobile pe border upar ki jagah left hi rakhein par thin */
    .text-slate-500.border-l-4 {
        border-left-width: 3px;
        font-size: 1rem;
        margin-top: 1rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 640px) {
    .premium-card {
        min-height: 280px;
    }

    .text-5xl {
        font-size: 2.5rem;
    }

    /* Mobile hover intensity kam karein taaki glitchy na lage */
    .premium-card:hover .card-content {
        transform: translateY(-5px);
    }
}

/* --- Floating Animation for Icon Container --- */
.icon-wrap {
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    position: relative;
    z-index: 5;
}

.premium-card:hover iconify-icon {
    animation: pulse-icon 1.5s infinite ease-in-out;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}


/* ==========================================================================
   4. TYPOGRAPHY (SHINING TEXT & BADGE)
   ========================================================================== */
.glossy-badge {
    background: #f1f5f9;
    color: var(--primary-blue);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 1px;
    margin-top: 0px;
    /* 20px ko badal kar 0px kar do */
    margin-bottom: 1.5rem;
    /* Isko bhi 2.5rem se kam karke 1.5rem kar sakte ho */
    display: inline-block;
}

.shining-text {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.glossy-gradient {
    background: var(--metallic-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 12px rgba(37, 99, 235, 0.15));
    display: inline-block;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;

    padding-top: 100px;
    /* 160px ko 100px kar do */
    padding-bottom: 60px;
}

/* Mobile par spacing thodi kam taaki upar ki jagah waste na ho */
@media (max-width: 1024px) {
    .hero {
        padding-top: 130px;
    }
}


.glossy-badge {
    margin-top: 0px;
    /* Isko 0 kar do */
    margin-bottom: 1rem;
    /* 2.5rem ko 1rem kar do */
    display: inline-block;
}

.shining-text {
    /* Agar heading badge se chipak rahi hai */
    margin-top: 10px;
}

#navbar {
    padding: 12px 0;
    /* 24px ko 12px kar do */
    transition: var(--transition);
}

.nav-active {
    padding: 12px 0 !important;
    /* Scroll karne par patla (sleek) navbar */
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
}

/* ==========================================================================
   testimonial Styles
   ========================================================================== */
@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1.25rem));
    }
}

@media (min-width: 768px) {
    @keyframes slide {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 2.5rem));
        }
    }
}

.animate-slide {
    animation: slide 30s linear infinite;
    /* Speed optimized */
    will-change: transform;
}

/* Premium Glass Card */
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

/* Hover: Zoom + Glow + Border Indigo */
.testimonial-card:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 50 !important;
    background: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

/* Side fading mask for premium feel */
.mask-fading {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.avatar-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-box {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
}

/* ==========================================================================
   Newsletter  Styles
   ========================================================================== */
/* Professional Floating Animations */
@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0) scale(0.9);
    }

    50% {
        transform: translateY(12px) scale(1);
    }
}

.animate-3d-1 {
    animation: float-1 6s ease-in-out infinite;
}

.animate-3d-2 {
    animation: float-2 8s ease-in-out infinite;
}

/* Ultra-Sleek Button */
.btn-premium {
    background: #0f172a;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    background: #8580e5;
    /* Professional Indigo */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

.btn-premium:active {
    transform: scale(0.98);
}

/* Input Styling */
.input-glass {
    border: 1.5px solid #f1f5f9;
    transition: all 0.3s ease;
}

.input-glass:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.05);
}

/* ==========================================================================
   animation

   ========================================================================== */
   /* Animation ki shuruat (Hidden state) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Jab element screen par aayega (Active state) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Left se aane wala animation */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

[data-aos] {
  pointer-events: none;
}
.aos-animate {
  pointer-events: auto;
}