@charset "utf-8";
 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-social {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #00c6ff;
    transform: translateY(-3px);
}

/* Fix background color to prevent white flash during fast scrolling */
html {
    background: #032DAA !important;
    background-color: #032DAA !important;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    font-family: "Segoe UI", sans-serif;
    background: #032DAA !important;
    background-color: #032DAA !important;
    background-image: linear-gradient(135deg, #000000 10%, #000000 100%) !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    color: white;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

/* --------------------------------------
   Floating Technology Icons Layer
---------------------------------------*/
.tech-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.icon {
    position: absolute;
    width: 80px;        /* size of each particle */
    opacity: 0.5;
    animation: floatFast linear infinite;
}

/* Fast floating animation */
@keyframes floatFast {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* Different starting positions and speeds */
.t1 { left: 5%;  animation-duration: 6s; animation-delay: 0s; }
.t2 { left: 20%; animation-duration: 7s; animation-delay: 1s; }
.t3 { left: 35%; animation-duration: 6.5s; animation-delay: 2s; }
.t4 { left: 50%; animation-duration: 7.2s; animation-delay: 0.5s; }
.t5 { left: 65%; animation-duration: 6.8s; animation-delay: 1.5s; }
.t6 { left: 80%; animation-duration: 7s; animation-delay: 0.2s; }
.t7 { left: 90%; animation-duration: 6.3s; animation-delay: 1.8s; }

/* --------------------------------------
   Glassmorphism Content Box
---------------------------------------*/
.page-content {
    position: relative;
    z-index: 10;
    padding: 80px 40px;
    max-width: 700px;
    margin: 150px auto;
    text-align: center;
    
    background: rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.page-content h1 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #e0f7ff;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d6f0ff;
}


/* body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: url("images/ny_background.svg") no-repeat center center/cover;
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
} */

.logo-icon .logo-img {
    width: 120px;   /* Change width as you want */
    height: auto;   /* Keeps aspect ratio */
    display: block;
}

.logo {
    display: flex;
    align-items: center;
}


/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #032DAA;
    background-color: #032DAA;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}

.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}

.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}

.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}

.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}

/* Glass container styles */
.glass {
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 20px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass:hover {
    /* background: rgba(255, 255, 255, 0.2); */
    transform: translateY(-5px);
    /* box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); */
}

/* Header styles */
header {
    padding: 15px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 60px; /* Reduced from 30px 45px */
}

.logo {
    font-size: 25px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-decoration: none;
    
}

.logo-icon {
    width: 100px; /* Reduced from 80px */
    height: 60px; /* Reduced from 160px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img,
.logo-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain; /* keeps it from stretching */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px; /* Reduced from 12px 24px 13px 24px */
    border-radius: 8px; /* Reduced from 10px */
    cursor: pointer;
    font-size:20px; /* Reduced from 16px */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.6); */
}

.nav-links a:hover,
.nav-links a.active {
    color: #0128A7;
    /* background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); */
}

/* Hero section styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    top: 10%;
    right: 30%;
    animation-delay: 1.5s;
}

.main-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.4);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 188, 212, 0.4);
    }
    to {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 188, 212, 0.6);
    }
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 25px 0;
    justify-content: flex-start;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00bcd4;
    display: block;
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ==================== */
/* HOME PAGE STYLES */
/* ==================== */
/* Gradient Text */
.gradient-text {
    font-size: 3rem;            /* prominent */
    font-weight: 700;           /* bold */
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%); /* white → dark blue */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

/* Optional hover effect with subtle scale */
.gradient-text:hover {
    transform: scale(1.05);
}



/* Hover effect for subtle glow */
 







/* Trusted By Section */
.trusted-by {
    padding: 60px 20px; 
    text-align: center;
}

.trusted-by .section-header h3 {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 20px;
    justify-items: center;
    align-items: center;
}

