/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --secondary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --accent-green: #16a34a;
    --text-gray: #64748b;
    --premium-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5dc 0%, #f0f0e0 50%, #f5f5dc 100%);
    background-size: 200% 200%;
    background-attachment: fixed;
    overflow-x: hidden;
    opacity: 1;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(29, 78, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

body.loaded {
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity:  1;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
    opacity: 1;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity:  1;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity:  1;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeInImage {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInDetails {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity:  1;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity:  1;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity:  1;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity:  1;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity:  1;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity:  1;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmerEffect {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Grid-specific animations */
@keyframes slideInFromLeft {
    from {
        opacity:  1;
        transform: translateX(-50px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes slideInFromRight {
    from {
        opacity:  1;
        transform: translateX(50px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes zoomIn {
    from {
        opacity:  1;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity:  1;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes flipIn {
    from {
        opacity:  1;
        transform: rotateY(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes bounceInRotate {
    0% {
        opacity:  1;
        transform: scale(0.3) rotate(-180deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
    70% {
        transform: scale(0.9) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}

@keyframes heroIntroTitle {
    0% {
        opacity:  1;
        transform: translateY(50px) scale(0.8) rotateX(90deg);
    }
    50% {
        transform: translateY(-10px) scale(1.05) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes heroIntroTagline {
    0% {
        opacity:  1;
        transform: translateX(-50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroIntroDescription {
    0% {
    opacity: 1;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroIntroButton {
    0% {
        opacity:  1;
        transform: scale(0) rotate(180deg);
    }
    60% {
        transform: scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes heroIntroLogo {
    0% {
        opacity:  1;
        transform: scale(0) rotate(360deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6);
    }
}

@keyframes bubbleRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity:  1;
    }
}

@keyframes bubblePop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInRotate {
    from {
        opacity:  1;
        transform: translateX(-50px) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes bounceInScale {
    0% {
        opacity:  1;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity:  1;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes slideUpFade {
    from {
        opacity:  1;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInRotate {
    0% {
        opacity:  1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 60px rgba(29, 78, 216, 0.4);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes slideInFromTop {
    from {
        opacity:  1;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomInRotate {
    0% {
        opacity:  1;
        transform: scale(0.5) rotate(-180deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideInDiagonal {
    from {
        opacity:  1;
        transform: translate(-50px, -50px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes elasticBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 60px rgba(29, 78, 216, 0.4);
    }
}

@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes morphingBackground {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Animation Classes */
.animate-fade-in-up {
}

.animate-fade-in-left {
}

.animate-fade-in-right {
}

.animate-bounce-in {
}

.animate-slide-in-bottom {
}

.animate-count-up {
}

/* Stagger animations */
.animate-delay-1 { animation-delay: 0.05s; }
.animate-delay-2 { animation-delay: 0.1s; }
.animate-delay-3 { animation-delay: 0.15s; }
.animate-delay-4 { animation-delay: 0.2s; }
.animate-delay-5 { animation-delay: 0.25s; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);

    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .logo img {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #2563eb, #1d4ed8, #2563eb);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}


.nav-menu {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .nav-menu:not(.active) {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        visibility: visible !important;
    }
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.1rem;
    color: black;
    padding: 8px 12px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
}

.nav-menu a:active::after {

}

.nav-menu a:active {

    background: rgba(37, 99, 235, 0.1);
}

.nav-menu a.active {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .hamburger span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #1e293b !important;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
    border-radius: 3px;
}

/* Mobile Menu Styles */
.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-menu.active li {
    margin: 10px 0;
    text-align: center;
}

.nav-menu.active a {
    padding: 10px 0;
    display: block;
}

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2076&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 246, 0.3);

}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* Floating particles effect */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;

    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 20px;
    opacity:  1;

    position: relative;
}

.hero-grid-tabs::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
    border-radius: 50%;

    z-index: -1;
}

.hero-grid-tabs::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2), transparent);
    border-radius: 50%;

    z-index: -1;
}

@keyframes floatGraphic {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
}

.hero-tab-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hero-tab-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
}

.hero-tab-card:active::after {

}

.hero-tab-card:active {

}

.hero-tab-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transform: rotate(45deg);

}

@keyframes shimmerCard {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-tab-card:nth-child(1) {

    grid-column: 1 / -1;
}

.hero-tab-card:nth-child(2) {

}

.hero-tab-card:nth-child(3) {

}

.hero-tab-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 5px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 1);
}

.hero-tab-card:hover::before {

    opacity: 1;
}

.hero-tab-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
}

.hero-tab-logo .hero-logo-inline {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hero-logo-inline {
    opacity:  1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    z-index: 10;
    position: relative;

}

.hero-logo-inline img {
    height: 80px !important;
    width: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-tab-logo h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    color: #000000;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);

}

@keyframes heroTitlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-tab-tagline h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #000000;
    text-align: center;
    line-height: 1.4;
}

.hero-tab-description p {
    font-size: 1.1rem;
    margin: 0;
    color: #000000;
    line-height: 1.8;
    text-align: left;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    opacity:  1;

}

.cta-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    opacity: 1;
    border: none;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4), 
                0 0 0 10px rgba(37, 99, 235, 0.1),
                0 0 0 20px rgba(37, 99, 235, 0.05);

    transform-style: preserve-3d;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.cta-button::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
}

.cta-button:active::after {

}

.cta-button:active {

}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4), 
                    0 0 0 10px rgba(37, 99, 235, 0.1),
                    0 0 0 20px rgba(37, 99, 235, 0.05);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5), 
                    0 0 0 15px rgba(37, 99, 235, 0.15),
                    0 0 0 30px rgba(37, 99, 235, 0.08);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity:  1;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.6), 
                0 0 0 15px rgba(37, 99, 235, 0.2),
                0 0 0 30px rgba(37, 99, 235, 0.1);

}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.cta-button:hover::after {
    width: 200px;
    height: 200px;
}

.hero-logo {
    margin-top: 40px;
    opacity:  1;

}

.hero-logo img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #f0fff4;
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1), transparent 50%);

    z-index: 0;
}

.services-overview > * {
    position: relative;
    z-index: 1;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
    opacity:  1;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.services-grid .service-card {

    opacity:  1;
    transform-origin: left center;
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.4s; }

.services-grid .service-card:hover {
    transform: translateX(15px) rotate(3deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4), 0 0 0 5px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.5);

}

.services-grid .service-card:hover h3 {
    transform: scale(1.1) translateX(5px);

}

.services-grid .service-card:hover p {
    transform: translateX(5px);
    color: #1e293b;
}

.services-grid .service-card:hover::before {
    left: 100%;
}

.services-grid .service-card:hover::after {
    opacity: 1;
}

/* Services Grid - Additional Effects */
.services-grid .service-card::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(29, 78, 216, 0.15));
}

.services-grid .service-card:nth-child(even) {

}

.services-grid .service-card:nth-child(even):hover {
    transform: translateX(-10px) rotate(-2deg) scale(1.03);
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
    transition: left 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity:  1;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) rotate(1deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.4);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e293b;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #64748b;
    position: relative;
    z-index: 1;
}

.view-all-button {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    width: fit-content;
    position: relative;
    overflow: hidden;
    opacity:  1;

    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.view-all-button::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
    z-index: 1;
}

.view-all-button:active::after {

}

.view-all-button:active {

}

.view-all-button::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.6s ease;
}

.view-all-button::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity:  1;
    transition: all 0.4s ease;
}

.view-all-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5), 0 0 0 5px rgba(37, 99, 235, 0.2);
    padding-right: 50px;

}

.view-all-button:hover::before {
    left: 100%;

}

.view-all-button:hover::after {
    opacity: 1;
    right: 15px;
    transform: translateX(-5px);

}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    perspective: 1200px;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);

    z-index: 0;
}

.stats-grid > * {
    position: relative;
    z-index: 1;
}

.stats-grid .stat-item {

    opacity:  1;
    transform-origin: center center;
}

.stats-grid .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats-grid .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats-grid .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats-grid .stat-item:nth-child(4) { animation-delay: 0.4s; }

.stats-grid .stat-item:hover {
    transform: scale(1.1) translateY(-10px) rotate(5deg);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);

}

.stats-grid .stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(360deg);
    transition: transform 0.6s ease;
}

/* Stats Grid - Additional Effects */
.stats-grid .stat-item:nth-child(odd) {

}

.stats-grid .stat-item:nth-child(even) {

}

.stats-grid .stat-item::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.stat-item::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
    z-index: 1;
}

.stat-item:active::after {

}

.stat-item:active {

}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;

}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: #e6f2ff;
    position: relative;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
    opacity:  1;

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    perspective: 1500px;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    border-radius: 50%;

    z-index: 0;
}

.features-grid::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.15), transparent);
    border-radius: 50%;

    z-index: 0;
}

.features-grid > * {
    position: relative;
    z-index: 1;
}

.features-grid .feature {

    opacity:  1;
    transform-origin: center center;
}

.features-grid .feature:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature:nth-child(4) { animation-delay: 0.4s; }
.features-grid .feature:nth-child(5) { animation-delay: 0.5s; }

.features-grid .feature:hover {
    transform: translateY(-15px) rotate(-5deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
    border-color: rgba(37, 99, 235, 0.5);
}

.features-grid .feature:hover .feature-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.5));
}

/* Features Grid - Additional Effects */
.features-grid .feature:nth-child(odd) {

}

.features-grid .feature:nth-child(even) {

}

.features-grid .feature::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(29, 78, 216, 0.15));
}

.feature {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.feature::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
    z-index: 1;
}

.feature:active::after {

}

.feature:active {

}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
    transition: left 0.6s ease;
}

