/* ===============================================
   MyBDSMS - Modern SMS Service Provider Styles
   =============================================== */

/* Root Variables - Professional Color Scheme */
:root {
    --primary-color: #34BD93;
    --primary-dark: #2a9a7a;
    --primary-light: #43CC84;
    --secondary-color: #FAA03C;
    --accent-color: #FDA537;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #34BD93 0%, #2db184 100%);
    --gradient-secondary: linear-gradient(135deg, #FAA03C 0%, #FDA537 100%);
    --gradient-hero: linear-gradient(135deg, #34BD93 0%, #2db184 50%, #FAA03C 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-sm: 0 2px 10px rgba(52, 189, 147, 0.1);
    --shadow-md: 0 5px 20px rgba(52, 189, 147, 0.15);
    --shadow-lg: 0 10px 40px rgba(52, 189, 147, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ===============================================
   Preloader Styles - Clean Design
   =============================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(52, 189, 147, 0.2);
    background: white;
    padding: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(52, 189, 147, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(250, 160, 60, 0.3);
    }
}

.preloader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.spinner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-circle:nth-child(1) {
    border-top-color: var(--secondary-color);
    animation-delay: -0.4s;
}

.spinner-circle:nth-child(2) {
    border-top-color: var(--primary-color);
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    animation-delay: -0.2s;
}

.spinner-circle:nth-child(3) {
    border-top-color: var(--primary-light);
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

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

.preloader-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
    letter-spacing: 2px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===============================================
   Navigation / Header
   =============================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 2500);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    position: relative;
}

.navbar.navbar-scrolled {
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.brand-logo {
    height: 55px;
    width: auto;
    /* border-radius: 10px;
    box-shadow: 0 4px 15px rgba(52, 189, 147, 0.25);
    transition: var(--transition);
    background: white; */
    padding: 3px;
}

/* .brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(52, 189, 147, 0.35);
} */

/* .brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
} */

.navbar-nav {
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #34BD93, #FAA03C);
    transition: var(--transition);
}

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

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

.navbar-btn {
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(250, 160, 60, 0.35);
}

.navbar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 160, 60, 0.45);
    color: var(--text-white);
    background: linear-gradient(135deg, #FDA537 0%, #ffb84d 100%);
}

/* ===============================================
   User Dropdown (Desktop)
   =============================================== */
.user-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(52, 189, 147, 0.3);
}

.user-icon-btn:hover,
.user-icon-btn:focus {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(52, 189, 147, 0.4);
    background: var(--gradient-primary);
    color: var(--text-white);
}

.dropdown-toggle::after{
    display: none;
}

.user-dropdown-menu {
    min-width: 200px;
    padding: 8px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(52, 189, 147, 0.1);
    margin-top: 12px;
}

.user-dropdown-item {
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.user-dropdown-item:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: translateX(5px);
}

.user-dropdown-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    margin-right: 8px;
    transition: var(--transition);
}

.user-dropdown-item:hover i {
    color: var(--text-white);
}

/* ===============================================
   Mobile Nav Buttons
   =============================================== */
.navbar-btn-mobile {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(52, 189, 147, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
}

.navbar-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 189, 147, 0.4);
    color: var(--text-white);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0;
}

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

.navbar-toggler-icon {
    width: 30px;
    height: 20px;
    position: relative;
}

/* ===============================================
   Hero Section - Premium Modern Design
   =============================================== */
#hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(52, 189, 147, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(250, 160, 60, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 20s ease-in-out infinite 2s;
}

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

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2334BD93' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3Ccircle cx='50' cy='25' r='1.5'/%3E%3Ccircle cx='50' cy='75' r='1.5'/%3E%3Ccircle cx='25' cy='50' r='1.5'/%3E%3Ccircle cx='75' cy='50' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    animation: floatShape 25s infinite ease-in-out;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: -5%;
    background: linear-gradient(135deg, rgba(52, 189, 147, 0.08), rgba(52, 189, 147, 0.02));
    animation-delay: 0s;
    border: 1px solid rgba(52, 189, 147, 0.1);
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    top: 55%;
    left: 10%;
    background: linear-gradient(135deg, rgba(250, 160, 60, 0.08), rgba(250, 160, 60, 0.02));
    animation-delay: 6s;
    border: 1px solid rgba(250, 160, 60, 0.1);
}

.hero-shape-3 {
    width: 180px;
    height: 180px;
    top: 15%;
    right: 8%;
    background: linear-gradient(135deg, rgba(67, 204, 132, 0.08), rgba(67, 204, 132, 0.02));
    animation-delay: 12s;
    border: 1px solid rgba(67, 204, 132, 0.1);
}

