/* ============================================
   Ascent BPO - New Design Stylesheet
   ============================================ */

/* Color Variables */
:root {
    --primary-blue: #003378;
    --dark-blue: #001f4d;
    --accent-yellow: #ffa500;
    --accent-orange: #ff8c00;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #666666;
    --text-dark: #333333;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    padding: 10px 0;
    color: var(--white);
}

.top-bar-social-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-social-icon {
    color: var(--white);
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-bar-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--white);
}

.top-bar-social-icon i {
    transition: transform 0.3s ease;
}

.top-bar-social-icon:hover i {
    transform: scale(1.1);
}

/* Desktop - Right aligned */
@media (min-width: 768px) {
    .top-bar-social-wrapper {
        justify-content: flex-end;
    }
}

/* Mobile and Tablet - Center aligned */
@media (max-width: 767px) {
    .top-bar-social-wrapper {
        justify-content: center;
    }
    
    .top-bar-social-icons {
        gap: 12px;
    }
    
    .top-bar-social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Main Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    padding: 0;
}

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

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

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 35px;
        max-width: 120px;
    }
}

.logo-text {
    color: var(--primary-blue);
    font-weight: 800;
}

.logo-bpo {
    color: #dc3545;
    font-size: 20px;
    margin-left: 5px;
}

.logo-graphic {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #dc3545 0%, var(--primary-blue) 100%);
    border-radius: 5px;
    margin-left: 10px;
    display: inline-block;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.navbar-nav .nav-link.active {
    color: var(--accent-yellow);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

/* Don't apply active style to Get A Quote button */
.navbar-nav .nav-link.btn-get-quote.active {
    color: var(--white);
    background-color: var(--accent-yellow);
}

.navbar-nav .nav-link.btn-get-quote.active::after {
    display: none;
}

.btn-get-quote {
    background-color: var(--accent-yellow);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-get-quote:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 750px;
    display: flex;
    align-items: center;
}

/* Background Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.follow-us-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-yellow);
    color: var(--white);
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero-cta {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.decorative-chart {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.section-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.02) 50%, transparent 70%),
        radial-gradient(circle at 10% 20%, rgba(255, 165, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 51, 120, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Left Side - Hexagon Image */
.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 30px;
}

.hexagon-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hexagon-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    overflow: hidden;
    z-index: 2;
}

.hexagon-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hexagon-image:hover .hexagon-img {
    transform: scale(1.1);
}

.hexagon-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    font-size: 80px;
    z-index: 1;
}

.hexagon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 120, 0.1) 0%, rgba(0, 31, 77, 0.2) 100%);
    z-index: 1;
}

/* Yellow Decorative Shapes */
.decorative-yellow-shape {
    position: absolute;
    background: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.9;
    z-index: 1;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 250px;
    height: 120px;
    top: -30px;
    right: -50px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-15deg);
}

.shape-2 {
    width: 200px;
    height: 100px;
    bottom: -20px;
    left: -40px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(25deg);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg) scale(1);
    }
    33% {
        transform: translate(15px, -15px) rotate(-10deg) scale(1.05);
    }
    66% {
        transform: translate(-10px, 10px) rotate(-20deg) scale(0.95);
    }
}

.shape-2 {
    animation: floatShape2 8s ease-in-out infinite;
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, 0) rotate(25deg) scale(1);
    }
    33% {
        transform: translate(-15px, 15px) rotate(30deg) scale(1.05);
    }
    66% {
        transform: translate(10px, -10px) rotate(20deg) scale(0.95);
    }
}

/* Experience Badge */
.experience-badge-main {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    animation: badgePulse 3s ease-in-out infinite;
}

.experience-badge-inner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border: 4px solid var(--accent-yellow);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 51, 120, 0.4);
}

.experience-icon-main {
    font-size: 48px;
    color: var(--accent-yellow);
    margin-bottom: 10px;
    animation: trophyRotate 4s ease-in-out infinite;
}

@keyframes trophyRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

.experience-text-main {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-glow-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: var(--accent-yellow);
    opacity: 0.3;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Right Side Content */
.about-content-wrapper {
    padding-left: 30px;
}

.section-tag-small {
    display: inline-block;
    color: var(--accent-yellow);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title-main {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Feature Boxes */
.feature-boxes-wrapper {
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 51, 120, 0.1);
    border-color: var(--accent-yellow);
}

.feature-box-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-square {
    width: 70px;
    height: 70px;
    background: var(--accent-yellow);
    border: 3px solid var(--accent-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover .icon-square {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

.icon-square::before {
    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, height 0.6s;
}

.feature-box:hover .icon-square::before {
    width: 200px;
    height: 200px;
}

.feature-box-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-box-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Description */
.about-description {
    margin-bottom: 35px;
}

.about-description p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* CTA Button */
.about-cta-wrapper {
    margin-top: 20px;
}

.btn-about-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 51, 120, 0.3);
    border: none;
    text-decoration: none;
}

.btn-about-cta-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-about-cta-main:hover::before {
    width: 400px;
    height: 400px;
}

.btn-about-cta-main:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 51, 120, 0.4);
}

.btn-about-cta-main i {
    transition: transform 0.4s ease;
}

.btn-about-cta-main:hover i {
    transform: translateX(8px);
}

.btn-ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 2s infinite;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* WhatsApp Fixed Button (Bottom Right) */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: slideInUp 0.8s ease-out;
}

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

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.whatsapp-icon::before {
    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, height 0.6s;
}