/* Client Logo Card */
.client-logo {
    width: 180px;   
    height: 180px;  
    background: rgba(255, 255, 255, 0); /* Transparent */
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0); /* Transparent initially */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hover Effect */
.client-logo:hover {
    transform: translateY(-10px) scale(1.05);
    border: 2px solid #29A9F4; /* White border on hover */
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
    background: #29A9F4; /* Slight glass effect */
}

/* Icon Styling */
.client-logo i {
    font-size: 2.8rem;
    background: linear-gradient(45deg, #ffffff, #ffffff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease infinite;
}

/* Animated Gradient */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Client Text */
.client-logo span {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.client-logo:hover span {
    color: #ffffff; /* Highlight text on hover */
}




/* Core Services Section */
.core-services {
    margin: 100px 0;
    padding: 60px 20px;
    position: relative;
}

.core-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Services Grid */
.core-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Service Card */
.core-services .service-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05); /* Slight transparent background */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
    border: 2px solid rgba(255,255,255,0); /* Border transparent initially */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Hover Effects */
.core-services .service-card:hover {
    transform: translateY(-10px) scale(1.05);
    border: 2px solid #29A9F4; /* Border appears */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.08); /* Slight glass effect */
}

/* Icon Styling */
.core-services .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.core-services .service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.core-services .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.core-services .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.core-services .service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Icon hover effect */
.core-services .service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Card Text */
.core-services .service-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.core-services .service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Learn More Link */
.service-link {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #4ecdc4;
}

/* CTA Button */
.services-cta {
    text-align: center;
    margin-top: 50px;
}


/* Why Choose Us Section */
/* Why Choose Us Section */
.why-choose-us {
    margin: 100px 0;
    padding: 60px 20px;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Benefit Card */
.benefit-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05); /* Slight transparent background */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
    border: 2px solid rgba(255,255,255,0); /* Transparent initially */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Hover Effects */
.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    border: 2px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.08); /* Slight glass effect */
}

/* Benefit Icon */
.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

/* Icon Hover Effect */
.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Different Gradients for Icons */
.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    box-shadow: 0 10px 30px rgba(255, 216, 155, 0.4);
}

/* Card Text */
.benefit-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}


/* Success Metrics Section */
.success-metrics {
    margin: 100px 0;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Metric Card */
.metric-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05); /* Slight transparent background */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
    border: 2px solid rgba(255,255,255,0); /* Transparent initially */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Hover Effects */
.metric-card:hover {
    transform: translateY(-10px) scale(1.05);
    border: 2px solid #ffffff; /* Border appears on hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.08); /* Slight glass effect */
}

/* Metric Icon */
.metric-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

/* Icon Hover Animation */
.metric-card:hover .metric-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Different Gradients for Icons */
.metric-card:nth-child(1) .metric-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.metric-card:nth-child(2) .metric-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.metric-card:nth-child(3) .metric-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.metric-card:nth-child(4) .metric-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Metric Number */
.metric-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Metric Label */
.metric-label {
    font-size: 1.2rem;
    color: #00bcd4;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Metric Text */
.metric-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Technology Stack Home */
.tech-stack-home {
    margin: 100px 20px;
}

/* Section Header */
.tech-stack-home .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-stack-home .section-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.tech-stack-home .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Tech Categories Grid */
.tech-stack-home .tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Prevent overlap */
}

/* Tech Category Card */
.tech-stack-home .tech-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 220px; /* Ensures all cards have same height */
    border: 2px solid rgba(255,255,255,0);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

