:root {
    --primary: #0A0A1B;
    --accent: #00C2FF;
    --gradient: linear-gradient(90deg, #00C2FF, #8B5CF6);
    --text-light: #F8FAFC;
    --text-gray: #94A3B8;
    --card-bg: #13132B;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

section {
    padding: 100px 0;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Typography Styles */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

/* Preloader Container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, #0A0A1B, #050510);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Animated Background Elements */
.preloader-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 15s infinite linear;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 194, 255, 0.2);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.15);
    bottom: 5%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(127, 0, 255, 0.1);
    top: 50%;
    left: 70%;
    animation-delay: -10s;
    animation-duration: 25s;
}

/* Preloader Content Wrapper */
.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo Animation */
.preloader-logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.preloader-logo::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: right;
    animation: lineExpand 2.5s ease-in-out infinite;
}

/* Loading Text */
.loading-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Progress Bar */
.progress-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

/* Spinner Animation */
.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #00C2FF;
    border-right: 4px solid #8B5CF6;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1.5s linear infinite;
    position: relative;
}

.preloader-spinner::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid rgba(0, 194, 255, 0.3);
    animation: spin 2s linear infinite reverse;
}

/* Particle Effects */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s linear infinite;
}

/* Animations */
@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 194, 255, 0.5));
        transform: scale(1);
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
        transform: scale(1.02);
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
        transform-origin: right;
    }

    50% {
        transform: scaleX(1);
        transform-origin: right;
    }

    51% {
        transform-origin: left;
    }

    100% {
        transform: scaleX(0);
        transform-origin: left;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Fade Out */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .preloader-logo {
        font-size: 2.5rem;
    }

    .progress-container {
        width: 250px;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        transform: scale(0.7);
    }
}

/* ===== NAVBAR ===== */
/* ===== BASE NAV STYLES (as you already have) ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    z-index: 1000;
    transition: 0.3s ease;
}

nav.scrolled {
    padding: 15px 50px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(122, 90, 248, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}


.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
    transform: scale(1.2);
}

/* ===== HAMBURGER & CIRCLE ===== */
.hamburger-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    position: relative;
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    z-index: 2;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 25px;
    background: #fff;
    transition: 0.4s ease;
}

.hamburger::after {
    transform: rotate(90deg);
}

.hamburger.active::before {
    transform: rotate(45deg);
}

.hamburger.active::after {
    transform: rotate(-45deg);
}

.menu-circle-text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: rotateCircle 10s linear infinite;
    z-index: 1;
}

.menu-circle-text span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 0 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== FULLSCREEN MENU ===== */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 27, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    z-index: 100;
}

.menu-overlay.active {
    transform: translateX(0);
    right: 0;
    opacity: 1;
}

.menu-links {
    list-style: none;
    text-align: center;
}

.menu-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s forwards;
}

.menu-links li:nth-child(1) {
    animation-delay: 0.3s;
}

.menu-links li:nth-child(2) {
    animation-delay: 0.5s;
}

.menu-links li:nth-child(3) {
    animation-delay: 0.7s;
}

.menu-links li:nth-child(4) {
    animation-delay: 0.9s;
}

.menu-links li:nth-child(5) {
    animation-delay: 1.1s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-links a {
    text-decoration: none;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.menu-links a::before {
    content: attr(data-number);
    font-size: 14px;
    color: #bbb;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.menu-links a:hover::after {
    width: 100%;
}

.menu-links a:hover {
    transform: translateX(10px);
    color: var(--accent);
}

/* ===== MEDIA QUERIES FOR MOBILE RESPONSIVENESS ===== */
@media (max-width: 1024px) {
    nav {
        padding: 15px 30px;
    }

    .logo {
        font-size: 24px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .hamburger-wrapper {
        width: 70px;
        height: 70px;
    }

    .hamburger {
        width: 60px;
        height: 60px;
    }

    .menu-circle-text {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 12px 20px;
    }

    .logo {
        font-size: 20px;
    }

    .social-icons a {
        font-size: 16px;
        gap: 15px;
    }

    .hamburger-wrapper {
        width: 60px;
        height: 60px;
    }

    .hamburger {
        width: 50px;
        height: 50px;
    }

    .menu-circle-text {
        width: 80px;
        height: 80px;
    }

    .menu-links a {
        font-size: 36px;
    }

    .menu-links a::before {
        left: -30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }

    .logo {
        font-size: 18px;
    }

    .social-icons a {
        font-size: 14px;
        gap: 10px;
    }

    .hamburger-wrapper {
        width: 50px;
        height: 50px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .menu-circle-text {
        width: 70px;
        height: 70px;
    }

    .menu-links a {
        font-size: 28px;
    }

    .menu-links a::before {
        left: -25px;
        font-size: 10px;
    }
}

/* ================================
           HERO SECTION (Agence X Style)
           ================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

/* Background lighting effect */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-bg::before {
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.3), transparent 70%);
    transform: translate(-30%, 30%);
}

.hero-bg::after {
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
    transform: translate(30%, -30%);
}

/* Additional gradient elements */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.4), transparent 70%);
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.3), transparent 70%);
    bottom: 15%;
    right: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Hero content */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1rem;
}

/* Typography Layers */
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-title .layer {
    font-size: 8vw;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-title .solid {
    color: #c9ccff;
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px #c9ccff;
}

/* Subtitle */
.hero-subtitle {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: #b8b8d4;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.6;
    opacity: 0.9;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* CTA Button */
.hero-btn {
    margin-top: 2.5rem;
    display: inline-block;
    padding: 14px 36px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00c2ff, #7a5af8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 90, 248, 0.4);
}

.hero-btn:hover::before {
    opacity: 1;
}

/* ================================
           PARALLAX EFFECT ON SCROLL
           ================================ */
.hero.parallax-active .layer:nth-child(1) {
    transform: translateY(-10px);
}

.hero.parallax-active .layer:nth-child(2) {
    transform: translateY(20px);
}

.hero.parallax-active .layer:nth-child(3) {
    transform: translateY(-15px);
}

.hero.parallax-active .hero-subtitle {
    transform: translateY(10px);
}

.hero.parallax-active .hero-btn {
    transform: translateY(5px);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 20;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

/* Mouse-style scroll indicator */
.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
    box-shadow: 0 0 12px rgba(122, 90, 248, 0.3);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.scroll-indicator:hover .mouse {
    box-shadow: 0 0 20px rgba(122, 90, 248, 0.6);
    border-color: #7a5af8;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Scroll text */
.scroll-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    animation: fadeText 2.5s ease-in-out infinite;
}

@keyframes fadeText {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Floating particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-title .layer {
        font-size: 10vw;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title .layer {
        font-size: 12vw;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-bg::before,
    .hero-bg::after {
        filter: blur(80px);
    }

    .hero-bg::before {
        width: 300px;
        height: 300px;
    }

    .hero-bg::after {
        width: 350px;
        height: 350px;
    }
}

/* ================================
           ABOUT SECTION - SYNORASOL
           ================================ */
.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

/* Background Glow Overlay */
.about::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.2), transparent 70%);
    filter: blur(120px);
    z-index: 0;
}

.about::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
    filter: blur(150px);
    z-index: 0;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 200px;
    height: 200px;
    background: rgba(122, 90, 248, 0.4);
    top: 20%;
    left: 10%;
}

.float-2 {
    width: 150px;
    height: 150px;
    background: rgba(0, 194, 255, 0.3);
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Content */
.about-content {
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.mission-text {
    font-size: 1.15rem;
    color: #b8b8d4;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
    font-family: 'Inter', sans-serif;
}


.mission-text1 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
    font-family: 'montserrat', sans-serif;
}

/* Image */
.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: var(--gradient);
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.about-image img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    position: relative;
    z-index: 1;
}

.about-image:hover::before {
    transform: rotate(2deg) scale(1.02);
    opacity: 0.5;
}

.about-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(122, 90, 248, 0.4);
}