.whatsapp-icon:hover::before {
    width: 200px;
    height: 200px;
}

.whatsapp-icon:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-icon i {
    position: relative;
    z-index: 1;
    animation: whatsappPulse 2s ease-in-out infinite;
}

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

/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-card {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-card.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-badge {
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-badge.animated {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Animation Classes */
.animate-float {
    animation: floatShape 8s ease-in-out infinite;
}

.animate-float[data-delay="200"] {
    animation-delay: 0.2s;
}

.animate-float[data-delay="400"] {
    animation-delay: 0.4s;
}

/* Additional Unique Animation Effects */
.hexagon-image {
    animation: hexagonEntrance 1s ease-out;
}

@keyframes hexagonEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.feature-box-1 {
    animation-delay: 0.1s;
}

.feature-box-2 {
    animation-delay: 0.3s;
}

/* Hover effect for feature boxes with unique animation */
.feature-box:hover .icon-square i {
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Parallax effect for decorative shapes */
@media (prefers-reduced-motion: no-preference) {
    .decorative-yellow-shape {
        will-change: transform;
    }
}

/* Enhanced button animation */
.btn-about-cta-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-about-cta-main:hover::after {
    left: 100%;
}

/* Staggered text reveal animation */
.section-title-main {
    overflow: hidden;
}

.section-title-main.animated {
    animation: titleReveal 1s ease-out;
}

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

/* Services Section */
.services-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 50%, #b8dce8 100%);
    overflow: hidden;
}

/* Background Effect */
.services-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 51, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(108, 200, 224, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, cover;
    background-position: center;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
    opacity: 0.7;
}

.services-background-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    z-index: 1;
}

.services-background-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(108, 200, 224, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 51, 120, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    background-position: 0 0, 25px 25px;
    animation: backgroundPattern 30s linear infinite;
    z-index: 1;
    opacity: 0.4;
}

@keyframes backgroundPattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

/* Decorative Background Shapes */
.services-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite;
}

.decorative-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 51, 120, 0.3) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.decorative-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.3) 0%, transparent 70%);
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

.decorative-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 200, 224, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation-delay: 10s;
}

.decorative-shape.shape-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 51, 120, 0.2) 0%, transparent 70%);
    top: 30%;
    right: 15%;
    animation-delay: 15s;
}

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

@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.9;
    }
}

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

/* Section Tag Orange */
.section-tag-orange {
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* Section Title with Two Lines */
.section-title-animated {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 60px;
}

.section-title-animated .title-line-1,
.section-title-animated .title-line-2 {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.section-title-animated.animated .title-line-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    text-shadow: 0 2px 10px rgba(0, 51, 120, 0.1);
}

.section-title-animated.animated .title-line-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
    text-shadow: 0 2px 10px rgba(0, 51, 120, 0.1);
}

/* Service Cards Row */
.service-cards-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -10px;
}

.service-cards-row > [class*="col-"] {
    display: flex;
    padding: 0 10px;
}

/* Service Card */
.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(108, 200, 224, 0.2);
    min-height: 500px;
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Service Card Border */
.service-card-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #6cc8e0, #4a90e2, #003378, #4a90e2, #6cc8e0);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
    animation: borderGradient 3s ease infinite;
}

.service-card-border::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--white);
    border-radius: 20px;
    z-index: 1;
}

.service-card:hover .service-card-border {
    opacity: 1;
    animation: borderGradient 3s ease infinite, borderGlow 2s ease-in-out infinite;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(108, 200, 224, 0.6),
                    0 0 40px rgba(74, 144, 226, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(108, 200, 224, 0.9),
                    0 0 60px rgba(74, 144, 226, 0.6);
    }
}

