@charset "UTF-8";

:root {
    /* Brand Colors */
    --primary-color: #0B4F93;
    /* Deep Trust Blue */
    --secondary-color: #00A8CC;
    /* Tech Cyan */
    --accent-color: #FF9F1C;
    /* Action Amber */
    --success-color: #10B981;

    /* Neutrals */
    --dark-bg: #0F172A;
    /* Slate 900 */
    --heading-color: #1E293B;
    /* Slate 800 */
    --text-color: #334155;
    /* Slate 700 */
    --light-bg: #F1F5F9;
    /* Slate 100 */
    --white: #FFFFFF;

    /* UI Properties */
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 6px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.logo a {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Tools */
h1,
h2,
h3,
h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    /* Medium weight from Design System */
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #083C72;
    /* Darker Brand Blue */
    border-color: #083C72;
    transform: translateY(-2px);
    /* Lift effect */
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: #f1f5f9;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}


/* Header - Glassmorphism Refinement */
.header {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 6px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu li a:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    /* Almost full height */
    min-height: 600px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    /* Fallback or gradient */
    display: flex;
    align-items: center;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1504384308090-c54be3855833?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    /* Dark blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}


/* Trust Bar */
.trust-bar {
    background-color: #f8fafc;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.trust-bar p {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.logo-item {
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--text-color);
}

/* Premium Domain Search Card */
/* ... existing domain search styles ... */

/* Logo Styling */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Hero Section - Immersive Mesh & Glass */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: url("about.jpg") no-repeat center center/cover;
    padding: 20px 0;
    overflow: hidden;
}

.sub-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: url("hero.png") no-repeat center center/cover !important;
    padding: 20px 0;
    overflow: hidden;
}

.services-hero {
    background: url("hero\ about.png") no-repeat center center/cover !important;
}

/* Animated Mesh Background - Disabled for Image BG */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    /* Minimal overlay */
    z-index: 0;
    pointer-events: none;
    display: none;
    /* Hide mesh to show image */
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(5%, 5%) rotate(5deg);
    }
}

.hero-section .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(100px);
    animation: floatSlow 15s infinite alternate ease-in-out;
}

@keyframes floatSlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -40px) scale(1.1);
    }
}

.hero-mouse-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(0, 168, 204, 0.3) 0%,
            rgba(11, 79, 147, 0.15) 40%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(60px);
    transform: translate(-50%, -50%);
    left: 0;
    top: 0;
    will-change: transform;
}

.hero-section:hover .hero-mouse-glow {
    opacity: 1;
}

.hero-section .shape-1 {
    top: -5%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: var(--primary-color);
}

.hero-section .shape-2 {
    bottom: -5%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    animation-delay: -7s;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(11, 79, 147, 0.15));
    animation: heroFloat 6s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(11, 79, 147, 0.1);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 50px;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(11, 79, 147, 0.25);
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 79, 147, 0.35);
}

.btn-outline-glass {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-glass:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 79, 147, 0.2);
}

.trust-indicators {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Dynamic Hero Section */
.hero-dynamic {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0f172a, #334155);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-dynamic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatShape 10s infinite alternate;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
}

.shape-2 {
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    animation-delay: -5s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* Services Grid Profile Style */
.services-grid-profile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.profile-card-service {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card-banner {
    height: 120px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0ea5e9 0%, #1a1071 100%);
}

.card-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
    z-index: 2;
}

.card-avatar i {
    font-size: 3rem;
    color: #1e293b;
}

.card-menu {
    position: absolute;
    top: 155px;
    right: 25px;
    color: #64748b;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.card-menu:hover {
    opacity: 1;
}

.card-body {
    padding: 85px 30px 40px;
    text-align: center;
}

.card-body h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.card-subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 25px;
    font-weight: 500;
}

.card-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0ea5e9;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.btn-profile-action {
    display: block;
    width: 100%;
    padding: 18px;
    background: #0ea5e9;
    /* Yellow like the image */
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px #0ea5e9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-profile-action:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(3, 56, 172, 0.637);
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    text-align: left;
    opacity: 0.85;
}

/* Stats Section */
.stats-section {
    padding: 35px 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(11, 79, 147, 0.1);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

.about-section {
    padding: 50px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.image-decorative-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    opacity: 0.3;
    z-index: 0;
}

.about-img {
    position: relative;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.floating-card-main {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
    border: 2px solid #e0f2fe;
    transition: all 0.3s ease;
}

.floating-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.floating-card-main .fc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.floating-card-main .fc-content h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading-color);
    margin: 0 0 5px 0;
    line-height: 1;
}

.floating-card-main .fc-content span {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    display: block;
}

.floating-card-main .fc-subtext {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 5px;
    font-weight: 500;
}

.about-stats-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.stat-mini-enhanced {
    background: white;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 160px;
    border: 1px solid #e0f2fe;
    transition: all 0.3s ease;
}

.stat-mini-enhanced:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    border-color: var(--primary-color);
}

.stat-mini-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.stat-mini-content {
    display: flex;
    flex-direction: column;
}

.stat-mini-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 3px;
}