/* Hover Effects for Category Cards */
.tech-stack-home .tech-category:hover {
    transform: translateY(-10px) scale(1.05);
    border: 2px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Category Heading */
.tech-stack-home .tech-category h3 {
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tech-stack-home .tech-category h3 i {
    color: #00bcd4;
    font-size: 1.5rem;
}

/* Tech Items Container */
.tech-stack-home .tech-items {
    display: flex;
    flex-wrap: wrap; /* Important to wrap items */
    gap: 10px;
    justify-content: center; /* Center items horizontally */
}

/* Individual Tech Item */
.tech-stack-home .tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Effect on Hover */
.tech-stack-home .tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.tech-stack-home .tech-item:hover::before {
    left: 100%;
}

.tech-stack-home .tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Testimonials Home */
.testimonials-home {
    margin: 100px 0;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

.testimonials-home .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-home .section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.testimonials-home .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Testimonial Card Glass Style */
.testimonials-home .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonials-home .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Testimonial Content */
.testimonials-home .testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
}

.testimonials-home .testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 188, 212, 0.3);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

/* Testimonial Author */
.testimonials-home .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-home .author-avatar {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonials-home .testimonial-card:hover .author-avatar {
    background: rgba(0, 188, 212, 0.3);
}

.testimonials-home .author-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonials-home .author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-home {
        padding: 60px 15px;
    }

    .testimonials-home .section-header h2 {
        font-size: 2rem;
    }

    .testimonials-home .testimonial-content p {
        font-size: 0.95rem;
    }
}


/* CTA Section Home */
.cta-section-home {
    margin: 100px 0;
}

.cta-section-home .cta-content {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.cta-section-home .cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-section-home .cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: #00bcd4;
    font-size: 1.1rem;
}

/* ==================== */
/* SERVICES PAGE STYLES */
/* ==================== */

/* Services Overview Section */
.services-overview {
    margin: 80px 0;
    padding: 40px 0;
}

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

.service-card {
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 188, 212, 0.5);
}

.service-icon-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

/* Different colors for each service icon */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
    box-shadow: 0 10px 30px rgba(69, 183, 209, 0.4);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 10px 30px rgba(168, 237, 234, 0.4);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.service-content > p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-features li:hover {
    color: white;
    transform: translateX(8px);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

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

.service-features li i {
    color: #00bcd4;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    color: #4ecdc4;
    transform: scale(1.2);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-duration,
.service-projects {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-duration i,
.service-projects i {
    color: #00bcd4;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-duration:hover i,
.service-projects:hover i {
    transform: scale(1.2);
    color: #4ecdc4;
}

.service-cta {
    margin-top: auto;
    text-align: center;
}

.cta-button.small {
    padding: 12px 35px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-button.small:hover {
    gap: 15px;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.small i {
    transition: transform 0.3s ease;
}

.cta-button.small:hover i {
    transform: translateX(3px);
}

/* Enhanced section header for services */
.services-overview .section-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.services-overview .section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Process Section */
.service-process {
    margin: 100px 0;
    padding: 60px 0;
    position: relative;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
}

.process-step:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.process-step:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.3);
}

.process-step:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
}

.process-step ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.process-step li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.process-step li:hover {
    color: white;
    transform: translateX(5px);
}

.process-step li:last-child {
    border-bottom: none;
}

.process-step li i {
    color: #00bcd4;
    font-size: 1rem;
    width: 20px;
}

/* Technology Expertise Section */
.tech-expertise {
    margin: 100px 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tech-category {
    padding: 30px 25px;
    transition: all 0.4s ease;
}

.tech-category:hover {
    transform: translateY(-8px);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category-header i {
    font-size: 2rem;
    color: #00bcd4;
    width: 50px;
    text-align: center;
}

.tech-category h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing-section {
    margin: 100px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #0097a7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(0, 188, 212, 0.5);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features li i {
    color: #00bcd4;
    font-size: 1rem;
    width: 20px;
}

.pricing-cta {
    margin-top: 30px;
}

/* Enhanced CTA Section for Services */
.cta-section .cta-content {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00bcd4;
    display: block;
    margin-bottom: 5px;
}

.cta-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer styles */
footer {
    margin-top: 60px;
    padding: 30px 0;
}

.footer-content {
    padding: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact-info {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Animation for service cards */
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        padding: 30px;
    }
}

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

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 14px;
        padding: 10px 20px;
    }

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

    .section-header p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .services-overview .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-overview .section-header p {
        font-size: 1.1rem;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-cta {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .cta-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-overview {
        margin: 60px 0;
        padding: 30px 0;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-features li {
        padding: 10px 0;
        font-size: 0.9rem;
    }
    
    .services-overview .section-header h2 {
        font-size: 2rem;
    }
    
    .services-overview .section-header p {
        font-size: 1rem;
    }
    
    .cta-button.small {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .timeline-stats {
        gap: 15px;
    }

    .timeline-stat {
        min-width: 80px;
        padding: 12px 15px;
    }

    .timeline-stat .stat-number {
        font-size: 1.4rem;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .tech-items {
        gap: 8px;
    }

    .tech-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-links {
        gap: 10px;
        justify-content: center;
    }



  /* ==================== */
/* ABOUT US PAGE STYLES */
/* ==================== */

/* Contact Info Styles */
.contact-info-hero {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.contact-item-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Story Section */
 

 /* Company Story Timeline */
.story-section {
    margin: 100px 0;
    padding: 60px 0;
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(0, 188, 212, 0.8) 0%, 
        rgba(102, 126, 234, 0.8) 25%, 
        rgba(245, 87, 108, 0.8) 50%, 
        rgba(255, 193, 7, 0.8) 75%, 
        rgba(76, 175, 80, 0.8) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00bcd4, #667eea);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.8);
}

.timeline-year {
    flex: 0 0 140px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #00bcd4;
    text-shadow: 0 2px 15px rgba(0, 188, 212, 0.5);
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(0, 188, 212, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
}

.timeline-content {
    flex: 1;
    padding: 0 40px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.5), transparent);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.5));
}

.timeline-item:hover .timeline-content::before {
    width: 60px;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.8), transparent);
}

.timeline-item:nth-child(even):hover .timeline-content::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.8));
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-left: 20px;
}

.timeline-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #00bcd4;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #00bcd4;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content p {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #667eea;
    transform: translateX(5px);
}

.timeline-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.timeline-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.timeline-stat:hover::before {
    left: 100%;
}

.timeline-stat:hover {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
    border-color: rgba(0, 188, 212, 0.4);
}

.timeline-stat .stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00bcd4;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
}