/* Service Icon Wrapper */
.service-icon-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon-wrapper {
    opacity: 1;
    transform: scale(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6cc8e0 0%, #4a90e2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(108, 200, 224, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(108, 200, 224, 0.6);
    background: linear-gradient(135deg, #4a90e2 0%, #003378 100%);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 51, 120, 0.25),
                0 0 30px rgba(108, 200, 224, 0.3);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card:hover .service-content h4 {
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.service-card:hover .btn-service-card {
    transform: translateY(-3px) scale(1.05);
}

/* Service Image */
.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
    border-radius: 18px 18px 0 0;
    z-index: 2;
    margin-top: -2px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #003378 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 70px;
    position: relative;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 120, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-image-overlay {
    opacity: 1;
}

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

/* Service Content */
.service-content {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 2;
    background-color: var(--white);
    border-radius: 0 0 18px 18px;
    margin-top: -2px;
}

.service-content h4 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s ease;
    min-height: auto;
    display: block;
}

.service-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
    display: block;
}

/* Service Button Wrapper - Ensures buttons align on same line */
.service-button-wrapper {
    margin-top: auto;
    padding-top: 22px;
    min-height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

.service-button-wrapper .btn-service-card {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    padding: 13px 18px;
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .service-button-wrapper .btn-service-card {
        font-size: 13px;
        padding: 14px 20px;
        min-height: 54px;
    }
}

/* Service Card Button */
.btn-service-card {
    display: inline-block;
    background: linear-gradient(135deg, #6cc8e0 0%, #4a90e2 100%);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    box-shadow: 0 4px 15px rgba(108, 200, 224, 0.3);
    position: relative;
    overflow: visible;
    text-align: center;
    width: 100%;
    max-width: 100%;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: normal;
    hyphens: auto;
}

.btn-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #003378 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-service-card:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 200, 224, 0.5);
}

.btn-service-card:hover::before {
    left: 0;
}

.btn-service-card i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Animation Classes */
.animate-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-card.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title-animated {
        font-size: 32px;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
    
    .service-content h4 {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .service-content p {
        font-size: 16px;
        margin-bottom: 22px;
    }
    
    .service-card {
        min-height: 460px;
    }
    
    .btn-service-card {
        font-size: 13px;
        padding: 14px 22px;
    }
    
    .decorative-shape.shape-1,
    .decorative-shape.shape-2,
    .decorative-shape.shape-3,
    .decorative-shape.shape-4 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-title-animated {
        font-size: 28px;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-content {
        padding: 28px 22px;
    }
    
    .service-content h4 {
        font-size: 22px;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .service-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 22px;
    }
    
    .service-card {
        min-height: 440px;
    }
    
    .btn-service-card {
        font-size: 12px;
        padding: 13px 20px;
        min-height: 52px;
        line-height: 1.5;
        letter-spacing: 0.6px;
    }
    
    .service-button-wrapper {
        min-height: 52px;
        padding-top: 22px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-icon-wrapper {
        top: 15px;
        right: 15px;
    }
    
    .decorative-shape.shape-1,
    .decorative-shape.shape-2,
    .decorative-shape.shape-3,
    .decorative-shape.shape-4 {
        width: 100px;
        height: 100px;
    }
}

/* Business Expansion Section */
.business-expansion-section {
    padding: 100px 0;
    background-color: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.business-expansion-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 51, 120, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 51, 120, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 51, 120, 0.05) 10px, rgba(0, 51, 120, 0.05) 20px);
    z-index: 0;
    pointer-events: none;
}

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

.business-expansion-content {
    padding-right: 30px;
}

.section-tag-orange {
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.section-title-white {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.business-expansion-intro {
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.benefit-icon-outline {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 26px;
    margin-right: 20px;
    flex-shrink: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.benefit-icon-outline i {
    color: var(--accent-yellow) !important;
    display: block;
    font-size: 26px;
    line-height: 1;
}

.benefit-icon-outline:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: scale(1.1);
    border-color: var(--accent-yellow);
}

.benefit-content h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: capitalize;
}

.benefit-content p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

.business-meeting-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.business-meeting-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
}

.growth-metric-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    min-width: 250px;
}

.growth-number-overlay {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 5px;
    line-height: 1;
}

.growth-text-overlay {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.growth-chart-overlay {
    margin-top: 15px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    height: 120px;
    position: relative;
    padding-bottom: 30px;
}

.chart-bar {
    flex: 1;
    position: relative;
    min-height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: chartBarGrow 1s ease-out forwards;
    animation-delay: calc(var(--bar-index) * 0.1s);
    opacity: 0;
}

.chart-bar:nth-child(1) { --bar-index: 1; }
.chart-bar:nth-child(2) { --bar-index: 2; }
.chart-bar:nth-child(3) { --bar-index: 3; }
.chart-bar:nth-child(4) { --bar-index: 4; }
.chart-bar:nth-child(5) { --bar-index: 5; }

@keyframes chartBarGrow {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.chart-bar-fill {
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.chart-bar-orange .chart-bar-fill {
    background: linear-gradient(180deg, #ff8c00 0%, var(--accent-yellow) 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.chart-bar-blue .chart-bar-fill {
    background: linear-gradient(180deg, #004aad 0%, var(--primary-blue) 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.chart-bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 6px 6px 0 0;
}

.chart-bar:hover {
    transform: translateY(-5px) scale(1.05);
}

.chart-bar:hover .chart-bar-fill {
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
}

.chart-bar-blue {
    background-color: transparent;
}

.chart-bar-orange {
    background-color: transparent;
}

.chart-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-blue);
    white-space: nowrap;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: labelFadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--bar-index) * 0.1s + 0.5s);
}

@keyframes labelFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Fallback for missing image */
.business-meeting-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 120, 0.8) 0%, rgba(0, 31, 77, 0.9) 100%);
    z-index: 0;
}

.business-meeting-image-wrapper img {
    position: relative;
    z-index: 1;
}

.business-meeting-fallback {
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Business Expansion Section */
@media (max-width: 992px) {
    .business-expansion-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .section-title-white {
        font-size: 32px;
    }
    
    .business-expansion-intro {
        font-size: 15px;
    }
    
    .growth-metric-overlay {
        bottom: 20px;
        left: 20px;
        padding: 20px 25px;
        min-width: 220px;
    }
    
    .growth-number-overlay {
        font-size: 48px;
    }
    
    .growth-text-overlay {
        font-size: 16px;
    }
    
    .chart-bars {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .business-expansion-section {
        padding: 60px 0;
    }
    
    .section-title-white {
        font-size: 28px;
    }
    
    .benefit-item {
        margin-bottom: 30px;
    }
    
    .benefit-icon-outline {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .benefit-content h4 {
        font-size: 18px;
    }
    
    .benefit-content p {
        font-size: 14px;
    }
    
    .business-meeting-image {
        min-height: 400px;
    }
    
    .growth-metric-overlay {
        bottom: 15px;
        left: 15px;
        padding: 15px 20px;
        min-width: 200px;
    }
    
    .growth-number-overlay {
        font-size: 40px;
    }
    
    .growth-text-overlay {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .chart-bars {
        height: 80px;
        gap: 6px;
    }
    
    .chart-label {
        font-size: 11px;
        bottom: -22px;
    }
}

@media (max-width: 576px) {
    .section-tag-orange {
        font-size: 12px;
    }
    
    .section-title-white {
        font-size: 24px;
    }
    
    .business-expansion-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .growth-metric-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        width: 100%;
    }
    
    .business-meeting-image-wrapper {
        margin-bottom: 20px;
    }
}

/* Geographic Section */
.geographic-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.geographic-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 51, 120, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.geographic-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.geographic-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.geographic-subtitle {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.geographic-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* City Badges - Modern Design */
.city-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.city-grid .col-lg-3,
.city-grid .col-md-4,
.city-grid .col-sm-6 {
    padding: 0 5px;
    flex: 0 0 auto;
}

.city-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e0e7ef;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-grid > div:nth-child(1) .city-badge { animation-delay: 0.05s; }
.city-grid > div:nth-child(2) .city-badge { animation-delay: 0.1s; }
.city-grid > div:nth-child(3) .city-badge { animation-delay: 0.15s; }
.city-grid > div:nth-child(4) .city-badge { animation-delay: 0.2s; }
.city-grid > div:nth-child(5) .city-badge { animation-delay: 0.25s; }
.city-grid > div:nth-child(6) .city-badge { animation-delay: 0.3s; }
.city-grid > div:nth-child(7) .city-badge { animation-delay: 0.35s; }
.city-grid > div:nth-child(8) .city-badge { animation-delay: 0.4s; }
.city-grid > div:nth-child(9) .city-badge { animation-delay: 0.45s; }

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

/* Gradient background effect on hover */
.city-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.city-badge:hover::before {
    left: 0;
}

/* Shine effect */
.city-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
    z-index: 1;
}

.city-badge:hover::after {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% {
        opacity: 0;
        left: -50%;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        left: 50%;
    }
}

.city-badge:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0, 51, 120, 0.2);
}

.city-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: block;
}

.city-badge:hover .city-name {
    color: var(--accent-yellow);
    transform: scale(1.05);
}

.help-box {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.help-box h4 {
    font-size: 28px;
    margin-bottom: 20px;
}

.help-box p {
    font-size: 16px;
    line-height: 1.8;
}

.geographic-image-wrapper {
    margin-top: 30px;
}

.geographic-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 51, 120, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.faq-section .row {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .faq-section .row {
        flex-wrap: nowrap;
    }
    
    .faq-section .col-lg-6 {
        display: flex;
        align-items: stretch;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.faq-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    animation: fadeInLeft 1s ease-out;
    transform: translateY(0);
    will-change: auto;
}

.faq-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    will-change: box-shadow;
}

.faq-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.faq-main-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.8s ease;
}

.faq-image-container:hover .faq-main-image {
    transform: scale(1.1);
}

.faq-help-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-blue);
    padding: 40px 35px;
    border-radius: 10px;
    max-width: 350px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInFromBottom 1s ease-out 0.3s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.faq-help-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-help-overlay:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-help-overlay:hover::before {
    left: 100%;
}

.faq-help-icon {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.faq-help-icon i {
    display: block;
    transition: transform 0.3s ease;
}

.faq-help-overlay:hover .faq-help-icon i {
    transform: scale(1.2) rotate(5deg);
}

.faq-help-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-help-overlay:hover .faq-help-title {
    transform: translateX(5px);
}

.faq-help-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin: 0;
}

.faq-help-link {
    color: var(--accent-yellow);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

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

.faq-help-link:hover {
    color: var(--accent-yellow);
    opacity: 0.9;
    transform: translateX(3px);
}

.faq-help-link:hover::after {
    width: 100%;
}

/* Decorative Elements */
.faq-decorative-lines {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 200px;
    height: 300px;
    background: linear-gradient(to top, transparent 0%, #f5e6d3 50%, transparent 100%);
    clip-path: polygon(0 100%, 20% 80%, 40% 90%, 60% 70%, 80% 85%, 100% 60%, 100% 100%, 0 100%);
    z-index: 1;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.faq-decorative-circle {
    position: absolute;
    top: 150px;
    left: 50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ffa500 0%, #ffd700 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.faq-content-wrapper {
    padding-left: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    animation: fadeInRight 1s ease-out 0.2s both;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: capitalize;
    white-space: nowrap;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
    animation: slideInFromBottom 0.8s ease-out 0.6s both;
}

.faq-intro-text {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.faq-accordion {
    border: none;
}

.faq-accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.faq-accordion-item:nth-child(1) {
    animation-delay: 0.6s;
}

.faq-accordion-item:nth-child(2) {
    animation-delay: 0.7s;
}

.faq-accordion-item:nth-child(3) {
    animation-delay: 0.8s;
}

.faq-accordion-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

.faq-button {
    background-color: var(--accent-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.faq-button:hover::before {
    left: 100%;
}

.faq-button:not(.collapsed) {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.faq-button:hover {
    background-color: #ff7a00;
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.faq-button:focus {
    box-shadow: none;
    border: none;
}

.faq-button::after {
    display: none;
}

.faq-icon {
    font-size: 18px;
    color: var(--white);
    margin-left: 15px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.faq-button:hover .faq-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.faq-button:not(.collapsed) .faq-icon {
    transform: rotate(45deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.faq-body {
    background-color: var(--light-gray);
    padding: 25px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.4s ease-out;
    position: relative;
}

.faq-body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-collapse.show .faq-body::before {
    opacity: 1;
}

/* Ripple Effect */
.faq-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Additional Animation Classes */
.faq-accordion-item.faq-item-visible {
    animation: fadeInUp 0.6s ease-out both;
}

/* Smooth scroll reveal */
.faq-section.faq-animated .faq-image-wrapper,
.faq-section.faq-animated .faq-content-wrapper {
    opacity: 1;
}

/* Enhanced hover states */
.faq-accordion-item {
    cursor: pointer;
}

.faq-accordion-item:active {
    transform: scale(0.98);
}

/* Gradient animation for title underline */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.faq-title::after {
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow), var(--accent-orange));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

/* Responsive Design */
@media (max-width: 991px) {
    .faq-section .row {
        flex-direction: column;
    }
    
    .faq-section .col-lg-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .faq-content-wrapper {
        padding-left: 0;
        padding-top: 0;
    }
    
    .faq-image-wrapper {
        min-height: 400px;
    }
    
    .faq-image-container,
    .faq-main-image {
        min-height: 400px;
    }
    
    .faq-help-overlay {
        max-width: 100%;
        right: 20px;
        bottom: 20px;
        padding: 30px 25px;
    }
    
    .faq-decorative-lines,
    .faq-decorative-circle {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq-title {
        font-size: 32px;
        white-space: normal;
    }
    
    .faq-button {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .faq-help-overlay {
        padding: 25px 20px;
    }
    
    .faq-help-title {
        font-size: 24px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .faq-title {
        font-size: 36px;
    }
}

/* Affiliations Section */
.affiliations-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.affiliations-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.affiliations-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.affiliations-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.affiliation-logo {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.logo-placeholder {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 51, 120, 0.15);
}

/* News Section */
.news-section {
    padding: 100px 0;
    background-color: var(--white);
}

.news-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.news-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 51, 120, 0.15);
}

.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
}

.news-content {
    padding: 25px;
}

.news-content h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.news-author {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

/* Callback Section */
.callback-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.callback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 51, 120, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.callback-section .row {
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.callback-section .col-lg-6:last-child {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .callback-section .row {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
    }
    
    .callback-section .col-lg-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        flex-direction: column;
    }
}

.callback-content {
    position: relative;
    padding-left: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1;
}

.callback-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
    flex-shrink: 0;
}

.callback-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-shrink: 0;
}

.callback-image-wrapper {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    margin-left: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 1;
    display: flex;
    align-items: flex-end;
    min-height: 0;
}

.callback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.callback-image:hover {
    transform: scale(1.02);
}

.callback-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 120, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 60px;
    border-radius: 10px;
}

.callback-decoration {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.2;
    overflow: hidden;
    z-index: 0;
}

.callback-decoration svg {
    width: 100%;
    height: 100%;
}

.callback-decoration svg path {
    stroke: var(--primary-blue);
}

.callback-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.callback-form {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.callback-form * {
    pointer-events: auto;
}

.callback-form input,
.callback-form select,
.callback-form textarea,
.callback-form button {
    pointer-events: auto !important;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.callback-form .form-label {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.callback-form .form-control {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-blue);
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.callback-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.callback-form .form-control:focus {
    background-color: var(--white);
    border-color: var(--accent-yellow);
    color: var(--dark-blue);
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
    outline: none;
}

.callback-form .form-control.error,
.callback-form .form-control.validation-error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.callback-form .form-control.validation-valid {
    border-color: #28a745;
}

.callback-form .error-message,
.callback-form .validation-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: 400;
}

.callback-form .error-message label,
.callback-form .validation-error label {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: 400;
}

.callback-form #recaptcha-error {
    margin-top: 10px;
}

.callback-form select.form-control {
    background-color: var(--white);
    color: var(--dark-blue);
    cursor: pointer;
}

.callback-form select.form-control option {
    background-color: var(--white);
    color: var(--dark-blue);
    padding: 10px;
}

.form-check-input {
    background-color: var(--white);
    border-color: rgba(0, 0, 0, 0.3);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.form-check-label {
    color: var(--text-dark);
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
}

.btn-callback-submit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 51, 120, 0.3);
}

.btn-callback-submit:hover {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.btn-callback-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 3px 10px rgba(0, 51, 120, 0.2);
}

.btn-callback-submit:disabled:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    transform: none;
    box-shadow: 0 3px 10px rgba(0, 51, 120, 0.2);
}

.btn-callback-submit .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    vertical-align: middle;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.toast-notification.toast-error {
    border-left-color: #dc3545;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    flex: 1;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.toast-notification.toast-success .toast-content {
    color: #155724;
}

.toast-notification.toast-error .toast-content {
    color: #721c24;
}

.toast-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #333;
}

.toast-notification.toast-success .toast-close:hover {
    color: #155724;
}

.toast-notification.toast-error .toast-close:hover {
    color: #721c24;
}

@media (max-width: 576px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* Mobile-specific fixes for form inputs */
@media (max-width: 768px) {
    .callback-form .form-control {
        font-size: 16px !important; /* Prevent iOS zoom on focus */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        pointer-events: auto;
        z-index: 10;
        position: relative;
        min-height: 44px; /* Minimum touch target size */
        padding: 12px 15px;
    }
    
    .callback-form input[type="text"],
    .callback-form input[type="email"],
    .callback-form input[type="tel"],
    .callback-form input[type="datetime-local"],
    .callback-form select,
    .callback-form textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        pointer-events: auto;
        z-index: 10;
        position: relative;
        min-height: 44px;
    }
    
    .callback-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .callback-form select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 12px;
        padding-right: 40px;
    }
    
    .callback-form .form-label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .btn-callback-submit {
        min-height: 48px;
        font-size: 16px;
        padding: 14px 30px;
        width: 100%;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Ensure form container is accessible */
    .callback-form {
        position: relative;
        z-index: 1;
        pointer-events: auto;
    }
    
    /* Fix for reCAPTCHA on mobile */
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
        margin-bottom: 10px;
    }
}

/* Responsive adjustments for callback section */
@media (max-width: 991px) {
    .callback-section .row {
        flex-wrap: wrap;
    }
    
    .callback-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .callback-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    
    .callback-title {
        font-size: 36px;
    }
    
    .callback-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .callback-decoration {
        display: none;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 50%, #f0f7ff 100%);
    color: var(--text-dark);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003378 0%, #00a86b 50%, #003378 100%);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 51, 120, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-logo {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-logo-img {
    max-width: 220px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 51, 120, 0.1));
    transition: all 0.3s ease;
}

.footer-logo a:hover .footer-logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 51, 120, 0.2));
}

.footer-social {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    color: #003378;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 51, 120, 0.1);
    border: 2px solid transparent;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #003378 0%, #00a86b 100%);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 51, 120, 0.3);
    border-color: #003378;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #003378;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #003378 0%, #00a86b 100%);
    border-radius: 2px;
}

.footer-text {
    color: #555555;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.footer-text i {
    margin-right: 10px;
    color: #00a86b;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.footer-text a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    color: var(--primary-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: #00a86b;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-links li:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-links a {
    color: #555555;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #003378 0%, #00a86b 100%);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #003378;
    padding-left: 8px;
    font-weight: 600;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    border-top: 2px solid rgba(0, 51, 120, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #003378 50%, transparent 100%);
}

.footer-copyright p {
    color: #666666;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .social-sidebar {
        display: none;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .geographic-title {
        font-size: 28px;
    }

    .geographic-subtitle {
        font-size: 32px;
    }

    .section-title-main {
        font-size: 36px;
    }

    .hexagon-image-container {
        max-width: 500px;
    }

    .experience-badge-inner {
        width: 150px;
        height: 150px;
    }

    .experience-icon-main {
        font-size: 40px;
    }

    .experience-text-main {
        font-size: 11px;
    }

    .shape-1 {
        width: 200px;
        height: 100px;
    }

    .shape-2 {
        width: 150px;
        height: 80px;
    }

    .feature-box {
        padding: 18px;
    }

    .icon-square {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .about-content-wrapper {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-section,
    .services-section,
    .business-expansion-section,
    .geographic-section,
    .faq-section,
    .affiliations-section,
    .news-section,
    .callback-section {
        padding: 60px 0;
    }

    .growth-number {
        font-size: 48px;
    }

    .affiliations-logos {
        flex-direction: column;
    }

    .btn-service-cta {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .about-section {
        padding: 80px 0;
    }

    .section-title-main {
        font-size: 32px;
    }

    .hexagon-image-container {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .about-image-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-content-wrapper {
        padding-left: 0;
    }

    .experience-badge-main {
        bottom: 20px;
        left: 20px;
    }

    .experience-badge-inner {
        width: 130px;
        height: 130px;
        padding: 15px;
    }

    .experience-icon-main {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .experience-text-main {
        font-size: 10px;
    }

    .shape-1 {
        width: 150px;
        height: 80px;
        top: -20px;
        right: -30px;
    }

    .shape-2 {
        width: 120px;
        height: 60px;
        bottom: -15px;
        left: -25px;
    }

    .feature-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .icon-square {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .feature-box-content h4 {
        font-size: 18px;
    }

    .feature-box-content p {
        font-size: 14px;
    }

    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 20px;
    }

    .hero-section {
        min-height: 450px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-hero-cta,
    .btn-about-cta,
    .btn-service-cta {
        font-size: 14px;
        padding: 12px 25px;
    }
    
    /* Responsive styles for city badges */
    .city-badge {
        padding: 10px 18px;
    }
    
    .city-name {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .city-grid {
        gap: 10px;
    }

    .section-title-main {
        font-size: 28px;
    }

    .section-tag-small {
        font-size: 11px;
    }

    .hexagon-image-container {
        max-width: 100%;
    }

    .experience-badge-inner {
        width: 110px;
        height: 110px;
        padding: 12px;
    }

    .experience-icon-main {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .experience-text-main {
        font-size: 9px;
    }

    .shape-1 {
        width: 120px;
        height: 60px;
    }

    .shape-2 {
        width: 100px;
        height: 50px;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .feature-box-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .icon-square {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .feature-box-content h4 {
        font-size: 16px;
    }

    .feature-box-content p {
        font-size: 13px;
    }

    .about-description p {
        font-size: 14px;
    }

    .btn-about-cta-main {
        font-size: 14px;
        padding: 15px 30px;
    }

    .whatsapp-fixed {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Instant Scrolling */
html {
    scroll-behavior: auto; /* Instant scroll, no animation */
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    scroll-behavior: auto; /* Instant scroll, no animation */
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.revealed {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll Animation Classes */
.animate-fade-in-up,
.animate-fade-in-left,
.animate-fade-in-right,
.animate-card,
.animate-badge {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-in-up.animated {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    transform: translateX(-50px);
}

.animate-fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in-right {
    transform: translateX(50px);
}

.animate-fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-card {
    transform: translateY(50px) scale(0.9);
}

.animate-card.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-badge {
    transform: scale(0) rotate(-180deg);
}

.animate-badge.animated {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Loading State */
body.loaded {
    opacity: 1;
}

body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Form Focus States */
.callback-form .form-group.focused label {
    color: var(--accent-yellow);
    transform: translateY(-5px);
}

/* Invalid Form Input */
.form-control.is-invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

/* Alert Messages */
.alert {
    border-radius: 5px;
    padding: 15px 20px;
    margin-top: 20px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* ============================================
   Gallery Section Styles
   ============================================ */
.gallery-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 50%, #b8dce8 100%);
    overflow: hidden;
}

.gallery-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 51, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.gallery-section .section-tag-purple {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 51, 120, 0.1);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 15px;
}

.gallery-section .section-title-white {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.gallery-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    margin-top: 15px;
}

.gallery-grid {
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15) rotate(2deg);
}

.gallery-overlay {
    display: none !important;
}

.gallery-content {
    display: none !important;
}

.gallery-link {
    display: none !important;
}

.gallery-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 51, 120, 0.1);
    animation: floatAnimation 20s infinite ease-in-out;
}

.floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

/* ============================================
   Gallery Lightbox Styles
   ============================================ */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-image.loaded {
    opacity: 1;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.lightbox-loader.active {
    display: block;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.lightbox-info {
    display: none !important;
}

/* Responsive Styles for Lightbox */
@media (max-width: 768px) {
    .lightbox-container {
        width: 95%;
    }

    .lightbox-close {
        top: -40px;
        right: -10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: -60px;
    }

    .lightbox-next {
        right: -60px;
    }

    .lightbox-info h3 {
        font-size: 22px;
    }

    .lightbox-info p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ============================================
   Team Section Styles
   ============================================ */
.team-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.team-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 51, 120, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.team-section .section-tag-teal {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 51, 120, 0.1);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 15px;
}

.team-section .section-title-white {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.team-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    margin-top: 15px;
}

.team-grid {
    position: relative;
    z-index: 2;
}

.team-grid .col-lg-3,
.team-grid .col-md-6 {
    display: flex;
    margin-bottom: 30px;
}

.team-grid .col-lg-3 .team-card,
.team-grid .col-md-6 .team-card {
    width: 100%;
    max-width: 100%;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px;
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 51, 120, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.team-card:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 51, 120, 0.4), 0 0 30px rgba(255, 165, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    max-width: 200px;
    max-height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(0, 51, 120, 0.2);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.team-card:hover .team-image-wrapper {
    border-color: var(--accent-yellow);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.6), 
                0 0 60px rgba(0, 51, 120, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.05);
}

/* New Hover Effect - Glow and Shine */
.team-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    overflow: hidden;
}

.team-card:hover .team-hover-effect {
    opacity: 1;
}

/* Glowing Border Effect */
.team-glow-effect {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(0, 51, 120, 0.8) 0%, 
        rgba(255, 165, 0, 0.8) 50%, 
        rgba(0, 51, 120, 0.8) 100%);
    background-size: 200% 200%;
    animation: gradientRotate 3s ease infinite;
    filter: blur(8px);
    z-index: 1;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Shine Effect */
.team-shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(-45deg);
    animation: shineSweep 2s infinite;
    z-index: 2;
}

@keyframes shineSweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(-45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(-45deg);
    }
}

/* Badge Effect */
.team-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.8);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-yellow) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 51, 120, 0.4);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    white-space: nowrap;
}

.team-card:hover .team-badge {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.team-badge i {
    font-size: 14px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Floating Particles Effect */
.team-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    box-shadow: 
        -30px -20px 0 2px rgba(255, 165, 0, 0.6),
        30px 20px 0 2px rgba(0, 51, 120, 0.6),
        -20px 30px 0 2px rgba(255, 165, 0, 0.4),
        20px -30px 0 2px rgba(0, 51, 120, 0.4),
        -40px 10px 0 1.5px rgba(255, 165, 0, 0.5),
        40px -10px 0 1.5px rgba(0, 51, 120, 0.5);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 4;
}

.team-card:hover .team-image-wrapper::after {
    opacity: 1;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        box-shadow: 
            -30px -20px 0 2px rgba(255, 165, 0, 0.6),
            30px 20px 0 2px rgba(0, 51, 120, 0.6),
            -20px 30px 0 2px rgba(255, 165, 0, 0.4),
            20px -30px 0 2px rgba(0, 51, 120, 0.4),
            -40px 10px 0 1.5px rgba(255, 165, 0, 0.5),
            40px -10px 0 1.5px rgba(0, 51, 120, 0.5);
    }
    25% {
        transform: translate(-60%, -40%) scale(1.2) rotate(90deg);
        box-shadow: 
            -35px -15px 0 2.5px rgba(255, 165, 0, 0.7),
            35px 25px 0 2.5px rgba(0, 51, 120, 0.7),
            -25px 35px 0 2px rgba(255, 165, 0, 0.5),
            25px -25px 0 2px rgba(0, 51, 120, 0.5),
            -45px 15px 0 2px rgba(255, 165, 0, 0.6),
            45px -5px 0 2px rgba(0, 51, 120, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
        box-shadow: 
            -30px -20px 0 2px rgba(255, 165, 0, 0.6),
            30px 20px 0 2px rgba(0, 51, 120, 0.6),
            -20px 30px 0 2px rgba(255, 165, 0, 0.4),
            20px -30px 0 2px rgba(0, 51, 120, 0.4),
            -40px 10px 0 1.5px rgba(255, 165, 0, 0.5),
            40px -10px 0 1.5px rgba(0, 51, 120, 0.5);
    }
    75% {
        transform: translate(-40%, -60%) scale(1.2) rotate(270deg);
        box-shadow: 
            -25px -25px 0 2.5px rgba(255, 165, 0, 0.7),
            25px 15px 0 2.5px rgba(0, 51, 120, 0.7),
            -15px 25px 0 2px rgba(255, 165, 0, 0.5),
            15px -35px 0 2px rgba(0, 51, 120, 0.5),
            -35px 5px 0 2px rgba(255, 165, 0, 0.6),
            35px -15px 0 2px rgba(0, 51, 120, 0.6);
    }
}

.team-info {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 150px;
    z-index: 2;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.team-position {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.team-card:hover .team-position {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.team-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    margin: 0 auto 15px;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.team-card:hover .team-divider {
    width: 80px;
    height: 4px;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
}

.team-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: auto;
    min-height: 40px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .team-description {
    color: var(--text-dark);
    transform: translateY(-3px);
}

.team-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.team-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 51, 120, 0.1);
    animation: pulseAnimation 3s infinite ease-in-out;
}

.team-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.team-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 1s;
}

.team-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes pulseAnimation {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ============================================
   Testimonial Section Styles
   ============================================ */
.testimonial-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark-blue);
    overflow: hidden;
}

.testimonial-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 51, 120, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 51, 120, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 51, 120, 0.05) 10px, rgba(0, 51, 120, 0.05) 20px);
    z-index: 1;
    pointer-events: none;
}

.testimonial-section .section-tag-gradient {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 165, 0, 0.2);
    color: var(--accent-yellow);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 15px;
}

.testimonial-section .section-title-white {
    color: var(--white);
    margin-bottom: 20px;
}

.testimonial-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-top: 15px;
}

.testimonial-slider {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 1;
    transform: rotate(360deg) scale(1.2);
}

.testimonial-content {
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--primary-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 51, 120, 0.2);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--accent-yellow);
    transform: scale(1.1);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.testimonial-rating {
    color: var(--accent-yellow);
    font-size: 14px;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-card-decoration {
    transform: scaleX(1);
}

.testimonial-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 165, 0, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

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

.particle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.particle-4 {
    top: 60%;
    right: 30%;
    animation-delay: 9s;
}

.particle-5 {
    bottom: 20%;
    right: 10%;
    animation-delay: 12s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.5;
    }
}

/* ============================================
   Responsive Styles for New Sections
   ============================================ */
@media (max-width: 992px) {
    .gallery-section,
    .team-section,
    .testimonial-section {
        padding: 80px 0;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .team-image-wrapper {
        width: 180px;
        height: 180px;
        min-width: 180px;
        min-height: 180px;
        max-width: 180px;
        max-height: 180px;
    }

    .team-card {
        min-height: 420px;
    }

    .team-grid .col-lg-3,
    .team-grid .col-md-6 {
        display: flex;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .gallery-section,
    .team-section,
    .testimonial-section {
        padding: 60px 0;
    }

    .gallery-image-wrapper {
        height: 200px;
    }

    .team-image-wrapper {
        width: 150px;
        height: 150px;
        min-width: 150px;
        min-height: 150px;
        max-width: 150px;
        max-height: 150px;
    }

    .team-card {
        min-height: 400px;
    }

    .team-grid .col-lg-3,
    .team-grid .col-md-6 {
        display: flex;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .floating-shape,
    .team-circle {
        display: none;
    }
}

@media (max-width: 576px) {
    .gallery-section,
    .team-section,
    .testimonial-section {
        padding: 50px 0;
    }

    .gallery-content h4 {
        font-size: 20px;
    }

    .team-name {
        font-size: 20px;
    }

    .team-image-wrapper {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        max-width: 120px;
        max-height: 120px;
    }

    .team-card {
        min-height: 380px;
        padding: 20px;
    }

    .team-grid .col-lg-3,
    .team-grid .col-md-6 {
        display: flex;
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}
