/* Reset some base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1A3C82;
    --deep-blue: #0A214F;
    --light-blue: #3E78C6;
    --dark-text: #212121;
    --light-text: #FFFFFF;
    --gray-text: #757575;
    --background-light: #F6F9FD;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --box-shadow: 0 10px 30px rgba(10, 33, 79, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Updating color scheme for consistency */
    --primary-color: var(--primary-blue);
    --secondary-color: var(--deep-blue);
    --accent-color: var(--light-blue);
    --text-color: var(--dark-text);
}

/* Premium Hero Section Styles */
.premium-hero {
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--background-light);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 30px;
}

.hero-heading {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bold-text {
    display: block;
    color: var(--dark-text);
    font-weight: 900;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 520px;
}

/* Stats Grid Styling */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    position: relative;
    background: var(--light-text);
    border-radius: var(--border-radius-sm);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stat-box:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.stat-box:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.stat-box:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.stat-box:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
}

/* Hero Visuals */
.hero-visuals {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.swirl-container {
    position: absolute;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.main-swirl {
    width: 70%;
    aspect-ratio: 1;
    right: 0;
    top: 0;
}

.small-swirl {
    width: 30%;
    aspect-ratio: 1;
    left: 0;
    bottom: 20%;
}

.swirl-image {
    width: 100%;
    height: 100%;
    background-image: url('../1.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
}

.swirl-image.small {
    background-image: url('../1.jpg');
}

.swirl-container:hover .swirl-image {
    transform: scale(1.05) rotate(3deg);
}

.square-logo {
    position: absolute;
    bottom: 10%;
    left: 40%;
    width: 80px;
    height: 80px;
    background-color: var(--light-text);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    z-index: 3;
    transition: var(--transition);
}

.square-logo:hover {
    transform: rotate(10deg);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.dot-grid {
    position: absolute;
    top: 70%;
    right: 25%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    opacity: 0.7;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background-color: var(--primary-blue);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: float 20s infinite alternate ease-in-out;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: 10%;
    animation: float 15s infinite alternate-reverse ease-in-out;
}

.bg-blob {
    position: absolute;
    opacity: 0.07;
    background-color: var(--deep-blue);
    border-radius: 50%;
}

.blob-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation: pulse 10s infinite alternate ease-in-out;
}

.blob-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 25%;
    animation: pulse 8s infinite alternate-reverse ease-in-out;
}

/* Services Section Styles */
.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
    background-image: linear-gradient(120deg, rgba(62, 120, 198, 0.05) 0%, rgba(10, 33, 79, 0.03) 100%);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(26, 60, 130, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.service-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    background-color: #0A214F;
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(26, 60, 130, 0.25);
    box-shadow: 0 10px 25px rgba(10, 33, 79, 0.12);
    z-index: 1;
    color: #FFFFFF;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #3E78C6, #7FB5FF);
    opacity: 1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 33, 79, 0.25);
    background-color: #1A3C82;
}

.service-card.highlighted {
    background: linear-gradient(135deg, #3E78C6, #1A3C82);
    color: var(--light-text);
    box-shadow: 0 15px 35px rgba(10, 33, 79, 0.25);
    border: none;
    transform: translateY(-5px);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #FFFFFF;
}

.service-card.highlighted .service-title,
.service-card.highlighted .service-description {
    color: var(--light-text);
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FFFFFF;
    color: #0A214F;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-read-more:hover {
    background-color: #3E78C6;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0A214F;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .arrow-icon {
    transform: translate(5px, -5px);
    background-color: #FFFFFF;
    color: #3E78C6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0) rotate(0); }
    100% { transform: translate(20px, 20px) rotate(5deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .premium-hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-visuals {
        min-height: 400px;
    }
    
    .main-swirl {
        width: 80%;
    }
}

@media (max-width: 767.98px) {
    .premium-hero {
        padding: 60px 0 40px;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box:nth-child(1),
    .stat-box:nth-child(2),
    .stat-box:nth-child(3),
    .stat-box:nth-child(4) {
        grid-column: 1;
    }
    
    .stat-box:nth-child(1) { grid-row: 1; }
    .stat-box:nth-child(2) { grid-row: 2; }
    .stat-box:nth-child(3) { grid-row: 3; }
    .stat-box:nth-child(4) { grid-row: 4; }
    
    .hero-visuals {
        min-height: 300px;
    }
    
    .services-section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.footer-modern {
    position: relative;
    background-color: #0A214F;
    padding: 100px 0 40px;
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    z-index: 1;
}

/* Footer curve */
.footer-curve-container {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    z-index: 2;
}

.footer-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.5);
}

/* Animated background elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-bg-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(26, 60, 130, 0.08);
    animation: floatSlow 20s ease-in-out infinite;
}

.footer-bg-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.footer-bg-line {
    position: absolute;
    top: 0;
    left: 15%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, transparent);
}

.footer-bg-blur-1 {
    position: absolute;
    top: 20%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(62, 120, 198, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.footer-bg-blur-2 {
    position: absolute;
    bottom: 10%;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(26, 60, 130, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

/* Footer Top Section */
.footer-top {
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.footer-logo {
    max-height: 50px;
    transition: all 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-blue), var(--primary-blue));
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover:before {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Additional Styles */
@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

@keyframes shine {
    0% { background-position: -100px; }
    60%, 100% { background-position: 400px; }
}

/* Header Styles */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background-color: transparent !important;
    background: none !important;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.header-container.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 5px 20px rgba(10, 33, 79, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.logo {
    max-height: 50px;
    transition: var(--transition);
    filter: brightness(0) invert(1); /* Make logo white */
}

.header-container.scrolled .logo {
    filter: none; /* Return to original colors when scrolled */
    max-height: 40px;
}

.header-container.scrolled .nav-link {
    color: #000000 !important;
    text-shadow: none;
}

.header-container.scrolled .nav-link:hover, 
.header-container.scrolled .nav-link.active {
    color: var(--primary-color) !important;
}

/* Request Demo Button */
.btn-request-demo {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-request-demo:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    color: white !important;
    text-decoration: none;
}

.header-container.scrolled .btn-request-demo {
    background-color: var(--primary-blue);
    color: white !important;
    border: 2px solid var(--primary-blue);
}

.header-container.scrolled .btn-request-demo:hover {
    background-color: var(--deep-blue);
    border-color: var(--deep-blue);
    box-shadow: 0 8px 20px rgba(10, 33, 79, 0.2);
}

.navbar {
    padding: 0;
}

/* Video Banner Section */
.video-banner-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.full-width-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 33, 79, 0.6), rgba(10, 33, 79, 0.8));
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-heading {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-cta {
    margin-top: 2rem;
}

/* Navbar toggler (hamburger menu) */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF !important;
    margin: 3px 0;
    transition: var(--transition);
}

.header-container.scrolled .navbar-toggler-icon span {
    background-color: #000000 !important;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 10px 15px !important;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-link:hover, .nav-link.active {
    color: var(--light-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

/* Custom Button Styles */
.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    padding: 0.25rem;
}

.btn-primary .btn-text {
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.btn-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    margin-right: 0.25rem;
    transition: all 0.3s ease;
} 

/* Process Section Styles */
.process-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #F6F9FD;
    z-index: 1;
}

/* Background Elements */
.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.process-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.04;
}

.process-blob.blob-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--light-blue);
    animation: float-slow 25s infinite alternate;
}

.process-blob.blob-2 {
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--deep-blue);
    animation: float-slow 30s infinite alternate-reverse;
}

