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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Header */
.top-header {
    background: #ff6b35;
    color: white;
    padding: 4px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-hours, .contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Top Header */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .business-hours, .contact-info {
        font-size: 12px;
    }
    
    /* Fix Slider Arrows for Tablet */
    .slider-arrows {
        width: 100%;
    }
    
    .arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .arrow.left {
        left: 20px;
    }
    
    .arrow.right {
        right: 20px;
    }
    
    /* Fix Slider Arrows for Tablet */
    .slider-arrows {
        width: 100%;
    }
    
    .arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .arrow.left {
        left: 20px;
    }
    
    .arrow.right {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 5px 0;
        font-size: 12px;
    }
    
    .business-hours, .contact-info {
        font-size: 11px;
        gap: 5px;
    }
    
    /* Fix Slider Arrows for Mobile */
    .slider-arrows {
        width: 100%;
    }
    
    .arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .arrow.left {
        left: 15px;
    }
    
    .arrow.right {
        right: 15px;
    }
    
    /* Fix Slider Arrows for Mobile */
    .slider-arrows {
        width: 100%;
    }
    
    .arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .arrow.left {
        left: 15px;
    }
    
    .arrow.right {
        right: 15px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    /* Further reduce arrow size and positioning */
    .arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .arrow.left {
        left: 10px;
    }
    
    .arrow.right {
        right: 10px;
    }
    
    /* Further reduce arrow size and positioning */
    .arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .arrow.left {
        left: 10px;
    }
    
    .arrow.right {
        right: 10px;
    }
}

/* Additional Mobile Arrow Fixes - Ensure arrows never overlap text */
@media (max-width: 768px) {
    .slider-arrows {
        z-index: 25;
    }
    
    .arrow {
        z-index: 30;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Main Navigation */
.main-nav {
    background: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.logo-text h1 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.logo-text p {
    color: white;
    font-size: 12px;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff6b35;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6b35;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px 6px;
    background: #ff6b35;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: absolute;
    top: 12px;
    right: 15px;
    z-index: 1001;
    border: 1px solid #ff6b35;
}

.hamburger:hover {
    background: #ff7f50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: #fff;
    margin: 2px 0;
    transition: 0.3s ease;
    border-radius: 1px;
    display: block;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .main-nav .container {
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Mobile dropdown menu under header instead of full-screen panel */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 10px 0;
        padding-left: 16px; /* small left indent */
        padding-right: 16px;
        display: none;
        z-index: 1000;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { display: flex; }
    
    .nav-links li {
        margin: 10px 0; /* tighter spacing */
        width: 100%;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 12px 16px;
        display: block;
        width: 100%;
        text-align: left;
        color: #fff;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .nav-links a.active::after {
        display: none;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 107, 53, 0.15);
        color: #ff6b35;
        border-radius: 6px;
    }
    
    /* Hamburger Animation */
    .hamburger.active {
        background: #ff6b35;
        border-color: #ff6b35;
    }
    
    .hamburger.active span {
        background: white;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px);
    }
    
    /* Logo adjustments for mobile */
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 85%;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 9px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .nav-links a {
        font-size: 16px;
        padding: 12px 15px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 25%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.7) 75%, rgba(83, 52, 131, 0.8) 100%);
    z-index: 2;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-description {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    animation: floatShape 20s linear infinite;
    filter: blur(1px);
}

.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-duration: 35s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced slide transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInScale 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 15;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #ff6b35;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
}

.arrow:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 25%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.7) 75%, rgba(83, 52, 131, 0.8) 100%);
    z-index: 2;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-description {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    animation: floatShape 20s linear infinite;
    filter: blur(1px);
}

.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-duration: 35s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced slide transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInScale 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 15;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #ff6b35;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
}

.arrow:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 25%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.7) 75%, rgba(83, 52, 131, 0.8) 100%);
    z-index: 2;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-description {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    animation: floatShape 20s linear infinite;
    filter: blur(1px);
}

.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-duration: 35s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced slide transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInScale 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 15;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #ff6b35;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
}

.arrow:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 25%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.7) 75%, rgba(83, 52, 131, 0.8) 100%);
    z-index: 2;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-description {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    animation: floatShape 20s linear infinite;
    filter: blur(1px);
}