.feature::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    opacity:  1;
    transform: scale(0);
    transition: all 0.4s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover::after {
    opacity: 1;
    transform: scale(1);
}

.feature:hover {
    transform: translateY(-15px) scale(1.05) rotate(-2deg);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3), 0 0 0 5px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);

}

.feature:hover h3 {
    transform: scale(1.1) translateY(-5px);

}

.feature:hover p {
    transform: translateX(5px);
    color: #1e293b;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.4));
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e293b;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.feature p {
    color: #64748b;
    position: relative;
    z-index: 1;
}

/* Markets */
.markets {
    padding: 80px 0;
    background-color: white;
}

.markets h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    perspective: 1000px;
    position: relative;
}

.markets-grid::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
    border-radius: 50%;

    z-index: 0;
}

.markets-grid > * {
    position: relative;
    z-index: 1;
}

.markets-grid .market {

    opacity:  1;
    transform-origin: right center;
}

.markets-grid .market:nth-child(1) { animation-delay: 0.1s; }
.markets-grid .market:nth-child(2) { animation-delay: 0.2s; }
.markets-grid .market:nth-child(3) { animation-delay: 0.3s; }

.markets-grid .market:hover {
    transform: translateX(-10px) rotate(-2deg) scale(1.05);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.4);
}

.markets-grid .market:hover h3 {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Markets Grid - Additional Effects */
.markets-grid .market:nth-child(odd) {

}

.markets-grid .market:nth-child(even) {

}

.markets-grid .market::before {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.market {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 247, 255, 0.9) 100%);
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
}

.market::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity:  1;
    transition: opacity 0.5s ease;
}

.market:hover::before {
    opacity: 1;
}

.market:hover {
    transform: translateY(-12px) scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3), 0 0 0 5px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.4);

}

.market:hover h3 {
    transform: scale(1.15) translateY(-5px);

}

.market:hover p {
    transform: translateX(5px);
    color: #1e293b;
}

.market h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1e293b;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;

    position: relative;
    z-index: 1;
}

.market p {
    color: #64748b;
    position: relative;
    z-index: 1;
}

/* Portfolio Gallery Section */
.portfolio-section {
    padding: 120px 0 80px;
    background-color: #f5f0ff;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent);
    border-radius: 50%;

}

.portfolio-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 15%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15), transparent);
    border-radius: 50%;

}

.portfolio-section.section-active {
    background-color: #fffef0;
    transition: background-color 0.6s ease;
}

.portfolio-section.section-active .portfolio-service-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 223, 0, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3), 0 0 0 3px rgba(255, 215, 0, 0.1);
    transition: all 0.6s ease;
    transform: scale(1.02);
}

.portfolio-section.section-active .portfolio-service-item h3 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.portfolio-section.section-active .portfolio-service-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);

}

.portfolio-section.section-active .portfolio-features li::before {
    color: #ffd700;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.portfolio-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    opacity:  1;

}

.portfolio-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.portfolio-services-grid::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent);
    border-radius: 50%;
    transform: translateX(-50%);

    z-index: 0;
}

.portfolio-services-grid::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15), transparent);
    border-radius: 50%;

    z-index: 0;
}

.portfolio-services-grid > * {
    position: relative;
    z-index: 1;
}

.portfolio-service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 1;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.portfolio-service-item::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
}

.portfolio-service-item:active::after {

}

.portfolio-service-item:active {

}

.portfolio-service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity:  1;
}

.portfolio-service-item:hover {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.3), 0 0 0 5px rgba(168, 85, 247, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 245, 255, 1) 100%);
    border: 2px solid rgba(168, 85, 247, 0.4);
}

.portfolio-service-item:hover::before {
    opacity: 1;

}

.portfolio-service-item:hover h3 {
    transform: scale(1.05);

}

.portfolio-service-item:hover .portfolio-service-icon {
    transform: scale(1.15) rotate(10deg);

}

.portfolio-service-item:nth-child(1) { animation-delay: 0.2s; }
.portfolio-service-item:nth-child(2) { animation-delay: 0.4s; }
.portfolio-service-item:nth-child(3) { animation-delay: 0.6s; }
.portfolio-service-item:nth-child(4) { animation-delay: 0.8s; }

.portfolio-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.portfolio-service-item:hover::before {
    transform: scaleX(1);
}

.portfolio-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.portfolio-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);

}

.portfolio-service-item:hover .portfolio-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);

}

.portfolio-service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.portfolio-service-item p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1rem;
}

.portfolio-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 1;

}

.portfolio-service-item:nth-child(1) .portfolio-features li:nth-child(1) { animation-delay: 0.1s; }
.portfolio-service-item:nth-child(1) .portfolio-features li:nth-child(2) { animation-delay: 0.2s; }
.portfolio-service-item:nth-child(1) .portfolio-features li:nth-child(3) { animation-delay: 0.3s; }
.portfolio-service-item:nth-child(1) .portfolio-features li:nth-child(4) { animation-delay: 0.4s; }
.portfolio-service-item:nth-child(2) .portfolio-features li:nth-child(1) { animation-delay: 0.5s; }
.portfolio-service-item:nth-child(2) .portfolio-features li:nth-child(2) { animation-delay: 0.6s; }
.portfolio-service-item:nth-child(2) .portfolio-features li:nth-child(3) { animation-delay: 0.7s; }
.portfolio-service-item:nth-child(2) .portfolio-features li:nth-child(4) { animation-delay: 0.8s; }
.portfolio-service-item:nth-child(3) .portfolio-features li:nth-child(1) { animation-delay: 0.9s; }
.portfolio-service-item:nth-child(3) .portfolio-features li:nth-child(2) { animation-delay: 1.0s; }
.portfolio-service-item:nth-child(3) .portfolio-features li:nth-child(3) { animation-delay: 1.1s; }
.portfolio-service-item:nth-child(3) .portfolio-features li:nth-child(4) { animation-delay: 1.2s; }
.portfolio-service-item:nth-child(4) .portfolio-features li:nth-child(1) { animation-delay: 1.3s; }
.portfolio-service-item:nth-child(4) .portfolio-features li:nth-child(2) { animation-delay: 1.4s; }
.portfolio-service-item:nth-child(4) .portfolio-features li:nth-child(3) { animation-delay: 1.5s; }
.portfolio-service-item:nth-child(4) .portfolio-features li:nth-child(4) { animation-delay: 1.6s; }

.portfolio-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2563eb;
    transition: all 0.3s ease;
}

.portfolio-service-item:hover .portfolio-features li {
    padding-left: 30px;
    color: #1e293b;
}

.portfolio-service-item:hover .portfolio-features li::before {
    color: #1d4ed8;
    transform: scale(1.2);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity:  1;

}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 2000px;
}

.portfolio-grid .portfolio-item {

    opacity:  1;
    transform-origin: center center;
    transform-style: preserve-3d;
}

