* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

section {
    margin-bottom: 20px;
}

/* Let's Build Together Section */
.build-together-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 153, 255, 0.03) 100%);
    padding: 120px 8% 10px 8%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}

.build-together-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.build-together-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0, 212, 255, 0.02) 50px,
            rgba(0, 212, 255, 0.02) 51px
        );
    pointer-events: none;
}

.build-together-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 100;
}

.build-together-content {
    animation: fadeInUp 1s ease forwards;
}

.build-together-heading {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.build-together-text {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.build-together-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.build-together-features li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-icon i {
    color: #ffffff !important;
}

.build-together-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-btn i {
    color: #ffffff !important;
}

.primary-cta {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.6);
}

.secondary-cta {
    background: #ffffff;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.secondary-cta:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.vector-3d-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.vector-3d-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 10;
    animation: float3D 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.3));
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    animation: floatAround 8s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateY(5deg);
    }
    50% {
        transform: translateY(0px) rotateY(0deg);
    }
    75% {
        transform: translateY(-15px) rotateY(-5deg);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-10px, 10px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(15px, 15px) scale(1.05);
        opacity: 0.7;
    }
}

@media (max-width: 992px) {
    .build-together-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .build-together-heading {
        font-size: 3rem;
    }
    
    .vector-3d-wrapper {
        height: 400px;
    }
}