.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-duration: 35s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced slide transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInScale 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 15;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #ff6b35;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
}

.arrow:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 25%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.7) 75%, rgba(83, 52, 131, 0.8) 100%);
    z-index: 2;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-description {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    animation: floatShape 20s linear infinite;
    filter: blur(1px);
}

.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-duration: 35s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced slide transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInScale 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 15;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #ff6b35;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
}

.arrow:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 25%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.7) 75%, rgba(83, 52, 131, 0.8) 100%);
    z-index: 2;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-description {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    animation: floatShape 20s linear infinite;
    filter: blur(1px);
}

.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-duration: 35s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced slide transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInScale 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 15;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #ff6b35;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
}

.arrow:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.7) 25%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.7) 75%, rgba(83, 52, 131, 0.8) 100%);
    z-index: 2;
}

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

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content {
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-title {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-description {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-content h2 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInUp 1s ease-out;
}

.hero-content h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    animation: floatShape 20s linear infinite;
    filter: blur(1px);
}

.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.3));
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-duration: 35s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced slide transitions */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInScale 0.8s ease-out;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 15;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.slider-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #ff6b35;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 20;
}

.arrow:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

/* Services Section - Enhanced with Amazing Animations */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff7f0 50%, #ffeddc 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4, #10b981);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.6;
    filter: blur(1px);
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-duration: 20s; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; right: 15%; animation-duration: 25s; animation-delay: 3s; }
.particle:nth-child(3) { top: 80%; left: 20%; animation-duration: 18s; animation-delay: 6s; }
.particle:nth-child(4) { top: 30%; right: 30%; animation-duration: 22s; animation-delay: 9s; }
.particle:nth-child(5) { top: 70%; left: 60%; animation-duration: 19s; animation-delay: 12s; }
.particle:nth-child(6) { top: 40%; right: 60%; animation-duration: 24s; animation-delay: 15s; }

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.title-text {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: underlineExpand 2s ease-out;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.8)); }
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 120px; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: cardFloat 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

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

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

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    animation: borderGlow 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-glow {
    opacity: 0.8;
    animation: borderGlow 1s ease-in-out infinite;
}

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

.service-icon {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.service-content {
    text-align: center;
    margin-top: 40px;
}

.service-title {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 0.8s ease-out 0.3s both;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
    animation: contentSlideIn 0.8s ease-out 0.4s both;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: contentSlideIn 0.8s ease-out 0.5s both;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(255, 140, 66, 0.06));
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 140, 66, 0.12));
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.service-features i {
    color: #ff6b35;
    font-size: 18px;
    animation: checkBounce 0.6s ease-out 0.6s both;
}

.service-features span {
    color: #475569;
    font-weight: 500;
}

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

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

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

.bbps-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.bbps-logo {
    position: relative;
    z-index: 2;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.utility-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateIcons 20s linear infinite;
    z-index: 1;
}

.icon-item {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: iconBounce 2s ease-in-out infinite;
    z-index: 2;
}

.icon-item:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.icon-item:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.icon-item:nth-child(2) { top: 20%; right: -5px; animation-delay: 0.3s; }
.icon-item:nth-child(3) { bottom: 20%; right: -5px; animation-delay: 0.6s; }
.icon-item:nth-child(4) { bottom: -5px; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; }
.icon-item:nth-child(5) { bottom: 20%; left: -5px; animation-delay: 1.2s; }
.icon-item:nth-child(6) { top: 20%; left: -5px; animation-delay: 1.5s; }

.rotating-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px dashed rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: rotateRing 15s linear infinite;
    z-index: 0;
}

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

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

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

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

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

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

.bbps-logo {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

/* Removed conflicting utility-icons styles that were overriding BBPS icon positioning */

.recharge-icon {
    width: 120px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.phone-container {
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 70px;
    height: 100px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 15px 15px 0 0;
}

.phone-screen i {
    font-size: 32px;
    color: #ff6b35;
    margin-top: 25px;
    animation: phoneGlow 2s ease-in-out infinite;
}

.success-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
}

.success-indicator i {
    font-size: 20px;
    margin: 0;
    animation: successPulse 1.5s ease-in-out infinite;
}

.phone-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.provider-item {
    padding: 4px 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 15px;
    font-size: 8px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    animation: providerFloat 2s ease-in-out infinite;
}

.provider-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.5);
}