.portfolio-grid .portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-grid .portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-grid .portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-grid .portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-grid .portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-grid .portfolio-item:nth-child(6) { animation-delay: 0.6s; }
.portfolio-grid .portfolio-item:nth-child(7) { animation-delay: 0.7s; }
.portfolio-grid .portfolio-item:nth-child(8) { animation-delay: 0.8s; }
.portfolio-grid .portfolio-item:nth-child(9) { animation-delay: 0.9s; }
.portfolio-grid .portfolio-item:nth-child(10) { animation-delay: 1.0s; }
.portfolio-grid .portfolio-item:nth-child(11) { animation-delay: 1.1s; }
.portfolio-grid .portfolio-item:nth-child(12) { animation-delay: 1.2s; }

.portfolio-grid .portfolio-item:hover {
    transform: rotateY(10deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-grid .portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-grid .portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(37, 99, 235, 0.95), transparent);
}

/* Portfolio Grid - Additional Effects */
.portfolio-grid .portfolio-item:nth-child(odd) {

    transform-origin: left center;
}

.portfolio-grid .portfolio-item:nth-child(even) {

    transform-origin: right center;
}

.portfolio-grid .portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
    opacity:  1;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-grid .portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 300px;
    transform-style: preserve-3d;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #4facfe 100%);
    background-size: 200% 200%;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;

}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, #1d4ed8, transparent);

}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
    transform: translateX(-50%);

}

.footer-content > * {
    position: relative;
    opacity:  1;

}

.footer-content > *:nth-child(1) { animation-delay: 0.1s; }
.footer-content > *:nth-child(2) { animation-delay: 0.2s; }
.footer-content > *:nth-child(3) { animation-delay: 0.3s; }
.footer-content > *:nth-child(4) { animation-delay: 0.4s; }

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.footer-contact p,
.footer-links li {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-links a {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
}

.footer-links a:active::after {

}

.footer-links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #2563eb);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:active {

}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-design-credit {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 5px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-design-credit:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.mintx-credit {
    color: #2563eb;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.mintx-credit::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    transition: width 0.3s ease;
}

.footer-design-credit:hover .mintx-credit::after {
    width: 100%;
}

.footer-design-credit:hover .mintx-credit {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999 !important;
    text-decoration: none;
    opacity: 1;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    visibility: visible !important;
    pointer-events: auto !important;
    padding: 0;
    margin: 0;
}

.whatsapp-button * {
    background: none !important;
    background-color: transparent !important;
}

.whatsapp-button::after {
    display: none;
}

.whatsapp-button::before {
    display: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button img,
.whatsapp-button i,
.whatsapp-button svg {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: none !important;
    border: none !important;
    outline: none !important;
}

.whatsapp-button svg {
    display: block;
}

.whatsapp-button svg path {
    fill: #ffffff !important;
}

/* Ensure WhatsApp button is always visible on all pages */
body .whatsapp-button,
html .whatsapp-button {
    position: fixed !important;
    z-index: 9999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* About Section */
.about-section {
    padding: 120px 0 80px;
    background-color: #e6f2ff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    border-radius: 50%;

}

.about-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    border-radius: 50%;

}

.about-section.section-active {
    background-color: #fffef0;
    transition: background-color 0.6s ease;
}

.about-section.section-active .about-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 223, 0, 0.15) 100%);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.6s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.about-section.section-active .about-text h3 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.about-section.section-active .about-image,
.about-section.section-active .about-image-side {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.5);
    transition: all 0.6s ease;
    transform: scale(1.03);
}

.about-section.section-active .expertise-list li {
    border-bottom-color: rgba(255, 215, 0, 0.4);
    color: #1e293b;
    background: rgba(255, 215, 0, 0.05);
    padding-left: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
    opacity:  1;

}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    gap: 50px;
    }
    
    .about-text {
        flex: 2;
    }
    
    .about-stats {
        flex: 1;
    }
}

.about-text {
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
    border-radius: 50%;

    z-index: -1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    opacity:  1;

    transition: all 0.3s ease;
    position: relative;
}

.about-text p:hover {
    transform: translateX(10px);
    color: #1e293b;
    padding-left: 10px;
    border-left: 3px solid rgba(37, 99, 235, 0.3);
}

.about-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity:  1;
    transform: scale(0.9);

}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.4), 0 0 0 5px rgba(37, 99, 235, 0.2);

}

.about-image:hover img {
    transform: scale(1.15) rotate(-2deg);
    filter: brightness(1.1) contrast(1.1);
}

.about-image-side {
    width: 100%;
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity:  1;
    transform: scale(0.9);

}

.about-image-side:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.about-image-side img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-side:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.4), 0 0 0 5px rgba(37, 99, 235, 0.2);

}

.about-image-side:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #1e293b;
    font-weight: 700;
    opacity:  1;

}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.expertise-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.6;
    opacity: 1;

}

.expertise-list li:nth-child(1) { animation-delay: 0.1s; }
.expertise-list li:nth-child(2) { animation-delay: 0.2s; }
.expertise-list li:nth-child(3) { animation-delay: 0.3s; }
.expertise-list li:nth-child(4) { animation-delay: 0.4s; }
.expertise-list li:nth-child(5) { animation-delay: 0.5s; }
.expertise-list li:nth-child(6) { animation-delay: 0.6s; }

.expertise-list li:last-child {
    border-bottom: none;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.95) 100%);
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
    transition: left 0.6s ease;
}

.stat::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover::after {
    width: 200px;
    height: 200px;
}

.stat:hover {
    transform: scale(1.1) translateY(-8px) rotate(2deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3), 0 0 0 5px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.4);

}

.stat:hover h3 {
    transform: scale(1.2) rotate(5deg);

}

.stat:hover p {
    transform: translateY(-3px);
    color: #1e293b;
    font-weight: 600;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.stat p {
    color: #64748b;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 50%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    border-radius: 50%;

}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    border-radius: 50%;

}