/* Stats */
.stats-container {
    position: relative;
}

.stat {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(122, 90, 248, 0.3);
}

.stat:hover::before {
    opacity: 0.1;
}

.counter {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #7a5af8, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.stat span:last-child {
    font-size: 0.95rem;
    color: #b8b8d4;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Additional Info Cards */
.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 25px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(122, 90, 248, 0.2);
}

.info-card i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.info-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
    color: #b8b8d4;
    margin: 0;
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content h2 {
        font-size: 2.5rem;
    }

    .counter {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .stat {
        padding: 20px 15px;
    }

    .counter {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ffffff, #c9ccff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mission-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-container {
        text-align: center;
    }
}

/* ================================
   SERVICES SECTION - SYNORASOL
   ================================ */
.services {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #0b0d1b;
    z-index: 1;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 140%;
    background: url('https://i.pinimg.com/736x/da/5d/d2/da5dd24af61c57c9a17ce52f9ec0b518.jpg') center / cover no-repeat;
    transform: translateY(var(--parallax-y, 0)); /* Updated this line */
    z-index: 0;
    opacity: 0.15;
    will-change: transform;
    transition: transform 0.1s linear; /* Smooth parallax */
}

.services::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.1), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.12), transparent 70%);
    z-index: 1;
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.1rem;
    color: #b8b8d4;
    font-family: 'Inter', sans-serif;
}
/* --- Service Cards --- */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: 
        transform 0.6s cubic-bezier(0.25, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.25, 1, 0.3, 1),
        background 0.4s ease,
        border 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    z-index: 2;
    margin-bottom: 30px;
    transform-style: preserve-3d; /* Enables 3D tilt effect */
    will-change: transform, box-shadow; /* Optimizes GPU rendering */
}

.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #7a5af8, #00c2ff, #7a5af8);
    opacity: 0;
    transition: opacity 0.5s ease, transform 1s ease;
    z-index: -1;
    transform: rotate(45deg);
}

.service-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-12px) !important;
    box-shadow: 0 20px 50px rgba(0, 194, 255, 0.2);
}

