/* Custom CSS for Champika Exporters Website */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in {
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* Banner Section Styles */
.banner-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.banner-slide {
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-image img {
    transition: transform 20s ease-in-out;
}

.banner-slide.active .banner-image img {
    transform: scale(1.05);
}

.banner-overlay {
    backdrop-filter: blur(1px);
}

/* Banner Text Animations */
.banner-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-gradient-banner {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.text-gradient-banner-2 {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

/* Slide Animations */
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slide-in-left 1s ease-out 0.5s both;
}

.slide-in-right {
    animation: slide-in-right 1s ease-out 0.7s both;
}

/* Banner Buttons */
.banner-btn-primary {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.banner-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.banner-btn-primary:hover::before {
    left: 100%;
}

.banner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.banner-btn-secondary {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.banner-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
}

.banner-btn-secondary:hover::before {
    width: 100%;
}

.banner-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Floating Elements */
.floating-icon {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

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

.animate-float-delayed {
    animation-delay: 2s;
}

/* Banner Navigation */
.banner-dot {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: white !important;
    transform: scale(1.2);
}

.banner-dot:hover {
    transform: scale(1.1);
}

/* Progress Bar */
.banner-progress-bar {
    transform-origin: left;
    transition: width 0.1s linear;
}

/* Scroll Indicator */
.scroll-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-section {
        min-height: 100vh;
    }
    
    .banner-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .banner-subtitle p {
        font-size: 1rem !important;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .banner-btn-primary,
    .banner-btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .floating-icon {
        display: none;
    }
    
    .banner-content .max-w-3xl {
        text-align: center !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem !important;
    }
    
    .banner-subtitle p {
        font-size: 0.9rem !important;
    }
    
    .banner-navigation {
        bottom: 6rem;
    }
    
    .scroll-indicator {
        bottom: 4rem;
    }
}

/* Animation Performance Optimizations */
.banner-slide,
.banner-image img,
.floating-icon {
    will-change: transform, opacity;
}

/* Preload Animation */
.banner-section.loading .banner-slide {
    opacity: 0;
}

.banner-section.loaded .banner-slide.active {
    opacity: 1;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.card-body {
    padding: 20px;
}

/* Header/Navigation Styles */
.navbar-custom {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

/* Logo Styles */
.logo-img {
    transition: transform 0.3s ease;
}

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

.logo-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    background: rgba(102, 126, 234, 0.05);
}

/* Register Button */
.register-btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.register-btn::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;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.register-btn:active {
    transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

/* Mobile Menu Active State */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 2px 0;
}

.mobile-nav-link i {
    color: #6b7280;
    width: 20px;
    text-align: center;
}

.mobile-nav-link:hover i {
    color: #667eea;
}

.mobile-register-btn {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.mobile-register-btn::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;
}

.mobile-register-btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .navbar-custom .container {
        padding: 0 16px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .logo-img {
        height: 36px;
    }
}


/* Icon Styles */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.icon-container:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* About Section Styles */
.about-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-badge {
    animation: pulse-soft 2s ease-in-out infinite;
}

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

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Cards */
.about-grid {
    position: relative;
}

.about-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    /* transition removed */
    /* transform removed */
}

/* Card hover effects removed */

/* About Images */
.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Image and overlay transitions removed */

.about-icon {
    z-index: 10;
}

/* Icon hover effects removed */

/* About Numbers */
.about-number {
    position: relative;
    overflow: hidden;
}

/* Number hover effects removed */

/* About Content hover effects removed */

/* About Stats */
.about-stats {
    position: relative;
}

.stats-container {
    position: relative;
    overflow: hidden;
    /* animation removed */
}

/* Stats animations removed */

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.stat-item {
    position: relative;
    padding: 1rem;
    /* transition removed */
}

/* Stat item hover effects removed */

.stat-number {
    position: relative;
    overflow: hidden;
}

.counter {
    transition: all 0.3s ease;
}

/* About CTA */
.about-cta {
    position: relative;
}

.cta-btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-btn-primary::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;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.cta-btn-secondary {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #3b82f6;
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-btn-secondary:hover::before {
    width: 100%;
}

.cta-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

/* Background Decorations */
.about-decorations {
    z-index: 0;
}

.decoration-circle {
    animation: float-slow 8s ease-in-out infinite;
}

.decoration-circle:nth-child(2) {
    animation-delay: 2s;
}

@keyframes float-slow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.decoration-dots {
    animation: pulse-dots 3s ease-in-out infinite;
}

@keyframes pulse-dots {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-grid .about-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 12rem;
    }
    
    .stats-container {
        padding: 2rem 1rem;
    }
    
    .stats-container .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 1rem;
    }
    
    .about-image {
        height: 10rem;
    }
    
    .decoration-circle,
    .decoration-dots {
        display: none;
    }
}

/* Animation Performance */
.about-card,
.about-image,
.stat-item {
    will-change: transform;
}

/* Loading States */
.about-image[data-loaded="false"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}




/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.error-message {
    background: #ef4444;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

/* Job Cards */
.job-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.job-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: #667eea;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.job-category {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.job-location {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.job-salary {
    font-size: 24px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 16px;
}

.job-apply-btn {
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

/* Destination Cards */
.destination-card {
    border-radius: 12px;
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.destination-card:hover {
    transform: translateY(-5px);
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.expertise-category {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.expertise-category:hover {
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
    transition: color 0.3s ease;
}

.expertise-item:hover {
    color: #667eea;
}

.expertise-icon {
    color: #10b981;
    margin-right: 8px;
    font-size: 12px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Mobile Menu */
.mobile-menu {
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu-item {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-item:hover {
    background: #f9fafb;
    color: #667eea;
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-lg {
    padding: 100px 0;
}

/* Text Styles */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-slider {
        height: 300px;
    }
    
    .banner-slide h2 {
        font-size: 2rem !important;
    }
    
    .banner-slide p {
        font-size: 1rem !important;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .destination-card {
        padding: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 250px;
    }
    
    .banner-slide h2 {
        font-size: 1.5rem !important;
    }
    
    .banner-slide p {
        font-size: 0.9rem !important;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .job-card,
    .destination-card {
        padding: 16px;
    }
    
    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Print Styles */
@media print {
    .banner-slider,
    .navbar,
    footer {
        display: none;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .card,
    .job-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .card,
    .job-card {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        color: #fff;
    }
    
    .btn-secondary {
        border-color: #000;
        color: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1f2937;
        --text-color: #f9fafb;
        --card-bg: #374151;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .card,
    .job-card {
        background: var(--card-bg);
        color: var(--text-color);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }

/* Mission, Vision, Values Icon Animation */
#mvv .fa-bullseye,
#mvv .fa-eye,
#mvv .fa-heart {
    animation: rotate-only 6s linear infinite;
}

/* Different speeds for variety */
#mvv .fa-bullseye {
    animation-duration: 8s;
}

#mvv .fa-eye {
    animation-duration: 10s;
    animation-direction: reverse;
}

#mvv .fa-heart {
    animation-duration: 12s;
}

/* About Section Icons - Stop movement, only hover rotation */
.about-icon .fa-building,
.about-icon .fa-handshake,
.about-icon .fa-award {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.about-icon:hover .fa-building,
.about-icon:hover .fa-handshake,
.about-icon:hover .fa-award {
    transform: rotate(360deg);
}

/* Override about card hover to prevent icon movement */
.about-card:hover .about-icon {
    transform: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Banner Video Styles */
.banner-video {
    overflow: hidden;
}

.banner-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Ensure video stays behind overlay and content */
.banner-overlay {
    z-index: 2;
}

.banner-content {
    z-index: 10;
}

/* Fallback for browsers that don't support video */
@supports not (object-fit: cover) {
    .banner-video video {
        object-fit: cover;
    }
}
.h-full { height: 100%; }

.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }