/* ========== ROOT VARIABLES & BASICS ========== */
:root {
    /* Main brand colors - cyan/blue theme */
    --primary-color: #01ddff;       /* Bright cyan - main brand color */
    --primary-dark: #00a8c6;        /* Darker cyan for hover states and depth */
    --primary-light: #7aeeff;       /* Lighter cyan for subtle highlights */
    
    /* Complementary accent colors */
    --accent-color: #0055a4;        /* Deep blue - complementary to cyan */
    --accent-light: #2b7bbd;        /* Lighter blue for secondary elements */
    
    /* Neutral background colors */
    --bg-light: #f7fdff;            /* Very light cyan tint for backgrounds */
    --bg-medium: #e6f9fd;           /* Light cyan tint for card backgrounds */
    
    /* Text colors with good contrast */
    --text-dark: #003a54;           /* Dark blue-gray for primary text */
    --text-medium: #005f7f;         /* Medium blue for secondary text */
    --text-on-dark: #ffffff;        /* White text for dark backgrounds */
    
    /* System colors */
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #f1f1f1;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --black: #1a1a1a;
    --overlay: rgba(0, 0, 0, 0.7);
    
    /* Success/Error colors */
    --success: #00c48c;             /* Green for success messages */
    --error: #ff5a5f;               /* Red for error messages */
    --warning: #ffbb54;             /* Orange/yellow for warnings */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

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

/* ========== COMMON ELEMENTS ========== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 221, 255, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes growLine {
    to { width: 80px; }
}

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

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

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

/* ========== UNIFIED HEADER & NAVIGATION ========== */
.unified-header {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.unified-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/xzaDjNu.png');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    z-index: 0;
}

.unified-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.unified-header .navbar,
.unified-header .hero,
.unified-header .container,
.navbar-info {
    position: relative;
    z-index: 10;
}

.navbar {
    padding: 15px 0;
}

.unified-header .navbar {
    background-color: transparent;
    box-shadow: none;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    right: 20px;
    top: 20px;
    z-index: 2001;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu .nav-link {
  color: white;
  font-size: 1.1rem;
  padding: 12px 0;
  display: block;
}

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

.nav-truck-indicator {
    position: absolute;
    bottom: -15px;
    left: 0;
    opacity: 0;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    transform: translateX(-100%);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-light);
}

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

.nav-link:hover .nav-truck-indicator, 
.nav-link.active .nav-truck-indicator {
    opacity: 1;
    transform: translateX(0);
}

.navbar-info {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 0.8rem;
    color: #ddd;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-info:hover {
    background-color: rgba(1, 221, 255, 0.2);
    transform: translateY(-2px);
}

.navbar-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.navbar-user {
    margin-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 15px;
}

/* Hero section in unified header */
.unified-header .hero {
    height: calc(100vh - 150px);
    margin-top: 0;
    background: none;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.quality-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(40px);
    animation: cardAppear 0.6s cubic-bezier(0.26, 0.53, 0.74, 1.48) forwards;
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.quality-card:nth-child(1) { animation-delay: 0.1s; }
.quality-card:nth-child(2) { animation-delay: 0.3s; }
.quality-card:nth-child(3) { animation-delay: 0.5s; }
.quality-card:nth-child(4) { animation-delay: 0.7s; }

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quality-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.icon {
    width: 80px;
    height: 80px;
    background: rgba(1, 221, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(1, 221, 255, 0.1);
    z-index: -1;
    animation: pulse 2.5s infinite;
}

.quality-card:hover .icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.quality-card:hover .icon i {
    color: white;
    transform: rotateY(180deg);
}

.quality-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.quality-card:hover h3 {
    color: var(--primary-color);
}

.quality-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Custom icon animations */
.fa-truck-moving {
    animation: truckMove 3s infinite;
}

@keyframes truckMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.fa-users {
    animation: usersPulse 3s infinite;
}

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

.fa-headset {
    animation: headsetWiggle 3s infinite;
}

@keyframes headsetWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.fa-shield-alt {
    animation: shieldPulse 3s infinite;
}

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

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    position: relative;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 250px; /* Fixed height for consistent appearance */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Background Image Setup */
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.5s ease;
}

/* Dark Overlay for Text Readability */
.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: -1;
    transition: background 0.3s ease;
}

/* Apply Background Images using JS (fallback CSS method below) */
.feature[data-image]::before {
    background-image: url(''); /* Will be set via JavaScript */
}

/* Fallback if JS doesn't work - you can uncomment and customize these */

.feature:nth-child(1)::before {
    background-image: url('../images/gallery/ets2_20250303_021345_00.png');
}
.feature:nth-child(2)::before {
    background-image: url('../images/gallery/ets2_20250317_030941_00.png');
}
.feature:nth-child(3)::before {
    background-image: url('../images/gallery/ets2_20250708_200937_00.png');
}
.feature:nth-child(4)::before {
    background-image: url('../images/gallery/Euro_Truck_Simulator_2_Screenshot_2025.07.20_-_20.45.16.02.png');
}


/* Content Styling */
.feature-content {
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-content p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Hover Effects */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature:hover::before {
    transform: scale(1.1);
}

.feature:hover::after {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature {
        height: 220px;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
}

/* ========== JOIN SECTION ========== */
.join-section {
    padding: 120px 0 140px;
    background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(1, 221, 255, 0.1) 0%, rgba(1, 221, 255, 0) 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.join-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 221, 255, 0.08) 0%, rgba(1, 221, 255, 0) 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.join-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.2s ease forwards;
}

.application-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
    position: relative;
    flex-wrap: wrap;
}

.application-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(to right, #01ddff 0%, #01ddff 33%, #01ddff 66%, #01ddff 100%);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 1.5s 0.6s cubic-bezier(0.17, 0.67, 0.67, 1.3) forwards;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    margin: 0 15px 30px;
    padding: 60px 25px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.97);
    opacity: 0;
    transform: translateY(40px);
    z-index: 2;
}