.service-card:hover::before {
    opacity: 0.2;
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(122, 90, 248, 0.15), rgba(0, 194, 255, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #00c2ff;
    box-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(122, 90, 248, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.service-card p {
    color: #b8b8d4;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Large Tablets / Small Laptops */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.4rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-card {
        padding: 40px 25px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

/* Tablets / Large Mobile */
@media (max-width: 768px) {
    .services {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 35px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .services {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

/* Testimonials Section */
/* ===== BASE STYLES ===== */
.testimonials {
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.2;
    animation: glow 6s infinite alternate;
}

@keyframes glow {
    from {
        transform: scale(1);
        opacity: 0.15;
    }

    to {
        transform: scale(1.3);
        opacity: 0.25;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    text-align: center;
}

.section-header p {
    color: #ccc;
    text-align: center;
}

.testimonial-slide {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.carousel-item.active .testimonial-card {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.client-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.client-info p {
    font-size: 0.95rem;
    color: #bbb;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablets & Large Devices */
@media (max-width: 992px) {
    .testimonials {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 35px;
    }

    .client-image {
        width: 80px;
        height: 80px;
    }

    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .stars {
        font-size: 1.1rem;
    }

    .client-info h4 {
        font-size: 1.1rem;
    }

    .client-info p {
        font-size: 0.9rem;
    }
}

/* Small Tablets & Large Mobiles */
@media (max-width: 768px) {
    .testimonial-slide {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 30px;
        max-width: 90%;
    }

    .client-image {
        width: 70px;
        height: 70px;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .stars {
        font-size: 1rem;
    }

    .client-info h4 {
        font-size: 1rem;
    }

    .client-info p {
        font-size: 0.85rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .testimonials {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 25px;
        max-width: 95%;
        border-radius: 15px;
    }

    .client-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .stars {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .client-info h4 {
        font-size: 0.95rem;
    }

    .client-info p {
        font-size: 0.8rem;
    }
}

/* CTA Banner */
/* ===== BASE STYLES (As you have) ===== */
.cta-section {
    background: linear-gradient(135deg, #6A11CB, #2575FC);
    border-radius: 30px;
    padding: 80px 60px;
    margin: 100px auto;
    max-width: 1400px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    animation: glowMove 15s linear infinite;
}

.cta-section::after {
    animation-delay: -7s;
}

@keyframes glowMove {
    0% {
        transform: rotate(0deg) translate(-50px, -50px);
    }

    100% {
        transform: rotate(360deg) translate(-50px, -50px);
    }
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-left {
    flex: 1;
}

.cta-left .tag {
    display: inline-block;
    background: #00F0FF;
    color: #0A0A0A;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.cta-left h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFFFFF, #B5E8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #E2E6F0;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #00F0FF;
    color: #0A0A0A;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.cta-button span {
    margin-left: 8px;
    font-size: 1.2rem;
}

.cta-button:hover {
    background: #111;
    color: #00F0FF;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature .dot {
    width: 12px;
    height: 12px;
    background: #00F0FF;
    border-radius: 50%;
    margin-top: 7px;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.feature p {
    font-size: 1rem;
    color: #D0D6E0;
    line-height: 1.5;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablets & Large Devices */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        gap: 40px;
    }

    .cta-section {
        padding: 60px 40px;
        margin: 80px auto;
    }

    .cta-left h2 {
        font-size: 2.2rem;
    }

    .cta-left p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 12px 25px;
    }

    .cta-button span {
        font-size: 1rem;
    }

    .feature h4 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.95rem;
    }
}

/* Small Tablets & Large Mobiles */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 25px;
        margin: 60px auto;
        border-radius: 20px;
    }

    .cta-left h2 {
        font-size: 2rem;
    }

    .cta-left p {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .cta-button span {
        font-size: 0.95rem;
    }

    .feature h4 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .cta-section {
        padding: 40px 15px;
        margin: 40px 10px;
        border-radius: 15px;
    }

    .cta-left h2 {
        font-size: 1.6rem;
    }

    .cta-left p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .cta-button span {
        font-size: 0.9rem;
    }

    .feature h4 {
        font-size: 0.95rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    .feature .dot {
        width: 10px;
        height: 10px;
        margin-top: 5px;
    }
}

/* Contact Section */
/* ===== BASE STYLES ===== */
.connect-section {
    background:
        radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.06) 0%, transparent 50%),
        rgba(10, 10, 27, 0.95);
    padding: 80px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(122, 90, 248, 0.1);
}

/* Background Elements */
.connect-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: 0;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(122, 90, 248, 0.4);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 194, 255, 0.3);
    bottom: 15%;
    right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Header */
.connect-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    text-align: center;
}

.connect-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1.1;
}

.connect-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Connect Options */
.connect-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.connect-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.connect-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.connect-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.connect-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.connect-card:hover,
.connect-card.active {
    transform: translateY(-8px);
    border-color: rgba(122, 90, 248, 0.3);
    box-shadow:
        0 20px 40px rgba(122, 90, 248, 0.2),
        0 0 0 1px rgba(122, 90, 248, 0.1);
}

.connect-card:hover .icon,
.connect-card.active .icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.connect-card:hover p,
.connect-card.active p {
    opacity: 1;
    transform: translateY(0);
}

/* Connect Details */
.connect-details {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.detail-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.connect-details p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.connect-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    max-width: 300px;
}

.btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn.call {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn.call:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.4);
}

.btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */

/* Laptops & Tablets */
@media (max-width: 1024px) {
    .connect-header h2 {
        font-size: 3rem;
    }

    .connect-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets & Large Phones */
@media (max-width: 768px) {
    .connect-section {
        padding: 60px 24px;
        border-radius: 24px;
    }

    .connect-header h2 {
        font-size: 2.5rem;
    }

    .connect-header p {
        font-size: 1.1rem;
    }

    .connect-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connect-details {
        padding: 40px 24px;
    }

    .detail-title {
        font-size: 1.8rem;
    }

    .connect-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .connect-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .connect-card {
        padding: 30px 20px;
    }

    .connect-card .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .connect-card h4 {
        font-size: 1.1rem;
    }

    .connect-card p {
        font-size: 0.85rem;
    }

    .connect-details {
        padding: 30px 15px;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .connect-details p {
        font-size: 1rem;
    }
}

/* ===================== TRUSTED COMPANIES SECTION ===================== */
.trusted-section {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(122, 90, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 194, 255, 0.06) 0%, transparent 50%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(122, 90, 248, 0.4);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 194, 255, 0.3);
    bottom: 15%;
    right: 8%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    top: 60%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(30px, -40px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) rotate(240deg) scale(0.9);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Companies Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.company-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.company-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.company-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.company-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hover Effects */
.company-card:hover {
    transform: translateY(-10px);
    border-color: rgba(122, 90, 248, 0.3);
    box-shadow:
        0 25px 50px rgba(122, 90, 248, 0.2),
        0 0 0 1px rgba(122, 90, 248, 0.1);
}

.company-card:hover::before {
    opacity: 0.1;
}

.company-card:hover .company-logo {
    transform: scale(1.1);
    border-color: rgba(122, 90, 248, 0.3);
}

.company-card:hover .company-logo::before {
    opacity: 0.1;
}

.company-card:hover h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Infinite Scroll Marquee */
.marquee-section {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    margin: 0 40px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.marquee-item:hover {
    background: rgba(122, 90, 248, 0.1);
    border-color: rgba(122, 90, 248, 0.3);
    transform: translateY(-5px);
}

.marquee-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1); /* makes logos white on dark backgrounds */
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.marquee-logo img:hover {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Stats Overview */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 90, 248, 0.3);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.stat-number-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 3rem;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 24px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-card {
        padding: 30px 20px;
    }

    .company-logo {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .marquee-item {
        margin: 0 20px;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .stats-overview {
        grid-template-columns: 1fr;
    }

    .company-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-number-large {
        font-size: 2rem;
    }
}

/*==============
Footer
==========*/
.footer {
    background: #0b021a;
    color: #fff;
    padding: 80px 5%;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    /* center all items */
    text-align: center;
    /* text align center by default */
}

/* Newsletter */
.newsletter {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    background: linear-gradient(90deg, #7F00FF, var(--card-bg));
    border-radius: 25px;
    padding: 40px 50px;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    width: 260px;
}

.newsletter-button {
    background: #fff;
    color: #7F00FF;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-button:hover {
    background: #000;
    color: #fff;
}

/* Main footer section */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

/* Brand */
.footer-brand {
    flex: 1;
    min-width: 260px;
    text-align: center;
    /* center brand content */
}

.footer-brand .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 100px;
    /* adjust size to fit your footer */
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0, 194, 255, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-brand .logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(122, 90, 248, 0.6));
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(90deg, #7F00FF, var(--accent));
}

/* Footer columns */
.footer-links-group {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
    /* center all text */
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--accent);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    /* center bottom content */
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.95rem;
    text-align: center;
}

.scroll-top {
    background: linear-gradient(90deg, #7F00FF, var(--accent));
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 5%;
    }

    .newsletter-content h3 {
        font-size: 1.5rem;
    }

    .newsletter-input {
        width: 100%;
        max-width: 260px;
    }

    .newsletter-button {
        width: 100%;
        max-width: 260px;
    }

    .footer-brand .logo {
        font-size: 1.5rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column ul li {
        font-size: 0.9rem;
    }
}

/*=============================== About Page Styling =============================*/
/* ===== ABOUT PAGE SECTIONS ===== */
.aboutpage-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.aboutpage-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.aboutpage-text {
    font-size: 1.15rem;
    color: #cfcfe8;
    line-height: 1.8;
}

.aboutpage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(122, 90, 248, 0.05);
}

.aboutpage-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(122, 90, 248, 0.25);
}

.aboutpage-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(122, 90, 248, 0.2), rgba(0, 194, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #7a5af8;
    transition: 0.4s ease;
}

.aboutpage-card:hover .aboutpage-card-icon {
    background: linear-gradient(135deg, #7a5af8, #00c2ff);
    color: #fff;
    transform: scale(1.1);
}

.aboutpage-card-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.aboutpage-card-text {
    color: #bcbcd7;
    line-height: 1.6;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TEAM SECTION ===== */
/* TEAM SECTION */
.team-section {
    background: radial-gradient(circle at top left, #0b021a, #10042a 70%, #0b021a);
    padding: 120px 8%;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.team-section::before,
.team-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    filter: blur(80px);
    opacity: 0.8;
}

.team-section::before {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.25), transparent 70%);
}

.team-section::after {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
}

.team-heading {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.team-heading span {
    background: linear-gradient(90deg, #7a5af8, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-subtext {
    color: #a7a8b3;
    max-width: 620px;
    margin: 15px auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    justify-items: center;
}

/* Team Card */
.team-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(122, 90, 248, 0.25);
}

/* Team Image */
.team-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}

/* Overlay Info */
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 2, 26, 0.9), rgba(11, 2, 26, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-info {
    opacity: 1;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: #00c2ff;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .team-heading {
        font-size: 2.5rem;
    }

    .team-card {
        max-width: 300px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 100px 5%;
    }

    .team-heading {
        font-size: 2.2rem;
    }

    .team-card {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .team-heading {
        font-size: 1.8rem;
    }

    .team-subtext {
        font-size: 0.9rem;
    }
}

/* Portfolio Section */
/* Portfolio Section */
.portfolio1-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

/* Section Titles */
.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #7a5af8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #ffffff, #c9ccff, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Portfolio Slider */
.portfolio1-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio1-track {
    display: flex;
    animation: scroll 40s linear infinite;
}

.portfolio1-item {
    flex: 0 0 auto;
    margin-right: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.portfolio1-item img {
    width: 300px;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(122, 90, 248, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.portfolio1-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    border-radius: 0 0 18px 18px;
    pointer-events: none;
}

.portfolio1-item:hover img {
    transform: scale(1.07) translateY(-6px);
    box-shadow: 0 20px 40px rgba(122, 90, 248, 0.25);
    border-color: rgba(122, 90, 248, 0.3);
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Button Wrapper */
.portfolio1-btn-wrapper {
    margin-top: 60px;
}

/* Gradient Button */
.portfolio1-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #7a5af8, #00c2ff);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(122, 90, 248, 0.3);
}

.portfolio1-btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.portfolio1-btn:hover {
    background: linear-gradient(135deg, #00c2ff, #7a5af8);
    box-shadow: 0 0 25px rgba(0, 194, 255, 0.4);
    transform: translateY(-3px);
}

.portfolio1-btn:hover .arrow {
    transform: translateX(6px);
}

/* -------------------- RESPONSIVE DESIGN -------------------- */

/* Tablets */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .portfolio1-item img {
        width: 240px;
        height: 340px;
    }

    .portfolio1-track {
        animation: scroll 50s linear infinite;
    }

    .portfolio1-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .portfolio1-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .portfolio1-track {
        animation: scroll 60s linear infinite;
    }

    .portfolio1-item img {
        width: 200px;
        height: 280px;
        margin-right: 15px;
    }

    .portfolio1-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 40px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .portfolio1-item img {
        width: 160px;
        height: 230px;
        margin-right: 10px;
    }

    .portfolio1-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .portfolio1-btn-wrapper {
        margin-top: 40px;
    }
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .aboutpage-title {
        font-size: 4rem;
    }

    .aboutpage-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .aboutpage-title {
        font-size: 3.5rem;
    }

    .aboutpage-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 12px 20px;
    }

    .logo {
        font-size: 20px;
    }

    .social-icons a {
        font-size: 16px;
        gap: 15px;
    }

    .hamburger-wrapper {
        width: 60px;
        height: 60px;
    }

    .hamburger {
        width: 50px;
        height: 50px;
    }

    .menu-circle-text {
        width: 80px;
        height: 80px;
    }

    .menu-links a {
        font-size: 36px;
    }

    .menu-links a::before {
        left: -30px;
        font-size: 12px;
    }

    .aboutpage-hero {
        height: 60vh;
    }

    .aboutpage-title {
        font-size: 2.8rem;
    }

    .aboutpage-subtitle {
        font-size: 1.1rem;
    }

    .aboutpage-section {
        padding: 80px 0;
    }

    .aboutpage-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }

    .logo {
        font-size: 18px;
    }

    .social-icons a {
        font-size: 14px;
        gap: 10px;
    }

    .hamburger-wrapper {
        width: 50px;
        height: 50px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .menu-circle-text {
        width: 70px;
        height: 70px;
    }

    .menu-links a {
        font-size: 28px;
    }

    .menu-links a::before {
        left: -25px;
        font-size: 10px;
    }

    .aboutpage-hero {
        height: 50vh;
    }

    .aboutpage-title {
        font-size: 2.2rem;
    }

    .aboutpage-subtitle {
        font-size: 1rem;
    }

    .aboutpage-heading {
        font-size: 1.8rem;
    }

    .aboutpage-card {
        padding: 30px 20px;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PARTNERS SECTION */
.partners-section {
    padding: 100px 6%;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Heading */
.partners-heading {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.partners-subtext {
    color: #a7a8b3;
    max-width: 650px;
    margin: 10px auto 60px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Logo Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 20px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100%;
    max-width: 200px;
}

.partner-logo img {
    max-width: 100px;
    width: 100%;
    opacity: 0.8;
    transition: all 0.4s ease;
    filter: grayscale(100%);
    object-fit: contain;
}

.partner-logo:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 194, 255, 0.3);
    box-shadow: 0 10px 40px rgba(122, 90, 248, 0.2);
}

.partner-logo:hover img {
    opacity: 1;
    filter: none;
}

/* Tablets */
@media (max-width: 992px) {
    .partners-heading {
        font-size: 2.2rem;
    }

    .partners-subtext {
        font-size: 0.95rem;
        margin-bottom: 50px;
    }

    .partner-logo {
        height: 110px;
        max-width: 180px;
    }

    .partner-logo img {
        max-width: 90px;
    }
}

/* Phones */
@media (max-width: 768px) {
    .partners-section {
        padding: 80px 5%;
    }

    .partners-heading {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .partners-subtext {
        font-size: 0.9rem;
        max-width: 90%;
        margin-bottom: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 25px;
    }

    .partner-logo {
        height: 100px;
        max-width: 160px;
        padding: 25px 15px;
    }

    .partner-logo img {
        max-width: 80px;
    }
}

/* Very Small Devices */
@media (max-width: 480px) {
    .partners-section {
        padding: 70px 4%;
    }

    .partners-heading {
        font-size: 1.7rem;
    }

    .partners-subtext {
        font-size: 0.85rem;
        margin-bottom: 35px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        height: 90px;
        max-width: 140px;
        padding: 20px 10px;
    }

    .partner-logo img {
        max-width: 70px;
    }
}

/*===================== Service page styling ====================*/
.servicepage-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.servicepage-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SERVICES PAGE SECTIONS ===== */
.servicepage-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.servicepage-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.servicepage-section-bg::before,
.servicepage-section-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.servicepage-section-bg::before {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.3), transparent 70%);
}

.servicepage-section-bg::after {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
}

.servicepage-content {
    position: relative;
    z-index: 2;
}

.servicepage-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.servicepage-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== SERVICES GRID ===== */
.servicepage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.servicepage-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.servicepage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.servicepage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

.servicepage-card:hover::before {
    opacity: 0.1;
}

.servicepage-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.servicepage-card:hover .servicepage-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.servicepage-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.servicepage-card-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.servicepage-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.servicepage-features li {
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.servicepage-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.servicepage-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.servicepage-cta:hover {
    gap: 15px;
    color: #fff;
}

/* ===== SERVICE CATEGORIES ===== */

.servicepage-category {
    text-align: center;
    margin-bottom: 60px;
}

.servicepage-category-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
    transition: var(--transition);
}

.servicepage-category:hover .servicepage-category-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.servicepage-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.servicepage-category-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== PROCESS SECTION ===== */
.servicepage-process {
    background: radial-gradient(circle at 80% 20%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Process Steps Container */
.servicepage-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 80px;
    flex-wrap: nowrap;
    gap: 40px;
}

/* Connecting Line */
.servicepage-process-steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 1;
}

/* Step Card */
.servicepage-process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 280px;
    margin: 0 auto;
}

/* Step Number Circle */
.servicepage-step-number {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--card-bg);
    border: 2px solid rgba(122, 90, 248, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    transition: all 0.4s ease;
}

.servicepage-process-step:hover .servicepage-step-number {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

/* Text */
.servicepage-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.servicepage-step-desc {
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* =============================== */
/* RESPONSIVE DESIGN */
/* =============================== */

/* Tablets */
@media (max-width: 992px) {
    .servicepage-process {
        padding: 80px 6%;
    }

    .servicepage-process-steps {
        gap: 30px;
    }

    .servicepage-step-number {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }

    .servicepage-step-title {
        font-size: 1.2rem;
    }

    .servicepage-step-desc {
        font-size: 0.95rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .servicepage-process {
        padding: 70px 5%;
    }

    .servicepage-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    /* Remove horizontal line */
    .servicepage-process-steps::before {
        display: none;
    }

    .servicepage-process-step {
        text-align: center;
        max-width: 320px;
        position: relative;
    }

    /* Vertical connector line */
    .servicepage-process-step::before {
        content: "";
        position: absolute;
        top: -35px;
        left: 50%;
        width: 2px;
        height: 30px;
        background: linear-gradient(to bottom, transparent, var(--accent), transparent);
        transform: translateX(-50%);
    }

    .servicepage-process-step:first-child::before {
        display: none;
    }

    .servicepage-step-number {
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .servicepage-step-title {
        font-size: 1.1rem;
    }

    .servicepage-step-desc {
        font-size: 0.9rem;
        max-width: 90%;
    }
}

/* Very Small Devices */
@media (max-width: 480px) {
    .servicepage-process {
        padding: 60px 4%;
    }

    .servicepage-step-number {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }

    .servicepage-step-title {
        font-size: 1rem;
    }

    .servicepage-step-desc {
        font-size: 0.85rem;
    }

    .servicepage-process-steps {
        gap: 40px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .servicepage-title {
        font-size: 4rem;
    }

    .servicepage-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .servicepage-title {
        font-size: 3.5rem;
    }

    .servicepage-heading {
        font-size: 2.5rem;
    }

    .servicepage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .servicepage-title {
        font-size: 2.8rem;
    }

    .servicepage-subtitle {
        font-size: 1.1rem;
    }

    .servicepage-section {
        padding: 80px 0;
    }

    .servicepage-heading {
        font-size: 2.2rem;
    }

    .servicepage-card {
        padding: 40px 30px;
    }

    .servicepage-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .servicepage-category-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .servicepage-step-number {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .servicepage-title {
        font-size: 2.2rem;
    }

    .servicepage-subtitle {
        font-size: 1rem;
    }

    .servicepage-heading {
        font-size: 1.8rem;
    }

    .servicepage-card {
        padding: 30px 20px;
    }

    .servicepage-category-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .servicepage-step-number {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================Contact page styling =================== */
.contactpage-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contactpage-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CONTACT PAGE SECTIONS ===== */
.contactpage-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contactpage-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contactpage-section-bg::before,
.contactpage-section-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.contactpage-section-bg::before {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.3), transparent 70%);
}

.contactpage-section-bg::after {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
}

.contactpage-content {
    position: relative;
    z-index: 2;
}

.contactpage-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.contactpage-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== CONTACT FORM ===== */
.contactpage-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contactpage-form {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contactpage-form-group {
    margin-bottom: 30px;
}

.contactpage-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

.contactpage-form-input,
.contactpage-form-textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.contactpage-form-input:focus,
.contactpage-form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
}

.contactpage-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contactpage-form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.contactpage-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 194, 255, 0.4);
}

/* ===== CONTACT INFO ===== */
.contactpage-info {
    text-align: center;
    margin-top: 60px;
}

.contactpage-info-item {
    margin-bottom: 25px;
}

.contactpage-info-label {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.contactpage-info-value {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contactpage-title {
        font-size: 4rem;
    }

    .contactpage-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .contactpage-title {
        font-size: 3.5rem;
    }

    .contactpage-heading {
        font-size: 2.5rem;
    }

    .contactpage-form {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .contactpage-title {
        font-size: 2.8rem;
    }

    .contactpage-subtitle {
        font-size: 1.1rem;
    }

    .contactpage-section {
        padding: 80px 0;
    }

    .contactpage-heading {
        font-size: 2.2rem;
    }

    .contactpage-form {
        padding: 40px 30px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .contactpage-title {
        font-size: 2.2rem;
    }

    .contactpage-subtitle {
        font-size: 1rem;
    }

    .contactpage-heading {
        font-size: 1.8rem;
    }

    .contactpage-form {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .contactpage-form-input,
    .contactpage-form-textarea {
        padding: 15px;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== Portfolio page styling ==============================*/
.portfoliopage-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.portfoliopage-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== PORTFOLIO PAGE SECTIONS ===== */
.portfoliopage-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.portfoliopage-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.portfoliopage-section-bg::before,
.portfoliopage-section-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.portfoliopage-section-bg::before {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.3), transparent 70%);
}

.portfoliopage-section-bg::after {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
}

.portfoliopage-content {
    position: relative;
    z-index: 2;
}

.portfoliopage-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    text-align: center;
}

.portfoliopage-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PORTFOLIO FILTER ===== */
.portfoliopage-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.portfoliopage-filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.portfoliopage-filter-btn:hover,
.portfoliopage-filter-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

/* ===== PORTFOLIO GRID ===== */
.portfoliopage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfoliopage-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.portfoliopage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

.portfoliopage-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfoliopage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfoliopage-card:hover .portfoliopage-card-image img {
    transform: scale(1.1);
}

.portfoliopage-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 90, 248, 0.8), rgba(0, 194, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfoliopage-card:hover .portfoliopage-card-overlay {
    opacity: 1;
}

.portfoliopage-card-actions {
    display: flex;
    gap: 15px;
}

.portfoliopage-card-action {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.portfoliopage-card-action:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

.portfoliopage-card-content {
    padding: 30px;
}

.portfoliopage-card-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(122, 90, 248, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.portfoliopage-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.portfoliopage-card-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfoliopage-card-stats {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.portfoliopage-card-stat {
    text-align: center;
}

.portfoliopage-card-stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.portfoliopage-card-stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* ===== SERVICE SECTIONS ===== */
.portfoliopage-service-section {
    background: radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

.portfoliopage-service-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfoliopage-service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.portfoliopage-service-section:hover .portfoliopage-service-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

/* ===== STATS SECTION ===== */
.portfoliopage-stats {
    background: radial-gradient(circle at 80% 20%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

.portfoliopage-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfoliopage-stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.portfoliopage-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

.portfoliopage-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.portfoliopage-stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .portfoliopage-title {
        font-size: 4rem;
    }

    .portfoliopage-section-title {
        font-size: 3rem;
    }

    .portfoliopage-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .portfoliopage-title {
        font-size: 3.5rem;
    }

    .portfoliopage-section-title {
        font-size: 2.5rem;
    }

    .portfoliopage-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfoliopage-title {
        font-size: 2.8rem;
    }

    .portfoliopage-subtitle {
        font-size: 1.1rem;
    }

    .portfoliopage-section {
        padding: 80px 0;
    }

    .portfoliopage-section-title {
        font-size: 2.2rem;
    }

    .portfoliopage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfoliopage-filter {
        gap: 10px;
    }

    .portfoliopage-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfoliopage-title {
        font-size: 2.2rem;
    }

    .portfoliopage-subtitle {
        font-size: 1rem;
    }

    .portfoliopage-section-title {
        font-size: 1.8rem;
    }

    .portfoliopage-card-content {
        padding: 20px;
    }

    .portfoliopage-card-stats {
        flex-direction: column;
        gap: 10px;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================Testimonial page styling *==============================/
       .testimonialspage-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffffff, #c9ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .testimonialspage-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===== TESTIMONIALS PAGE SECTIONS ===== */
.testimonialspage-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.testimonialspage-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonialspage-section-bg::before,
.testimonialspage-section-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.testimonialspage-section-bg::before {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.3), transparent 70%);
}

.testimonialspage-section-bg::after {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
}

.testimonialspage-content {
    position: relative;
    z-index: 2;
}

.testimonialspage-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonialspage-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TESTIMONIALS GRID ===== */
.testimonialspage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonialpage-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonialpage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonialpage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

.testimonialpage-card:hover::before {
    opacity: 0.05;
}

.testimonialpage-card-quote {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
}

.testimonialpage-card-content {
    position: relative;
    z-index: 2;
}

.testimonialpage-card-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonialpage-card-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient);
    border-radius: 10px;
}

.testimonialpage-card-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonialpage-card-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(122, 90, 248, 0.3);
    flex-shrink: 0;
}

.testimonialpage-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonialpage-card-info {
    flex: 1;
}

.testimonialpage-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.testimonialpage-card-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.testimonialpage-card-company {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonialpage-card-rating {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.testimonialpage-card-star {
    color: #FFD700;
    font-size: 1rem;
}

/* ===== FEATURED TESTIMONIALS ===== */
.testimonialspage-featured {
    background: radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

.testimonialpage-featured-card {
    background: var(--card-bg);
    border: 2px solid rgba(122, 90, 248, 0.3);
    border-radius: 30px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonialpage-featured-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: -1;
}

.testimonialpage-featured-quote {
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    left: 50px;
    font-family: 'Playfair Display', serif;
}

.testimonialpage-featured-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonialpage-featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.testimonialpage-featured-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(122, 90, 248, 0.5);
}

.testimonialpage-featured-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonialpage-featured-info {
    text-align: left;
}

.testimonialpage-featured-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.testimonialpage-featured-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 8px;
}

.testimonialpage-featured-company {
    color: var(--text-gray);
    font-size: 1rem;
}

.testimonialpage-featured-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 15px;
}

.testimonialpage-featured-star {
    color: #FFD700;
    font-size: 1.2rem;
}

/* ===== TESTIMONIALS STATS ===== */
.testimonialspage-stats {
    background: radial-gradient(circle at 80% 20%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

.testimonialspage-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonialpage-stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonialpage-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

.testimonialpage-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.testimonialpage-stat-card:hover .testimonialpage-stat-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.testimonialpage-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonialpage-stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .testimonialspage-title {
        font-size: 4rem;
    }

    .testimonialspage-section-title {
        font-size: 3rem;
    }

    .testimonialspage-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .testimonialspage-title {
        font-size: 3.5rem;
    }

    .testimonialspage-section-title {
        font-size: 2.5rem;
    }

    .testimonialpage-featured-card {
        padding: 50px 40px;
    }

    .testimonialpage-featured-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonialspage-title {
        font-size: 2.8rem;
    }

    .testimonialspage-subtitle {
        font-size: 1.1rem;
    }

    .testimonialspage-section {
        padding: 80px 0;
    }

    .testimonialspage-section-title {
        font-size: 2.2rem;
    }

    .testimonialspage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonialpage-card {
        padding: 40px 30px;
    }

    .testimonialpage-featured-card {
        padding: 40px 30px;
    }

    .testimonialpage-featured-text {
        font-size: 1.1rem;
    }

    .testimonialpage-featured-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonialpage-featured-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .testimonialspage-title {
        font-size: 2.2rem;
    }

    .testimonialspage-subtitle {
        font-size: 1rem;
    }

    .testimonialspage-section-title {
        font-size: 1.8rem;
    }

    .testimonialpage-card {
        padding: 30px 20px;
    }

    .testimonialpage-featured-card {
        padding: 30px 20px;
    }

    .testimonialpage-featured-text {
        font-size: 1rem;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WEB DEVELOPMENT PAGE SECTIONS ===== */
.webpage-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.webpage-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.webpage-section-bg::before,
.webpage-section-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.webpage-section-bg::before {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.3), transparent 70%);
}

.webpage-section-bg::after {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
}

.webpage-content {
    position: relative;
    z-index: 2;
}

.webpage-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    text-align: center;
}

.webpage-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== WEB DEVELOPMENT SERVICES ===== */
.webpage-services {
    background: radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

.webpage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.webpage-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.webpage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.webpage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

.webpage-card:hover::before {
    opacity: 0.1;
}

.webpage-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.webpage-card:hover .webpage-card-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.webpage-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.webpage-card-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.webpage-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.webpage-card-features li {
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.webpage-card-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* =====Why choose section ===*/
.why-choose-faq {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 60px;
}

.faq-title .layer {
    display: block;
}

.faq-title .solid {
    color: var(--text-solid);
}

.faq-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
}

/* Accordion */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 15px 0 25px;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(-135deg);
    border-color: var(--accent);
}

/* Animation */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.6rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .why-choose-faq {
        padding: 90px 6%;
    }

    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 16px 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-faq {
        padding: 70px 7%;
    }

    .faq-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .faq-answer p {
        font-size: 0.85rem;
        margin: 10px 0 20px;
    }
}

/* ===== PROCESS SECTION ===== */
.webpage-process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
    flex-wrap: wrap;
}

.webpage-process-steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 1;
}

.webpage-process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 200px;
    margin-bottom: 40px;
}

.webpage-step-number {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--card-bg);
    border: 2px solid rgba(122, 90, 248, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}

.webpage-process-step:hover .webpage-step-number {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.webpage-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.webpage-step-desc {
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* ===== PORTFOLIO SHOWCASE ===== */
.webpage-portfolio {
    background: radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.1) 0%, transparent 70%);
    padding: 100px 5%;
}

.webpage-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.webpage-portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.webpage-portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(122, 90, 248, 0.4);
    box-shadow: 0 25px 60px rgba(122, 90, 248, 0.25);
}

.webpage-portfolio-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.webpage-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.webpage-portfolio-card:hover img {
    transform: scale(1.15);
}

.webpage-portfolio-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #7a5af8, #00c2ff);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.webpage-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.webpage-portfolio-card:hover .webpage-portfolio-overlay {
    opacity: 1;
}

.portfolio-btn {
    background: linear-gradient(135deg, #7a5af8, #00c2ff);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.portfolio-btn:hover {
    background: linear-gradient(135deg, #00c2ff, #7a5af8);
}

.webpage-portfolio-content {
    padding: 25px;
}

.webpage-portfolio-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light, #fff);
    margin-bottom: 10px;
}

.webpage-portfolio-desc {
    color: var(--text-gray, #ccc);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 🔹 Responsive Tweaks */
@media (max-width: 768px) {
    .webpage-portfolio {
        padding: 70px 5%;
    }

    .webpage-portfolio-grid {
        gap: 25px;
    }

    .webpage-portfolio-card {
        border-radius: 18px;
    }

    .webpage-portfolio-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .webpage-portfolio-image {
        height: 200px;
    }

    .portfolio-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .webpage-title {
        font-size: 4rem;
    }

    .webpage-section-title {
        font-size: 3rem;
    }

    .webpage-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .webpage-portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .webpage-title {
        font-size: 3.5rem;
    }

    .webpage-section-title {
        font-size: 2.5rem;
    }

    .webpage-process-steps::before {
        display: none;
    }

    .webpage-process-steps {
        flex-direction: column;
        align-items: center;
    }

    .webpage-process-step {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .webpage-title {
        font-size: 2.8rem;
    }

    .webpage-subtitle {
        font-size: 1.1rem;
    }

    .webpage-section {
        padding: 80px 0;
    }

    .webpage-section-title {
        font-size: 2.2rem;
    }

    .webpage-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .webpage-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .webpage-title {
        font-size: 2.2rem;
    }

    .webpage-subtitle {
        font-size: 1rem;
    }

    .webpage-section-title {
        font-size: 1.8rem;
    }

    .webpage-card {
        padding: 30px 20px;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UI SHOWCASE SECTION ===== */
.webdesign-ui-showcase {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.webdesign-ui-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.webdesign-ui-content {
    flex: 1;
}

.webdesign-ui-visual {
    flex: 1;
    position: relative;
}

.webdesign-ui-device {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.webdesign-ui-device::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: 0;
}

.webdesign-ui-screen {
    background: #1e1e2f;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.webdesign-ui-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.webdesign-ui-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.webdesign-ui-features li i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

/*  tools section seo-sem */
.webpage-tools {
    color: #fff;
    padding: 100px 5%;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.webpage-tools .webpage-section-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.webpage-tools .webpage-text {
    max-width: 750px;
    margin: 0 auto 70px;
    color: #d1d1d1;
    font-size: 1rem;
    line-height: 1.6;
}

.tools-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    justify-items: center;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tool-card.glow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg at 50% 50%, #6a00ff, #00d4ff, #6a00ff);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.tool-card:hover::before {
    opacity: 0.2;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.tool-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.tool-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.tool-card:hover .tool-icon img {
    filter: none;
    transform: scale(1.1);
}

.tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.tool-card p {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .webpage-tools {
        padding: 70px 5%;
    }

    .tool-card {
        padding: 25px 20px;
    }

    .tool-icon img {
        width: 60px;
        height: 60px;
    }
}

/*platforms showcase section*/
.social-platforms {
    position: relative;
    color: #fff;
    padding: 100px 6%;
    overflow: hidden;
}

.social-bg {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200%;
    height: 200%;
    filter: blur(150px);
    z-index: 0;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.section-desc {
    color: #bdbdbd;
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.platforms-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 45px 30px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(66, 18, 198, 0.15), transparent, rgba(255, 65, 108, 0.15));
    transform: rotate(0deg);
    transition: 0.6s;
    opacity: 0;
}

.platform-card:hover::before {
    opacity: 1;
    transform: rotate(25deg);
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 25px var(--accent);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
    transition: color 0.4s ease;
}

.platform-card:hover .platform-icon {
    color: var(--accent);
}

.platform-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.platform-card p {
    color: #bfbfbf;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------------- RESPONSIVE DESIGN ---------------- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .social-platforms {
        padding: 80px 5%;
    }
}

@media (max-width: 768px) {
    .platforms-showcase {
        gap: 25px;
    }

    .platform-card {
        padding: 35px 25px;
    }

    .platform-icon {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .social-platforms {
        padding: 70px 5%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .platform-card {
        padding: 30px 20px;
    }

    .platform-card h3 {
        font-size: 1.2rem;
    }

    .platform-card p {
        font-size: 0.9rem;
    }
}

/* Touch device optimization (disable hover lift) */
@media (hover: none) {
    .platform-card:hover {
        transform: none;
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }
}

/*Philosphy section*/
.philosophy-section {
    position: relative;
    color: #fff;
    padding: 120px 5%;
    overflow: hidden;
}

/* Animated gradient background glow */
.philosophy-bg::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(104, 104, 104, 0.25), transparent 70%);
    top: -150px;
    left: -150px;
    animation: moveGlow 10s infinite alternate ease-in-out;
}

.philosophy-bg::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(83, 83, 83, 0.25), transparent 70%);
    bottom: -200px;
    right: -200px;
    animation: moveGlow 12s infinite alternate ease-in-out;
}

@keyframes moveGlow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, -40px);
    }
}

.philosophy-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.webpage-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.webpage-text {
    font-size: 1rem;
    color: #cfcfcf;
    line-height: 1.7;
}

/* Cards Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.philosophy-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(60px);
}

.philosophy-card:hover::before {
    opacity: 0.4;
}

.philosophy-icon {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.philosophy-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

.philosophy-desc {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    z-index: 2;
    position: relative;
}

/* Hover effects */
.philosophy-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .webpage-section-title {
        font-size: 2rem;
    }

    .philosophy-card {
        padding: 30px 20px;
    }
}

/*Tookit section vide editing*/
.toolkit-section {
    position: relative;
    padding: 120px 5%;
    color: #fff;
    overflow: hidden;
}

.toolkit-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #49494944, transparent 70%);
    filter: blur(100px);
    animation: floatGlow 6s ease-in-out infinite alternate;
}

.toolkit-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3c3c3c55, transparent 70%);
    filter: blur(120px);
    animation: floatGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    from {
        transform: translateY(0px);
        opacity: 0.9;
    }

    to {
        transform: translateY(30px);
        opacity: 0.7;
    }
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    justify-items: center;
}

.tool-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: 0.5s ease;
    overflow: hidden;
    z-index: 1;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.glow {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, #43434333, transparent 60%);
    opacity: 0;
    transition: 0.5s ease;
    filter: blur(40px);
    z-index: 0;
}

.tool-card:hover .glow {
    opacity: 1;
}

.tool-card img {
    width: 70px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    z-index: 2;
    position: relative;
}

.tool-card:hover img {
    transform: rotate(8deg) scale(1.1);
}

.tool-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #fff;
    z-index: 2;
    position: relative;
}

.tool-card p {
    font-size: 0.95rem;
    color: #c9c9c9;
    z-index: 2;
    position: relative;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
    .toolkit-title {
        font-size: 2rem;
    }

    .toolkit-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .tool-card {
        padding: 30px 15px;
    }
}

/*=====================Paid Advertising Page=========================*/
/* ===== PAID ADVERTISING SERVICES SECTION ===== */
.paidpage-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.paidpage-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.paidpage-section-bg::before,
.paidpage-section-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.paidpage-section-bg::before {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 90, 248, 0.3), transparent 70%);
}

.paidpage-section-bg::after {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.25), transparent 70%);
}

.paidpage-content {
    position: relative;
    z-index: 2;
}

.paidpage-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c9ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    text-align: center;
}

.paidpage-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.paidpage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.paidpage-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.paidpage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.paidpage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

.paidpage-card:hover::before {
    opacity: 0.1;
}

.paidpage-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.paidpage-card:hover .paidpage-card-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.paidpage-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.paidpage-card-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.paidpage-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.paidpage-card-features li {
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.paidpage-card-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ===== ADVERTISING PLATFORMS SECTION ===== */
.paidpage-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.paidpage-platform-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.paidpage-platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.paidpage-platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 90, 248, 0.15);
    border-color: rgba(122, 90, 248, 0.2);
}

.paidpage-platform-card:hover::before {
    opacity: 0.05;
}

.paidpage-platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(122, 90, 248, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
}

.paidpage-platform-card:hover .paidpage-platform-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

.paidpage-platform-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.paidpage-platform-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.paidpage-platform-features {
    list-style: none;
    padding: 0;
}

.paidpage-platform-features li {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.paidpage-platform-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ===== ADVERTISING METRICS SECTION ===== */
.paidpage-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.paidpage-metric-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.paidpage-metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.paidpage-metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 90, 248, 0.15);
    border-color: rgba(122, 90, 248, 0.2);
}

.paidpage-metric-card:hover::before {
    opacity: 0.05;
}

.paidpage-metric-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.paidpage-metric-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== ADVERTISING STRATEGY SECTION ===== */
.paidpage-strategy {
    padding: 100px 8%;
    text-align: center;
}

/* Steps container */
.paidpage-strategy-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
    flex-wrap: wrap;
}

/* Center line for desktop only */
.paidpage-strategy-steps::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 1;
}

/* Individual step */
.paidpage-strategy-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 220px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.paidpage-strategy-step:hover {
    transform: translateY(-8px);
}

/* Step circle */
.paidpage-step-number {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    background: var(--card-bg);
    border: 2px solid rgba(122, 90, 248, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}

.paidpage-strategy-step:hover .paidpage-step-number {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
}

/* Step text */
.paidpage-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.paidpage-step-desc {
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ===============================
   📱 MOBILE RESPONSIVE STYLING
================================ */
@media (max-width: 768px) {
    .paidpage-strategy-steps {
        flex-direction: column;
        align-items: center;
    }

    /* Remove the horizontal line */
    .paidpage-strategy-steps::before {
        display: none;
    }

    /* Vertical connector line */
    .paidpage-strategy-step::before {
        content: "";
        position: absolute;
        top: -40px;
        left: 50%;
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, var(--accent), transparent);
        transform: translateX(-50%);
        opacity: 0.6;
    }

    .paidpage-strategy-step:first-child::before {
        display: none;
    }

    /* Adjust sizing */
    .paidpage-step-number {
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
    }

    .paidpage-step-title {
        font-size: 1.2rem;
    }

    .paidpage-step-desc {
        font-size: 0.95rem;
    }
}

/* ===== AD FORMATS SHOWCASE ===== */
.paidpage-ad-formats {
    background: radial-gradient(circle at 20% 80%, rgba(122, 90, 248, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

.paidpage-ad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.paidpage-ad-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.paidpage-ad-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.paidpage-ad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 90, 248, 0.15);
    border-color: rgba(122, 90, 248, 0.2);
}

.paidpage-ad-card:hover::before {
    opacity: 0.05;
}

.paidpage-ad-preview {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.paidpage-ad-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
}

.paidpage-ad-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.paidpage-ad-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== CASE STUDIES SECTION ===== */
.paidpage-case-studies {
    padding: 60px 20px;
    /* Added padding for breathing space */
}

/* Responsive Grid */
.paidpage-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Fit smaller screens gracefully */
    gap: 25px;
    margin-top: 60px;
}

/* Card styling */
.paidpage-case-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

/* Hover effect */
.paidpage-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(122, 90, 248, 0.2);
    border-color: rgba(122, 90, 248, 0.3);
}

/* Image section */
.paidpage-case-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.paidpage-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.paidpage-case-card:hover .paidpage-case-image img {
    transform: scale(1.08);
}

/* Content */
.paidpage-case-content {
    padding: 25px 20px;
    text-align: center;
    /* Center content for mobile harmony */
}

.paidpage-case-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(122, 90, 248, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.paidpage-case-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.paidpage-case-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Stats */
.paidpage-case-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    text-align: center;
}

.paidpage-case-stat {
    flex: 1 1 100px;
    min-width: 100px;
    max-width: 150px;
}

.paidpage-case-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    line-height: 1.2;
}

.paidpage-case-stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* 🌐 Responsive Design Tweaks */
@media (max-width: 768px) {
    .paidpage-case-grid {
        grid-template-columns: 1fr;
        /* Single column for tablets/phones */
        gap: 25px;
    }

    .paidpage-case-content {
        padding: 20px;
    }

    .paidpage-case-title {
        font-size: 1.2rem;
    }

    .paidpage-case-desc {
        font-size: 0.9rem;
    }

    .paidpage-case-stat-number {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .paidpage-case-content {
        padding: 18px 15px;
    }

    .paidpage-case-title {
        font-size: 1.1rem;
    }

    .paidpage-case-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .paidpage-case-stat-number {
        font-size: 1.3rem;
    }

    .paidpage-case-stats {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .paidpage-section-title {
        font-size: 3rem;
    }

    .paidpage-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .paidpage-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .paidpage-section {
        padding: 80px 0;
    }

    .paidpage-section-title {
        font-size: 2.2rem;
    }

    .paidpage-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .paidpage-card {
        padding: 40px 30px;
    }

    .paidpage-case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .paidpage-section-title {
        font-size: 1.8rem;
    }

    .paidpage-card {
        padding: 30px 20px;
    }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== LIGHTBOX STYLE ====== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    text-align: center;
    max-width: 90%;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.lightbox-title {
    color: #fff;
    margin-top: 10px;
    font-size: 18px;
}

.lightbox-close {
  position: fixed;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: #000000;
    cursor: pointer;
    z-index: 3000;
    background: black;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.4);
}


@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* Website design page lightbox*/
/* Background overlay */
.lightbox1 {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* When active */
.lightbox1.active {
  display: flex;
  opacity: 1;
}

/* Lightbox content container */
.lightbox1-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  max-width: 80%;
  width: 900px;
  padding: 25px 25px 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: zoomIn 0.35s ease;
  overflow: hidden;
  text-align: center;
}

/* Image styling */
.lightbox1-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Project title */
#lightbox1-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

/* Project description */
#lightbox1-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Close button */
.lightbox1-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox1-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: rotate(90deg);
}

/* Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.portfolio-btn1 {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, #6C63FF 0%, #00C9FF 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
  letter-spacing: 0.5px;
}

.portfolio-btn1:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 201, 255, 0.4);
  background: linear-gradient(135deg, #00C9FF 0%, #6C63FF 100%);
}

.portfolio-btn1:active {
  transform: scale(0.96);
}

/* Optional — if placed over an image overlay */
.webpage-portfolio-overlay .portfolio-btn1 {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.95), rgba(0, 201, 255, 0.95));
  backdrop-filter: blur(3px);
}
