:root {
    --primary-color: #0066ff;
    --secondary-color: #0052cc;
    --accent-color: #3385ff;
    --dark-color: #0a1628;
    --light-color: #f8fafc;
    --text-color: #2d3748;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PROFESSIONAL LOADING ANIMATION
   ======================================== */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

/* Animated Logo Container */
.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    animation: floatAnimation 3s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Circular Progress Ring */
.loader-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 140px;
    height: 140px;
}

.loader-ring circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 3;
    stroke-linecap: round;
    transform: translate(5px, 5px);
}

.loader-ring circle:nth-child(2) {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: circleProgress 2s ease-in-out infinite;
}

/* Loading Text */
.loader-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: textPulse 1.5s ease-in-out infinite;
}

.loader-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Animated Dots */
.loading-dots {
    display: inline-flex;
    gap: 8px;
    margin-left: 5px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Progress Bar */
.loader-progress {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 25px auto 0;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 10px;
    animation: progressAnimation 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Floating Particles Background */
.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 10px;
    height: 10px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 30%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    left: 50%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 12px;
    height: 12px;
    left: 70%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    width: 10px;
    height: 10px;
    left: 90%;
    animation-delay: 4s;
}

/* Keyframe Animations */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) brightness(1.1);
    }
}

@keyframes circleProgress {
    0% {
        stroke-dashoffset: 440;
        transform: rotate(0deg);
    }
    50% {
        stroke-dashoffset: 220;
    }
    100% {
        stroke-dashoffset: 440;
        transform: rotate(360deg);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8) translateY(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2) translateY(-10px);
        opacity: 1;
    }
}

@keyframes progressAnimation {
    0% {
        width: 0%;
        opacity: 0.8;
    }
    50% {
        width: 70%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.8;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .loader-logo {
        width: 100px;
        height: 100px;
    }
    
    .loader-ring {
        width: 120px;
        height: 120px;
    }
    
    .loader-text {
        font-size: 20px;
    }
    
    .loader-progress {
        width: 200px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal scroll */
html {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure all sections respect z-index hierarchy */
main {
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: auto;
}

/* Fixed elements hierarchy */
.fixed-bottom-right {
    position: fixed;
    pointer-events: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Professional Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-2);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Professional Section Divider */
.section-divider {
    height: 4px;
    width: 80px;
    background: var(--gradient-2);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ============================================
   PROFESSIONAL CORPORATE NAVBAR
   ============================================ */

/* Main Navbar */
#mainNavbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1050;
}

#mainNavbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 0.3rem 0;
}

/* Professional Branding */
.navbar-brand {
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.brand-text {
    line-height: 1.2;
}

.company-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Links - Professional Style */
.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #1e40af;
    background-color: #f1f5f9;
}

.navbar-nav .nav-link.active {
    color: #1e40af;
    background-color: #e0f2fe;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: #1e40af;
}

/* Professional CTA Button */
.btn-primary-custom {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.65rem 1.75rem;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    transform: translateY(-1px);
}

.btn-primary-custom.active {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

/* Mobile Navbar Toggle */
.navbar-toggler {
    border: 2px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(71, 85, 105, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1.5rem 0;
        margin-top: 0.5rem;
    }
    
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 6px;
    }
    
    .btn-primary-custom {
        display: block;
        text-align: center;
        margin-top: 1rem;
        width: 100%;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-tagline {
        font-size: 0.7rem;
    }
}

/* Desktop Optimizations */
@media (min-width: 992px) {
    .navbar-brand {
        margin-right: 3rem;
    }
}

/* Navbar on scroll - subtle shadow enhancement */
#mainNavbar.scrolled .navbar-brand img {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

/* ============================================
   END PROFESSIONAL CORPORATE NAVBAR
   ============================================ */

/* Legacy Header Styles Archived - Replaced by Professional Corporate Navbar */
/*
    color: var(--primary-color) !important;
    background-color: rgba(0, 102, 255, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(0, 102, 255, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-2);
}
*/

/* Hero Section */
#mainNavbar .container-fluid > .d-flex {
    position: relative;
}

#nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#nav-center .navbar-nav {
    display: flex;
    gap: 2rem;
}

/* Make nav links visually centered and clean */
#nav-center .nav-link {
    padding: 0.5rem 0.75rem !important;
    margin: 0 !important;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color) !important;
    transition: all 0.3s ease;
    position: relative;
}