.timeline-stat:hover .stat-number {
    color: #667eea;
    transform: scale(1.1);
}

.timeline-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.timeline-stat:hover .stat-label {
    color: white;
}

/* Responsive Design for Timeline */
@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        flex: none;
        width: 120px;
        font-size: 1.6rem;
        padding: 20px 15px;
    }
    
    .timeline-content {
        padding: 0 20px;
        margin-left: 140px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content h3 {
        padding-left: 0;
    }
    
    .timeline-content h3::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        padding: 20px 15px 20px 70px;
        margin-bottom: 50px;
    }
    
    .timeline-year {
        width: 100px;
        font-size: 1.4rem;
        padding: 15px 10px;
    }
    
    .timeline-content {
        margin-left: 120px;
        padding: 0 10px;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
        padding: 15px;
    }
    
    .timeline-stats {
        gap: 15px;
    }
    
    .timeline-stat {
        padding: 15px 20px;
        min-width: 100px;
    }
    
    .timeline-stat .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding: 15px 10px 15px 60px;
        margin-bottom: 40px;
    }
    
    .timeline-year {
        width: 80px;
        font-size: 1.2rem;
        padding: 12px 8px;
    }
    
    .timeline-content {
        margin-left: 90px;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .timeline-stats {
        gap: 10px;
    }
    
    .timeline-stat {
        padding: 12px 15px;
        min-width: 80px;
    }
    
    .timeline-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .timeline-stat .stat-label {
        font-size: 0.85rem;
    }
}