.about-stats-mini {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.stat-mini {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-mini i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stat-mini span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.about-description {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}


/* Services Section */
.services-section {
    padding: 50px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.section-desc {
    font-size: 1.1rem;
    color: #64748b;
}

@keyframes lightSweep {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

@keyframes liquidBlob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes glassOrbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.services-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card,
.pro-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

/* Gradient Glow Border Overlay (Tech Shield) */
.service-card::before,
.pro-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.6s ease;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.service-card:hover::before,
.pro-card:hover::before {
    opacity: 1;
}

/* Ambient Glow Orb inside card */
.card-ambient-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0;
    top: -100px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
    transition: all 0.6s ease;
}

.service-card:hover .card-ambient-glow,
.pro-card:hover .card-ambient-glow {
    opacity: 0.15;
    transform: scale(1.5) translate(-20%, 20%);
}

.service-card:hover,
.pro-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(11, 79, 147, 0.12);
    background: #ffffff;
}

.service-card:hover::after {
    animation: lightSweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card .service-icon,
.pro-card .pro-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.22rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glass Orbit Ring (Pro) */
.service-card .service-icon::before,
.pro-card .pro-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 2.2px;
    background: linear-gradient(135deg, var(--primary-color), transparent, var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: glassOrbit 6s linear infinite;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon,
.pro-card:hover .pro-icon {
    transform: scale(1.1) rotate(5deg);
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(11, 79, 147, 0.1);
}

.service-card:hover .service-icon::before,
.pro-card:hover .pro-icon::before {
    opacity: 1;
    inset: -6px;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin: 0 0 15px;
    color: var(--heading-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.service-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Services Grid */
@media (max-width: 991px) {
    .services-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid-3x3 {
        grid-template-columns: 1fr;
    }

    .section-header .section-title {
        font-size: 2rem;
    }
}



.learn-more {
    background: rgba(11, 79, 147, 0.05);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    width: fit-content;
    border: 1px solid transparent;
}

.service-card:hover .learn-more {
    background: var(--primary-color);
    color: white;
    padding-right: 30px;
    box-shadow: 0 10px 20px rgba(11, 79, 147, 0.2);
}

.learn-more i {
    font-size: 0.85rem;
    transition: transform 0.4s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #e0f2fe;
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.read-more:hover {
    gap: 12px;
    /* Micro animation */
}


/* Product Spotlight */
.product-spotlight {
    padding: 100px 0;
    background: linear-gradient(120deg, var(--primary-color) 0%, #003366 100%);
    color: var(--white);
    overflow: hidden;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.product-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.badge {
    background: var(--accent-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 1px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--accent-color);
}

.product-image {
    position: relative;
}

.img-placeholder {
    background: rgba(255, 255, 255, 0.1);
    height: 400px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.img-placeholder i {
    font-size: 5rem;
    opacity: 0.5;
}

.img-placeholder span {
    font-weight: 600;
    opacity: 0.8;
}


/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    color: #64748b;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
    position: relative;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #cbd5e1;
    /* Placeholder */
    object-fit: cover;
}

.client-details h4 {
    margin-bottom: 2px;
    color: var(--heading-color);
    font-weight: 600;
}

.client-details span {
    font-size: 0.9rem;
    color: #64748b;
}


/* CTA Section - Tech Inner Glow */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0b4f93 0%, #00a8cc 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin: 40px 20px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.cta-shape-1,
.cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(80px);
}

.cta-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
}

.cta-shape-2 {
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.15rem;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-light-filled {
    background: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.btn-light-filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
}

.cta-info-item i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.cta-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    color: #cbd5e1;
    padding: 45px 0 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-col ul li a i {
    font-size: 0.8rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    /* Micro interaction */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(11, 79, 147, 0.3);
}

/* Footer Newsletter Extension */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(11, 79, 147, 0.2), rgba(0, 168, 204, 0.2));
    padding: 50px;
    border-radius: 16px;
    margin: 40px 0 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-newsletter h4 {
    color: white !important;
    font-size: 1.8rem;
    margin-bottom: 12px !important;
    font-weight: 700;
    padding-bottom: 0 !important;
}

.footer-newsletter h4::after {
    display: none;
}

.footer-newsletter p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Mobile First Approach with Breakpoints:
   - Extra Small (xs): 0px - 420px
   - Small (sm): 421px - 640px
   - Medium (md): 641px - 768px
   - Large (lg): 769px - 1024px
   - Extra Large (xl): 1025px+
   ================================================ */

/* Base Container Fluid Adjustment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ================================================
   RESPONSIVE TYPOGRAPHY SYSTEM
   ================================================ */

/* Base font sizes */
body {
    font-size: 16px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.05rem;
}

/* Tablet (iPad) - 768px to 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    .hero-title-main {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .service-card-premium {
        padding: 30px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .stat-card-glass {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

/* Tablet Landscape & Small Tablets - 641px to 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p,
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Hero Section - Responsive */
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        gap: 25px;
        justify-content: center;
    }

    .trust-item {
        font-size: 0.9rem;
    }

    /* Hero Grid - Responsive */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-illustration {
        order: -1;
    }

    .hero-img {
        max-width: 400px;
    }

    /* Services Grid - Responsive */
    .services-grid,
    .services-grid-main,
    .services-grid-secondary {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    @media (max-width: 640px) {

        .services-grid,
        .services-grid-main,
        .services-grid-secondary {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    /* About Section - Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-mini {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .stat-mini {
        padding: 12px 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* CTA Section - Responsive */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-content {
        text-align: center;
    }

    .cta-illustration {
        order: -1;
    }

    .cta-img {
        max-width: 350px;
    }

    .cta-buttons {
        justify-content: center;
    }

    /* Hero Section */
    .hero-dynamic {
        min-height: 600px;
        padding: 50px 0;
    }

    .hero-title-main {
        font-size: 2.8rem;
        margin-bottom: 20px;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
    }

    .hero-buttons-enhanced {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
    }

    .btn-hero-main {
        width: 100%;
        padding: 16px 32px;
        justify-content: center;
    }

    .btn-hero-glass {
        width: 100%;
        padding: 16px 32px;
        justify-content: center;
    }

    .hero-badge-animated {
        margin-bottom: 20px;
        padding: 12px 28px;
    }

    .trust-item {
        font-size: 0.95rem;
    }

    /* Section Padding */
    .about-section {
        padding: 60px 0;
    }

    .services-section {
        padding: 60px 0;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Grid Layouts */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 25px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Service Cards */
    .service-card-premium {
        padding: 25px;
    }

    .service-card-premium h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-card-premium p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .service-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
        font-size: 2rem;
    }

    /* Stat Cards */
    .stat-card-glass {
        padding: 25px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .stat-card-glass p {
        font-size: 0.95rem;
        font-weight: 600;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }

    .footer-col ul li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-col p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .social-links {
        justify-content: center;
        gap: 12px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .newsletter-form {
        max-width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .newsletter-form input {
        border-radius: 6px;
        width: 100%;
        padding: 11px 14px;
        font-size: 0.95rem;
    }

    .newsletter-form button {
        border-radius: 6px;
        width: 100%;
        padding: 11px 14px;
        font-size: 0.95rem;
    }

    /* Badges */
    .footer-badges {
        padding: 20px 0;
        margin-bottom: 15px;
    }

    .badges-grid {
        gap: 25px;
        flex-wrap: wrap;
    }

    .badge-item {
        font-size: 0.85rem;
        gap: 8px;
    }

    .badge-item i {
        font-size: 1.3rem;
    }

    /* WhatsApp Widget */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 28px;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons a {
        width: 100%;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Button Adjustments */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 12px 24px;
    }

    /* Highlight Mobile Spacing */
    .highlight {
        display: inline;
    }
}

/* Small Mobile Phones - 421px to 640px */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Hero Section - Small Mobile */
    .hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Hero Section */
    .hero-dynamic {
        min-height: 580px;
        padding: 40px 0;
        position: relative;
    }

    .hero-title-main {
        font-size: 2rem;
        margin-bottom: 16px;
        letter-spacing: -1px;
        word-spacing: 0.05em;
    }

    .hero-badge-animated {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-bottom: 14px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 22px;
        line-height: 1.5;
    }

    .hero-buttons-enhanced {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .btn-hero-main,
    .btn-hero-glass {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .btn-hero-main i,
    .btn-hero-glass i {
        font-size: 0.85rem;
    }

    .hero-trust-badges {
        gap: 20px;
        justify-content: center;
        padding-top: 20px;
        flex-wrap: wrap;
    }

    .trust-item {
        font-size: 0.85rem;
        gap: 8px;
    }

    .trust-item i {
        font-size: 1.1rem;
    }

    /* Section Spacing */
    .section-header {
        margin-bottom: 35px;
    }

    .section-header span {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .about-section,
    .services-section,
    .why-choose-us,
    .cta-section {
        padding: 40px 0;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-image {
        max-height: 300px;
        overflow: hidden;
    }

    .about-image img {
        max-height: 300px;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .about-content ul {
        gap: 12px;
    }

    .about-content ul li {
        font-size: 0.9rem;
    }

    /* Service Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .service-card-premium {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .service-card-premium h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .service-card-premium p {
        font-size: 0.88rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .service-card-premium a {
        font-size: 0.85rem;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .stat-card-glass {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .stat-card-glass p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .footer {
        padding: 35px 0 20px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer-col ul {
        margin-bottom: 0;
    }

    .footer-col ul li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .footer-col p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .social-links {
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .newsletter-form {
        max-width: 100%;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }

    .newsletter-form input {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 4px;
    }

    .newsletter-form button {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 4px;
    }

    /* Badges */
    .footer-badges {
        padding: 15px 0;
        margin-bottom: 10px;
    }

    .badges-grid {
        flex-direction: column;
        gap: 10px;
    }

    .badge-item {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        gap: 8px;
    }

    .badge-item i {
        font-size: 1.2rem;
    }

    /* WhatsApp Widget */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-float:hover {
        transform: scale(1.08);
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: white;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.95);
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    .cta-buttons a {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    /* Buttons */
    .btn {
        padding: 11px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .btn-primary {
        padding: 11px 20px;
    }
}

/* Extra Small Mobile Phones - Up to 420px */
@media (max-width: 420px) {
    .container {
        padding: 0 12px;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    h2 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 0.95rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Hero Section */
    .hero-dynamic {
        min-height: 520px;
        padding: 30px 0;
    }

    .hero-title-main {
        font-size: 1.7rem;
        margin-bottom: 12px;
        word-break: break-word;
    }

    .hero-badge-animated {
        padding: 8px 16px;
        font-size: 0.7rem;
        margin-bottom: 12px;
        letter-spacing: 0.8px;
    }

    .hero-badge-animated i {
        margin-right: 6px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .hero-buttons-enhanced {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .btn-hero-main,
    .btn-hero-glass {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
        gap: 8px;
    }

    .btn-hero-main i,
    .btn-hero-glass i {
        font-size: 0.8rem;
    }

    .hero-trust-badges {
        gap: 12px;
        padding-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item {
        font-size: 0.8rem;
        gap: 6px;
    }

    .trust-item i {
        font-size: 1rem;
    }

    /* Section Spacing */
    .section-header {
        margin-bottom: 25px;
    }

    .section-header span {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .section-header h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .about-section,
    .services-section,
    .why-choose-us,
    .cta-section {
        padding: 30px 0;
    }

    /* About Section */
    .about-image {
        max-height: 250px;
    }

    .about-image img {
        max-height: 250px;
    }

    .about-content h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .about-content ul {
        gap: 10px;
    }

    .about-content ul li {
        font-size: 0.85rem;
    }

    /* Service Cards */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .service-card-premium {
        padding: 18px 14px;
        border-radius: 8px;
    }

    .service-card-premium h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card-premium p {
        font-size: 0.8rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .service-card-premium a {
        font-size: 0.8rem;
    }

    .service-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .stat-card-glass {
        padding: 18px 14px;
        border-radius: 8px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .stat-card-glass p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .footer {
        padding: 25px 0 15px;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-col ul li {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .footer-col p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .social-links {
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 6px;
        margin-top: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding: 8px 10px;
        font-size: 0.85rem;
        border-radius: 4px;
    }

    /* Badges */
    .footer-badges {
        padding: 12px 0;
        margin-bottom: 8px;
    }

    .badges-grid {
        flex-direction: column;
        gap: 8px;
    }

    .badge-item {
        font-size: 0.75rem;
        gap: 6px;
    }

    .badge-item i {
        font-size: 1rem;
    }

    /* WhatsApp Widget */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 15px;
        font-size: 22px;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .cta-buttons a {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 5px;
    }

    /* Buttons */
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 5px;
    }
}

/* ================================================
   LANDSCAPE ORIENTATION OPTIMIZATION
   ================================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-dynamic {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-title-main {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-buttons-enhanced {
        gap: 8px;
    }

    .hero-trust-badges {
        display: none;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    p {
        font-size: 0.95rem;
    }

    .about-section,
    .services-section,
    .why-choose-us {
        padding: 30px 0;
    }
}

/* ================================================
   FOLDABLE DEVICES SUPPORT
   ================================================ */
@media (screen-spanning: single-fold-vertical) {
    .container {
        max-width: 50vw;
    }

    .hero-dynamic {
        min-height: 500px;
    }
}

/* ================================================
   HIGH DPI SCREENS (Retina)
   ================================================ */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo-icon {
        filter: blur(0);
    }

    .service-icon-wrapper {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .btn-hero-main,
    .btn-hero-glass {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {

    .header,
    .footer,
    .whatsapp-float,
    .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* --------------------------------------------------
   Additions for JavaScript Functionality 
   -------------------------------------------------- */

/* Sticky Header Scrolled State */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    /* Shrink header slightly */
}

/* ================================================
   MOBILE MENU STYLES (Hidden by default on desktop)
   ================================================ */
@media (max-width: 992px) {

    /* Hide mobile toggle on desktop */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        cursor: pointer;
        color: var(--heading-color);
        font-size: 1.5rem;
        z-index: 1001;
    }

    .mobile-menu-toggle:hover {
        color: var(--primary-color);
        transform: scale(1.05);
    }

    /* Main Navigation Links Menu */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        background-color: var(--white);
        padding: 0;
        overflow-y: auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-bottom: 2px solid var(--primary-color);
    }

    /* Mobile Menu Active State */
    .nav-links.active {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
    }

    /* Navigation List Items */
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
        margin: 0;
    }

    .nav-links li:last-child {
        border-bottom: 2px solid var(--primary-color);
    }

    /* Navigation Links Styling */
    .nav-links a {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        color: var(--heading-color);
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .nav-links a:hover {
        background-color: #f0f9ff;
        color: var(--primary-color);
        padding-left: 28px;
    }

    .nav-links a.active {
        background: linear-gradient(90deg, var(--primary-color), transparent);
        color: var(--primary-color);
        font-weight: 700;
        padding-left: 28px;
    }

    /* Dropdown Arrow Icon */
    .nav-links a i {
        margin-left: 8px;
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }

    .dropdown-menu {
        display: none;
        background-color: #f8fafc;
        flex-direction: column;
        border-left: 3px solid var(--primary-color);
        padding-left: 0;
    }

    .dropdown {
        position: relative;
    }

    /* Dropdown Toggle on Mobile */
    .dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
    }

    /* Dropdown Menu Items */
    .dropdown-menu li {
        border-bottom: 1px solid #e0e7ff;
        padding: 0;
        border-left: none;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu li a {
        padding: 14px 20px 14px 40px;
        font-size: 0.95rem;
        color: #64748b;
        border-bottom: none;
    }

    .dropdown-menu li a:hover {
        background-color: #eff6ff;
        color: var(--primary-color);
        padding-left: 48px;
    }

    /* CTA Button in Mobile Menu */
    .header-cta {
        display: none;
    }

    .header-cta.active {
        display: flex;
        width: 100%;
        padding: 20px;
        gap: 12px;
    }

    .header-cta.active .btn {
        flex: 1;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .header-cta.active .btn-primary {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }
}

/* ================================================
   EXTRA SMALL MOBILE (Phone) - 420px and below
   ================================================ */
@media (max-width: 420px) {
    .nav-links {
        top: 65px;
        max-height: calc(100vh - 65px);
    }

    .nav-links a {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .nav-links a:hover {
        padding-left: 24px;
    }

    .nav-links a.active {
        padding-left: 24px;
    }

    .dropdown-menu li a {
        padding: 12px 16px 12px 36px;
        font-size: 0.9rem;
    }

    .dropdown-menu li a:hover {
        padding-left: 44px;
    }

    .header-cta.active {
        padding: 16px 12px;
        flex-direction: column;
        gap: 10px;
    }

    .header-cta.active .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Scroll Animations */
.animate-fade-up,
.service-card,
.stat-item,
.product-content,
.about-content,
.project-card,
.feature-item,
.domain-search-container,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.3s;
}

/* --------------------------------------------------
   Portfolio Page Styles
   -------------------------------------------------- */

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #cbd5e1;
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 240px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 79, 147, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 25px;
}

.project-tags {
    margin-bottom: 12px;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.project-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* --------------------------------------------------
   Floating WhatsApp Widget
   -------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    /* Effect from Blueprint */
    background-color: #128C7E;
    color: #FFF;
    /* Ensure icon stays white */
}

.whatsapp-float i {
    margin-top: 2px;
    /* Minor alignment adjustment */
}

/* Tooltip for the widget - Hidden as per request */
.whatsapp-float::after {
    display: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* --------------------------------------------------
   Enhanced Footer with Trust Badges
   -------------------------------------------------- */

.footer-badges {
    border-top: 1px solid #1e293b;
    padding: 30px 0;
    margin-bottom: 20px;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item i {
    font-size: 1.5rem;
    color: #cbd5e1;
}

/* Newsletter Input Style */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* --------------------------------------------------
   Career Page Responsive Styles
   -------------------------------------------------- */
.job-list-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 30px;
}

.job-info h3 {
    margin-bottom: 5px;
}

.job-meta {
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

.job-desc {
    font-size: 0.95rem;
    color: var(--text-color);
}

.apply-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
}

.apply-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* --------------------------------------------------
   Enhancing Global Responsiveness
   -------------------------------------------------- */
@media (max-width: 768px) {

    /* Hero Text Sizing */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Career Card Stacking */
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .apply-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* General Padding Adjustments */
    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Footer Adjustments */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 20px auto 0;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .badge-item {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 4px;
        width: 100%;
    }
}

/* New About Section Styles */
.mission-vision-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f8fafc;
}

.mission-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.mission-row:last-child {
    margin-bottom: 0;
}

.mission-row.reverse {
    flex-direction: row-reverse;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mission-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.mission-visual {
    flex: 1;
    position: relative;
}

.mission-visual img {
    border-radius: 20px 0 20px 0;
    box-shadow: -20px 20px 0 var(--primary-color);
    transition: transform 0.3s ease;
}

.mission-visual:hover img {
    transform: translate(5px, -5px);
}

@media (max-width: 992px) {
    .mission-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 60px;
    }

    .mission-row.reverse {
        flex-direction: column;
    }

    .mission-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mission-visual img {
        box-shadow: none;
        border: 5px solid var(--primary-color);
    }
}

/* New Process Section Styles */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 100px;
    height: 100px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }

    .process-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

/* New Premium Team Styles */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Premium Pricing Cards (Hosting Page) */
.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.price-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.price-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.price-header .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -1px;
}

.price-header .period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.feature-list-price {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    flex-grow: 1;
}

.feature-list-price li {
    padding: 12px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.feature-list-price li i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.popular-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 25px;
    right: -30px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    letter-spacing: 1px;
}

/* Button override for pricing */
.price-card .btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: auto;
}

/* Premium Tech Specs Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Premium Domain Search Card */
.domain-search-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    max-width: 800px;
    margin: 60px auto 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.domain-search-container:hover {
    transform: translateY(-5px);
}

.search-box {
    display: flex;
    gap: 15px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    outline: none;
    color: var(--text-color);
}

.search-box button {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: scale(1.02);
}

.domain-extension {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.domain-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.domain-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .search-box {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .search-box input {
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .search-box button {
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
}

.tech-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.tech-card:hover::after {
    transform: scaleX(1);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.tech-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.tech-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.team-card .member-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.team-card .member-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.team-card:hover .member-img {
    transform: scale(1.05);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 0;
    border-radius: 20px 20px 50% 50%;
}

.team-card h3 {
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

.team-card .role {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* ================================================
   ABOUT PAGE RESPONSIVE & ACCORDION STYLES
   ================================================ */

/* Accordion / Collapsible Section Styles */
.accordion-section {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.accordion-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.accordion-toggle {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-toggle.active {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 24px;
}

/* Responsive About Page Sections */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .product-spotlight {
        grid-template-columns: 1fr !important;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Responsive About Page Sections */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .mission-row {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .mission-visual {
        order: 2 !important;
    }

    .mission-text {
        order: 1 !important;
    }

    .mission-row.reverse .mission-visual {
        order: 1 !important;
    }

    .mission-row.reverse .mission-text {
        order: 2 !important;
    }

    .mission-text h3 {
        font-size: 1.5rem !important;
    }

    .mission-text p {
        font-size: 1rem !important;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-top: 30px !important;
    }

    .accordion-header {
        padding: 16px 16px;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }

    .feature-card {
        padding: 24px 16px !important;
    }

    .feature-card h4 {
        font-size: 1rem !important;
    }

    .feature-card p {
        font-size: 0.875rem !important;
    }

    .value-card {
        padding: 30px 20px !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .cta-buttons {
        flex-direction: column !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    /* Home Page Mobile Responsive */
    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stat-item {
        padding: 30px 20px !important;
    }

    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Global Glassmorphism Pricing Cards */
.price-card,
.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
}

.price-card::before,
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.price-card:hover::before,
.pricing-card:hover::before {
    opacity: 1;
}

.price-card.popular,
.pricing-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.popular:hover,
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.4);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

.price span.period,
.price-header span.period {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.feature-list-price {
    margin: 30px 0;
    text-align: left;
}

.feature-list-price li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.feature-list-price i {
    color: var(--success-color);
}


/* Compatibility Styles for Service-Web.html */
.pricing-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.features-list {
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.features-list i {
    color: var(--success-color);
}

.features-list li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}


/* Accordion Styles for FAQs */
.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header.active {
    color: var(--primary-color);
}

.accordion-toggle {
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    color: var(--primary-color);
}

.accordion-header.active .accordion-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-right: 20px;
}

.accordion-content p {
    padding-bottom: 25px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}


.accordion-content.active {
    max-height: 500px;
    /* Adjust if content is very long */
    padding-bottom: 20px;
}


/* =========================================
   PREMIUM NAVIGATION STYLES (Overrides)
   ========================================= */

/* Glassmorphism Header */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: var(--heading-color);
    font-size: 1.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.08);
}

/* Show mobile toggle only on mobile */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1280px;
}

@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }
}

/* Logo Styling */
.logo {
    flex: 0 0 auto;
    z-index: 1002;
}

.logo a {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Navigation Bar */
.navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .navbar {
        position: static;
        transform: none;
        display: none;
    }
}

/* Navigation Links Container */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--heading-color);
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated Gradient Underline for Desktop */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown Menu - Premium Look */
.dropdown {
    position: relative;
}

.dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    width: 240px;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    border-radius: 8px;
    padding: 12px 15px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, #f0f9ff, #e0f2fe);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* CTA Button */
.header-cta {
    flex: 0 0 auto;
    z-index: 1001;
}

.header-cta .btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.header-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.6);
}

.header-cta .btn-primary:hover::before {
    left: 100%;
}


/* All navigation styles consolidated above */

/* ========================================
   ENHANCED HERO SECTION STYLES
   ======================================== */

/* Grid Overlay Pattern */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 1;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Animated Hero Badge */
.hero-badge-animated {
    display: inline-block;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(129, 140, 248, 0.2));
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge-animated i {
    margin-right: 10px;
    animation: rocketFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(56, 189, 248, 0.15),
            0 0 30px rgba(56, 189, 248, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 35px rgba(56, 189, 248, 0.25),
            0 0 50px rgba(56, 189, 248, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: scale(1.02);
    }
}

@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-4px) rotate(-5deg);
    }

    75% {
        transform: translateY(-2px) rotate(5deg);
    }
}

/* Hero Title */
.hero-title-main {
    font-size: 4.2rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
        0 8px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 40%, #c084fc 70%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: gradientShimmer 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 45px;
    max-width: 700px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Hero Buttons */
.hero-buttons-enhanced {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    justify-content: center;
}

.btn-hero-main {
    padding: 16px 38px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4),
        0 5px 15px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.btn-hero-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-hero-main:hover::before {
    left: 100%;
}

.btn-hero-main:hover::after {
    opacity: 1;
}

.btn-hero-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.5),
        0 8px 20px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-main:active {
    transform: translateY(-2px);
}

.btn-hero-glass {
    padding: 16px 38px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-hero-glass:hover::before {
    opacity: 1;
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-glass:active {
    transform: translateY(-2px);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0270ff;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-item i {
    color: #38bdf8;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

.trust-item:nth-child(1) i {
    animation-delay: 0s;
}

.trust-item:nth-child(2) i {
    animation-delay: 0.3s;
}

.trust-item:nth-child(3) i {
    animation-delay: 0.6s;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.8));
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .btn-hero-main,
    .btn-hero-glass {
        padding: 18px 36px;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badges {
        gap: 30px;
        justify-content: center;
        padding-top: 25px;
    }

    .trust-item {
        font-size: 0.95rem;
    }

    .trust-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-badge-animated {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* About Page Enhancements */

/* Timeline Card Hover Effects */
.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Team Card Hover Effects */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card:hover .member-img {
    transform: scale(1.1);
}

/* Float Animation for Hero Shapes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Gradient Text Animation */
.hero-gradient-text {
    animation: gradientShift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* About Page Specific Styles */
.sub-hero .section-subtitle {
    color: var(--primary-color);
}

.about-hero-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    align-items: center;
}

.about-image-wrapper .about-img {
    border-radius: 30px;
}

.about-image-wrapper .floating-card {
    bottom: -20px;
    right: -20px;
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-mini-item h4 {
    font-size: 2rem;
    font-weight: 800;
}

.stat-mini-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.mission-vision {
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.goal-card {
    padding: 50px 40px !important;
}

.goal-card .service-icon {
    width: 80px !important;
    height: 80px !important;
    font-size: 2.22rem !important;
}

.goal-card h3 {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
}

.goal-card p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

.accent-text {
    color: var(--secondary-color);
}

/* ==========================================================================
   NAVBAR REDESIGN - PROTRUDING CIRCLE
   ========================================================================== */

/* -------------------------------------------
   1. FLOATING NAV CONTAINER (RIGHT)
   ------------------------------------------- */
.floating-nav-container {
    position: fixed;
    z-index: 1000;
    top: 20px;
    right: 40px;
    left: auto;
    width: auto;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

/* -------------------------------------------
   1.5 FLOATING LOGO CONTAINER (LEFT)
   ------------------------------------------- */
.floating-logo-container {
    position: fixed;
    z-index: 1001;
    top: 20px;
    left: 40px;
    pointer-events: auto;
    display: flex;
    align-items: center;
}

.logo-capsule {
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 0 25px;
    /* Slightly more padding */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    /* Ensure minimum width for wide logos */
}

.floating-logo-container img {
    height: 55px;
    /* Increased from 40px */
    /* Slightly adjusted to fit inside capsule padding */
    width: auto;
    max-width: 200px;
    /* Prevent overflow */
    transition: all 0.3s ease;
    object-fit: contain;
}

.floating-logo-container:hover img {
    transform: scale(1.05);
}

/* Desktop: Top Position */
@media (min-width: 993px) {
    .floating-nav-container {
        top: 20px;
        right: 40px;
    }
}

/* Mobile/Tablet: Bottom Position */
@media (max-width: 992px) {
    .floating-nav-container {
        bottom: 20px;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 10px;
        justify-content: center;
    }

    /* Hide logo on mobile if desired, or keep fixed top left */
    /* Often better to keep logo visible at top even if nav is at bottom */
    .floating-logo-container {
        top: 20px;
        left: 20px;
    }

    .floating-logo-container img {
        height: 40px;
        /* Slightly smaller on mobile */
    }
}

/* -------------------------------------------
   1.6 LOGO UTILS (Legacy/Remnant cleanup)
   ------------------------------------------- */
/* .nav-logo style is now handled by .floating-logo-container directly or anchor inside it */
.nav-logo {
    display: block;
    /* Ensure anchor works */
}

/* -------------------------------------------
   2. NAV CAPSULE
   ------------------------------------------- */
.nav-capsule {
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    /* Slightly less rounded than full pill */
    padding: 0 30px;
    /* Increased padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    /* Increased gap */
    pointer-events: auto;
    height: 70px;
    /* Fixed height to manage protrusions */
    position: relative;
    min-width: 400px;
    /* Increased min-width */
    /* Ensure space for items */
}

/* -------------------------------------------
   3. NAV ITEMS
   ------------------------------------------- */
.nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #94a3b8;
    /* Inactive Icon Context */
    cursor: pointer;
    transition: all 0.3s ease;
    width: 75px;
    /* Increased width from 60px */
    /* Fixed width for stability */
}

/* Icon Container */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Label */
.nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: #012ef7;
    /* Orange/Red Accent */
    position: absolute;
    bottom: 5px;
}

/* -------------------------------------------
   4. ACTIVE STATE
   ------------------------------------------- */
.nav-item.active {
    color: #ea580c;
    /* Accent Color */
}

.nav-item.active .icon-circle {
    transform: translateY(-35px);
    /* Move UP */
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* Shadow to separate */
    border: 4px solid #f8fafc;
    /* Optional ring effect */
    color: #0773ee;
    width: 50px;
    height: 50px;
}

.nav-item.active .nav-label {
    opacity: 1;
    transform: translateY(0);
    bottom: 8px;
    /* Stick to bottom of capsule */
}

/* Inactive Hover */
.nav-item:not(.active):hover {
    color: #64748b;
}

/* -------------------------------------------
   5. MOBILE ADJUSTMENTS
   ------------------------------------------- */
/* -------------------------------------------
   5. MOBILE ADJUSTMENTS
   ------------------------------------------- */
@media (max-width: 992px) {
    .nav-capsule {
        width: 100%;
        justify-content: space-around;
        padding: 0 10px;
        background: #ffffff;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        /* Uplift shadow for bottom nav */
        position: relative;
        z-index: 1002;
        /* Ensure it stays above other elements */
    }

    .floating-nav-container {
        bottom: 20px;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 15px;
        justify-content: center;
        pointer-events: none;
        /* Allow clicks to pass through container, but catch on capsule */
    }

    .floating-nav-container .nav-capsule {
        pointer-events: auto;
        /* Re-enable clicks on the actual menu */
    }
}

/* ==========================================================================
   ABOUT PAGE FULL REDESIGN - IMMERSIVE TECH
   ========================================================================== */

/* Cinematic Hero Section */
.hero-section.sub-hero {
    min-height: 60vh;
    padding: 15px 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 168, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(11, 79, 147, 0.05) 0%, transparent 40%),
        #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: #0f172a;
}

.about-hero-text {
    font-size: 1.5rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Split Narrative Journey */
.journey-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.journey-image-wrapper {
    position: relative;
}

.journey-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(11, 79, 147, 0.04) 0%, transparent 70%);
    z-index: -1;
}

.journey-main-img {
    width: 100%;
    border-radius: 45px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.journey-image-wrapper:hover .journey-main-img {
    transform: translateY(-15px) rotate(-1deg);
}

.achievement-badge {
    position: absolute;
    bottom: 50px;
    right: -40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

/* Minimalist Values Grid */
.bento-container {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Minimalist Card Base */
.about-card-minimal {
    border: 2px solid #000;
    padding: 20px 10px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-card-minimal:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #000;
}

.about-card-minimal h3 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #000;
}

.about-card-minimal p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 35px;
    flex-grow: 1;
}

/* Featured Card (Pink/Magenta) */
.about-card-minimal.featured {
    background: #00a8cc;
    /* Magenta */
    border-color: #00a8cc;
    color: #fff;
}

.about-card-minimal.featured .card-icon,
.about-card-minimal.featured h3,
.about-card-minimal.featured p {
    color: #fff;
}

.about-card-minimal.featured:hover {
    box-shadow: 10px 10px 0px rgba(0, 168, 204, 0.4);
}

/* Read More Button */
.btn-read-more {
    display: inline-block;
    padding: 12px 35px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.btn-read-more:hover {
    background: #fff;
    color: #000;
}

/* Featured Button */
.about-card-minimal.featured .btn-read-more {
    background: #fff;
    color: #00a8cc;
    border-color: #fff;
}

.about-card-minimal.featured .btn-read-more:hover {
    background: transparent;
    color: #fff;
}

/* Responsiveness */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* ==========================================================================
   CONTACT PAGE REDESIGN - IMMERSIVE EXPERIENCE
   ========================================================================== */

/* -------------------------------------------
   1. CINEMATIC HERO SECTION
   ------------------------------------------- */
.hero-contact-immersive {
    min-height: 75vh;
    padding: 160px 0 100px;
    background: url("re.jpg") no-repeat center center/cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Glow Background (Matches Portfolio) */
.hero-glow-effect {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-contact-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    color: #7c3aed;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.05);
}

.hero-title-large {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero-desc-large {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating 3D Shapes (Refined Animation) */
.floating-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
    animation: floatIcon 6s ease-in-out infinite;
}

.shape-primary {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(37, 99, 235, 0.1);
}

.shape-secondary {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
    background: rgba(124, 58, 237, 0.1);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* -------------------------------------------
   2. GLASS CONTACT CARDS
   ------------------------------------------- */
.contact-immersive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    margin-top: 50px;
    /* Spacing after form */
    position: relative;
    z-index: 20;
    padding: 0 20px;
}

.contact-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(255, 255, 255, 0.85);
}

.contact-card-premium:hover::before {
    opacity: 1;
}

.icon-box-3d {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #2563eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-card-premium:hover .icon-box-3d {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.card-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.card-text-premium {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.card-link-premium {
    display: inline-block;
    margin-top: 10px;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    text-decoration: none;
}

.card-link-premium::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.contact-card-premium:hover .card-link-premium::after {
    width: 100%;
}

/* -------------------------------------------
   3. SPLIT FORM LAYOUT
   ------------------------------------------- */
.contact-split-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: -60px;
    /* Overlap Hero */
    position: relative;
    z-index: 20;
}

.contact-info-panel {
    flex: 0.8;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 60px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Decorative circles on info panel */
.contact-info-panel::before,
.contact-info-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-panel::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.contact-info-panel::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.info-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 50px;
    line-height: 1.6;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #38bdf8;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-text-group h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-text-group p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
}

.social-pill-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-pill {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-pill:hover {
    background: white;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Right Side Form */
.contact-form-panel {
    flex: 1.2;
    padding: 60px;
    background: transparent;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.input-modern {
    width: 100%;
    padding: 16px 20px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.input-modern:focus {
    outline: none;
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

textarea.input-modern {
    min-height: 150px;
    resize: vertical;
}

.btn-submit-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* -------------------------------------------
   4. MAP SECTION
   ------------------------------------------- */
/* -------------------------------------------
   4. MAP SECTION (Full Width)
   ------------------------------------------- */
.map-full-width {
    width: 100%;
    height: 500px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.map-full-width iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.1) contrast(1.1);
    display: block;
}

/* -------------------------------------------
   RESPONSIVENESS
   ------------------------------------------- */
/* -------------------------------------------
   RESPONSIVENESS
   ------------------------------------------- */
@media (max-width: 1024px) {
    .contact-immersive-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 columns on larger tablets/small laptops if space permits, or switch to 2 if needed */
        gap: 20px;
    }

    .contact-split-wrapper {
        margin-top: -40px;
    }
}

@media (max-width: 900px) {
    .contact-immersive-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Switch to 2 columns */
    }

    .contact-split-wrapper {
        flex-direction: column;
        border-radius: 30px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px;
    }

    .contact-info-panel {
        flex: auto;
        min-height: auto;
    }

    .info-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-contact-immersive {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-title-large {
        font-size: 2.5rem;
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .contact-immersive-grid {
        grid-template-columns: 1fr;
        /* Stack cards on mobile */
        margin-top: 30px;
        gap: 15px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
        /* Reduce padding for mobile */
    }

    .form-grid-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group-modern {
        margin-bottom: 20px;
    }

    .btn-submit-modern {
        padding: 16px;
        font-size: 1rem;
    }

    .header-phone-link {
        display: none;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .info-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .map-full-width {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-split-wrapper {
        border-radius: 24px;
        margin-top: -30px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 25px 15px;
    }

    .info-title {
        font-size: 1.6rem;
    }

    .contact-card-premium {
        padding: 30px 20px;
    }

    .icon-box-3d {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   PORTFOLIO PAGE REDESIGN - IMMERSIVE EXPERIENCE
   ========================================================================== */

/* -------------------------------------------
   1. CINEMATIC HERO SECTION
   ------------------------------------------- */
.hero-immersive {
    min-height: 80vh;
    padding: 140px 0 80px;
    background: url("contact.jpg") no-repeat center center/cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Glow Background */
.hero-glow-effect {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 50px;
    color: #7c3aed;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.05);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    color: #0f172a;
    margin-bottom: 25px;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Elements */
.hero-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 1.5rem;
    color: #7c3aed;
    z-index: 5;
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
    font-size: 1.8rem;
    color: #2563eb;
}

.icon-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    font-size: 1.2rem;
    color: #059669;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}


/* -------------------------------------------
   2. GLASSMORPHIC FILTER DOCK
   ------------------------------------------- */
.filter-sticky-wrapper {
    position: sticky;
    top: 20px;
    z-index: 100;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Allow clicks through wrapper */
}

.glass-dock {
    pointer-events: auto;
    /* Re-enable clicks */
    display: inline-flex;
    padding: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    gap: 5px;
}

.dock-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.dock-btn:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.03);
}

.dock-btn.active {
    background: #0f172a;
    color: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}


/* -------------------------------------------
   3. REFINED CARD STYLES (Overrides/Enhancements)
   ------------------------------------------- */
/* -------------------------------------------
/* -------------------------------------------
   3. REFINED CARD STYLES (Home Page Match - Compact)
   ------------------------------------------- */
.portfolio-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Compact: 30px */
    padding-bottom: 60px;
}

/* Matching .profile-card-service from styles.css */
.profile-style-card {
    background: white;
    border-radius: 24px;
    /* Compact: 24px */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.profile-style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Cover (matches .card-banner but with image) */
.profile-card-cover {
    height: 140px;
    /* Compact: 140px */
    position: relative;
    overflow: hidden;
}

.profile-card-cover .cover-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.profile-style-card:hover .profile-card-cover .cover-img {
    transform: scale(1.15);
}

.profile-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Avatar (matches .card-avatar) */
.profile-card-avatar {
    width: 80px;
    /* Compact: 80px */
    height: 80px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 100px;
    /* Overlaps cover */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    z-index: 2;
}

.profile-card-avatar .avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-size: 1.75rem;
    /* Compact icon */
}

/* Body */
.profile-card-body {
    padding: 55px 20px 30px;
    /* Compact: Reduced padding */
    text-align: center;
}

.profile-card-title {
    font-size: 1.4rem;
    /* Compact: Smaller title */
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
    /* Tighter spacing */
}

.profile-card-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 15px;
    /* Tighter spacing */
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
}

.profile-card-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Compact gap */
    margin-bottom: 25px;
    /* Tighter spacing */
    padding: 0;
    border: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 0;
}

.profile-style-card:hover .stat-item {
    background: transparent;
}

.stat-value {
    font-size: 1.25rem;
    /* Compact font */
    font-weight: 800;
    color: #0ea5e9;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 0;
}

.profile-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 25px;
    /* Tighter spacing */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Limit text lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button (matches .btn-profile-action) */
.profile-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    /* Compact padding */
    background: #0ea5e9;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    /* Compact font */
    gap: 8px;
}

.profile-card-btn:hover {
    background: #0284c7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.5);
}

.profile-card-btn:hover i {
    transform: translateX(5px);
}


/* -------------------------------------------
   4. IMMERSIVE CTA SECTION
   ------------------------------------------- */
.cta-immersive {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    border-radius: 40px;
    margin: 60px 20px 0;
    /* floating look */
}

.cta-immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta-btn-glow {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #0f172a;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.cta-btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}


/* -------------------------------------------
   RESPONSIVENESS
   ------------------------------------------- */
@media (max-width: 1024px) {
    .portfolio-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-immersive {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Fallback for older browsers */
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .portfolio-premium-grid {
        grid-template-columns: 1fr;
    }

    .glass-dock {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: 15px;
    }

    .dock-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .cta-immersive {
        margin: 40px 10px 0;
        padding: 60px 20px;
        border-radius: 25px;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   PRODUCTS PAGE REDESIGN - IMMERSIVE TECH
   ========================================================================== */

/* Cinematic Hero Section */
.hero-section.sub-hero {
    min-height: 70vh;
    padding: 70px 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-mouse-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: #0f172a;
}

.hero-text {
    font-size: 1.4rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Hero Widgets */
.hero-widgets-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease-out;
}

.widget-1 {
    top: 20%;
    left: 5%;
    transform: rotate(-5deg);
}

.widget-2 {
    top: 15%;
    right: 8%;
    transform: rotate(3deg);
}

.widget-3 {
    bottom: 25%;
    left: 10%;
    transform: rotate(2deg);
}

.widget-4 {
    bottom: 20%;
    right: 5%;
    transform: rotate(-4deg);
}

.floating-widget i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-widget .widget-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

.floating-widget .widget-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Section Mesh Utility */
.section-mesh {
    padding: 60px 0;
    background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.02) 0%, transparent 40%);
}

/* Premium Product Cards - Visual Curve Style */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.pro-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #f1f5f9;
    position: relative;
    height: 100%;
}

.pro-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 35px 70px var(--card-shadow-color);
    border-color: transparent;
}

.card-visual-top {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom-left-radius: 70% 100%;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    margin-bottom: 5px;
    overflow: hidden;
}

/* Glass Sheen Effect */
.card-visual-top::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -110%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.1) 48%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 52%,
            transparent 55%);
    transform: rotate(30deg);
    transition: all 1s ease;
    z-index: 1;
}

.pro-card:hover .card-visual-top::after {
    left: 100%;
    top: 100%;
}

.card-icon-glow {
    position: absolute;
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
    transition: all 0.7s ease;
}

.pro-card:hover .card-icon-glow {
    transform: scale(1.4);
    background: rgba(255, 255, 255, 0.3);
}

.card-visual-top i {
    font-size: 2.6rem;
    color: white;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.pro-card:hover .card-visual-top i {
    transform: scale(1.15) translateY(-8px);
}

.card-content {
    padding: 20px 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-item-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

.feature-item-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.feature-item-list li i {
    font-size: 0.85rem;
    color: var(--card-base-color);
}

.btn-card-pill {
    margin-top: auto;
    padding: 10px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 8px 20px var(--card-shadow-color);
}

.btn-card-pill:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px var(--card-shadow-color);
    color: white;
}

/* Theme Gradients & Colored Shadows */
.card-admissions {
    --card-base-color: #6366f1;
    --card-shadow-color: rgba(99, 102, 241, 0.35);
}

.card-admissions .card-visual-top,
.card-admissions .btn-card-pill {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.card-fees {
    --card-base-color: #10b981;
    --card-shadow-color: rgba(16, 185, 129, 0.35);
}

.card-fees .card-visual-top,
.card-fees .btn-card-pill {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.card-exams {
    --card-base-color: #a855f7;
    --card-shadow-color: rgba(168, 85, 247, 0.35);
}

.card-exams .card-visual-top,
.card-exams .btn-card-pill {
    background: linear-gradient(135deg, #a855f7, #c084fc);
}

.card-attendance {
    --card-base-color: #f97316;
    --card-shadow-color: rgba(249, 115, 22, 0.35);
}

.card-attendance .card-visual-top,
.card-attendance .btn-card-pill {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.card-library {
    --card-base-color: #06b6d4;
    --card-shadow-color: rgba(6, 182, 212, 0.35);
}

.card-library .card-visual-top,
.card-library .btn-card-pill {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.card-transport {
    --card-base-color: #f43f5e;
    --card-shadow-color: rgba(244, 63, 94, 0.35);
}

.card-transport .card-visual-top,
.card-transport .btn-card-pill {
    background: linear-gradient(135deg, #f43f5e, #fb7185);
}

/* Advantage Grid - Split Journey */
.advantage-section {
    padding: 60px 0;
    background: #ffffff;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.journey-image-wrapper {
    position: relative;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
}

.journey-main-img {
    width: 100%;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.journey-image-wrapper:hover .journey-main-img {
    transform: scale(1.1);
}

.trust-card {
    position: absolute;
    bottom: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsiveness */
@media (max-width: 1200px) {
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
   SERVICES PAGE PREMIUM REDESIGN - IMMERSIVE TECH
   ========================================================================== */

/* Cinematic Hero Section */
.hero-section.sub-hero {
    min-height: 60vh;
    padding: 90px 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 168, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(11, 79, 147, 0.05) 0%, transparent 40%),
        #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-mouse-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(0, 168, 204, 0.3) 0%,
            rgba(11, 79, 147, 0.15) 40%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(60px);
    transform: translate(-50%, -50%);
    left: 0;
    top: 0;
    will-change: transform;
}

.hero-section:hover .hero-mouse-glow {
    opacity: 1;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: #0f172a;
}

.about-hero-text {
    font-size: 1.5rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Split Narrative Journey */
.journey-section {
    padding: 10px 0;
    background: #ffffff;
    position: relative;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.journey-image-wrapper {
    position: relative;
}

.journey-image-wrapper::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(11, 79, 147, 0.04) 0%, transparent 70%);
    z-index: -1;
}

.journey-main-img {
    width: 100%;
    border-radius: 45px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.journey-image-wrapper:hover .journey-main-img {
    transform: translateY(-15px) rotate(-1deg);
}

.achievement-badge {
    position: absolute;
    bottom: 50px;
    right: -40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

/* Subtitles Sync */
.sub-hero .section-subtitle {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 168, 204, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Service Grid Layout - Standard */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Theme Classes for Service Cards - Visual Curve Style */

.pro-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: none;
    position: relative;
    height: 100%;
}

.pro-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Card Visual Top - Curved Gradient */
.card-visual-top {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom-left-radius: 100% 100%;
    /* More organic curve */
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    margin-bottom: 5px;
    overflow: hidden;
}

/* Glass Sheen Effect */
.card-visual-top::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -110%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.1) 48%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 52%,
            transparent 55%);
    transform: rotate(30deg);
    transition: all 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.pro-card:hover .card-visual-top::after {
    left: 100%;
    top: 100%;
}

.card-icon-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    transition: all 0.6s ease;
}

.pro-card:hover .card-icon-glow {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.25);
}

.card-visual-top i {
    font-size: 3.8rem;
    color: white;
    z-index: 2;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.2));
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.pro-card:hover .card-visual-top i {
    transform: scale(1.15) translateY(-5px);
}

/* Card Content Area */
.card-content {
    padding: 20px 25px 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Pill CTA Buttons */
.btn-card-pill {
    margin-top: auto;
    padding: 10px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
    display: inline-block;
}

.btn-card-pill:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px var(--card-shadow-color);
    color: white;
}

/* Theme Gradients & Colored Shadows */
.card-web {
    --card-shadow-color: rgba(99, 102, 241, 0.3);
}

.card-web .card-visual-top,
.card-web .btn-card-pill {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.card-mobile {
    --card-shadow-color: rgba(168, 85, 247, 0.3);
}

.card-mobile .card-visual-top,
.card-mobile .btn-card-pill {
    background: linear-gradient(135deg, #a855f7, #c084fc);
}

.card-custom {
    --card-shadow-color: rgba(249, 115, 22, 0.3);
}

.card-custom .card-visual-top,
.card-custom .btn-card-pill {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.card-hosting {
    --card-shadow-color: rgba(245, 158, 11, 0.3);
}

.card-hosting .card-visual-top,
.card-hosting .btn-card-pill {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.card-consulting {
    --card-shadow-color: rgba(16, 185, 129, 0.3);
}

.card-consulting .card-visual-top,
.card-consulting .btn-card-pill {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.card-design {
    --card-shadow-color: rgba(236, 72, 153, 0.3);
}

.card-design .card-visual-top,
.card-design .btn-card-pill {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.card-marketing {
    --card-shadow-color: rgba(244, 63, 94, 0.3);
}

.card-marketing .card-visual-top,
.card-marketing .btn-card-pill {
    background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.card-analytics {
    --card-shadow-color: rgba(79, 70, 229, 0.3);
}

.card-analytics .card-visual-top,
.card-analytics .btn-card-pill {
    background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.card-security {
    --card-shadow-color: rgba(30, 41, 59, 0.3);
}

.card-security .card-visual-top,
.card-security .btn-card-pill {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.pro-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px var(--card-shadow-color);
}

/* Process Section Standard Grid */
.process-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.process-step-premium {
    position: relative;
    padding: 15px 15px;
    background: white;
    border-radius: 8px;
    border: 1.5px solid #000;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.process-step-premium:hover {
    transform: translateY(-10px);
}

.process-step-premium i {
    font-size: 3rem;
    color: #000;
    margin-bottom: 10px;
}

.process-step-premium h4 {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    letter-spacing: 1px;
}

.process-step-premium p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Featured Card (Magenta Styling) */
.process-step-premium.featured {
    background: #e91e63;
    border-color: #e91e63;
}

.process-step-premium.featured i,
.process-step-premium.featured h4,
.process-step-premium.featured p {
    color: white;
}

/* Workflow Actions Container */
.workflow-actions {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Workflow Buttons */
.btn-workflow {
    width: 60%;
    padding: 5px;
    background: #000;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 1.5px solid #000;
    text-align: center;
}

.btn-workflow.secondary {
    background: transparent;
    color: #000;
}

/* Featured Card Button Styles */
.process-step-premium.featured .btn-workflow {
    background: white;
    color: #e91e63;
    border-color: white;
}

.process-step-premium.featured .btn-workflow.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-workflow:hover {
    opacity: 0.9;
    transform: scale(0.98);
}


/* Section Mesh Utility */
.section-mesh {
    padding: 10px 0;
    background: radial-gradient(circle at 10% 10%, rgba(11, 79, 147, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 168, 204, 0.02) 0%, transparent 40%);
}

/* Floating Hero Widgets */
.hero-widgets-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease-out;
}

.widget-1 {
    top: 20%;
    left: 5%;
    transform: rotate(-5deg);
}

.widget-2 {
    top: 15%;
    right: 8%;
    transform: rotate(3deg);
}

.widget-3 {
    bottom: 25%;
    left: 10%;
    transform: rotate(2deg);
}

.widget-4 {
    bottom: 20%;
    right: 5%;
    transform: rotate(-4deg);
}

.floating-widget i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-widget .widget-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

.floating-widget .widget-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .process-steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services-premium-grid,
    .process-steps-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* Tablet & Smaller Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .hero-title,
    .about-hero-title,
    .hero-title-large {
        font-size: 3.5rem;
    }

    .floating-widget {
        transform: scale(0.8);
    }
}

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {

    /* Navbar */
    .nav-links {
        display: none;
    }

    /* Ensure mobile menu works if using specific classes */
    .mobile-menu-toggle {
        display: block;
    }

    /* Grid collapses */
    .services-grid-3x3,
    .stats-grid,
    .process-steps-container,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }

    /* Hero adjustments */
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        order: 1;
    }

    .hero-illustration {
        order: 2;
        margin: 0 auto;
        max-width: 80%;
    }

    .cta-grid,
    .journey-grid,
    .product-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .cta-content,
    .product-content,
    .about-content {
        text-align: center;
    }

    .cta-buttons,
    .cta-contact-info,
    .about-buttons {
        justify-content: center;
    }

    /* Floating widgets might be distracting on smaller screens */
    .floating-widget {
        display: none;
    }

    .journey-image-wrapper {
        order: -1;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Global Typography */
    html {
        font-size: 15px;
    }

    h1,
    .hero-title,
    .section-title {
        line-height: 1.2;
    }

    .hero-title,
    .about-hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Full collapse for grids */
    .services-grid-3x3,
    .stats-grid,
    .process-steps-container,
    .footer-grid,
    .testimonials-grid,
    .product-features-grid,
    .services-premium-grid {
        grid-template-columns: 1fr !important;
        /* Force single column */
        gap: 25px;
    }

    /* Footer specific */
    .footer-grid {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        padding: 0;
        align-items: center;
    }

    .footer-logo,
    .social-links,
    .contact-list {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Contact page specifics overrides */
    .contact-split-wrapper {
        margin-top: 0;
        border-radius: 20px;
    }

    /* Hide some heavy decorative elements */
    .hero-mouse-glow,
    .hero-shape {
        display: none;
    }

    /* Adjust map height */
    .map-full-width,
    .map-full-width iframe {
        height: 300px;
    }

    /* Mobile Menu adjustments */
    .floating-nav-container {
        width: 90%;
        padding: 10px 20px;
        bottom: 20px;
    }

    .nav-capsule {
        gap: 15px;
    }

    .nav-label {
        font-size: 0.7rem;
    }

    /* Adjust Service Cards */
    .service-card,
    .pro-card {
        margin-bottom: 20px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav-capsule {
        justify-content: space-between;
    }

    .nav-item .nav-label {
        display: none;
    }

    .nav-item.active .nav-label {
        display: block;
    }
}


/* ==========================================================================
   MOBILE MENU FORCED VISIBILITY FIX (High Priority - TOP HEADER)
   ========================================================================== */
@media (max-width: 992px) {
    body {
        padding-top: 100px;
        /* Ensure content doesn't get hidden behind top nav */
        padding-bottom: 0;
    }

    .floating-nav-container {
        display: flex !important;
        position: fixed !important;
        top: 15px !important;
        /* Move to TOP */
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 95% !important;
        max-width: 400px !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 2147483647 !important;
        /* Max z-index */
        padding: 0 !important;
        pointer-events: none !important;
        background: transparent !important;
        height: auto !important;
        right: auto !important;
    }

    .nav-capsule {
        display: flex !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.95) !important;
        /* Slightly transparent */
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        /* Softer shadow for top */
        width: 100% !important;
        height: 60px !important;
        padding: 0 10px !important;
        border-radius: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
        justify-content: space-around !important;
        align-items: center !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: auto !important;
        min-width: 50px !important;
    }

    .icon-circle {
        background: transparent !important;
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        color: #64748b !important;
    }

    .nav-item.active .icon-circle {
        background: #0ea5e9 !important;
        /* Bright blue for active */
        color: white !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4) !important;
        transform: translateY(0) !important;
        /* No lift for top nav to keep alignment */
    }

    .nav-label {
        display: none !important;
        /* Hide labels on mobile */
    }

    /* Hide the default floating logo container on mobile since nav is now at top */
    .floating-logo-container {
        display: none !important;
    }
}

/* =========================================
   WEB DEVELOPMENT PAGE STYLES (NEW)
   ========================================= */

/* Hero Enhancements specific to Web Page */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 79, 147, 0.05);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(11, 79, 147, 0.1);
}

/* Pricing Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 40px 30px;
    color: white;
    border-radius: 0 0 40px 0;
    /* Asymmetric design */
    position: relative;
}

/* Card Variations */
.pricing-card.startup .pricing-header {
    background: linear-gradient(135deg, #0B4F93, #083C72);
}

.pricing-card.business {
    border: 2px solid #00A8CC;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 168, 204, 0.15);
}

.pricing-card.business .pricing-header {
    background: linear-gradient(135deg, #00A8CC, #007ea7);
}

.pricing-card.enterprise .pricing-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.pricing-tag {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFD700;
    /* Gold */
    margin: 10px 0;
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    opacity: 0.8;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF9F1C;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3);
}

.pricing-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
    min-width: 20px;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.faq-accordion .accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.faq-accordion .accordion-item.active .accordion-header {
    color: var(--primary-color);
}

.faq-accordion .accordion-body {
    padding: 0 25px 25px;
    display: none;
    color: var(--text-color);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-accordion .accordion-item.active .accordion-body {
    display: block;
    border-top-color: #f1f5f9;
    padding-top: 20px;
    /* Add some space */
}

.faq-accordion .accordion-icon {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-accordion .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

/* Quote Section Grid */
.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    /* Deep shadow */
    overflow: hidden;
}

.quote-info {
    background: linear-gradient(135deg, #0B4F93, #00A8CC);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-form-box {
    padding: 60px;
}

.quote-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quote-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .pricing-card.business {
        transform: scale(1);
        margin-top: 0;
        z-index: 1;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        /* Reset shadow */
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-info,
    .quote-form-box {
        padding: 40px 25px;
    }

    .pricing-card.business {
        order: -1;
        /* Show popular first on mobile */
    }
}


/* ==========================================================================
   TECH CARD HOVER EFFECTS (For Process Section)
   ========================================================================== */

.tech-card {
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-color: transparent !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3) !important;
}

.tech-card:hover h4,
.tech-card:hover p,
.tech-card:hover .tech-icon,
.tech-card:hover i {
    color: white !important;
}

/* Force icon color change on hover */
.tech-card:hover .tech-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ==========================================================================
   DROPDOWN MENU STYLES
   ========================================================================== */
.dropdown-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    position: absolute;
    bottom: calc(100% + 25px);
    /* Default for Bottom Nav (Desktop) */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 10px;
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Arrow for Dropdown */
.dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 24px;
    text-align: center;
    color: #94a3b8;
    background: rgba(241, 245, 249, 0.5);
    padding: 6px;
    border-radius: 6px;
    box-sizing: content-box;
    /* To ensure padding adds to width */
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover i {
    color: white;
    background: var(--primary-color);
}

/* Specific Icon Colors on Hover */
.dropdown-item:nth-child(1):hover i {
    background: #6366f1;
}

/* Web */
.dropdown-item:nth-child(2):hover i {
    background: #a855f7;
}

/* App */
.dropdown-item:nth-child(3):hover i {
    background: #f97316;
}

/* Custom */
.dropdown-item:nth-child(4):hover i {
    background: #f59e0b;
}

/* Hosting */
.dropdown-item:nth-child(5):hover i {
    background: #10b981;
}

/* Consulting */
.dropdown-item:nth-child(6):hover i {
    background: #ec4899;
}

/* Design */
.dropdown-item:nth-child(7):hover i {
    background: #f43f5e;
}

/* Marketing */
.dropdown-item:nth-child(8):hover i {
    background: #0ea5e9;
}

/* Data */
.dropdown-item:nth-child(9):hover i {
    background: #1e293b;
}

/* Security */


/* Mobile Override (If Nav is at Top) */
@media (max-width: 992px) {
    .dropdown-menu {
        bottom: auto;
        top: calc(100% + 20px);
        transform: translateX(-50%) translateY(-10px);
    }

    .dropdown-menu::after {
        bottom: auto;
        top: -6px;
        transform: translateX(-50%) rotate(225deg);
    }

    .dropdown-wrapper:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
}

/* ==========================================================================
   MODERN TOP NAVIGATION (Replacing Floating Capsule)
   ========================================================================== */
.modern-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
    /* Compact on scroll */
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* Fixed height for consistency */
}

/* Logo */
.nav-brand img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand:hover img {
    transform: scale(1.05);
}

/* Main Menu */
.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-main-item {
    position: relative;
    padding: 10px 0;
    /* Hit area */
}

/* Top Level Links */
.nav-link-main {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link-main:hover,
.nav-main-item.active .nav-link-main,
.nav-main-item:hover .nav-link-main {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.08);
    /* Subtle highlight block */
}

.nav-link-main i {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.nav-link-main:hover i,
.nav-main-item:hover .nav-link-main i {
    color: var(--primary-color);
}

/* Icon for Dropdown Indicator */
.fa-chevron-down {
    font-size: 0.7rem !important;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-main-item:hover .fa-chevron-down {
    transform: rotate(180deg);
}


/* Common Dropdown Styles */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-main-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Nav Item Container in Dropdown */
.nav-drop-item-container {
    position: relative;
    /* For sub-menu positioning */
}


/* Dropdown Items */
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    /* Fill container */
    box-sizing: border-box;
}

.nav-dropdown-item:hover,
.nav-drop-item-container:hover>.nav-dropdown-item {
    background: #f8fafc;
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-dropdown-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: rgba(241, 245, 249, 0.8);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.nav-dropdown-item:hover i,
.nav-drop-item-container:hover>.nav-dropdown-item i {
    background: var(--primary-color);
    color: white;
}


/* Nested Sub-Menu (Right Side Flyout) */
.nav-sub-menu {
    position: absolute;
    top: -5px;
    /* Align with parent item */
    left: 100%;
    /* Push to right */
    width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-left: 12px;
    /* Gap */
    z-index: 10002;
}

.nav-drop-item-container:hover .nav-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Arrow indicator for items with submenus */
.has-submenu-arrow::after {
    content: '\f054';
    /* FontAwesome Right Arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #cbd5e1;
    margin-left: auto;
    /* Push to right */
    transition: transform 0.2s;
}

.nav-drop-item-container:hover .has-submenu-arrow::after {
    transform: translateX(3px);
    color: var(--primary-color);
}


/* CTA Button (Desktop) */
.nav-cta-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Mobile Toggle */
.mobile-toggle-btn {
    display: none;
    font-size: 1.5rem;
    color: #1e293b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-menu-desktop {
        display: none;
        /* Hide desktop menu structure */
    }

    .mobile-toggle-btn {
        display: block;
    }

    /* Mobile Drawer */
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 10001;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .mobile-nav-drawer.active {
        right: 0;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        backdrop-filter: blur(4px);
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu Items */
    .mobile-nav-item {
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 10px;
    }

    .mobile-nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
    }

    .mobile-dropdown {
        display: none;
        padding-left: 15px;
        background: #f8fafc;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .mobile-dropdown.open {
        display: block;
    }

    .mobile-sub-link {
        display: block;
        padding: 10px 0;
        color: #475569;
        font-size: 0.95rem;
        border-bottom: 1px dashed #e2e8f0;
        text-decoration: none;
    }

    .mobile-cta-wrapper {
        margin-top: 30px;
    }

}

/* ==========================================================================
   UPDATED NAV UI IMPROVEMENTS (Polished Look)
   ========================================================================== */

/* Enhanced Main Links (Cleaner, Modern Font) */
.nav-link-main {
    font-family: 'Outfit', sans-serif;
    /* Ensuring modern font */
    font-weight: 500;
    color: #4b5563;
    /* Gray-600 */
    padding: 10px 18px;
    /* More horizontal spacing */
    border-radius: 50px;
    /* Pill shape for hover/active */
    transition: all 0.3s ease;
}

/* Active State - Soft Blue Pill (Matches Reference) */
.nav-main-item.active .nav-link-main {
    background-color: #eff6ff;
    /* Light Blue-50 */
    color: #2563eb;
    /* Blue-600 */
    font-weight: 600;
}

/* Hover State */
.nav-link-main:hover {
    background-color: #f8fafc;
    /* Slate-50 */
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-main-item.active .nav-link-main:hover {
    background-color: #dbeafe;
    /* Slightly darker blue on hover for active */
}

/* Icons in Main Link */
.nav-link-main i {
    color: #9ca3af;
    /* Gray-400 */
    font-size: 0.8rem;
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-main-item.active .nav-link-main i {
    color: #2563eb;
    transform: rotate(180deg);
}

.nav-main-item:hover .nav-link-main i {
    color: #2563eb;
}

/* CTA Button - Blue Gradient Pill (Matches "Get Started") */
.nav-cta-btn {
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    /* Cyan-500 to Sky-600 */
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta-btn:hover {
    background: linear-gradient(90deg, #0284c7, #0369a1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

/* Dropdown Polish */
.nav-dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(241, 245, 249, 1);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    padding: 12px;
    top: calc(100% + 15px);
    /* More spacing from nav */
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(241, 245, 249, 1);
    border-top: 1px solid rgba(241, 245, 249, 1);
}

/* Modern Dropdown Item */
.nav-dropdown-item {
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 10px;
    color: #64748b;
    font-weight: 500;
}

.nav-dropdown-item:hover {
    background-color: #eff6ff;
    color: #0ea5e9;
    transform: translateX(4px);
}

.nav-dropdown-item i {
    background: transparent;
    /* Remove box background */
    color: #94a3b8;
    width: 24px;
    font-size: 1rem;
    justify-content: flex-start;
    /* Align left */
}

.nav-dropdown-item:hover i {
    color: #0ea5e9;
    background: transparent;
}

/* Submenu Arrow Polish */
.has-submenu-arrow::after {
    font-size: 0.65rem;
    color: #cbd5e1;
}

.nav-drop-item-container:hover .has-submenu-arrow::after {
    color: #0ea5e9;
}

/* Mobile Tweaks */
@media (max-width: 1024px) {
    .nav-link-main {
        border-radius: 12px;
        /* Less round on mobile */
        padding: 16px 0;
    }

    .nav-main-item.active .nav-link-main {
        background: transparent;
        /* No background on mobile list */
        color: #2563eb;
    }
}

/* FIX: Hide Mobile Drawer on Desktop */
.mobile-nav-drawer,
.mobile-nav-overlay {
    display: none;
}

/* Re-enable for Mobile */
@media (max-width: 1024px) {
    .mobile-nav-drawer {
        display: block;
    }

    .mobile-nav-overlay {
        display: block;
    }
}

/* ==========================================================================
   MODERN TOP NAVIGATION (Merged from style-nav.css & style-nav-polish.css)
   ========================================================================== */
.modern-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
    /* Compact on scroll */
}

/* Updated selector to support both class names */
.nav-container,
.modern-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* Fixed height for consistency */
}

/* Logo */
.nav-brand img {
    height: 135px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand:hover img {
    transform: scale(1.05);
}

/* Main Menu */
.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-main-item {
    position: relative;
    padding: 10px 0;
    /* Hit area */
}

/* Top Level Links */
.nav-link-main {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link-main:hover,
.nav-main-item.active .nav-link-main,
.nav-main-item:hover .nav-link-main {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.08);
    /* Subtle highlight block */
}

.nav-link-main i {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.nav-link-main:hover i,
.nav-main-item:hover .nav-link-main i {
    color: var(--primary-color);
}

/* Icon for Dropdown Indicator */
.fa-chevron-down {
    font-size: 0.7rem !important;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-main-item:hover .fa-chevron-down {
    transform: rotate(180deg);
}


/* Common Dropdown Styles */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-main-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Nav Item Container in Dropdown */
.nav-drop-item-container {
    position: relative;
    /* For sub-menu positioning */
}


/* Dropdown Items */
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
    /* Fill container */
    box-sizing: border-box;
}

.nav-dropdown-item:hover,
.nav-drop-item-container:hover>.nav-dropdown-item {
    background: #f8fafc;
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-dropdown-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: rgba(241, 245, 249, 0.8);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.nav-dropdown-item:hover i,
.nav-drop-item-container:hover>.nav-dropdown-item i {
    background: var(--primary-color);
    color: white;
}


/* Nested Sub-Menu (Right Side Flyout) */
.nav-sub-menu {
    position: absolute;
    top: -5px;
    /* Align with parent item */
    left: 100%;
    /* Push to right */
    width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-left: 12px;
    /* Gap */
    z-index: 10002;
}

.nav-drop-item-container:hover .nav-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Arrow indicator for items with submenus */
.has-submenu-arrow::after {
    content: '\f054';
    /* FontAwesome Right Arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #cbd5e1;
    margin-left: auto;
    /* Push to right */
    transition: transform 0.2s;
}

.nav-drop-item-container:hover .has-submenu-arrow::after {
    transform: translateX(3px);
    color: var(--primary-color);
}


/* CTA Button (Desktop) */
.nav-cta-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Mobile Toggle */
.mobile-toggle-btn {
    display: none;
    font-size: 1.5rem;
    color: #1e293b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-menu-desktop {
        display: none;
        /* Hide desktop menu structure */
    }

    .mobile-toggle-btn {
        display: block;
    }

    /* Mobile Drawer */
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 10001;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .mobile-nav-drawer.active {
        right: 0;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        backdrop-filter: blur(4px);
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu Items */
    .mobile-nav-item {
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 10px;
    }

    .mobile-nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
    }

    .mobile-dropdown {
        display: none;
        padding-left: 15px;
        background: #f8fafc;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .mobile-dropdown.open {
        display: block;
    }

    .mobile-sub-link {
        display: block;
        padding: 10px 0;
        color: #475569;
        font-size: 0.95rem;
        border-bottom: 1px dashed #e2e8f0;
        text-decoration: none;
    }

    .mobile-cta-wrapper {
        margin-top: 30px;
    }

}

/* ==========================================================================
   UPDATED NAV UI IMPROVEMENTS (Polished Look - From style-nav-polish.css)
   ========================================================================== */

/* Enhanced Main Links (Cleaner, Modern Font) */
.nav-link-main {
    font-family: 'Outfit', sans-serif;
    /* Ensuring modern font */
    font-weight: 500;
    color: #4b5563;
    /* Gray-600 */
    padding: 10px 18px;
    /* More horizontal spacing */
    border-radius: 50px;
    /* Pill shape for hover/active */
    transition: all 0.3s ease;
}

/* Active State - Soft Blue Pill (Matches Reference) */
.nav-main-item.active .nav-link-main {
    background-color: #eff6ff;
    /* Light Blue-50 */
    color: #2563eb;
    /* Blue-600 */
    font-weight: 600;
}

/* Hover State */
.nav-link-main:hover {
    background-color: #f8fafc;
    /* Slate-50 */
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-main-item.active .nav-link-main:hover {
    background-color: #dbeafe;
    /* Slightly darker blue on hover for active */
}

/* Icons in Main Link */
.nav-link-main i {
    color: #9ca3af;
    /* Gray-400 */
    font-size: 0.8rem;
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-main-item.active .nav-link-main i {
    color: #2563eb;
    transform: rotate(180deg);
}

.nav-main-item:hover .nav-link-main i {
    color: #2563eb;
}

/* CTA Button - Blue Gradient Pill (Matches "Get Started") */
.nav-cta-btn {
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    /* Cyan-500 to Sky-600 */
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta-btn:hover {
    background: linear-gradient(90deg, #0284c7, #0369a1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

/* Dropdown Polish */
.nav-dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(241, 245, 249, 1);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    padding: 12px;
    top: calc(100% + 15px);
    /* More spacing from nav */
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(241, 245, 249, 1);
    border-top: 1px solid rgba(241, 245, 249, 1);
}

/* Modern Dropdown Item */
.nav-dropdown-item {
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 10px;
    color: #64748b;
    font-weight: 500;
}

.nav-dropdown-item:hover {
    background-color: #eff6ff;
    color: #0ea5e9;
    transform: translateX(4px);
}

.nav-dropdown-item i {
    background: transparent;
    /* Remove box background */
    color: #94a3b8;
    width: 24px;
    font-size: 1rem;
    justify-content: flex-start;
    /* Align left */
}

.nav-dropdown-item:hover i {
    color: #0ea5e9;
    background: transparent;
}

/* Submenu Arrow Polish */
.has-submenu-arrow::after {
    font-size: 0.65rem;
    color: #cbd5e1;
}

.nav-drop-item-container:hover .has-submenu-arrow::after {
    color: #0ea5e9;
}

/* Mobile Tweaks */
@media (max-width: 1024px) {
    .nav-link-main {
        border-radius: 12px;
        /* Less round on mobile */
        padding: 16px 0;
    }

    .nav-main-item.active .nav-link-main {
        background: transparent;
        /* No background on mobile list */
        color: #2563eb;
    }
}

/* ==========================================================================
   UTILITY CLASSES (Re-appending essential utilitites)
   ========================================================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Often needed for background-clip to work on some elements */
}

/* Ensure background-clip is supported */
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .gradient-text {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

/* Web Development Service Page Hero */
.web-services-hero {
    background: url("re web.jpg") no-repeat center center/cover !important;
}

.web-services-hero .about-hero-title,
.web-services-hero .about-hero-text {
    color: #ffffff !important;
}

/* App Development Service Page Hero */
.app-services-hero {
    background: url("app.jpg") no-repeat center center/cover !important;
    text-align: left !important;
}

.app-services-hero .about-hero-title,
.app-services-hero .about-hero-text {
    color: #ffffff !important;
}

.app-services-hero .about-hero-text {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.app-services-hero .hero-buttons {
    justify-content: flex-start !important;
}

/* Custom Software Service Page Hero */
.custom-services-hero {
    background: url("software.jpg") no-repeat center center/cover !important;
    text-align: center !important;
}

.custom-services-hero .about-hero-title,
.custom-services-hero .about-hero-text {
    color: #ffffff !important;
}

.custom-services-hero .about-hero-text {
    margin-left: auto !important;
    margin-right: auto !important;
}

.custom-services-hero .hero-buttons {
    justify-content: center !important;
}

.products-hero {
    background: url('erp.jpg') no-repeat center center/cover !important;
}

.hosting-hero {
    background: url('cloud.jpg') no-repeat center center/cover !important;
}

.hosting-hero .about-hero-title,
.hosting-hero .about-hero-text {
    color: #ffffff !important;
}

.consulting-hero {
    text-align: right !important;
}

.consulting-hero .about-hero-content {
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: right !important;
}

.consulting-hero .hero-buttons {
    justify-content: flex-end !important;
}

.consulting-hero .hero-badge-pill {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.design-hero {
    background: url('ui ux.jpg') no-repeat center center/cover !important;
}

.growth-hero {
    background: url('growth.jpg') no-repeat center center/cover !important;
}

.growth-hero .about-hero-title,
.growth-hero .about-hero-text {
    color: #ffffff !important;
}

.data-hero {
    background: url('data.jpg') no-repeat center center/cover !important;
    text-align: left !important;
}

.data-hero .about-hero-content {
    text-align: left !important;
}

.data-hero .about-hero-title,
.data-hero .about-hero-text {
    color: #0ea5e9 !important;
}

.data-hero .about-hero-text {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.data-hero .hero-buttons {
    justify-content: flex-start !important;
}

.data-hero .hero-badge-pill {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.security-hero {
    background: url('cyber.jpg') no-repeat center center/cover !important;
    text-align: left !important;
}

.security-hero .about-hero-content {
    text-align: left !important;
}

.security-hero .about-hero-title {
    color: #0d9488 !important;
}

.security-hero .about-hero-text {
    color: #14b8a6 !important;
    /* Premium Teal/Green */
    margin-left: 0 !important;
    margin-right: auto !important;
}

.security-hero .hero-buttons {
    justify-content: flex-start !important;
}

.security-hero .hero-badge-pill {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Capabilities & Expertise Area - Premium Design */
.capabilities-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('home\ bg.svg') no-repeat center center/cover;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.capabilities-section .container {
    position: relative;
    z-index: 1;
}


.capabilities-header {
    text-align: center;
    margin-bottom: 80px;
}

.capabilities-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.capabilities-header h2 .accent-text {
    color: blue;
}

.header-line-custom {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.capabilities-header .sub-text {
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.4;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.capability-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px;
}

.capability-card:hover {
    transform: translateX(10px);
}

.capability-icon-wrapper {
    width: 65px;
    height: 65px;
    border: 2px solid blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: blue;
    font-size: 1.6rem;
    transition: all 0.4s ease;
    background: transparent;
}

.capability-card:hover .capability-icon-wrapper {
    background: blue;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.3);
}

.capability-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.capability-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.capability-content .read-more {
    font-weight: 700;
    color: blue;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.capability-content .read-more:hover {
    gap: 12px;
}

/* Feature Icon Hover Effects */
.capability-card:nth-child(1) .capability-icon-wrapper i {
    animation: pulseIcon 3s infinite;
}

.capability-card:nth-child(4) .capability-icon-wrapper i {
    animation: spinSlow 5s infinite linear;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Capabilities Area */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-header h2 {
        font-size: 2rem;
    }

    .capabilities-header .sub-text {
        font-size: 1.3rem;
    }
}

/* Home About Section */
.home-about-section {
    padding: 100px 0;
    background: #f8fafc;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
}

.about-image-main {
    width: 90%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(11, 79, 147, 0.3);
}

.about-experience-badge h4 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
    line-height: 1;
}

.about-experience-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1e293b;
}

.home-about-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
    font-weight: 600;
}

.about-feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Portfolio Preview Section */
.portfolio-preview-section {
    padding: 100px 0;
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-preview-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-preview-card:hover .project-preview-overlay {
    opacity: 1;
}

.project-preview-card:hover .project-preview-img {
    transform: scale(1.1);
}

.project-preview-overlay h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.project-preview-overlay span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MODERN SERVICE CARDS - IMAGE BASED (REFERENCE STYLE)
   ========================================================================== */
.modern-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.modern-service-card {
    position: relative;
    border-radius: 40px;
    height: 480px;
    overflow: hidden;
    background: #000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.modern-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s ease;
}

.modern-service-card:hover .card-image-bg {
    transform: scale(1.1);
}

.card-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.85) 80%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.card-blur-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

.card-content-overlay {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: 30px;
}

.badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-glass i {
    font-size: 0.75rem;
    color: #ffd700;
}

.modern-service-card h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.modern-service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-modern-explore {
    background: white;
    color: #000;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    text-transform: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modern-service-card:hover .btn-modern-explore {
    background: var(--primary-color, #2563eb);
    color: white;
}

@media (max-width: 991px) {
    .modern-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-service-grid {
        grid-template-columns: 1fr;
    }

    .modern-service-card {
        height: 420px;
    }
}