#nav-center .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Active underline styled thin and centered like screenshot */
#nav-center .nav-link.active {
    color: var(--primary-color) !important;
}

#nav-center .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Ensure proper z-index for logo and CTA */
#nav-left, #nav-right {
    z-index: 2;
    position: relative;
}

/* Small-screen adjustments */
@media (max-width: 991.98px) {
    #nav-center {
        position: static;
        transform: none;
        width: 100% !important;
        margin: 0 !important;
    }
    
    #navbarNavCentered .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    #nav-center .nav-link {
        text-align: center;
        padding: 0.75rem 1rem !important;
    }
    
    #nav-right .btn {
        display: none;
    }
}

/* Contact Button */
.navbar-nav .nav-link.btn-primary {
    background: var(--gradient-2) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    background: var(--secondary-color) !important;
}

/* Mobile Toggle */
.navbar-toggler {
    padding: 0.5rem 0.75rem;
    font-size: 1.5rem;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 102, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link.btn-primary {
        margin-top: 0.5rem;
        text-align: center;
    }
}

/* OLD HEADER STYLES - Keep for backward compatibility but override */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background: transparent;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.2;
}

.logo-name {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo:hover {
    transform: scale(1.03);
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-name {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Mobile Menu Toggle - Always Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design - Mobile Menu */
@media (max-width: 768px) {
    header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
    }

    nav {
        padding: 0 1rem;
        position: relative;
    }

    /* Hamburger Button - LEFT SIDE */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .mobile-menu-toggle:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    }

    .mobile-menu-toggle:active {
        transform: translateY(-50%) scale(0.95);
    }

    /* Logo - CENTER */
    .logo {
        margin: 0 auto;
        position: relative;
    }

    /* Navigation Links - Hidden by default */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 
            0 8px 24px rgba(30, 58, 138, 0.15),
            0 4px 8px rgba(0, 0, 0, 0.08);
        border-top: 3px solid #3b82f6;
        animation: slideDown 0.3s ease-out;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        padding: 0;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        color: #1e293b;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: linear-gradient(90deg, #eff6ff 0%, #dbeafe 100%);
        color: #1e3a8a;
        padding-left: 2rem;
    }

    .nav-links a::after {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    .logo-name {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }
}

/* Hero Section - Adjusted for fixed header */
.hero {
    background: var(--gradient-2);
    color: white;
    padding: 12rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #fff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Feature List in Cards */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.timeline-item:not(:last-child) .timeline-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-section h2 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card .number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-card .label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn {
    padding: 1rem 2.5rem;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6b7280;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Alert Messages */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease-out;
}

.alert::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid #10b981;
}

.alert-success::before {
    content: '✓';
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 2px solid #ef4444;
}

.alert-error::before {
    content: '✕';
    background: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Blog Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.post-card .post-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card .post-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-2);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
    align-self: flex-start;
}

.post-card .post-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.4;
}

.post-card .post-date {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.post-card .post-excerpt {
    color: #64748b;
    line-height: 1.7;
    flex: 1;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    color: white;
    padding: 4rem 2rem 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}

.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-container {
    gap: 0.75rem;
}

.footer-logo .logo img {
    height: 45px;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.3));
}

.footer-logo .logo-name {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.85rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-color);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    border-color: transparent;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-tagline {
    font-size: 0.9rem;
}