.hero-shape-4 {
    width: 320px;
    height: 320px;
    bottom: 5%;
    right: -8%;
    background: linear-gradient(135deg, rgba(253, 165, 55, 0.08), rgba(253, 165, 55, 0.02));
    animation-delay: 18s;
    border: 1px solid rgba(253, 165, 55, 0.1);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, -40px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(-40px, -30px) rotate(270deg);
    }
}

/* Floating decorative elements */
.hero-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-decoration-1 {
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
}

.hero-decoration-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #34BD93, transparent);
    border-radius: 50% 0 50% 50%;
    animation: rotateDecoration 15s linear infinite;
}

.hero-decoration-2 {
    bottom: 25%;
    left: 8%;
    width: 60px;
    height: 60px;
}

.hero-decoration-2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FAA03C, transparent);
    border-radius: 50% 50% 0 50%;
    animation: rotateDecoration 12s linear infinite reverse;
}

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

/* Animated dots */
.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.hero-dot:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.hero-dot:nth-child(2) { top: 25%; right: 25%; animation-delay: 0.5s; }
.hero-dot:nth-child(3) { top: 65%; left: 30%; animation-delay: 1s; }
.hero-dot:nth-child(4) { bottom: 30%; right: 20%; animation-delay: 1.5s; }
.hero-dot:nth-child(5) { top: 45%; left: 15%; animation-delay: 2s; }
.hero-dot:nth-child(6) { top: 75%; right: 35%; animation-delay: 2.5s; }

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* General Button Styles */
.btn-primary-custom {
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(250, 160, 60, 0.35);
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(250, 160, 60, 0.45);
    color: var(--text-white);
    background: linear-gradient(135deg, #FDA537 0%, #ffb84d 100%);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 189, 147, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(52, 189, 147, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid rgba(52, 189, 147, 0.3);
    box-shadow: 0 8px 32px rgba(52, 189, 147, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(52, 189, 147, 0.2);
    }
    50% {
        box-shadow: 0 8px 40px rgba(52, 189, 147, 0.4);
    }
}

.hero-badge i {
    color: #34BD93;
    font-size: 16px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-title span {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #34BD93 0%, #FAA03C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #34BD93, #FAA03C, transparent);
    border-radius: 2px;
    animation: slideUnderline 3s ease-in-out infinite;
}

@keyframes slideUnderline {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
    51% {
        transform: scaleX(1);
        transform-origin: right;
    }
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    max-width: 580px;
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #34BD93 0%, #2db184 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(52, 189, 147, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-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.5s;
}

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

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(52, 189, 147, 0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    margin-top: 20px;
}

.hero-stat-item {
    text-align: center;
    color: white;
}

.hero-stat-item h4 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero-stat-item small {
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-main-image {
    width: 100%;
    max-width: 580px;
    height: auto;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    border-radius: 30px;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #34BD93, #FAA03C);
    border-radius: 40px;
    z-index: -1;
    opacity: 0.3;
    animation: glowRotate 20s linear infinite;
}

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

.hero-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #34BD93, #FAA03C, #34BD93);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

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

.hero-mockup img {
    border-radius: 20px;
    width: 100%;
}

.hero-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 18px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: heroFloat 5s ease-in-out infinite;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-float-1 {
    top: 8%;
    left: -50px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 12%;
    right: -50px;
    animation-delay: 2.5s;
}

.hero-float-3 {
    top: 45%;
    right: -70px;
    animation-delay: 1.25s;
}

.hero-float-icon {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.hero-float-success .hero-float-icon {
    background: linear-gradient(135deg, #34BD93, #43CC84);
    box-shadow: 0 8px 25px rgba(52, 189, 147, 0.4);
}

.hero-float-info .hero-float-icon {
    background: linear-gradient(135deg, #43CC84, #FAA03C);
    box-shadow: 0 8px 25px rgba(250, 160, 60, 0.4);
}

.hero-float-warning .hero-float-icon {
    background: linear-gradient(135deg, #FAA03C, #FDA537);
    box-shadow: 0 8px 25px rgba(253, 165, 55, 0.4);
}

.hero-float-content h6 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-float-content small {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

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

/* ===============================================
   About Section
   =============================================== */
#about {
    padding: 100px 0;
    background: var(--bg-white);
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 189, 147, 0.25);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 25px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features i {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(52, 189, 147, 0.25);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.stat-box h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===============================================
   Stats Section - Standalone
   =============================================== */
#stats.stats-section {
    position: relative;
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 189, 147, 0.9) 0%, rgba(45, 177, 132, 0.9) 50%, rgba(250, 160, 60, 0.9) 100%);
}

#stats.stats-section .container {
    position: relative;
    z-index: 2;
}

#stats.stats-section .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

#stats.stats-section .stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

#stats.stats-section .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#stats.stats-section .stat-item h4 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

#stats.stats-section .stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ===============================================
   Services Section
   =============================================== */
#services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(52, 189, 147, 0.25);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(52, 189, 147, 0.35);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--secondary-color);
}

/* ===============================================
   Features Section
   =============================================== */
#features {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
    background: var(--bg-white);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.feature-item:hover {
    background: linear-gradient(135deg, rgb(253, 165, 55) 0%, rgb(255, 184, 77) 100%);
    transform: translateX(10px);
    border-color: transparent;
}

.feature-item:hover .feature-number {
    background: white;
    color: var(--secondary-color);
}

.feature-item:hover .feature-content h4,
.feature-item:hover .feature-content p {
    color: white;
}

.feature-number {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(52, 189, 147, 0.25);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===============================================
   Pricing Section
   =============================================== */
#pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.pricing-tab {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-tab.active,
.pricing-tab:hover {
    background: var(--gradient-secondary);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(250, 160, 60, 0.3);
}

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

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(52, 189, 147, 0.25);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-desc {
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.pricing-features li i {
    color: #34BD93;
    font-size: 16px;
}

.pricing-features li.disabled {
    color: var(--text-light);
}

.pricing-features li.disabled i {
    color: var(--text-light);
}

.pricing-card .btn-primary-custom {
    width: 100%;
    justify-content: center;
}

/* ===============================================
   Testimonials Section - Multi-Card Slider
   =============================================== */
#testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-slider {
    padding: 20px 0 70px;
}

.testimonials-slider .swiper {
    padding: 20px 5px 50px;
    overflow: hidden;
}

.testimonials-slider .swiper-slide {
    height: auto;
    opacity: 1;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
}

.testimonials-slider .swiper-slide-active .testimonial-card,
.testimonials-slider .swiper-slide-duplicate-active .testimonial-card {
    background: white;
    box-shadow: 0 15px 40px rgba(52, 189, 147, 0.12);
    border-color: rgba(52, 189, 147, 0.15);
}

.testimonial-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(52, 189, 147, 0.15);
    border-color: rgba(52, 189, 147, 0.2);
    transform: translateY(-8px);
}

.testimonial-quote {
    font-size: 40px;
    color: #34BD93;
    opacity: 0.15;
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    font-size: 15px;
    color: #FAA03C;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(52, 189, 147, 0.2);
}

.author-info {
    text-align: center;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-info .author-position {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.author-info .author-company {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

/* Swiper Pagination */
.testimonials-slider .swiper-pagination {
    bottom: 10px;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(52, 189, 147, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-slider .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary-color);
}

/* ===============================================
   FAQ Section
   =============================================== */
#faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 102, 204, 0.05);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    text-align: left;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(52, 189, 147, 0.25);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===============================================
   Contact Section
   =============================================== */
#contact {
    padding: 100px 0;
    background: var(--bg-white);
    overflow-x: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: linear-gradient(135deg, #34BD93, #FAA03C);
    color: var(--text-white);
    padding: 50px 40px;
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-details i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.contact-details h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--text-white);
    color: #34BD93;
    transform: translateY(-5px);
}

.contact-form {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: #34BD93;
    box-shadow: 0 0 0 4px rgba(52, 189, 147, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===============================================
   Footer
   =============================================== */
#footer {
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 40px 0 10px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    margin-top: 3px;
    color: #43CC84;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* ===============================================
   Back to Top Button
   =============================================== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(250, 160, 60, 0.35);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(250, 160, 60, 0.45);
    background: linear-gradient(135deg, #FDA537 0%, #ffb84d 100%);
}

/* ===============================================
   Responsive Styles
   =============================================== */
@media (max-width: 1399px) {
    .navbar-nav {
        gap: 20px;
    }
}
@media (max-width: 1199px) {
    .navbar-nav {
        gap: 15px;
    }
    .hero-title {
        font-size: 46px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }

    .navbar-collapse {
        background: var(--bg-white);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        padding: 10px 0;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    #hero {
        padding: 130px 0 90px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .service-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Mobile */
    .testimonials-slider {
        padding: 10px 0 60px;
    }

    .testimonials-slider .swiper {
        padding: 10px 0 50px;
        overflow: hidden;
    }

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

    .testimonial-quote {
        font-size: 35px;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .testimonial-author img {
        width: 55px;
        height: 55px;
    }

    .author-info h5 {
        font-size: 15px;
    }

    .testimonials-slider .swiper-pagination {
        bottom: 5px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    #hero {
        padding: 120px 0 80px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-float {
        display: none;
    }

    .hero-decoration {
        display: none;
    }

    .stat-box {
        padding: 20px 15px;
    }

    .stat-box h4 {
        font-size: 28px;
    }
}

/* ===============================================
   Animation Classes
   =============================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