/* Hero section */
.hero {
    background: url('../img/bgShubhLuck.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

/* Shapes removed */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 101;
    animation: slideDownNavbar 0.8s ease forwards;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7);
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-img {
    height: 40px;
    width: auto;
    display: block;
    animation: fadeIn 0.8s ease forwards;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    z-index: 102;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    animation: slideDownNavbar 0.8s ease forwards;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
}

.nav-menu a.active {
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
}

.hero-logo {
    height: 60%;
    max-height: 70vh;
    width: auto;
    display: block;
    animation: fadeIn 3s ease forwards;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.hero-logo-clone {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    display: none;
    height: 60%;
    max-height: 70vh;
    width: auto;
    transition: all 0.1s ease-out;
}

.hero-left {
    position: absolute;
    left: 5%;
    width: 25%;
    animation: slideFromBehindRight 3s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    z-index: 10;
}

.hero-left .tagline {
    color: #1a1a2e;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 100%;
    font-weight: 500;
}

.hero-right {
    position: absolute;
    right: 5%;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: slideFromBehindLeft 3s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    z-index: 10;
}

/* Slideshow Styles */
.hero-slideshow {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.slideshow-container {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    width: 100%;
    opacity: 0;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide.active {
    display: block;
    animation: slideIn 0.6s ease forwards;
}

.slide.exit {
    animation: slideOut 0.6s ease forwards;
}

.fade-slide {
    animation: slideIn 0.6s ease forwards;
}

.slide-description {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-top: 12px;
    margin-bottom: 0;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Animated Arrow */
/* (video spotlight styles removed) */

.card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 1.2s ease forwards, cardFloat 3s ease-in-out infinite;
    animation-delay: 0s, 0s;
    opacity: 0;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.15);
}

.card-icon {
    font-size: 1.3rem;
    margin-bottom: 6px;
    display: inline-block;
}

.card h3 {
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.card p {
    font-size: 0.7rem;
    margin: 0;
    opacity: 0.85;
    line-height: 1.3;
}

.card-1 {
    animation-delay: 0.6s;
}

.card-2 {
    animation-delay: 0.8s;
}

.card-3 {
    animation-delay: 1s;
}

.card-4 {
    animation-delay: 1.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDownNavbar {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromBehindLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        z-index: 1;
    }
}

@keyframes slideFromBehindRight {
    from {
        opacity: 0;
        transform: translateX(150px);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        z-index: 1;
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInSpan {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    background: #ffffff;
    padding: 80px 8%;
    min-height: 100vh;
    margin: 40px 20px 0 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-heading {
    font-size: 5.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0;
}

.services-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.services-left {
    position: relative;
}

.services-left::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    z-index: 1;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
        transform: translate(-50%, -30%) rotate(0deg);
    }
    50% {
        border-radius: 55% 45% 40% 60% / 60% 40% 60% 40%;
        transform: translate(-50%, -30%) rotate(5deg);
    }
}

.services-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card-modern {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #00d4ff;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.02);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card-modern:hover .service-hover-effect {
    opacity: 1;
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon-modern i {
    color: #ffffff !important;
}

.service-card-modern:hover .service-icon-modern {
    transform: translateY(-4px);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-heading.scroll-fade {
    transition-delay: 0.1s;
}

.services-image.scroll-fade {
    transition-delay: 0.2s;
}

.service-card.scroll-fade:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card.scroll-fade:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card.scroll-fade:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card.scroll-fade:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card.scroll-fade:nth-child(5) {
    transition-delay: 0.5s;
}

.service-card.scroll-fade:nth-child(6) {
    transition-delay: 0.6s;
}

/* Stats Band After Services */
.stats-band-full {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a1a 100%);
    padding: 25px 5% 20px;
    margin: 20px 0 0 0;
    position: relative;
    overflow: hidden;
}

.stats-band-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-band-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.stats-full-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

.stat-item-full {
    text-align: center;
    padding: 8px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item-full:hover::before {
    left: 100%;
}

.stat-item-full:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.stat-icon-full {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #00d4ff !important;
}

.stat-icon-full i {
    color: #00d4ff !important;
}

.stat-number-full {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 2px;
    display: block;
}

.stat-label-full {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 992px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-heading {
        font-size: 3rem;
    }
    
    .services-right {
        grid-template-columns: 1fr;
    }

    .stats-full-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-full-container {
        grid-template-columns: 1fr;
    }
}

/* Products Section */
.products-section {
    background: #ffffff;
    padding: 80px 8%;
    min-height: 100vh;
    margin: 20px 20px 0;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 15px;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow-x: auto;
}

.product-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #0099ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.product-image-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.product-card:hover .product-image-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 255, 0.2) 100%);
}

.product-icon {
    font-size: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-align: center;
}

.product-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.product-link {
    display: inline-block;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.product-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.product-card:hover .product-link {
    color: #0099ff;
}

.product-card:hover .product-link::after {
    width: 100%;
}

.products-heading.scroll-fade {
    transition-delay: 0.1s;
}

.products-subtitle.scroll-fade {
    transition-delay: 0.2s;
}

.product-card.scroll-fade:nth-child(1) {
    transition-delay: 0.2s;
}

.product-card.scroll-fade:nth-child(2) {
    transition-delay: 0.3s;
}

.product-card.scroll-fade:nth-child(3) {
    transition-delay: 0.4s;
}

.product-card.scroll-fade:nth-child(4) {
    transition-delay: 0.5s;
}

.products-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

@media (max-width: 992px) {
    .products-heading {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Inline Styles Moved from HTML */
.tagline .highlight-cyan {
    color: #0056b3;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet and Below (768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
    }

    .navbar {
        height: 60px;
        padding: 0 4%;
    }

    .navbar-img {
        height: 30px;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: -5%;
        width: 110%;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px 5%;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        animation: none;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero-left {
        position: relative;
        left: 0;
        width: 90%;
        margin: 80px auto 30px;
        text-align: center;
    }

    .hero-left .tagline {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-logo {
        height: 40%;
        max-height: 40vh;
        margin: 20px 0;
    }

    .hero-right {
        position: relative;
        right: 0;
        width: 90%;
        margin: 30px auto 0;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card {
        padding: 12px;
    }

    .card h3 {
        font-size: 0.8rem;
    }

    .card p {
        font-size: 0.65rem;
    }

    /* Build Together Section */
    .build-together-section {
        padding: 60px 5%;
        min-height: auto;
        margin: 0 10px;
    }

    .build-together-heading {
        font-size: 2.5rem;
    }

    .build-together-text {
        font-size: 1rem;
    }

    .build-together-features li {
        font-size: 0.9rem;
    }

    .build-together-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .vector-3d-wrapper {
        height: 300px;
    }

    /* Services Section */
    .services-section {
        padding: 60px 5%;
        min-height: auto;
        margin: 0 10px;
    }

    .services-heading {
        font-size: 2.5rem;
    }

    .services-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 18px;
    }

    /* Stats Band */
    .stats-band-full {
        padding: 50px 5%;
    }

    .stats-band-heading {
        font-size: 2rem;
    }

    /* Products Section */
    .products-section {
        padding: 60px 5%;
        min-height: auto;
        margin: 10px 10px 0;
    }

    .products-heading {
        font-size: 2.2rem;
    }

    .products-subtitle {
        font-size: 1rem;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    /* Hero Section */
    .hero-left .tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-right {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .card {
        padding: 15px;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card h3 {
        font-size: 0.9rem;
    }

    .card p {
        font-size: 0.75rem;
    }

    /* Build Together Section */
    .build-together-section {
        padding: 40px 4%;
    }

    .build-together-heading {
        font-size: 2rem;
    }

    .build-together-text {
        font-size: 0.95rem;
    }

    .build-together-features li {
        font-size: 0.85rem;
        padding-left: 25px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .vector-3d-wrapper {
        height: 250px;
    }

    /* Services Section */
    .services-section {
        padding: 40px 4%;
    }

    .services-heading {
        font-size: 2rem;
    }

    .services-image {
        max-width: 300px;
    }

    .service-card {
        padding: 16px;
    }

    .service-icon {
        font-size: 1.3rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.75rem;
    }

    /* Stats Band */
    .stats-band-full {
        padding: 40px 4%;
    }

    .stats-band-heading {
        font-size: 1.8rem;
    }

    .stat-icon-full {
        font-size: 1.8rem;
    }

    .stat-number-full {
        font-size: 2rem;
    }

    .stat-label-full {
        font-size: 0.65rem;
    }

    /* Products Section */
    .products-section {
        padding: 40px 4%;
    }

    .products-heading {
        font-size: 1.8rem;
    }

    .products-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .product-card {
        padding: 18px 15px;
    }

    .product-image-wrapper {
        width: 60px;
        height: 60px;
    }

    .product-icon {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .products-btn-wrapper {
        margin-top: 40px;
    }

    .view-more-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    /* Slideshow and Arrow */
    .hero-slideshow {
        max-width: 250px;
    }

    .hero-arrow {
        font-size: 1.8rem;
    }
}

/* Large Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-logo {
        height: 35%;
        max-height: 35vh;
    }

    .hero-left {
        width: 95%;
    }

    .hero-right {
        width: 95%;
    }

    .hero-slideshow {
        max-width: 200px;
    }
}

/* Product Card Modern Styles - Dark Tech Theme */
.product-card-modern {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.15), transparent 70%);
    border-radius: 0 12px 0 100%;
    transition: all 0.5s ease;
    z-index: -1;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.product-card-modern:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent 60%);
}

.product-icon-modern {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #00d4ff;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.product-icon-modern i {
    color: #00d4ff !important;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.product-card-modern:hover .product-icon-modern {
    background: #00d4ff;
    border-color: #00d4ff;
    transform: rotateY(180deg);
}

.product-card-modern:hover .product-icon-modern i {
    color: #ffffff !important;
    filter: none;
    transform: rotateY(-180deg); /* Keep icon facing forward */
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.product-description {
    font-size: 0.75rem;
    color: #b0b0b0;
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.product-features li {
    font-size: 0.7rem;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s;
}

.product-card-modern:hover .product-features li {
    transform: translateX(5px);
}

.product-features i {
    color: #00d4ff !important;
    font-size: 0.65rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 3px;
    border-radius: 50%;
}

.product-hover-effect {
    display: none; /* Removed in favor of CSS pseudo-elements */
}

.product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.product-link:hover {
    background: #00d4ff;
    color: #ffffff;
    border-color: #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Products Grid */
.products-section {
    background: #ffffff;
    padding: 80px 8%;
    min-height: auto;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-heading {
    font-size: 5.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 15px;
}

.products-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 0;
    align-items: stretch;
}

/* Reset Staggered Layout */
.product-card-modern:nth-child(n) { 
    margin-top: 0; 
}

/* Ensure hover works cleanly */
.product-card-modern:hover {
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-heading {
        font-size: 2.5rem;
    }
    
    .product-card-modern {
        padding: 24px 20px;
    }
}

/* Landscape mode fixes for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: auto;
    }

    .hero-logo {
        height: 50vh;
        max-height: 50vh;
    }

    .hero-left,
    .hero-right {
        position: relative;
        margin: 20px auto;
    }
}

/* About Us Section */
.about-section {
    padding: 100px 8%;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
    z-index: 2;
}

.about-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}

.about-feature i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.about-feature span {
    font-weight: 600;
    color: #1a1a2e;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.1);
    top: -20px;
    right: -20px;
    animation: pulse 4s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 153, 255, 0.1);
    bottom: -20px;
    left: -20px;
    animation: pulse 4s infinite 2s;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-features-grid {
        text-align: left;
    }
    
    .about-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer-section {
    background: #0f0f1a;
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: #00d4ff;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #a0a0b0;
    font-size: 0.95rem;
}

.contact-info i {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #808090;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #808090;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00d4ff;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
