/* ==========================================================================
   CSS Variables & Global Styles (Professional White Theme)
   ========================================================================== */
   :root {
    /* Colors - Pure White Theme */
    --bg-dark: #ffffff; /* Main background */
    --bg-darker: #f8fafc; /* Alternating section */
    --bg-light: #ffffff;
    --bg-light-alt: #f1f5f9; /* Alternating section */
    
    --primary: #1e3a8a; /* Deep Corporate Navy */
    --primary-glow: rgba(30, 58, 138, 0.1); /* Very subtle shadow */
    --secondary: #2563eb; /* Clean Royal Blue */
    
    --text-light: #0f172a; /* Dark text for light backgrounds */
    --text-muted-light: #475569; /* Muted dark text */
    
    --text-dark: #0f172a;
    --text-muted-dark: #475569;

    --border-light: rgba(0, 0, 0, 0.08); /* Light gray borders */
    --border-dark: rgba(0, 0, 0, 0.08);

    /* Glass Cards - White Theme */
    --bg-card-dark: #ffffff;
    --bg-card-dark-hover: #ffffff;
    --bg-card-light: #ffffff;
    --bg-card-light-hover: #ffffff;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

/* Base Sections (Semantic names kept, but styling is light) */
.section-dark, .section-light, .section-light-alt {
    padding: var(--section-padding) 0;
}
body.section-dark, body.section-light, body.section-light-alt {
    padding: 0 !important;
}

.section-dark {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: var(--section-padding);
}
.section-dark .section-subtitle, .section-dark p {
    color: var(--text-muted-dark);
}

.section-light {
    background-color: var(--bg-darker);
    color: var(--text-dark);
    padding: var(--section-padding);
}
.section-light .section-subtitle, .section-light p {
    color: var(--text-muted-dark);
}

.section-light-alt {
    background-color: var(--bg-light-alt);
    color: var(--text-dark);
    padding: var(--section-padding);
}
.section-light-alt .section-subtitle, .section-light-alt p {
    color: var(--text-muted-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

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

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-animated {
    background: linear-gradient(to right, var(--secondary), var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
    to { background-position: 200% center; }
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--text-muted-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Glassmorphism Utilities */
.glass-card {
    border-radius: 16px; /* Professional, sharp rounding */
    transition: var(--transition-smooth);
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.1);
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px; /* Professional button style */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.25);
    background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-large {
    padding: 18px 46px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 15px 5%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 12px 5%;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Force dark text on the light background header */
.navbar .nav-links a,
.section-dark .navbar .nav-links a {
    color: var(--text-dark) !important;
}
.navbar .logo-text,
.section-dark .navbar .logo-text {
    color: var(--text-dark) !important;
}
.navbar .hamburger span,
.section-dark .navbar .hamburger span {
    background: var(--text-dark) !important;
}

/* Ensure the CTA button text stays white */
.navbar .nav-links a.nav-cta,
.section-dark .navbar .nav-links a.nav-cta {
    color: #ffffff !important;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.logo .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    position: relative;
    padding: 8px 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary) !important;
    background: transparent;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Nav CTA Button */
.nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-links a.nav-cta::after {
    display: none;
}

.nav-links a.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .navbar {
        top: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 1rem 1.5rem;
    }
    .glass-card {
        padding: 1.5rem;
    }
    .navbar.scrolled {
        top: 0;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 0 60px; /* Reduced bottom space further and lowered min-height */
    overflow: hidden;
    background: var(--bg-light);
}

/* ==========================================================================
   Tech Stack Ticker — Professional Blue Theme
   ========================================================================== */
.tech-stack-ticker {
    background: linear-gradient(135deg, #0f1f4e 0%, #1a3a8a 40%, #1e40af 70%, #1d4ed8 100%) !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(15, 31, 78, 0.4);
}

/* Force remove any side fade effects */
.tech-stack-ticker::before,
.tech-stack-ticker::after {
    display: none !important;
    content: none !important;
    background: none !important;
    width: 0 !important;
    opacity: 0 !important;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
}

.ticker-content {
    display: flex;
    gap: 0;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff !important;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease;
}

.ticker-content span:hover {
    color: #ffffff !important;
}

.ticker-content span i {
    font-size: 1.2rem;
    color: #ffffff !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
    transition: filter 0.3s ease;
}

.ticker-content span:hover i {
    color: #ffffff !important;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    z-index: 0;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: shapeFloat 10s ease-in-out infinite alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.15);
    top: 10%;
    right: 5%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(30, 58, 138, 0.1);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes shapeFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

.fade-up-stagger {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Particles canvas fills the entire hero */
#particles-js {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none;
}

#particles-js canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 95%;
    line-height: 1.7;
    color: var(--text-muted-dark);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-img-wrapper {
    position: relative;
    animation: floatImage 6s ease-in-out infinite alternate;
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

.hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.floating-ui {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: floatUI 8s ease-in-out infinite alternate;
}

.ui-1 {
    bottom: 30px;
    left: -40px;
}

.ui-2 {
    top: 40px;
    right: -30px;
    animation-delay: -4s;
}

@keyframes floatUI {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* ==========================================================================
   Tech Stack Ticker
   ========================================================================== */
.tech-stack-ticker {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.tech-stack-ticker::before,
.tech-stack-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.tech-stack-ticker::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.tech-stack-ticker::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 4rem;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-content span {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.ticker-content span i {
    color: var(--primary);
    font-size: 2rem;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: var(--section-padding);
}

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

.service-card {
    padding: 3rem 2rem;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted-dark);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.why-us {
    padding: var(--section-padding);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content .text-left {
    margin-left: 0;
    text-align: left;
}

/* ==========================================================================
   Industries Section
   ========================================================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.industry-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
}

.industry-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.industry-card:hover i {
    transform: scale(1.1) translateY(-5px);
    color: var(--secondary);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
    padding: var(--section-padding);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.quote {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-dark);
    flex-grow: 1;
}

/* Swiper Custom Styles */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
}

.author h4 {
    font-size: 1.2rem;
    color: var(--primary);
}

.author span {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
}

/* ==========================================================================
   FAQs
   ========================================================================== */
.max-w-800 { max-width: 800px; margin: 0 auto; }
.faq-accordion { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { padding: 0; overflow: hidden; transition: var(--transition-smooth); }
.faq-question { 
    width: 100%; 
    text-align: left; 
    background: transparent; 
    border: none; 
    color: var(--text-dark); 
    font-size: 1.2rem; 
    font-weight: 600; 
    padding: 1.5rem 2rem; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-family: var(--font-main); 
}
.faq-question i { transition: transform 0.3s ease; color: var(--primary); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 2rem 1.5rem; margin-bottom: 0; color: var(--text-muted-dark); }

/* ==========================================================================
   Inner Pages
   ========================================================================== */
.page-content {
    padding-top: 100px;
    background: var(--bg-light);
}

.page-header {
    padding: 80px 0 60px;
}

/* Portfolio */
.portfolio-section {
    padding: 4rem 0 8rem;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
    padding: 10px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

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

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    overflow: hidden;
    padding: 0;
}

.portfolio-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}
.portfolio-img-wrapper img {
    transition: var(--transition-smooth);
}

.portfolio-info {
    padding: 2.5rem;
}

.portfolio-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.portfolio-info p {
    color: var(--text-muted-dark);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: var(--section-padding);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.8rem;
    width: 30px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.contact-form-wrapper {
    padding: 3.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
    width: 100%;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    padding: 5rem 0 2rem;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin: 1rem 0;
    color: var(--text-muted-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.social-links a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ==========================================================================
   Call to Action (CTA) Section
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.cta-shape-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(30, 58, 138, 0.08);
    border-radius: 50%;
    filter: blur(50px);
    bottom: -50px;
    right: -100px;
    z-index: 0;
}

.link-group a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-muted-dark);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted-dark);
}

/* Animations & Reveal */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s ease;
}
.reveal { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =====================================================
   ADVANCED SCROLL ANIMATIONS
   ===================================================== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.anim-fade-up.in-view { opacity: 1; transform: translateY(0); }

.anim-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.anim-fade-left.in-view { opacity: 1; transform: translateX(0); }

.anim-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.anim-fade-right.in-view { opacity: 1; transform: translateX(0); }

.anim-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-scale.in-view { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* =====================================================
   PARALLAX / FIXED BACKGROUND SECTIONS
   ===================================================== */

/* Testimonials — fixed image background */
.testimonials {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: var(--section-padding);
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,31,78,0.93) 0%, rgba(30,58,138,0.90) 100%);
    z-index: 0;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-title,
.testimonials .section-subtitle { color: #fff !important; }
.testimonials .section-subtitle { color: rgba(255,255,255,0.7) !important; }

.testimonials .testimonial-card {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(16px);
}
.testimonials .testimonial-card .quote,
.testimonials .testimonial-card .author h4,
.testimonials .testimonial-card .author span { color: rgba(255,255,255,0.9) !important; }
.testimonials .stars i { color: #fbbf24 !important; }

/* CTA Section — fixed image background */
.cta-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,31,78,0.95) 0%, rgba(37,99,235,0.88) 100%);
    z-index: 0;
}
.cta-section .cta-shape-1,
.cta-section .cta-shape-2 { display: none; }
.cta-section .cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 0;
}
.cta-section .cta-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-section .cta-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.cta-section .text-gradient {
    background: linear-gradient(135deg, #93c5fd 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-section .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.cta-section .btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}
.cta-section .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary);
}

/* Why Us — subtle background image */
.why-us-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248,250,252,0.93);
    z-index: 0;
}
.why-us-section .container { position: relative; z-index: 1; }

/* =====================================================
   MODERN PROFESSIONAL FOOTER
   ===================================================== */
.site-footer {
    position: relative;
    background: linear-gradient(135deg, #060d20 0%, #0c1a3a 40%, #0f2560 70%, #0c1a3a 100%);
    padding: 80px 0 0;
    overflow: hidden;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

/* Animated glow orbs */
.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite alternate;
}
.footer-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
    top: -100px; right: 10%;
}
.footer-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
    bottom: 0; left: 5%;
    animation-delay: -6s;
}
@keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.15); }
}

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col {}

/* Brand column */
.footer-logo {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    text-decoration: none;
}
.footer-logo span { color: #60a5fa; }

.footer-tagline {
    font-size: 0.92rem;
    color: #ffffff !important;
    opacity: 1 !important;
    line-height: 1.75;
    margin-bottom: 1.8rem;
    max-width: 300px;
}

/* Social buttons */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}

.footer-badge {
    height: 50px;
    object-fit: contain;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Column headings */
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(to right, #2563eb, #60a5fa);
    border-radius: 2px;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a i {
    font-size: 0.6rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}
.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}
.footer-links a:hover i { transform: translateX(3px); color: #60a5fa; }

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.footer-contact-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #60a5fa;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.footer-contact-list strong {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    margin-bottom: 2px;
}
.footer-contact-list span {
    font-size: 0.85rem;
    color: #ffffff;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    margin: 0;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.88rem;
    color: #ffffff !important;
    opacity: 1 !important;
}
.footer-copy strong { color: #ffffff !important; }

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom-links a:hover { color: #60a5fa; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .why-us-container, .contact-container, .footer-container,
    .about-grid, .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand-col { grid-column: span 2; }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        z-index: -1;
    }
    .nav-links.active { transform: translateY(0); }
    .hamburger { display: block; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.5rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand-col { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .testimonials { background-attachment: scroll; }
    .cta-section { background-attachment: scroll; }
    .why-us-section { background-attachment: scroll; }
}

.footer-col ul.contact-links li,
.footer-col ul.contact-links li i,
.footer-col ul.contact-links li a {
    color: #ffffff !important;
}
.footer-col ul.contact-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   FAQs Section
   ========================================================================== */
.faqs-section {
    padding: var(--section-padding);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 auto;
}

.max-w-800 {
    max-width: 800px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    margin: 0;
    color: var(--text-muted-dark);
    line-height: 1.6;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
    padding: var(--section-padding);
    overflow: hidden;
}

.partners-section p {
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.partners-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6rem;
    width: max-content;
    animation: partnersScroll 25s linear infinite;
}

.partners-grid:hover {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

.partners-grid i {
    font-size: 6.5rem;
    color: var(--text-muted-dark);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.partners-grid i:hover {
    opacity: 1;
    transform: scale(1.2) translateY(-10px);
}

/* Brand specific hover colors for a wow effect */
.partners-grid i.fa-google:hover { color: #4285F4; }
.partners-grid i.fa-meta:hover { color: #0668E1; }
.partners-grid i.fa-aws:hover { color: #FF9900; }
.partners-grid i.fa-shopify:hover { color: #95BF47; }
.partners-grid i.fa-wordpress:hover { color: #21759B; }
.partners-grid i.fa-hubspot:hover { color: #FF7A59; }
.partners-grid i.fa-search-dollar:hover { color: #2ecc71; }
.partners-grid i.fa-bullhorn:hover { color: #e74c3c; }
.partners-grid i.fa-laptop-code:hover { color: #9b59b6; }
.partners-grid i.fa-brain:hover { color: #f1c40f; }
.partners-grid i.fa-android:hover { color: #3DDC84; }
.partners-grid i.fa-apple:hover { color: #555555; }

/* --- Inner Page Header Styling --- */
.page-header {
    padding-top: 160px !important; /* Space above header */
    padding-bottom: 80px !important;
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat !important;
    position: relative;
    text-align: center !important; /* Center text */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 58, 138, 0.85); /* Deep Corporate Navy overlay matching the primary theme color */
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-header .hero-title, 
.page-header h1 {
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 1rem;
}

.page-header .section-subtitle, 
.page-header p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Fix Gradient Text on Dark Header --- */
.page-header .text-gradient,
.page-header .text-gradient-animated {
    background: linear-gradient(to right, #60a5fa, #ffffff, #60a5fa, #ffffff) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: gradientText 3s linear infinite;
}

/* --- Modern Professional Gallery --- */
.modern-gallery {
    column-count: 3;
    column-gap: 2rem;
    padding: 2rem 0;
}
@media (max-width: 992px) {
    .modern-gallery { column-count: 2; }
}
@media (max-width: 768px) {
    .modern-gallery { column-count: 1; }
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    cursor: pointer;
    background: #fff;
    transform: translateZ(0); /* Hardware acceleration */
}

.gallery-card img, 
.gallery-card video {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img, 
.gallery-card:hover video {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(15, 23, 42, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    pointer-events: none;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-title {
    transform: translateY(0);
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    overflow: auto;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

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

/* --- Premium Services Page Styles --- */
.premium-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ffffff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(37, 99, 235, 0.1);
}

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

.premium-service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.premium-service-card:hover .service-icon {
    background: var(--primary);
    color: #ffffff;
    transform: rotateY(180deg);
}

.premium-service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.premium-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.premium-service-list li {
    color: var(--text-muted-dark);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.premium-service-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.premium-service-card:hover .premium-service-list li {
    color: #e2e8f0;
}

.premium-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.premium-service-cta i {
    transition: transform 0.3s ease;
}

.premium-service-cta::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.premium-service-cta:hover {
    color: var(--primary);
}

.premium-service-cta:hover i {
    transform: translateX(8px);
}

.premium-service-cta:hover::after {
    width: 100%;
}