.footer-tagline .heart {
    color: #ef4444;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2.5rem 1.25rem 0;
        margin-top: 3rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        padding-bottom: 2rem;
    }

    /* Company Info - 100% Full Width */
    .footer-content .footer-section:nth-child(1) {
        grid-column: 1 / 3;
        width: 100%;
        text-align: center;
    }

    /* Quick Links - 50% Left Half */
    .footer-content .footer-section:nth-child(2) {
        grid-column: 1 / 2;
        width: 100%;
    }

    /* Our Services - 50% Right Half */
    .footer-content .footer-section:nth-child(3) {
        grid-column: 2 / 3;
        width: 100%;
    }

    /* Contact Info - 100% Full Width */
    .footer-content .footer-section:nth-child(4) {
        grid-column: 1 / 3;
        width: 100%;
        text-align: center;
    }

    .footer-about {
        padding-right: 0;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.65rem;
    }
    
    .footer-section h3::after {
        width: 35px;
        height: 2.5px;
    }
    
    .footer-section ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-stat {
        flex: 1;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.35rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }

    .social-links {
        gap: 0.85rem;
        margin-top: 1.25rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info li {
        font-size: 0.875rem;
        gap: 0.65rem;
        line-height: 1.6;
    }
    
    .contact-info svg {
        width: 16px;
        height: 16px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        background: rgba(0, 0, 0, 0.3);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.875rem;
        padding: 1.25rem 1rem;
        padding-bottom: 90px; /* Space for WhatsApp button */
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .footer-links {
        order: -1;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
}

/* Extra Small Smartphones - Fine Tuning */
@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem 1rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 0.65rem;
    }

    .footer-stats {
        gap: 1rem;
    }

    .footer-stat {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    footer {
        padding: 2rem 1rem 0;
    }
    
    .footer-content {
        gap: 1.75rem;
    }
    
    .footer-logo .logo img {
        height: 40px;
    }
    
    .footer-logo .logo-name {
        font-size: 1.35rem;
    }
    
    .footer-description {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-stats {
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .contact-info li {
        font-size: 0.825rem;
    }
    
    .footer-bottom-content {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Project Cards Section */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
}

.project-card a {
    transition: all 0.3s ease;
}

.project-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Tech Stack Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tech-item .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.tech-item .name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info .name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-info .position {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* CTA Section Professional */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    margin: 5rem auto;
    max-width: 1200px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.cta-section h2 {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    position: relative;
    z-index: 1;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Admin Dashboard Styles */
.admin-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.admin-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.admin-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.admin-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 800;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-box .number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.posts-table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.posts-table table {
    width: 100%;
    border-collapse: collapse;
}

.posts-table th,
.posts-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.posts-table th {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.posts-table tr {
    transition: background 0.2s ease;
}

.posts-table tbody tr:hover {
    background: #f8fafc;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.login-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.login-box {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.login-box h2 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 800;
}

/* Enhanced Post Card Styles */
.post-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: var(--primary-color);
}

.post-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.post-gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.post-gradient-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.post-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.post-content-enhanced {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-category-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--gradient-2);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-read-time {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.post-title-enhanced {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-excerpt-enhanced {
    color: #64748b;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.post-tag {
    padding: 0.3rem 0.75rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-card-enhanced:hover .post-tag {
    background: #e0f2fe;
    color: var(--primary-color);
}

.post-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.author-name-small {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.post-date-small {
    font-size: 0.8rem;
    color: #94a3b8;
}

.read-more-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.post-card-enhanced:hover .read-more-arrow {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Responsive adjustments for enhanced cards */
@media (max-width: 768px) {
    .post-image {
        height: 200px;
    }
    
    .post-title-enhanced {
        font-size: 1.2rem;
    }
}

/* Article Tags Styling */
.post-content-full + div span[style*="background: var(--gradient-2)"] {
    display: inline-block;
    transition: all 0.3s ease;
}

.post-content-full + div span[style*="background: var(--gradient-2)"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Comments Section Styling */
#commentForm button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

#commentForm button[type="submit"]:active {
    transform: translateY(0);
}

#commentForm button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.comment-item {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-avatar {
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.2);
}

/* Comment form responsive */
@media (max-width: 768px) {
    #commentForm > div:first-child {
        grid-template-columns: 1fr !important;
    }
}

/* ===== CONTACT PAGE COMPREHENSIVE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f8fafc 0%, white 50%);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

/* Contact Two Column Layout */
.contact-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Office Info Wrapper */
.office-info-wrapper {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Office Details Card */
.office-details-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.office-details-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.office-card-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-items-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.office-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.office-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

/* Office Map Card */
.office-map-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.office-map-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.map-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.map-subtitle {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Enhanced Contact Page Styles */
/* ===================================
   CONTACT PAGE STYLES - Professional & Classy
   =================================== */

.contact-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(30, 58, 138, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(30, 58, 138, 0.12),
        0 8px 16px rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(145deg, #ffffff 0%, #fefeff 100%);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.contact-info-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    color: #1e3a8a;
}

.contact-meta {
    color: #64748b;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Enhanced Form Styling - Professional & Clean */
.enhanced-form {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(30, 58, 138, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.enhanced-form .form-group {
    margin-bottom: 1.5rem;
}

.enhanced-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.enhanced-form input,
.enhanced-form select,
.enhanced-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #1e293b;
}

.enhanced-form input:focus,
.enhanced-form select:focus,
.enhanced-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 2px 8px rgba(59, 130, 246, 0.08);
    background: #ffffff;
    transform: translateY(-1px);
}

.enhanced-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enhanced {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.25),
        0 2px 4px rgba(30, 58, 138, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 28px rgba(59, 130, 246, 0.35),
        0 8px 16px rgba(30, 58, 138, 0.2);
}

.btn-enhanced:active {
    transform: translateY(-1px);
}

/* Office Details Card - Premium Look */
.office-details-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(30, 58, 138, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 2rem;
}

.office-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 3px solid #3b82f6;
    transition: all 0.3s ease;
}

.office-item:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left-color: #1e3a8a;
    transform: translateX(4px);
}

/* FAQ Card - Professional Design */
.faq-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(30, 58, 138, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(30, 58, 138, 0.12),
        0 4px 12px rgba(59, 130, 246, 0.08);
    border-left-color: #1e3a8a;
}

.faq-card h3 {
    color: #1e293b;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Office Map Card - Modern Gradient */
.office-map-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
}

.office-map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-two-column {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }
}

/* ===================================
   END OF CONTACT PAGE STYLES
   =================================== */

/* CTA Section Styles */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    animation: fadeInUp 0.8s ease-out;
}

.cta-section p {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-section a {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-section a:first-of-type {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-section a:first-of-type:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-section a:last-of-type {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.cta-section a:last-of-type:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
}

.why-choose-section .service-card {
    animation: fadeIn 0.6s ease-out both;
}

/* FAQ Section */
.faq-section {
    position: relative;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .contact-two-column {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .enhanced-form {
        padding: 1.5rem;
    }
    
    .enhanced-form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    .contact-two-column {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1024px to 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablet and Small Desktop (768px to 1023px) */
@media (max-width: 1023px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 2rem 4rem !important;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

    .hero p {
        font-size: 1.1rem !important;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Grid Layouts */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem !important;
    }

    /* Contact Page Two Column */
    section > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    /* Contact Page Specific Responsive Styles - Tablet */
    .contact-hero {
        padding: 8rem 2rem 6rem !important;
    }

    .hero-title {
        font-size: 2.75rem !important;
    }

    .hero-subtitle {
        font-size: 1.15rem !important;
    }

    .contact-info-section {
        padding: 3rem 1.5rem !important;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .contact-two-column {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .form-row-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .office-details-card {
        padding: 1.75rem !important;
    }

    .office-map-card {
        padding: 2.5rem 1.5rem !important;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    /* Hero Stats Bar */
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem !important;
    }

    /* Process Timeline */
    .process-timeline {
        gap: 2rem !important;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-number {
        margin-bottom: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

/* Mobile Landscape and Small Tablet (481px to 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 1.5rem 3rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    section[style*="font-size: 3.5rem"] h1,
    section[style*="font-size: 3rem"] h1 {
        font-size: 2rem !important;
    }

    section[style*="font-size: 1.3rem"] p {
        font-size: 1rem !important;
    }

    /* Hero Buttons */
    .hero-buttons,
    div[style*="display: flex"][style*="gap"] {
        flex-direction: column !important;
        width: 100% !important;
    }

    .hero-buttons a,
    .hero-buttons button,
    .cta-button {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }

    /* Grid Layouts - Single Column */
    .services-grid,
    .posts-grid,
    .testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Contact Info Cards */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }

    .contact-info-card {
        padding: 1.5rem !important;
    }

    /* Forms */
    .enhanced-form {
        padding: 1.5rem !important;
    }

    .enhanced-form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .form-group {
        margin-bottom: 1rem !important;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem !important;
    }

    .service-card .icon {
        font-size: 2.5rem !important;
    }

    /* Post Cards */
    .post-card-enhanced,
    .post-card {
        margin-bottom: 1.5rem;
    }

    .post-image {
        height: 200px !important;
    }

    .post-title-enhanced {
        font-size: 1.15rem !important;
    }

    /* Blog Post Detail */
    article.container {
        padding: 2rem 1.5rem !important;
    }

    article.container > div {
        padding: 2rem 1.5rem !important;
    }

    .post-content-full {
        font-size: 1rem !important;
    }

    /* Comments Section */
    #comments-section {
        padding: 2rem 1.5rem !important;
    }

    .comment-form-container {
        padding: 1.5rem !important;
    }

    #commentForm > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* FAQ Cards */
    .faq-card {
        padding: 1.5rem !important;
    }

    /* Contact Page Specific Responsive Styles - Mobile */
    .contact-hero {
        padding: 6rem 1.5rem 4rem !important;
    }

    .hero-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .contact-info-section {
        padding: 2.5rem 1.5rem !important;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .contact-info-card {
        padding: 1.5rem !important;
    }

    .contact-info-card .contact-icon {
        font-size: 2.5rem !important;
    }

    .contact-info-card h3 {
        font-size: 1.15rem !important;
    }

    .contact-two-column {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .contact-form-wrapper,
    .office-info-wrapper {
        padding: 0 !important;
    }

    .contact-form-title,
    .office-title {
        font-size: 1.75rem !important;
        text-align: center !important;
    }

    .section-divider {
        margin: 1rem auto !important;
    }

    .form-row-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .form-group {
        margin-bottom: 1.25rem !important;
    }

    .form-label {
        font-size: 0.95rem !important;
    }

    .form-input,
    textarea {
        font-size: 1rem !important;
        padding: 0.875rem !important;
        min-height: 44px !important; /* Touch target size */
    }

    textarea {
        min-height: 140px !important;
    }

    .btn-enhanced {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        min-height: 48px !important; /* Touch target size */
    }

    .office-details-card {
        padding: 1.5rem !important;
    }

    .office-card-title {
        font-size: 1.15rem !important;
    }

    .office-item {
        padding: 0.875rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .office-item span {
        font-size: 1.25rem !important;
    }

    .office-map-card {
        padding: 2rem 1.5rem !important;
    }

    .map-title {
        font-size: 1.25rem !important;
    }

    .map-subtitle {
        font-size: 0.95rem !important;
    }

    /* Hide floating circles on mobile */
    .hero-bg-circle {
        display: none !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-section {
        text-align: center;
    }

    /* Stats Section */
    .stats-section {
        padding: 3rem 1.5rem !important;
    }

    /* Floating Background Circles */
    div[style*="position: absolute"][style*="border-radius: 50%"] {
        display: none !important;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 1.5rem !important;
    }

    section[style*="padding: 4rem 2rem"] {
        padding: 3rem 1.5rem !important;
    }

    /* Buttons */
    .btn,
    .btn-enhanced {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
    }

    /* Section Padding */
    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    section {
        margin-bottom: 2rem !important;
    }

    /* Process Timeline */
    .process-timeline {
        flex-direction: column;
        gap: 2rem !important;
    }

    .timeline-item {
        padding: 1.5rem !important;
    }

    /* Table Responsive */
    .admin-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Mobile Portrait (320px to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem !important;
    }

    /* Typography - Extra Small */
    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    /* Hero */
    .hero {
        padding: 4rem 1rem 2.5rem !important;
    }

    .hero h1 {
        font-size: 1.75rem !important;
    }

    .hero p {
        font-size: 0.95rem !important;
    }

    /* Badges */
    div[style*="display: inline-block"][style*="backdrop-filter"] {
        font-size: 0.85rem !important;
        padding: 0.4rem 1rem !important;
    }

    /* Navigation */
    nav .logo {
        font-size: 1.25rem !important;
    }

    nav .logo img {
        height: 42px !important;
    }

    nav .logo-name {
        font-size: 1.15rem !important;
    }

    nav .logo-tagline {
        font-size: 0.55rem !important;
    }

    nav .logo span {
        font-size: 1.25rem !important;
    }

    header nav {
        padding: 1rem !important;
    }

    /* Cards */
    .service-card,
    .post-card-enhanced,
    .contact-info-card,
    .faq-card {
        padding: 1.25rem !important;
    }

    .contact-icon,
    .service-card .icon {
        font-size: 2rem !important;
    }

    /* Contact Page Specific - Small Mobile */
    .contact-hero {
        padding: 5rem 1rem 3.5rem !important;
    }

    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.875rem !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .contact-info-section {
        padding: 2rem 1rem !important;
    }

    .contact-cards-grid {
        gap: 1rem !important;
    }

    .contact-two-column {
        gap: 2rem !important;
    }

    .contact-form-title,
    .office-title {
        font-size: 1.5rem !important;
    }

    .form-label {
        font-size: 0.9rem !important;
    }

    .form-input,
    textarea {
        padding: 0.75rem !important;
        font-size: 0.95rem !important;
    }

    .btn-enhanced {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    .office-details-card {
        padding: 1.25rem !important;
    }

    .office-card-title {
        font-size: 1.1rem !important;
    }

    .office-map-card {
        padding: 1.75rem 1.25rem !important;
    }

    .map-title {
        font-size: 1.15rem !important;
    }

    /* Forms */
    .enhanced-form {
        padding: 1.25rem !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem !important;
        font-size: 0.95rem !important;
    }

    /* Buttons */
    .btn,
    .btn-enhanced,
    .cta-button {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }

    /* Tech Grid - 2 Columns */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .tech-item {
        padding: 0.75rem !important;
    }

    /* Blog Post Detail */
    article.container > div {
        padding: 1.5rem 1rem !important;
    }

    .post-content-full {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    /* Comments */
    #comments-section {
        padding: 1.5rem 1rem !important;
    }

    .comment-form-container {
        padding: 1.25rem !important;
    }

    .comment-item {
        padding: 1.25rem !important;
    }

    .comment-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.95rem !important;
    }

    /* Author Avatar */
    .author-avatar-small {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }

    /* Post Meta */
    .post-meta-top {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    /* Social Links */
    .social-links {
        gap: 0.75rem !important;
    }

    .social-link {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1rem !important;
    }

    .footer-section h3 {
        font-size: 1.1rem !important;
    }

    /* Section Spacing */
    section[style*="padding"] {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Hero Stats */
    .hero-stats {
        flex-direction: column;
        gap: 1rem !important;
    }

    /* Process Timeline */
    .timeline-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }

    /* Admin Dashboard */
    .admin-stats {
        grid-template-columns: 1fr !important;
    }

    .admin-container {
        padding: 1rem !important;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }

    .hero {
        padding: 3rem 1rem 2rem !important;
    }

    .container {
        padding: 0 0.75rem !important;
    }

    .service-card,
    .post-card-enhanced,
    .faq-card {
        padding: 1rem !important;
    }

    .enhanced-form {
        padding: 1rem !important;
    }

    .btn,
    .btn-enhanced {
        padding: 0.65rem 1rem !important;
        font-size: 0.9rem !important;
    }

    /* Logo on extra small screens */
    nav .logo img {
        height: 36px !important;
    }

    nav .logo-name {
        font-size: 1rem !important;
    }

    nav .logo-tagline {
        font-size: 0.5rem !important;
    }

    nav .logo span {
        font-size: 1.1rem !important;
    }

    /* Contact Page Specific - Extra Small */
    .contact-hero {
        padding: 4rem 0.75rem 3rem !important;
    }

    .hero-badge {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.75rem !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.875rem !important;
    }

    .contact-info-section {
        padding: 1.5rem 0.75rem !important;
    }

    .contact-cards-grid {
        gap: 0.875rem !important;
    }

    .contact-info-card {
        padding: 1rem !important;
    }

    .contact-two-column {
        gap: 1.5rem !important;
    }

    .contact-form-title,
    .office-title {
        font-size: 1.25rem !important;
    }

    .form-label {
        font-size: 0.85rem !important;
    }

    .form-input,
    textarea {
        padding: 0.65rem !important;
        font-size: 0.9rem !important;
    }

    textarea {
        min-height: 120px !important;
    }

    .btn-enhanced {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .office-details-card {
        padding: 1rem !important;
    }

    .office-card-title {
        font-size: 1rem !important;
    }

    .office-item {
        padding: 0.75rem !important;
    }

    .office-map-card {
        padding: 1.5rem 1rem !important;
    }

    .map-title {
        font-size: 1.1rem !important;
    }

    .map-subtitle {
        font-size: 0.85rem !important;
    }
}

/* Landscape Orientation Fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 3rem 2rem !important;
    }

    section[style*="padding"] {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .mobile-menu-toggle,
    .social-links,
    button,
    .btn,
    .cta-button,
    .whatsapp-float {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    width: 160px;
    border-radius: 25px;
}

.whatsapp-icon {
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    position: absolute;
    right: 20px;
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    right: 15px;
}

/* WhatsApp button pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.15);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float:hover {
        width: 48px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }
}