.process-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--deep-blue) 1px, transparent 1px),
        radial-gradient(var(--primary-blue) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.03;
}

/* Section Header */
.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(10, 33, 79, 0.1);
    color: #0A214F !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(10, 33, 79, 0.1);
}

.section-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(26, 60, 130, 0.2);
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0A214F;
}

.text-gradient {
    background: linear-gradient(to right, #0A214F, #1A3C82);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0A214F; /* Fallback color */
}

.section-subheading {
    color: #3A4F66;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    margin: 80px 0;
    padding: 30px 0;
}

.process-step {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-step:nth-child(odd) {
    padding-left: 5rem;
}

.process-step:nth-child(even) {
    padding-right: 5rem;
    text-align: right;
}

.process-step-connector {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(26, 60, 130, 0.1), rgba(26, 60, 130, 0.3));
}

.process-step:nth-child(odd) .process-step-connector {
    left: 2rem;
}

.process-step:nth-child(even) .process-step-connector {
    right: 2rem;
}

.connector-line {
    position: absolute;
    top: 3rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, rgba(26, 60, 130, 0.3), rgba(26, 60, 130, 0.1));
}

.process-step:nth-child(odd) .connector-line {
    left: 0;
}

.process-step:nth-child(even) .connector-line {
    right: 0;
}

.process-step-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(10, 33, 79, 0.25);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(10, 33, 79, 0.1);
}

.process-step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0A214F;
}

.process-step-description {
    font-size: 1rem;
    color: #3A4F66;
    line-height: 1.7;
}

.process-step-icon {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
    z-index: 2;
}

.process-step:nth-child(odd) .process-step-icon {
    left: 0.5rem;
    top: 2rem;
    transform: translateX(-50%);
}

.process-step:nth-child(even) .process-step-icon {
    right: 0.5rem;
    top: 2rem;
    transform: translateX(50%);
}

.process-step:hover .process-step-icon {
    transform: translateY(-5px) translateX(-50%);
    box-shadow: 0 15px 35px rgba(26, 60, 130, 0.25);
    color: white;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
}