.team-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.team-decoration-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 10%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);

}

.team-decoration-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 8%;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.1), transparent);

}

.team-decoration-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 5%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent);

}

.team-section.section-active {
    background: linear-gradient(135deg, #fffef0 0%, #fff5f5 50%, #fffef0 100%);
    transition: background 0.6s ease;
}

.team-section.section-active .team-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 223, 0, 0.08) 100%);
    padding: 50px;
    border-radius: 25px;
    transition: all 0.6s ease;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.team-main-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1e293b;
    opacity:  1;

    background: linear-gradient(135deg, #1e293b, #2563eb, #1d4ed8, #1e293b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.team-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 60px;
    opacity:  1;

    font-weight: 400;
    position: relative;
    z-index: 1;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-intro-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    opacity: 1;
    transition: all 0.4s ease;
}

.team-intro-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.team-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #475569;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.team-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity:  1;

    position: relative;
    overflow: hidden;
}

.team-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-value-card:hover::before {
    left: 100%;
}

.team-value-card:nth-child(1) { animation-delay: 0.5s; }
.team-value-card:nth-child(2) { animation-delay: 0.6s; }
.team-value-card:nth-child(3) { animation-delay: 0.7s; }
.team-value-card:nth-child(4) { animation-delay: 0.8s; }
.team-value-card:nth-child(5) { animation-delay: 0.9s; }
.team-value-card:nth-child(6) { animation-delay: 1s; }

.team-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.value-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.value-icon {
    font-size: 3.5rem;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
    border-radius: 50%;
    opacity:  1;
    transition: all 0.4s ease;

}

.team-value-card:hover .icon-glow {
    opacity: 1;
    width: 100px;
    height: 100px;
}

.team-value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.3));
}

.team-value-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-value-card:hover h3 {
    color: #2563eb;
    transform: translateX(5px);
}

.team-value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    transition: all 0.3s ease;
}

.team-value-card:hover p {
    color: #475569;
}

.team-expertise {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    opacity:  1;

}

.expertise-title {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 35px;
    font-weight: 600;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
    opacity:  1;

}

.expertise-item:nth-child(1) { animation-delay: 1.2s; }
.expertise-item:nth-child(2) { animation-delay: 1.3s; }
.expertise-item:nth-child(3) { animation-delay: 1.4s; }
.expertise-item:nth-child(4) { animation-delay: 1.5s; }
.expertise-item:nth-child(5) { animation-delay: 1.6s; }
.expertise-item:nth-child(6) { animation-delay: 1.7s; }

.expertise-item:hover {
    transform: translateX(10px);
    background: rgba(37, 99, 235, 0.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.15);
    border-left-color: #2563eb;
}

.expertise-item i {
    color: #2563eb;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.expertise-item:hover i {
    transform: scale(1.2) rotate(360deg);
    color: #2563eb;
}

.expertise-item span {
    color: #475569;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-item:hover span {
    color: #1e293b;
}

@keyframes fadeInDown {
    from {
        opacity:  1;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 120px 0 80px;
    background-color: #f0fff4;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent);
    border-radius: 50%;

}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent);
    border-radius: 50%;

}

/* Golden color state for active sections */
.services-section.section-active {
    background-color: #fffef0;
    transition: background-color 0.6s ease;
}

.services-section.section-active .service-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 223, 0, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3), 0 0 0 3px rgba(255, 215, 0, 0.1);
    transition: all 0.6s ease;
    transform: scale(1.02);
}

.services-section.section-active .service-item h3 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.services-section.section-active .service-features li::before {
    color: #ffd700;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.services-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    opacity:  1;

    background: linear-gradient(90deg, #1e293b, #2563eb, #1d4ed8, #1e293b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

@keyframes fadeInDown {
    from {
        opacity:  1;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity:  1;

}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 0;

}

.services-list > * {
    position: relative;
    z-index: 1;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.95) 100%);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 1;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.service-item::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
}

.service-item:active::after {

}

.service-item:active {

}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
    transition: left 0.6s ease;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    opacity:  1;
    transition: opacity 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.05) rotate(1deg);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3), 0 0 0 5px rgba(37, 99, 235, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
    border-color: rgba(37, 99, 235, 0.5);

}

.service-item:hover h3 {
    transform: translateX(10px);

}

.service-item:hover .service-features li {
    transform: translateX(5px);
    color: #1e293b;
}

.service-item:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-details {
    width: 100%;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    z-index: 1;

}