.step:nth-child(1) { animation: stepAppear 0.6s 0.3s forwards; }
.step:nth-child(2) { animation: stepAppear 0.6s 0.5s forwards; }
.step:nth-child(3) { animation: stepAppear 0.6s 0.7s forwards; }
.step:nth-child(4) { animation: stepAppear 0.6s 0.9s forwards; }

@keyframes stepAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(1, 221, 255, 0.4);
    z-index: 2;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(1, 221, 255, 0.5);
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(1, 221, 255, 0.8);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: 0;
}

.step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.step:hover h3 {
    color: var(--primary-color);
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.apply-cta {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 1.2s forwards;
}

/* Button shine effect */
.btn-primary::after, 
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 70px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(25deg);
    transition: all 0.8s ease;
    pointer-events: none; /* Prevents the effect from interfering with clicks */
}

.btn-primary:hover::after,
.btn:hover::after {
    left: 150%;
    transition: all 0.8s ease;
}

/* ========== ACHIEVEMENTS SECTION ========== */
.achievements-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(1, 221, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(1, 221, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(1, 221, 255, 0.03) 0%, transparent 30%);
    opacity: 0.8;
    pointer-events: none;
}

.coming-soon {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpIn 1s cubic-bezier(0.17, 0.67, 0.83, 0.97) 0.7s forwards;
    overflow: hidden;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.1);
    animation: shineReveal 1.5s ease-out 1.5s forwards;
    pointer-events: none;
}

@keyframes shineReveal {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.coming-soon img {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 15px rgba(1, 221, 255, 0.3));
    opacity: 0;
    transform: scale(0.7);
    animation: fadeScale 1s cubic-bezier(0.17, 0.67, 0.83, 0.97) 1s forwards,
               floatTrophy 4s ease-in-out infinite;
}

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.coming-soon h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    animation: typewriter 1s steps(12) 1.3s forwards;
}