.provider-item:nth-child(1) { animation-delay: 0s; }
.provider-item:nth-child(2) { animation-delay: 0.2s; }
.provider-item:nth-child(3) { animation-delay: 0.4s; }
.provider-item:nth-child(4) { animation-delay: 0.6s; }
.provider-item:nth-child(5) { animation-delay: 0.8s; }

.signal-waves {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wave {
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    animation: waveExpand 1.5s ease-in-out infinite;
}

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

@keyframes phoneGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8)); }
}

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

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

@keyframes waveExpand {
    0%, 100% { width: 20px; opacity: 0.6; }
    50% { width: 30px; opacity: 1; }
}

.payrent-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.house-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.house {
    position: relative;
    z-index: 2;
}

.house i {
    font-size: 50px;
    color: #ff6b35;
    animation: houseGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.4));
}

.house-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.money-hand {
    position: relative;
    z-index: 2;
}

.money-hand i {
    font-size: 40px;
    color: #ff6b35;
    animation: moneyGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.4));
}

.money-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffb072);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite;
}

.payment-indicators {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.indicator {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: indicatorFloat 2s ease-in-out infinite;
}

.indicator:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.indicator.credit-card { animation-delay: 0s; }
.indicator.bank { animation-delay: 0.3s; }
.indicator.secure { animation-delay: 0.6s; }

@keyframes houseGlow {
    0%, 100% { filter: drop-shadow(0 5px 15px rgba(220, 53, 69, 0.4)); }
    50% { filter: drop-shadow(0 8px 25px rgba(220, 53, 69, 0.6)); }
}

@keyframes moneyGlow {
    0%, 100% { filter: drop-shadow(0 5px 15px rgba(16, 185, 129, 0.4)); }
    50% { filter: drop-shadow(0 8px 25px rgba(16, 185, 129, 0.6)); }
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); }
}

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

/* Fastag Icon Styles */
.fastag-icon {
    width: 120px;
    height: 160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

.fastag-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.fastag-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(255, 107, 53, 0.5));
}

.car-wheels {
    position: absolute;
    bottom: -8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: #000000;
    border-radius: 50%;
    border: 2px solid #333;
}

.car-wheels::after {
    content: '';
    position: absolute;
    top: 0;
    right: 28px;
    width: 12px;
    height: 12px;
    background: #000000;
    border-radius: 50%;
    border: 2px solid #333;
}

.barrier {
    position: relative;
    z-index: 2;
}

.barrier-post {
    width: 8px;
    height: 40px;
    background: #ffff00;
    border-radius: 4px;
    border: 2px solid #000;
    position: relative;
}

.barrier-arm {
    position: absolute;
    top: -5px;
    left: -15px;
    width: 50px;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        #ff0000,
        #ff0000 5px,
        #ffffff 5px,
        #ffffff 10px
    );
    border-radius: 4px;
    border: 2px solid #000;
    transform: rotate(-15deg);
    transform-origin: right center;
    animation: barrierSwing 3s ease-in-out infinite;
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.method-item {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: methodFloat 2s ease-in-out infinite;
}

.method-item:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.method-item:nth-child(1) { animation-delay: 0s; }
.method-item:nth-child(2) { animation-delay: 0.2s; }
.method-item:nth-child(3) { animation-delay: 0.4s; }
.method-item:nth-child(4) { animation-delay: 0.6s; }

/* Fastag Icon Keyframes */
@keyframes carFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes barrierSwing {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(5deg); }
}

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

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    opacity: 0.6;
    animation: cornerPulse 3s ease-in-out infinite;
}

.corner-accent.top-left {
    top: 15px;
    left: 15px;
    animation-delay: 0s;
}

.corner-accent.top-right {
    top: 15px;
    right: 15px;
    animation-delay: 0.5s;
}

.corner-accent.bottom-left {
    bottom: 15px;
    left: 15px;
    animation-delay: 1s;
}

.corner-accent.bottom-right {
    bottom: 15px;
    right: 15px;
    animation-delay: 1.5s;
}

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