.process-step:nth-child(even):hover .process-step-icon {
    transform: translateY(-5px) translateX(50%);
}

/* Interactive Feature */
.interactive-feature {
    padding: 4rem 0;
    margin-top: 3rem;
    position: relative;
}

.interactive-content {
    padding-right: 2rem;
}

.interactive-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: var(--dark-text);
}

.interactive-description {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.progress-metrics {
    margin-top: 2.5rem;
}

.metric-item {
    margin-bottom: 1.5rem;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.percentage {
    color: var(--primary-blue);
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: rgba(26, 60, 130, 0.1);
    overflow: hidden;
    position: relative;
}

.progress-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Floating Cards */
.interactive-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-item {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 240px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.1);
}

.card-1 {
    top: 0;
    left: 10%;
    animation: float-card 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 0;
    animation: float-card 7s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 0;
    left: 25%;
    animation: float-card 8s ease-in-out infinite 0.5s;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 60, 130, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
}

.card-item:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: white;
    box-shadow: 0 10px 20px rgba(26, 60, 130, 0.25);
}

.card-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Call to Action */
.process-cta {
    margin-top: 6rem;
}

.cta-gradient-bg {
    background: var(--light-blue);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(26, 60, 130, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Top border removed for clean solid background */

.cta-gradient-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(26, 60, 130, 0.15);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white; /* Changed to white for better visibility on blue background */
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9); /* Changed to white with slight transparency for better visibility */
    margin-bottom: 0;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(26, 60, 130, 0.25);
    transition: all 0.4s ease;
}

.btn-premium i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-premium:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 60, 130, 0.35);
}

.btn-premium:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(-30px, 30px) rotate(2deg); }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .process-section {
        padding: 80px 0;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .interactive-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .interactive-visual {
        min-height: 500px;
    }
    
    .card-1 { left: 5%; }
    .card-2 { right: 5%; }
    .card-3 { left: 20%; }
    
    .cta-gradient-bg {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .btn-premium {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .process-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding: 1rem !important;
        text-align: left !important;
    }
    
    .process-step-connector {
        display: none;
    }
    
    .process-step-icon {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 1rem;
    }
    
    .process-step:hover .process-step-icon {
        transform: translateY(-5px) !important;
    }
    
    .interactive-visual {
        min-height: 600px;
    }
    
    .card-item {
        position: relative;
        width: 100%;
        margin-bottom: 1.5rem;
        animation: none;
    }
    
    .cta-gradient-bg {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
} 

/* Portfolio Section Styles */
.portfolio-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--background-light);
    overflow: hidden;
    z-index: 1;
}

/* Background Elements */
.portfolio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.portfolio-blob-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--deep-blue);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(100px);
    animation: rotate 25s linear infinite;
}

.portfolio-blob-2 {
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--deep-blue);
    opacity: 0.03;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(80px);
    animation: morphing 20s ease-in-out infinite alternate;
}

.portfolio-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    opacity: 0.7;
}

/* Portfolio Filter */
.portfolio-filter {
    margin-top: 50px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-text);
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(to right, var(--light-blue), var(--deep-blue));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.filter-btn:hover, 
.filter-btn.active {
    color: var(--primary-blue);
}

.filter-btn:hover:before,
.filter-btn.active:before {
    width: 80%;
}

.filter-btn.active {
    background-color: rgba(26, 60, 130, 0.1);
}

/* Portfolio Grid */
.portfolio-grid-container {
    margin-top: 60px;
}

.portfolio-items {
    position: relative;
}

.portfolio-item {
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 33, 79, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 60, 130, 0.15);
}

.portfolio-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-card:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.portfolio-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.portfolio-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: scale(0);
    opacity: 0;
}

.portfolio-card:hover .portfolio-action-btn {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.1s;
}

.portfolio-card:hover .portfolio-action-btn:nth-child(2) {
    transition-delay: 0.2s;
}

.portfolio-action-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 33, 79, 0.25);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.portfolio-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    background-color: rgba(26, 60, 130, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.portfolio-tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* View More Button */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view-more:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-view-more:hover {
    color: white;
    border-color: transparent;
}

.btn-view-more:hover:before {
    width: 100%;
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

/* Client Logos Section */
.client-logos-section {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.client-logos-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.client-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.client-logo {
    flex: 0 0 auto;
    max-width: 150px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

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

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .portfolio-section {
        padding: 80px 0;
    }
    
    .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .filter-btn {
        padding: 6px 16px;
        margin: 0 3px 8px;
        font-size: 0.85rem;
    }
    
    .portfolio-blob-1,
    .portfolio-blob-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .client-logos-container {
        gap: 30px;
    }
    
    .client-logo {
        max-width: 120px;
    }
    
    .portfolio-img {
        height: 200px;
    }
} 