/* Animation for timeline items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Mission & Vision */
.mission-vision {
    margin: 100px 0;
    padding: 60px 0;
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.mv-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mv-card > p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.mv-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.mv-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.mv-features li:hover {
    color: white;
    transform: translateX(8px);
}

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

/* Achievements */
.achievements {
    margin: 100px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

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

.stat-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    color: #00bcd4;
    margin-bottom: 15px;
    font-weight: 600;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Technology Stack */
.tech-stack {
    margin: 100px 0;
    padding: 60px 0;
    position: relative;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-category {
    padding: 30px 25px;
    transition: all 0.4s ease;
}

.tech-category:hover {
    transform: translateY(-8px);
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.tech-category h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

.tech-category > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials {
    margin: 100px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-rating {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 188, 212, 0.3);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.author-company {
    color: #00bcd4;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    margin: 100px 0;
}

.cta-content {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-item-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Portfolio Section Styles */
.portfolio-section {
    margin: 60px 0;
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.25), rgba(102, 126, 234, 0.25));
    color: white;
    border-color: rgba(0, 188, 212, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.25);
}

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

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    height: fit-content;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 188, 212, 0.3);
}

.portfolio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.placeholder-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(102, 126, 234, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.portfolio-item:hover .placeholder-icon {
    color: white;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.85), rgba(102, 126, 234, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.action-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.portfolio-category {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(102, 126, 234, 0.2));
    color: #00bcd4;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 188, 212, 0.3);
    backdrop-filter: blur(10px);
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.portfolio-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #667eea);
    border-radius: 2px;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 400;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.portfolio-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.portfolio-tag:hover {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.25), rgba(102, 126, 234, 0.25));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.2);
}

/* Enhanced Hero Section for Portfolio */
.portfolio-hero {
    text-align: center;
    padding: 80px 40px;
    margin-bottom: 60px;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, #00bcd4 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.portfolio-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Portfolio Stats */
.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.portfolio-stat {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.portfolio-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00bcd4;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

.portfolio-stat .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive Design for Portfolio */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .portfolio-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-hero {
        padding: 60px 20px;
    }
    
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-hero p {
        font-size: 1.1rem;
    }
    
    .filter-btns {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .portfolio-content {
        padding: 25px;
    }
    
    .portfolio-content h3 {
        font-size: 1.4rem;
    }
    
    .portfolio-stats {
        gap: 20px;
    }
    
    .portfolio-stat {
        min-width: 120px;
        padding: 20px;
    }
    
    .portfolio-stat .number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-content h3 {
        font-size: 1.3rem;
    }
    
    .portfolio-content p {
        font-size: 0.95rem;
    }
    
    .filter-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .portfolio-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-stat {
        width: 100%;
        max-width: 200px;
    }
}

/* Animation for portfolio items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Prevent Background Flash During Fast Scrolling
============================================ */
/* Ensure html and body always have background color */
html, body {
    background: #032DAA !important;
    background-color: #032DAA !important;
}

/* Prevent overscroll bounce on mobile */
html {
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
}

body {
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
}

/* Ensure main content area has background */
main {
    background: transparent !important;
    background-color: transparent !important;
}

/* Ensure container doesn't show white */
.container {
    background: transparent !important;
}

/* Fix for iOS Safari bounce effect - prevent white flash */
@supports (-webkit-touch-callout: none) {
    html {
        background: #032DAA !important;
        background-color: #032DAA !important;
        min-height: 100%;
        height: auto;
    }
    
    body {
        background: #032DAA !important;
        background-color: #032DAA !important;
        min-height: 100vh;
        position: relative;
    }
}

/* Prevent white flash on all browsers */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure no white background shows through during scroll */
::selection {
    background: rgba(0, 188, 212, 0.3);
}

::-moz-selection {
    background: rgba(0, 188, 212, 0.3);
}

/* Stagger animation for portfolio items */
.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }
.portfolio-item:nth-child(7) { animation-delay: 0.7s; }
.portfolio-item:nth-child(8) { animation-delay: 0.8s; }
.portfolio-item:nth-child(9) { animation-delay: 0.9s; }
}