.service-item:hover h3 {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.service-item p {
    color: #64748b;
    line-height: 1.6;
    transition: color 0.3s ease;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #64748b;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    opacity:  1;
    transform: translateX(-15px);

}

.service-item:nth-child(1) .service-features li:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(1) .service-features li:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(1) .service-features li:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(1) .service-features li:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(2) .service-features li:nth-child(1) { animation-delay: 0.5s; }
.service-item:nth-child(2) .service-features li:nth-child(2) { animation-delay: 0.6s; }
.service-item:nth-child(2) .service-features li:nth-child(3) { animation-delay: 0.7s; }
.service-item:nth-child(2) .service-features li:nth-child(4) { animation-delay: 0.8s; }
.service-item:nth-child(3) .service-features li:nth-child(1) { animation-delay: 0.9s; }
.service-item:nth-child(3) .service-features li:nth-child(2) { animation-delay: 1.0s; }
.service-item:nth-child(3) .service-features li:nth-child(3) { animation-delay: 1.1s; }
.service-item:nth-child(3) .service-features li:nth-child(4) { animation-delay: 1.2s; }
.service-item:nth-child(4) .service-features li:nth-child(1) { animation-delay: 1.3s; }
.service-item:nth-child(4) .service-features li:nth-child(2) { animation-delay: 1.4s; }
.service-item:nth-child(4) .service-features li:nth-child(3) { animation-delay: 1.5s; }
.service-item:nth-child(4) .service-features li:nth-child(4) { animation-delay: 1.6s; }
.service-item:nth-child(5) .service-features li:nth-child(1) { animation-delay: 1.7s; }
.service-item:nth-child(5) .service-features li:nth-child(2) { animation-delay: 1.8s; }
.service-item:nth-child(5) .service-features li:nth-child(3) { animation-delay: 1.9s; }
.service-item:nth-child(6) .service-features li:nth-child(1) { animation-delay: 2.0s; }
.service-item:nth-child(6) .service-features li:nth-child(2) { animation-delay: 2.1s; }
.service-item:nth-child(6) .service-features li:nth-child(3) { animation-delay: 2.2s; }

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-item:hover p {
    color: #475569;
}

/* Contact Section */
.contact-section {
    padding: 120px 0 80px;
    background-color: #fff5f0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.15), transparent);
    border-radius: 50%;

}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent);
    border-radius: 50%;

}

.contact-section.section-active {
    background-color: #fffef0;
    transition: background-color 0.6s ease;
}

.contact-section.section-active .contact-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 223, 0, 0.15) 100%);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.6s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-section.section-active .contact-item {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3), 0 0 0 2px rgba(255, 215, 0, 0.1);
    transition: all 0.6s ease;
    transform: scale(1.02);
}

.contact-section.section-active .contact-item h3 {
    color: #ffd700;
    font-weight: 700;

}

.contact-section.section-active .contact-item p {
    color: #1e293b;
    font-weight: 500;
}

.contact-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
    opacity:  1;

}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.contact-info {
    max-width: 600px;
    width: 100%;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    opacity: 1;

    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.contact-item::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(251, 146, 60, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
}

.contact-item:active::after {

}

.contact-item:active {

}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

.contact-item:hover {
    transform: translateX(15px) scale(1.05) rotate(1deg);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(251, 146, 60, 0.5);
    box-shadow: 0 15px 35px rgba(251, 146, 60, 0.25), 0 0 0 3px rgba(251, 146, 60, 0.1);

}

.contact-item:hover h3 {
    transform: scale(1.1) translateX(5px);

}

.contact-item:hover p {
    transform: translateX(5px);
    font-weight: 500;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2563eb;
    transition: color 0.3s ease;
}

.contact-item:hover h3 {
    color: #1d4ed8;
}

.contact-item p {
    color: #64748b;
    transition: color 0.3s ease;
}

.contact-item:hover p {
    color: #475569;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.95) 100%);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2), 0 5px 15px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);

}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 18px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.submit-button::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    opacity:  1;
    z-index: 1;
}

.submit-button:active::after {

}

.submit-button:active {

}

.submit-button::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.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6), 0 0 0 5px rgba(37, 99, 235, 0.2);
    border-color: rgba(255, 255, 255, 0.5);

}

.submit-button:hover::before {
    left: 100%;

}

.map-placeholder {
    text-align: center;
}