@keyframes typewriter {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.coming-soon p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 450px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(1, 221, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(1, 221, 255, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '"';
    position: absolute;
    top: 60px;
    right: 10%;
    font-size: 400px;
    font-family: 'Georgia', serif;
    color: rgba(1, 221, 255, 0.03);
    line-height: 0;
    pointer-events: none;
}

.testimonials-section .section-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonials-section .section-title::after {
    width: 0;
    animation: growLine 1.2s ease-out 0.3s forwards;
}

.testimonial-slider-container {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 30px 0;
    position: relative;
    perspective: 1000px;
}

.testimonial {
    min-width: calc(100% - 60px);
    scroll-snap-align: center;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 20px 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    animation: testimonialAppear 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transform-style: preserve-3d;
}

@keyframes testimonialAppear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.testimonial:nth-child(1) { animation-delay: 0.2s; }
.testimonial:nth-child(2) { animation-delay: 0.4s; }
.testimonial:nth-child(3) { animation-delay: 0.6s; }

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

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 80px;
    font-family: 'Georgia', serif;
    color: rgba(1, 221, 255, 0.1);
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover .testimonial-author img {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(1, 221, 255, 0.2);
    border-color: rgba(1, 221, 255, 0.2);
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    color: #333;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
    display: block;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slider-container:hover .testimonial-nav {
    opacity: 1;
}

.nav-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 221, 255, 0.3);
}

.nav-button.prev {
    left: 20px;
}

.nav-button.next {
    right: 20px;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0;
    transition: all 1.2s ease;
    pointer-events: none;
    transform: translateX(-100%);
}

.testimonial:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

.news-section {
    padding: 70px 0;
    background-color: #f8f9fa;
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* News Card */
.news-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.news-image {
    height: 200px;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.news-content p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.news-date, .news-author {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
}

.news-date i, .news-author i {
    margin-right: 6px;
    color: #01ddff;
}

.read-more {
    display: inline-block;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #01ddff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #01ddff;
    transition: width 0.3s ease;
}

.read-more:hover::after {
    width: 100%;
}

.read-more:hover {
    color: #00a8c6;
}

/* Loading State */
.news-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.loader-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.news-loader {
    width: 100%;
    height: 100%;
    position: relative;
}

.news-loader-circle {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #01ddff;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.news-loader-line-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transform-origin: 100% 50%;
    animation: rotate 1.5s ease-in-out infinite;
}

.news-loader-line {
    width: 200%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(1, 221, 255, 0.5);
}

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

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

.news-loading p {
    color: #777;
    font-size: 1rem;
}

/* Coming Soon State */
.news-coming-soon {
    grid-column: 1 / -1;
    background-color: white;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.coming-soon-icon {
    background-color: rgba(1, 221, 255, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.coming-soon-icon i {
    font-size: 3rem;
    color: #01ddff;
    animation: pulse 2s infinite;
}

.news-coming-soon h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.news-coming-soon p {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.news-coming-soon .btn {
    padding: 12px 25px;
    font-size: 1rem;
}

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

/* View All News */
.view-all-news {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-all-news .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
}

.view-all-news .btn i {
    transition: transform 0.3s ease;
}

.view-all-news .btn:hover i {
    transform: translateX(5px);
}

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

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .news-section {
        padding: 50px 0;
    }
    
    .news-coming-soon {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        width: 80px;
        height: 80px;
    }
    
    .coming-soon-icon i {
        font-size: 2.5rem;
    }
    
    .news-coming-soon h3 {
        font-size: 1.5rem;
    }
    
    .news-coming-soon p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .news-image {
        height: 180px;
    }
}

/* ========== QUOTE SECTION ========== */
.quote-section {
    padding: 100px 0;
    margin-bottom: 50px;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/quote-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--dark-gray);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-container i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quote-container blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.quote-author {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 70px 0 30px;
    position: relative;
    font-family: 'Inter', 'Poppins', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: rotate(5deg);
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 10px;
    color: #fff;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.footer h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.footer-links:hover h4,
.footer-contact:hover h4,
.footer-social:hover h4 {
    border-color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

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

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-contact ul li a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-contact ul li a:hover {
    color: #01ddff;
}

.footer-contact ul li a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: #01ddff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.footer-logo { animation-delay: 0.1s; }
.footer-links { animation-delay: 0.2s; }
.footer-contact { animation-delay: 0.3s; }
.footer-social { animation-delay: 0.4s; }
.footer-bottom { 
    opacity: 0;
    animation: fadeIn 0.5s ease 0.5s forwards;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #00a8c6;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(1, 221, 255, 0.4);
}


/* ========== RESPONSIVE STYLES ========== */
/* ========== RESPONSIVE STYLES ========== */

/* Tablet Styles (768px - 991px) */
@media screen and (max-width: 991px) {
  .container {
    padding: 0 30px;
  }
  
  /* Hero content */
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  /* Quality cards */
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  /* Features section */
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  /* Application steps */
  .application-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-logo {
    grid-column: span 2;
    text-align: center;
    align-items: center;
  }
}

/* Mobile Styles (767px and below) */
@media screen and (max-width: 767px) {
  /* Typography */
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  /* Navigation */
  .navbar .container {
    padding-top: 20px;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
   .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: rgba(18, 18, 18, 0.97); /* Slightly more opaque */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease;
  z-index: 2000; /* Much higher z-index */
  box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    pointer-events: none;
  }
  
  /* Hero section */
  .unified-header .hero {
    height: calc(100vh - 100px);
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Quality cards */
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Features section */
  .features-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Application steps */
  .application-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Quote section */
  .quote-container blockquote {
    font-size: 1.2rem;
    padding: 0 15px;
  }
  
  /* Testimonials */
  .testimonial-slider-container {
    padding: 0;
  }
  
  .testimonial {
    padding: 20px 15px;
  }
  
  .testimonial-content p {
    font-size: 0.95rem;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    grid-column: span 1;
  }
  
  .footer-links ul,
  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Small Mobile Styles (480px and below) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-title::after {
    width: 60px;
    height: 3px;
  }
  
  .quality-card,
  .feature,
  .step {
    padding: 20px 15px;
  }
  
  .quality-card h3,
  .feature-content h3,
  .step h3 {
    font-size: 1.2rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-nav {
    display: none;
  }
  
  .apply-cta .btn {
    width: 100%;
  }
}

/* Animation for blinking cursor effect */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Effect for the highlighted text */
.highlight {
  background: linear-gradient(120deg, rgba(1, 221, 255, 0.15) 0%, rgba(1, 221, 255, 0.3) 100%);
  padding: 0 5px;
  border-radius: 3px;
}

/* Custom glowing effect for buttons on special sections */
.glow-button {
  position: relative;
  overflow: hidden;
}

.glow-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #01ddff, #00a8c6, #01ddff);
  z-index: -1;
  border-radius: 34px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-button:hover::before {
  opacity: 1;
  animation: glowing 1.5s linear infinite;
}

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

/* Enhanced focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(1, 221, 255, 0.5);
  outline-offset: 2px;
}

/* Dark mode styles - for future implementation */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-light: #121212;
    --bg-medium: #1e1e1e;
    --text-dark: #e0e0e0;
    --text-medium: #b0b0b0;
  }
}

/* Print styles for better printing */
@media print {
  .navbar, .footer, .hero-buttons, .back-to-top {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }
  
  p, li {
    color: #333;
    orphans: 3;
    widows: 3;
  }
  
  img {
    max-width: 100% !important;
  }
  
  @page {
    margin: 2cm;
  }
}