/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --primary-blue: #2192FF;
    --dark-navy: #172774;
    --cyan-accent: #00F7FF;
    --teal-green: #018383;
    --white: #ffffff;
    --soft-gray: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container improvements for all devices */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Better touch targets for mobile */
a, button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background: rgba(23, 39, 116, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(23, 39, 116, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(33, 146, 255, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan-accent) !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand-text {
    color: var(--cyan-accent);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand:hover .navbar-brand-text {
    color: var(--white) !important;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-accent);
    transition: width 0.3s ease;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    max-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 70px;
    padding-bottom: 40px;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #2192FF, #20C9F5);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    bottom: -250px;
    right: -250px;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #20C9F5, #8B5CF6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.tech-shape {
    position: absolute;
    opacity: 0.1;
    border: 2px solid rgba(32, 201, 245, 0.3);
    border-radius: 20px;
    animation: rotate-slow 30s infinite linear;
}

.tech-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.tech-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.tech-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 10s;
}

/* Hero Content Layout */
.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .container .row {
    width: 100%;
    margin: 0;
    align-items: center;
}

.hero-text-column {
    padding: 20px 20px;
    overflow: visible;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #2192FF, #20C9F5);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(33, 146, 255, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(33, 146, 255, 0.5);
    background: linear-gradient(135deg, #1a7ce8, #1bb8d9);
}

.btn-primary-hero:active {
    transform: translateY(-1px);
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(32, 201, 245, 0.2);
    border-color: #20C9F5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(32, 201, 245, 0.3);
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up:nth-child(1) {
    transition-delay: 0.2s;
}

.fade-in-up:nth-child(2) {
    transition-delay: 0.4s;
}

.fade-in-up:nth-child(3) {
    transition-delay: 0.6s;
}

/* Mobile Mockup Column */
.hero-mockup-column {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.phone-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

/* Mobile Hero Image - Hidden on desktop */
.mobile-hero-image {
    display: none;
}

/* Desktop Mockup - Show on desktop */
.desktop-mockup {
    display: block;
}

.hero-mobile-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

.phone-mockup {
    position: relative;
    width: 100%;
    padding-bottom: 165%;
    animation: phone-float 6s ease-in-out infinite;
}

.phone-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 25px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-home-indicator {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 10;
}

.phone-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(15px);
    z-index: 0;
}

/* Phone Carousel */
.phone-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

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

.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.scroll-arrow a:hover {
    color: #20C9F5;
    transform: translateY(5px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    overflow: visible;
    display: flex;
    align-items: center;
}

/* Background Gradient */
.about-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #172774 0%, #2192FF 100%);
    z-index: 0;
}

/* Tech Grid Overlay */
.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 247, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Background Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: float-shape 15s infinite ease-in-out;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: #00F7FF;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: #018383;
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: #2192FF;
    top: 50%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content-wrapper {
    min-height: auto;
    align-items: center;
}

/* Left Side: Image Container */
.about-image-container {
    position: relative;
    width: 100%;
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s ease;
    object-fit: contain;
    position: relative;
    z-index: 0;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.1);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.about-image-wrapper:hover .image-glow {
    opacity: 1;
}

/* Right Side: Content */
.about-content {
    padding: 15px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00F7FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Feature Icons */
.about-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-icon-card {
    flex: 1;
    min-width: 110px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.feature-icon-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 247, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-icon-card:hover {
    transform: translateY(-10px);
    border-color: #00F7FF;
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #2192FF, #00F7FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(33, 146, 255, 0.3);
}

.feature-icon-card:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.6);
    background: linear-gradient(135deg, #00F7FF, #2192FF);
}

.feature-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 100px 0;
    background: var(--soft-gray);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 146, 255, 0.05) 0%, rgba(0, 247, 255, 0.05) 100%);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.5);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.illustration-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    opacity: 0;
    position: absolute;
    animation: none;
    display: none;
    overflow: visible;
    z-index: 1;
}

.circle-image {
    width: 450px;
    height: 450px;
    object-fit: contain;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    filter: brightness(1) contrast(1.3) saturate(1.2) drop-shadow(0 15px 60px rgba(33, 146, 255, 0.6));
    opacity: 1;
    transform: scale(1);
    background: rgba(33, 146, 255, 0.05);
    padding: 15px;
    box-shadow: 
        0 0 50px rgba(33, 146, 255, 0.5),
        0 0 100px rgba(0, 247, 255, 0.3),
        inset 0 0 30px rgba(33, 146, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(33, 146, 255, 0.3);
    animation: float-icon 4s infinite ease-in-out;
}

.icon-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.icon-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(33, 146, 255, 0.4);
}