.map-placeholder h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.map {
    background-color: #f8f9fa;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.map p {
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
        -webkit-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix container width */
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(135, 206, 235, 0.98);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }
    
    .navbar .container {
        padding: 12px 15px;
        min-height: 65px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        position: relative;
        margin: 0;
        gap: 10px;
    }
    
    .logo {
        display: flex !important;
        align-items: center;
        gap: 6px;
        z-index: 1001;
        position: relative;
        flex-shrink: 0;
        max-width: calc(100% - 50px);
    }
    
    .logo::before {
        display: none;
    }
    
    .logo a {
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }
    
    .logo img {
        height: 45px !important;
        width: 45px !important;
        min-width: 45px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: 2px solid rgba(255, 255, 255, 0.5);

        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 0.9rem !important;
        font-weight: 700;
        display: block !important;
        visibility: visible !important;
        color: #1e293b;
        letter-spacing: 0.3px;

        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #1e293b;
        background-clip: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(135deg, rgba(135, 206, 235, 0.98) 0%, rgba(37, 99, 235, 0.98) 100%);
        flex-direction: column;
        padding: 20px 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity:  1;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        z-index: 999;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        list-style: none;
        margin: 0;
        padding-left: 0;
        gap: 0;
        box-sizing: border-box;
        display: flex !important;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        opacity: 1;
        list-style: none;
    }

    .nav-menu.active li {

        opacity:  1;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }

    .nav-menu a {
        padding: 18px 20px;
        display: block;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        margin: 8px 0;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.2);
        font-size: 1.05rem;
        font-weight: 600;
        color: #1e293b;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.3);
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
    }


    .nav-menu a:active {
        transform: scale(0.97);
        background: rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu a.active {
        background: rgba(37, 99, 235, 0.2);
        color: #1e293b;
        border-color: rgba(37, 99, 235, 0.4);
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        z-index: 1001;
        transition: all 0.3s ease;
        padding: 8px 6px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        flex-shrink: 0;
        width: auto;
        height: auto;
        min-width: auto;
        justify-content: center;
        align-items: center;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent;
        border: none;
        border-radius: 0;
        margin-left: auto;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #000000 !important;
    }

    .hamburger.active span:nth-child(2) {
        opacity:  1;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: #000000 !important;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background-color: #000000 !important;
        background: #000000 !important;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Fix hero section padding for mobile */
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .hero .container {
        padding: 0 15px;
    }
    
    /* Fix all sections padding */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        margin: 0;
    }
    
    section .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    /* Prevent any element from causing horizontal scroll */
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Fix grid layouts */
    .hero-grid-tabs,
    .services-grid,
    .features-grid,
    .markets-grid,
    .portfolio-services-grid,
    .services-list,
    .contact-content,
    .about-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Fix headings for mobile */
    h1, h2, h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Fix buttons for mobile */
    .cta-button,
    .submit-button,
    .view-all-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    /* Fix cards and items */
    .service-card,
    .service-item,
    .feature,
    .market,
    .portfolio-service-item,
    .contact-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero {
        background-position: center top;
        background-attachment: scroll;
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero .container {
        padding: 0 15px;
        width: 100%;
    }

    .hero-grid-tabs {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 10px;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-tab-card {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-tab-logo h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    .hero-tab-tagline h2 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    
    .hero-tab-description p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .hero-tab-logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-logo-inline {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-logo-inline img {
        height: 60px !important;
        width: 60px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-tab-logo h1 {
        font-size: 2rem;
    }
    
    .hero-tab-tagline h2 {
        font-size: 1.3rem;
    }
    
    .hero-tab-description p {
        font-size: 1rem;
        text-align: center;
    }

    .tagline {
        font-size: 1.3rem;

    }

    .hero-description {
        font-size: 1rem;

    }

    .hero-logo {

    }

    .services-overview h2,
    .why-choose-us h2,
    .markets h2,
    .cta-section h2,
    .about-section h1,
    .team-section h1,
    .services-section h1,
    .contact-section h1 {
        font-size: 2rem;
    }

    .team-main-title {
        font-size: 2rem !important;
    }

    .team-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .team-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .team-value-card {
        padding: 25px 20px;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .team-intro-wrapper {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .team-intro {
        font-size: 1rem;
    }

    .team-expertise {
        padding: 30px 20px;
    }

    .expertise-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .expertise-list-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .expertise-item {
        padding: 12px 15px;
    }

    .services-grid,
    .features-grid,
    .markets-grid,
    .portfolio-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-item {
        height: 250px;
    }

    .about-content {
        flex-direction: column;
        gap: 25px;
        padding: 0;
    }
    
    .about-section .container,
    .team-section .container,
    .services-section .container,
    .portfolio-section .container,
    .contact-section .container {
        padding: 0 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0;
    }
    
    .portfolio-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Fix section padding */
    section {
        padding-left: 0;
        padding-right: 0;
    }
    
    section .container {
        padding: 0 15px;
    }

    .service-card,
    .feature,
    .market,
    .service-item {
        padding: 25px;

    opacity: 1;
    }

    .service-card:nth-child(1),
    .feature:nth-child(1),
    .market:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2),
    .feature:nth-child(2),
    .market:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3),
    .feature:nth-child(3),
    .market:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4),
    .feature:nth-child(4),
    .market:nth-child(4) { animation-delay: 0.4s; }

    .service-item:active,
    .service-card:active,
    .feature:active,
    .market:active {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
        background-color: #ffffff;
        transition: all 0.2s ease;
    }


    .service-item:active h3,
    .service-card:active h3 {
        color: #2563eb;
        transform: translateX(5px);
    }

    .cta-button,
    .view-all-button,
    .submit-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;

        touch-action: manipulation;
    }

    .cta-button:active,
    .view-all-button:active,
    .submit-button:active {
        transform: scale(0.95);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
        transition: all 0.3s ease;
        touch-action: manipulation;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        transform: scale(1.02);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    }

    .form-group input:active,
    .form-group textarea:active {
        transform: scale(0.98);
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        position: fixed !important;
        z-index: 9999 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-button:active {
        transform: scale(0.95);
    }

    .whatsapp-button img,
    .whatsapp-button i,
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }

    .hero-logo img {
        height: 150px;
        width: 150px;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-image-side img {
        height: 200px;
    }

    .footer-logo img {
        height: 40px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon, .feature-icon {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .service-item h3,
    .feature h3 {
        font-size: 1.2rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .map-placeholder h2 {
        font-size: 1.5rem;
    }

    /* Mobile-specific animations */
    @keyframes slideInFromBottomMobile {
        from {
            opacity:  1;
            transform: translateY(50px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes mobileBounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes mobileShake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }

    /* Mobile scroll animations */
    .service-card,
    .feature,
    .market,
    .service-item,
    .portfolio-item,
    .stat-item {
        will-change: transform, opacity;
    }

    /* Mobile touch feedback */
    .service-card:active,
    .feature:active,
    .market:active,
    .portfolio-item:active {

    }

    /* Mobile portfolio items */
    .portfolio-item {

        opacity:  1;
    }

    .portfolio-item:nth-child(1) { animation-delay: 0.1s; }
    .portfolio-item:nth-child(2) { animation-delay: 0.2s; }
    .portfolio-item:nth-child(3) { animation-delay: 0.3s; }
    .portfolio-item:nth-child(4) { animation-delay: 0.4s; }
    .portfolio-item:nth-child(5) { animation-delay: 0.5s; }
    .portfolio-item:nth-child(6) { animation-delay: 0.6s; }
    .portfolio-item:nth-child(7) { animation-delay: 0.7s; }
    .portfolio-item:nth-child(8) { animation-delay: 0.8s; }
    .portfolio-item:nth-child(9) { animation-delay: 0.9s; }
    .portfolio-item:nth-child(10) { animation-delay: 1.0s; }
    .portfolio-item:nth-child(11) { animation-delay: 1.1s; }
    .portfolio-item:nth-child(12) { animation-delay: 1.2s; }

    /* Mobile stats animation */
    .stat-item {

        opacity:  1;
    }

    .stat-item:nth-child(1) { animation-delay: 0.1s; }
    .stat-item:nth-child(2) { animation-delay: 0.2s; }
    .stat-item:nth-child(3) { animation-delay: 0.3s; }
    .stat-item:nth-child(4) { animation-delay: 0.4s; }

    /* Mobile navbar scroll effect */
    .navbar {
        transition: all 0.3s ease;
    }

    /* Mobile section transitions */
    section {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    /* Mobile smooth scrolling enhancement */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    body {
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
        touch-action: manipulation;
    }

    /* Mobile pull-to-refresh effect */
    @keyframes pullRefresh {
        0% {
            transform: translateY(-50px);
            opacity:  1;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Mobile card flip effect on touch */
    .service-card,
    .feature,
    .service-item {
        perspective: 1000px;
    }

    /* Mobile parallax effect */
    .hero {
        transform: translateZ(0);
        will-change: transform;
    }

    /* Mobile button ripple effect */
    .cta-button,
    .view-all-button,
    .submit-button {
        position: relative;
        overflow: hidden;
    }

    .cta-button::after,
    .view-all-button::after,
    .submit-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .cta-button:active::after,
    .view-all-button:active::after,
    .submit-button:active::after {
        width: 300px;
        height: 300px;
    }

    /* Mobile image lazy loading animation */
    img {
        opacity:  1;
        transition: opacity 0.5s ease;
    }

    img.loaded {
        opacity: 1;
    }

    /* Mobile section reveal animation */
    section {
        opacity:  1;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile stats counter animation */
    .stat-number {
        transition: transform 0.3s ease;
    }

    .stat-item:active .stat-number {
        transform: scale(1.1);
    }

    /* Mobile portfolio item tap effect */
    .portfolio-item:active {
        transform: scale(0.98);
    }

    /* Mobile form input focus animation */
    .form-group input:focus,
    .form-group textarea:focus {

    }

    /* Mobile loading animation */
    body.mobile-loading {
        overflow: hidden;
    }

    body.mobile-loading::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        z-index: 9999;

    }
}

@keyframes fadeOut {
    to {
        opacity:  1;
        visibility: hidden;
    }
}

@media (max-width: 480px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .container {
        padding: 0 12px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .navbar .container {
        padding: 10px 12px;
        min-height: 60px;
    }
    
    .logo {
        gap: 5px;
    }
    
    .logo img {
        height: 40px !important;
        width: 40px !important;
        min-width: 40px;
    }
    
    .logo-text {
        font-size: 0.85rem !important;
        letter-spacing: 0.2px;
    }
    
    .nav-menu {
        top: 60px;
        padding: 15px 12px;
        max-height: calc(100vh - 60px);
        display: flex !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .nav-menu a {
        padding: 16px 18px;
        font-size: 0.98rem;
        margin: 6px 0;
        border-radius: 10px;
    }
    
    .hamburger {
        display: flex !important;
        padding: 8px 6px;
        width: auto;
        height: auto;
        min-width: auto;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent;
        border: none;
        border-radius: 0;
        justify-content: center;
        align-items: center;
        margin-left: auto;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #000000 !important;
        background: #000000 !important;
        margin: 0;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: #000000 !important;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: #000000 !important;
    }
    
    /* Fix hero section padding for small mobile */
    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    /* Fix all sections padding */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    section .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-grid-tabs {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 8px;
        width: 100%;
    }
    
    .hero-tab-card {
        padding: 18px 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-tab-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-logo-inline {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-logo-inline img {
        height: 45px !important;
        width: 45px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-tab-logo h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .hero-tab-tagline h2 {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .hero-tab-description p {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix all headings for small mobile */
    h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.2rem !important;
        line-height: 1.4;
    }
    
    /* Fix buttons */
    .cta-button,
    .submit-button,
    .view-all-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* Fix menu items */
    .nav-menu a {
        padding: 16px 18px;
        font-size: 0.98rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .services-overview h2,
    .why-choose-us h2,
    .markets h2,
    .cta-section h2,
    .about-section h1,
    .team-section h1,
    .team-main-title {
        font-size: 1.8rem !important;

    }

    .team-subtitle {
        font-size: 1rem;
    }

    .services-section h1,
    .portfolio-section h1,
    .contact-section h1 {
        font-size: 2rem;

    }
    
    .portfolio-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-service-item {
        padding: 30px 20px;
    }
    
    .portfolio-service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .portfolio-service-item h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 30px 20px;

    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-grid-tabs {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 10px;
    }
    
    .hero-tab-card {
        padding: 18px 12px;
    }
    
    .hero-tab-logo h1 {
        font-size: 1.4rem;
    }
    
    .hero-tab-tagline h2 {
        font-size: 1rem;
    }
    
    .hero-tab-description p {
        font-size: 0.9rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }

    /* Enhanced mobile animations for small screens */
    .service-card,
    .feature,
    .market,
    .service-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .portfolio-item {
        height: 220px;
    }

    .hero-logo img {
        height: 120px;
        width: 120px;
    }

    /* Mobile swipe indicators */
    .hero::after {
        content: '↓';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.8);

        pointer-events: none;
    }

    /* Mobile section dividers */
    section {
        position: relative;
    }

    section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #2563eb, transparent);
        border-radius: 2px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

/* Section spacing for anchor navigation */
section[id] {
    scroll-margin-top: 100px;
}

/* Selection color */
::selection {
    background: rgba(37, 99, 235, 0.3);
    color: #1e293b;
}

::-moz-selection {
    background: rgba(37, 99, 235, 0.3);
    color: #1e293b;
}

/* Loading animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}