/* Statistics Section - Enhanced Eye-catching Design */
.stats {
    background: linear-gradient(135deg, #ffffff 0%, #fff7f0 50%, #ffeddc 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    animation: statSlideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ffb072, #ff6b35);
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
    opacity: 0.8;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.stat-item:hover::before {
    animation: borderGlow 1s ease-in-out infinite;
}

.stat-number {
    font-size: 60px;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.counter {
    animation: numberPulse 2s ease-in-out infinite;
}

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

.plus {
    font-size: 40px;
    color: #ff8c42;
    animation: plusFloat 3s ease-in-out infinite;
}

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

.stat-label {
    font-size: 20px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    animation: labelUnderline 2s ease-in-out infinite;
}

@keyframes labelUnderline {
    0%, 100% { width: 40px; }
    50% { width: 60px; }
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 140, 66, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(255, 140, 66, 0.18));
    border-color: rgba(255, 107, 53, 0.6);
    transform: scale(1.05) rotate(3deg);
}

.stat-icon i {
    font-size: 28px;
    color: #ff6b35;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(2deg); }
    66% { transform: translateY(8px) rotate(-2deg); }
}

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

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-duration: 25s;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    top: 30%;
    right: 30%;
    animation-duration: 22s;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-duration: 19s;
    animation-delay: 12s;
}

.particle:nth-child(6) {
    top: 40%;
    right: 60%;
    animation-duration: 24s;
    animation-delay: 15s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced hover effects for stat items */
.stat-item:hover .stat-number {
    animation: numberBounce 0.6s ease-out;
}

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

.stat-item:hover .stat-label {
    color: #ff6b35;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsive Design for Stats */
@media (max-width: 768px) {
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        padding: 40px 25px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .plus {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 40px 0;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .plus {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
}

/* About Section - Now Eye-catching with Image */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-text h3 {
    color: #ff6b35;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInLeft 1s ease-out;
}

.about-text h2 {
    color: #333;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.about-text p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.about-features {
    margin-top: 40px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 140, 66, 0.15));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-item i {
    color: #ff6b35;
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

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

.feature-item span {
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.about-image {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out 0.3s both;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 400% 400%;
    animation: borderGlow 3s ease-in-out infinite;
}

.about-img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 35px 100px rgba(255, 107, 53, 0.3);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-card:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.overlay-card:nth-child(2) {
    bottom: 20px;
    left: 20px;
    animation-delay: 1.5s;
}

.overlay-card i {
    color: #ff6b35;
    font-size: 20px;
}

.overlay-card span {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

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

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

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .arrow.left {
        left: 20px;
    }
    
    .arrow.right {
        right: 20px;
    }

    .slide-heading {
        font-size: 42px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-description {
        font-size: 18px;
    }

    .slider-nav {
        bottom: 30px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .title-text {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .title-underline {
        width: 100px;
        margin: 20px auto 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 35px 25px;
        min-height: auto;
        margin-bottom: 0;
    }
    
    .service-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .service-features li {
        padding: 12px 18px;
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .service-features i {
        font-size: 18px;
    }
    
    .bbps-icon {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }
    
    .bbps-icon .icon-item {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .bbps-icon .icon-item:nth-child(1) { top: -20px; }
    .bbps-icon .icon-item:nth-child(2) { top: 15%; right: -20px; }
    .bbps-icon .icon-item:nth-child(3) { bottom: 15%; right: -20px; }
    .bbps-icon .icon-item:nth-child(4) { bottom: -20px; }
    .bbps-icon .icon-item:nth-child(5) { bottom: 15%; left: -20px; }
    .bbps-icon .icon-item:nth-child(6) { top: 15%; left: -20px; }
    
    .bbps-icon .rotating-ring {
        top: -25px;
        left: -25px;
        right: -25px;
        bottom: -25px;
    }
    
    .payrent-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .recharge-icon {
        width: 120px;
        height: 160px;
        margin-bottom: 20px;
    }
    
    .fastag-icon {
        width: 120px;
        height: 160px;
        margin-bottom: 40px;
    }
    
    .car-body {
        width: 50px;
        height: 35px;
    }
    
    .car-roof {
        width: 35px;
        height: 12px;
        left: 8px;
    }
    
    .barrier-arm {
        width: 45px;
        height: 6px;
    }
    
    .method-item {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .phone-screen {
        width: 80px;
        height: 110px;
    }
    
    .phone-screen i {
        font-size: 28px;
        margin-top: 30px;
    }
    
    .success-indicator {
        font-size: 14px;
        margin-top: 10px;
    }
    
    .success-indicator i {
        font-size: 24px;
    }
    
    .house i {
        font-size: 45px;
    }
    
    .money-hand i {
        font-size: 35px;
    }
    
    .provider-logos {
        margin-top: 15px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .provider-item {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 12px;
    }
    
    .payment-indicators {
        gap: 15px;
        margin-top: 20px;
        justify-content: center;
    }
    
    .indicator {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .connection-line {
        width: 70px;
    }
    
    .house-container {
        gap: 15px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .about-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about-text h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .about-image {
        height: 300px;
        order: 1;
    }
    
    .feature-item {
        justify-content: center;
        padding: 15px 20px;
        margin-bottom: 15px;
    }
    
    .feature-item i {
        font-size: 20px;
    }
    
    .feature-item span {
        font-size: 15px;
    }
    
    .overlay-card {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .overlay-card i {
        font-size: 16px;
    }
    
    /* Partners Section Responsive */
    .partners {
        padding: 60px 0 !important;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }
    
    .partner-card {
        padding: 25px 15px !important;
    }
    
    .partner-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    .section-title .title-text {
        font-size: 36px !important;
    }
    
    .title-underline {
        width: 100px !important;
    }
}

/* Medium Tablet Responsive (1024px) */
@media (max-width: 1024px) {
    .partners {
        padding: 70px 0 !important;
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px !important;
        padding: 0 25px !important;
    }
    
    .partner-card {
        padding: 28px 18px !important;
    }
    
    .partner-image {
        width: 100px !important;
        height: 100px !important;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
    
    .title-text {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .title-underline {
        width: 80px;
        margin: 15px auto 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 0;
    }
    
    .service-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .service-features li {
        padding: 10px 15px;
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .service-features i {
        font-size: 16px;
    }
    
    .bbps-icon {
        width: 140px;
        height: 140px;
        margin-bottom: 15px;
    }
    
    .bbps-icon .icon-item {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .bbps-icon .icon-item:nth-child(1) { top: -18px; }
    .bbps-icon .icon-item:nth-child(2) { top: 12%; right: -18px; }
    .bbps-icon .icon-item:nth-child(3) { bottom: 12%; right: -18px; }
    .bbps-icon .icon-item:nth-child(4) { bottom: -18px; }
    .bbps-icon .icon-item:nth-child(5) { bottom: 12%; left: -18px; }
    .bbps-icon .icon-item:nth-child(6) { top: 12%; left: -18px; }
    
    .bbps-icon .rotating-ring {
        top: -22px;
        left: -22px;
        right: -22px;
        bottom: -22px;
    }
    
    .payrent-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .recharge-icon {
        width: 100px;
        height: 140px;
        margin-bottom: 15px;
    }
    
    .fastag-icon {
        width: 100px;
        height: 160px;
        margin-bottom: 15px;
    }
    
    .car-body {
        width: 45px;
        height: 30px;
    }
    
    .car-roof {
        width: 30px;
        height: 10px;
        left: 7px;
    }
    
    .barrier-arm {
        width: 40px;
        height: 5px;
    }
    
    .method-item {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }
    
    .phone-screen {
        width: 65px;
        height: 90px;
    }
    
    .phone-screen i {
        font-size: 24px;
        margin-top: 25px;
    }
    
    .success-indicator {
        font-size: 12px;
        margin-top: 8px;
    }
    
    .success-indicator i {
        font-size: 20px;
    }
    
    .house i {
        font-size: 35px;
    }
    
    .money-hand i {
        font-size: 28px;
    }
    
    .provider-logos {
        margin-top: 12px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .provider-item {
        padding: 4px 8px;
        font-size: 8px;
        border-radius: 10px;
    }
    
    .payment-indicators {
        gap: 12px;
        margin-top: 15px;
        justify-content: center;
    }
    
    .indicator {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .connection-line {
        width: 60px;
    }
    
    .house-container {
        gap: 12px;
    }
    
    .about {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .about-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .about-text h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .about-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .about-image {
        height: 250px;
        order: 1;
    }
    
    .feature-item {
        justify-content: center;
        padding: 12px 15px;
        margin-bottom: 12px;
    }
    
    .feature-item i {
        font-size: 18px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .overlay-card {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .overlay-card i {
        font-size: 14px;
    }
    
    /* Partners Section Responsive */
    .partners {
        padding: 40px 0 !important;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .partner-card {
        padding: 20px 15px !important;
    }
    
    .partner-image {
        width: 70px !important;
        height: 70px !important;
    }
    
    .section-title .title-text {
        font-size: 28px !important;
    }
    
    .title-underline {
        width: 80px !important;
    }
}

/* Small Mobile Responsive (360px) */
@media (max-width: 360px) {
    .partners {
        padding: 30px 0 !important;
    }
    
    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .partner-card {
        padding: 18px 12px !important;
    }
    
    .partner-image {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Our Partners Section */
.partners {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure responsive overrides work */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 360px) {
    .partners-grid {
        grid-template-columns: 1fr !important;
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: partnerSlideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }

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

.partner-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ffb072, #ff6b35);
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.partner-card:hover::before {
    opacity: 0.8;
    animation: borderGlow 1s ease-in-out infinite;
}

.partner-logo {
    margin-bottom: 20px;
    position: relative;
}

.partner-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Ensure responsive image sizes work */
@media (max-width: 1024px) {
    .partner-image {
        width: 100px !important;
        height: 100px !important;
    }
}

@media (max-width: 768px) {
    .partner-image {
        width: 80px !important;
        height: 80px !important;
    }
}

@media (max-width: 480px) {
    .partner-image {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 360px) {
    .partner-image {
        width: 60px !important;
        height: 60px !important;
    }
}

.partner-image {
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.partner-card:hover .partner-image {
    filter: brightness(1.3) contrast(1.2) saturate(1.4);
    transform: scale(1.15);
}



.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.partners-background .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 20s linear infinite;
}

.partners-background .particle:nth-child(1) { top: 20%; left: 10%; animation-duration: 15s; animation-delay: 0s; }
.partners-background .particle:nth-child(2) { top: 60%; right: 20%; animation-duration: 18s; animation-delay: 3s; }
.partners-background .particle:nth-child(3) { bottom: 30%; left: 30%; animation-duration: 22s; animation-delay: 6s; }
.partners-background .particle:nth-child(4) { top: 40%; right: 60%; animation-duration: 16s; animation-delay: 9s; }
.partners-background .particle:nth-child(5) { bottom: 60%; left: 70%; animation-duration: 19s; animation-delay: 12s; }
.partners-background .particle:nth-child(6) { top: 80%; right: 80%; animation-duration: 24s; animation-delay: 15s; }

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ff6b35;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.footer-logo .logo-text h3 {
    color: white;
    font-size: 24px;
    margin: 0;
}

.footer-logo .logo-text p {
    color: #ccc;
    font-size: 12px;
    margin: 0;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item i {
    color: #ff6b35;
    width: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Mobile: ensure Recharge card is visible like desktop */
@media (max-width: 768px) {
	.services .services-grid .service-card:nth-child(2) {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}
}

/* Mobile: ensure Recharge label fits inside phone screen */
@media (max-width: 480px) {
    .recharge-icon .phone-screen {
        height: 110px !important;
        gap: 8px;
    }
    .recharge-icon .phone-screen i {
        margin-top: 18px !important;
    }
    .recharge-icon .success-indicator {
        font-size: 12px !important;
        gap: 4px;
        line-height: 1.1;
    }
}

/* Even spacing for BBPS icons at all sizes; avoid transform conflicts */
.services .service-card .bbps-icon .utility-icons { animation: rotateIcons 20s linear infinite; }
.services .service-card .bbps-icon .icon-item {
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	right: auto !important;
	bottom: auto !important;
	margin: -17.5px 0 0 -17.5px; /* center 35x35 icon */
	animation: none !important; /* prevent bounce overriding transform */
}
.services .service-card .bbps-icon .icon-item:nth-child(1) { transform: rotate(0deg) translate(62px) rotate(0deg); }
.services .service-card .bbps-icon .icon-item:nth-child(2) { transform: rotate(60deg) translate(62px) rotate(-60deg); }
.services .service-card .bbps-icon .icon-item:nth-child(3) { transform: rotate(120deg) translate(62px) rotate(-120deg); }
.services .service-card .bbps-icon .icon-item:nth-child(4) { transform: rotate(180deg) translate(62px) rotate(-180deg); }
.services .service-card .bbps-icon .icon-item:nth-child(5) { transform: rotate(240deg) translate(62px) rotate(-240deg); }
.services .service-card .bbps-icon .icon-item:nth-child(6) { transform: rotate(300deg) translate(62px) rotate(-300deg); }

/* Mobile: match desktop even spacing (scaled) */
@media (max-width: 480px) {
	.services .service-card .bbps-icon .utility-icons { animation: rotateIcons 20s linear infinite; }
	.services .service-card .bbps-icon .icon-item {
		width: 24px !important;
		height: 24px !important;
		font-size: 11px !important;
		margin: -12px 0 0 -12px !important; /* center 24x24 */
		animation: none !important;
		top: 50% !important;
		left: 50% !important;
		right: auto !important;
		bottom: auto !important;
	}
	/* Equal 60deg steps, radius tuned for small screens */
	.services .service-card .bbps-icon .icon-item:nth-child(1) { transform: rotate(0deg) translate(52px) rotate(0deg); }
	.services .service-card .bbps-icon .icon-item:nth-child(2) { transform: rotate(60deg) translate(52px) rotate(-60deg); }
	.services .service-card .bbps-icon .icon-item:nth-child(3) { transform: rotate(120deg) translate(52px) rotate(-120deg); }
	.services .service-card .bbps-icon .icon-item:nth-child(4) { transform: rotate(180deg) translate(52px) rotate(-180deg); }
	.services .service-card .bbps-icon .icon-item:nth-child(5) { transform: rotate(240deg) translate(52px) rotate(-240deg); }
	.services .service-card .bbps-icon .icon-item:nth-child(6) { transform: rotate(300deg) translate(52px) rotate(-300deg); }
}

/* Force BBPS icons to match desktop layout on all viewports */
.services .service-card .bbps-icon .icon-item {
	position: absolute !important;
	width: 35px !important;
	height: 35px !important;
	font-size: 16px !important;
	margin: 0 !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	animation: iconBounce 2s ease-in-out infinite !important;
	transform: none !important;
}
.services .service-card .bbps-icon .icon-item:nth-child(1) { top: -5px !important; left: 50% !important; transform: translateX(-50%) !important; }
.services .service-card .bbps-icon .icon-item:nth-child(2) { top: 20% !important; right: -5px !important; transform: none !important; }
.services .service-card .bbps-icon .icon-item:nth-child(3) { bottom: 20% !important; right: -5px !important; transform: none !important; }
.services .service-card .bbps-icon .icon-item:nth-child(4) { bottom: -5px !important; left: 50% !important; transform: translateX(-50%) !important; }
.services .service-card .bbps-icon .icon-item:nth-child(5) { bottom: 20% !important; left: -5px !important; transform: none !important; }
.services .service-card .bbps-icon .icon-item:nth-child(6) { top: 20% !important; left: -5px !important; transform: none !important; }

/* Mobile: ensure Recharge text is visible inside phone screen (no other changes) */
@media (max-width: 768px) {
	.services .services-grid .service-card:nth-child(2) .phone-screen { height: 120px !important; }
	.services .services-grid .service-card:nth-child(2) .phone-screen i { margin-top: 12px !important; }
	.services .services-grid .service-card:nth-child(2) .success-indicator { display: flex !important; opacity: 1 !important; }
	.services .services-grid .service-card:nth-child(2) .success-indicator span { display: block !important; }
}

/* Desktop: ensure Recharge label fully visible like design */
@media (min-width: 769px) {
	.services .services-grid .service-card:nth-child(2) .phone-screen {
		height: 130px; /* more room for label */
	}
	.services .services-grid .service-card:nth-child(2) .phone-screen i {
		margin-top: 10px; /* reduce push-down */
	}
}