.feature-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO / PROCESS SECTION
   ============================================ */

.portfolio-section {
    padding: 100px 0;
    background: var(--soft-gray);
}

.process-container {
    position: relative;
}

.process-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(33, 146, 255, 0.2);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(33, 146, 255, 0.3);
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 30px auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

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

.process-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.progress-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(33, 146, 255, 0.2);
    border-radius: 2px;
    z-index: -1;
    transform: translateY(-50%);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--cyan-accent));
    border-radius: 2px;
    width: 0%;
    transition: width 1s ease;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
}

.contact-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #2192FF;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item:last-of-type {
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.phone-icon {
    background: linear-gradient(135deg, #2192FF, #20C9F5);
}

.email-icon {
    background: linear-gradient(135deg, #20C9F5, #64d9ff);
}

.address-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.contact-text {
    flex: 1;
    padding-top: 6px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-text a:hover {
    color: #2192FF;
}

.connect-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.connect-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-icon-circle:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.instagram-icon {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.email-icon-small {
    background: linear-gradient(135deg, #333, #555);
}

.threads-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 320px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cyan-accent);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan-accent);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0 20px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan-accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(33, 146, 255, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
    }
    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 1;
    }
}

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

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes phone-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   TABLET STYLES (768px - 992px)
   ============================================ */
@media (min-width: 768px) and (max-width: 992px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .about-heading {
        font-size: 2.2rem;
    }
    
    .about-features {
        gap: 20px;
    }
    
    .feature-icon-card {
        min-width: 140px;
        padding: 22px 18px;
    }
    
    .service-card,
    .process-card {
        margin-bottom: 25px;
    }
    
    .contact-info-card,
    .map-container {
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-mockup-column {
        margin-top: 40px;
    }
    
    .phone-mockup-wrapper {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .illustration-container {
        height: 400px;
        margin-bottom: 50px;
    }
    
    .illustration-circle {
        width: 300px;
        height: 300px;
    }
    
    .circle-image {
        width: 350px;
        height: 350px;
    }
    
    .progress-track {
        display: none;
    }
    
    /* About Section Responsive */
    .about-heading {
        font-size: 2.5rem;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .feature-icon-card {
        min-width: 100px;
        padding: 20px 15px;
    }
    
    /* Navigation improvements */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
    }
    
    /* Better spacing for sections */
    section {
        padding: 80px 0;
    }
}

/* ============================================
   MOBILE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Better container padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Section padding */
    section {
        padding: 60px 0;
    }
    
    /* Navbar - not full width on mobile */
    .navbar .container {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
    
    /* Navbar logo for mobile */
    .navbar-logo {
        height: 38px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    /* Hide phone mockup on mobile, show new image */
    /* Hide both desktop mockup and mobile image on mobile */
    .desktop-mockup {
        display: none !important;
    }
    
    .mobile-hero-image {
        display: none !important;
    }
    
    .hero-mockup-column {
        display: none !important;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h4 {
        font-size: 1.3rem;
    }
    
    /* Footer Mobile - hide content, show only copyright */
    .footer .row:first-child {
        display: none !important;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    /* Why Choose Section */
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-section .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        padding: 15px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .feature-item .feature-icon {
        margin-right: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature-content h5 {
        font-size: 1.2rem;
    }
    
    .illustration-container {
        margin-bottom: 40px;
    }
    
    /* Process Section */
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    
    /* Hide process numbers on mobile */
    .process-card .process-number {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .process-card {
        padding: 30px 25px;
        text-align: center;
        border: 1px solid rgba(33, 146, 255, 0.1);
    }
    
    .process-card h4 {
        font-size: 1.3rem;
    }
    
    .process-icon {
        margin: 0 auto 20px;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
        display: flex;
        align-items: flex-start;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .hero-section .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section .row {
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-text-column {
        order: 1;
        padding: 15px 10px 10px;
        margin-bottom: 15px;
    }
    
    .hero-mockup-column {
        margin-top: 0;
        margin-bottom: 0;
        order: 2;
        padding: 10px 15px;
    }
    
    .phone-mockup-wrapper {
        max-width: 220px;
        margin: 0 auto;
    }
    
    .phone-mockup {
        animation-duration: 4s;
        padding-bottom: 160%;
    }
    
    .phone-frame {
        padding: 7px;
        border-radius: 30px;
    }
    
    .phone-notch {
        width: 110px;
        height: 22px;
        top: 7px;
        border-radius: 0 0 15px 15px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
    
    .phone-home-indicator {
        width: 90px;
        bottom: 5px;
        height: 3px;
    }
    
    .phone-shadow {
        bottom: -15px;
        height: 25px;
        filter: blur(12px);
    }
    
    .carousel-slide {
        padding: 0;
    }
    
    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gradient-orb {
        filter: blur(50px);
        opacity: 0.2;
    }
    
    .orb-1,
    .orb-2,
    .orb-3 {
        width: 150px;
        height: 150px;
    }
    
    .tech-shape {
        display: none;
    }
    
    .scroll-arrow {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section-title {
        font-size: 1.75rem;
    }
    
    .title-underline {
        width: 50px;
        margin-bottom: 25px;
    }
    
    .contact-info-card {
        padding: 20px 18px;
        margin-bottom: 25px;
        min-height: 280px;
    }
    
    .contact-item {
        margin-bottom: 18px;
        gap: 12px;
    }
    
    .contact-item:last-of-type {
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 0.85rem;
        padding-top: 5px;
    }
    
    .connect-section {
        padding-top: 18px;
    }
    
    .connect-section h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .map-container {
        height: 100%;
        min-height: 280px;
    }
    
    .glass-card,
    .glass-contact-form {
        padding: 30px 20px;
    }
    
    .service-card,
    .process-card {
        margin-bottom: 30px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .illustration-container {
        height: 300px;
    }
    
    .illustration-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-image {
        width: 280px;
        height: 280px;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* About Section Mobile */
    .about-section {
        min-height: auto;
        padding: 60px 0;
        overflow: visible;
    }
    
    .about-content-wrapper {
        min-height: auto;
    }
    
    .about-image-container {
        padding: 10px;
        margin-bottom: 30px;
    }
    
    .about-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-content {
        text-align: center;
        padding: 10px 15px;
    }
    
    .about-features {
        justify-content: center;
        gap: 12px;
    }
    
    .feature-icon-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 130px;
        max-width: 150px;
        padding: 18px 12px;
    }
    
    .feature-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .about-image-wrapper:hover .about-image {
        transform: scale(1.05);
    }
}

/* ============================================
   SMALL MOBILE STYLES (max-width: 576px)
   ============================================ */
@media (max-width: 576px) {
    /* Better container padding for small screens */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Section padding */
    section {
        padding: 50px 0;
    }
    
    .hero-section {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 30px;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .hero-section .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        padding: 0 5px;
    }
    
    .hero-text-column {
        padding: 10px 5px 5px;
        margin-bottom: 10px;
    }
    
    .hero-mockup-column {
        padding: 5px 10px 10px;
    }
    
    .hero-buttons {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 240px;
    }
    
    .phone-mockup-wrapper {
        max-width: 190px;
    }
    
    .phone-mockup {
        padding-bottom: 155%;
    }
    
    .phone-frame {
        padding: 6px;
        border-radius: 28px;
    }
    
    .phone-notch {
        width: 100px;
        height: 20px;
        top: 6px;
        border-radius: 0 0 14px 14px;
    }
    
    .phone-screen {
        border-radius: 23px;
    }
    
    .phone-home-indicator {
        width: 85px;
        bottom: 5px;
        height: 3px;
    }
    
    .phone-shadow {
        bottom: -12px;
        height: 20px;
        filter: blur(10px);
    }
    
    .carousel-slide {
        padding: 0;
    }
    
    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .counter-card {
        padding: 20px;
    }
    
    .counter-icon {
        font-size: 2.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .title-underline {
        width: 40px;
        margin-bottom: 20px;
    }
    
    .contact-info-card {
        padding: 18px 15px;
        min-height: auto;
    }
    
    .contact-item {
        margin-bottom: 15px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .contact-item:last-of-type {
        margin-bottom: 18px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .contact-text {
        font-size: 0.85rem;
        word-break: break-word;
        padding-top: 4px;
    }
    
    .contact-text a {
        font-size: 0.85rem;
    }
    
    .connect-section {
        padding-top: 15px;
    }
    
    .connect-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .map-container {
        height: 100%;
        min-height: 280px;
    }
    
    .social-icons-row {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-icon-circle {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Navbar - not full width on small mobile */
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Navbar collapse - half width on small mobile */
    .navbar-collapse {
        width: 50% !important;
        max-width: 50% !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        position: absolute;
        right: 15px;
        top: 100%;
        z-index: 1050;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        text-align: left;
    }
    
    /* Navbar logo for small mobile */
    .navbar-logo {
        height: 35px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* Hide mobile hero image on small mobile */
    .mobile-hero-image,
    .hero-mockup-column {
        display: none !important;
    }
    
    /* Hide process numbers on small mobile - force hide */
    .process-card .process-number,
    .process-number {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    /* Mobile hero image on small mobile */
    .mobile-hero-image {
        padding: 15px 10px;
    }
    
    .hero-mobile-img {
        max-width: 100%;
        height: auto;
        animation: floatMobile 6s ease-in-out infinite;
    }
    
    /* Process section on small mobile */
    .process-card {
        padding: 30px 20px;
    }
    
    .process-card .process-number {
        display: none !important;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto 20px;
    }
    
    .process-card h4 {
        font-size: 1.2rem;
    }
    
    .process-card p {
        font-size: 0.9rem;
    }
    
    /* Footer improvements - show only copyright row on mobile */
    .footer {
        padding: 30px 0 20px;
        text-align: center;
    }
    
    /* Hide the top footer content row (company info, quick links, contact) on mobile */
    .footer .row:first-child {
        display: none !important;
    }
    
    .footer-divider {
        display: none;
    }
    
    /* Show only copyright text on mobile */
    .footer .row:last-child {
        margin-top: 0;
    }
    
    .footer .row:last-child p {
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* About Section Small Mobile */
    .about-section {
        padding: 50px 0;
        overflow: visible;
    }
    
    .about-heading {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-content {
        padding: 10px;
    }
    
    .about-features {
        gap: 10px;
    }
    
    .feature-icon-card {
        flex: 0 0 calc(50% - 5px);
        min-width: 110px;
        padding: 15px 10px;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .feature-label {
        font-size: 0.75rem;
    }
    
    .about-image-container {
        padding: 10px;
    }
    
    .feature-label {
        font-size: 0.8rem;
    }
    
    .about-image-container {
        padding: 15px;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 50px 0;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    /* Why Choose Section Mobile - improved layout */
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-section .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.8rem;
    }
    
    .feature-list {
        margin-top: 0;
    }
    
    .feature-item {
        margin-bottom: 25px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 15px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .feature-item .feature-icon {
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-content h5 {
        font-size: 1.15rem;
        margin-bottom: 8px;
        color: var(--text-dark);
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .illustration-container {
        height: 280px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .illustration-circle {
        width: 220px;
        height: 220px;
    }
    
    .circle-image {
        width: 240px;
        height: 240px;
        object-fit: contain;
    }
    
    .floating-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    /* Process Section Mobile - improved layout */
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        text-align: center;
    }
    
    .process-container {
        padding: 0 10px;
    }
    
    .process-card {
        padding: 35px 25px;
        margin-bottom: 25px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(33, 146, 255, 0.1);
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border-radius: 15px;
    }
    
    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(33, 146, 255, 0.15);
    }
    
    /* Remove process number on mobile - force hide */
    .process-card .process-number {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .process-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--text-dark);
        font-weight: 600;
    }
    
    .process-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0;
        color: var(--text-light);
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto 25px;
    }
    
    .section-subtitle {
        margin-bottom: 30px;
    }
    
    /* Better spacing for process cards on mobile */
    .process-container .row {
        margin: 0 -10px;
    }
    
    .process-container .col-md-6 {
        padding: 0 10px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-white {
    color: var(--white) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.min-vh-100 {
    min-height: 100vh;
}

/* Smooth scroll behavior for better UX */
/* ============================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Better text wrapping */
p, span, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Better image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all images don't overflow */
.about-image,
.circle-image,
.carousel-image {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Better form elements on mobile */
input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Ensure containers don't overflow */
.container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

/* Better navbar on mobile */
@media (max-width: 991px) {
    /* Navbar container - not full width */
    .navbar .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .navbar-collapse {
        background: rgba(23, 39, 116, 0.98);
        margin-top: 10px;
        padding: 15px;
        border-radius: 10px;
        width: 50% !important;
        max-width: 50% !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        position: absolute;
        right: 20px;
        top: 100%;
        z-index: 1050;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        padding: 12px 15px;
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Better spacing for services and process cards */
@media (max-width: 768px) {
    .service-card,
    .process-card {
        margin-bottom: 25px;
    }
    
    .service-card:last-child,
    .process-card:last-child {
        margin-bottom: 0;
    }
    
    .feature-list {
        margin-top: 20px;
    }
    
    .feature-item {
        margin-bottom: 25px;
    }
}

/* Better viewport meta tag support */
@supports (-webkit-touch-callout: none) {
    /* iOS specific styles */
    .hero-sectio