:root {
    --primary: #2962ff;
    --primary-light: rgba(41, 98, 255, 0.1);
    --primary-dark: #0039cb;
    --success: #2dd4bf;
    --success-light: rgba(45, 212, 191, 0.1);
    --info: #38bdf8;
    --info-light: rgba(56, 189, 248, 0.1);
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.1);
    --danger: #ef4444;
    --danger-light: rgba(239, 68, 68, 0.1);
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    display: flex;
    flex-wrap: wrap;
    width: 60px;
    height: 60px;
}

.loader-square {
    width: 25px;
    height: 25px;
    margin: 2px;
    background-color: var(--primary);
    animation: loaderAnim 1.5s infinite ease-in-out;
}

.loader-square:nth-child(1) { animation-delay: 0.1s; }
.loader-square:nth-child(2) { animation-delay: 0.2s; }
.loader-square:nth-child(3) { animation-delay: 0.3s; }
.loader-square:nth-child(4) { animation-delay: 0.4s; }
.loader-square:nth-child(5) { animation-delay: 0.5s; }
.loader-square:nth-child(6) { animation-delay: 0.6s; }
.loader-square:nth-child(7) { animation-delay: 0.7s; }

@keyframes loaderAnim {
    0%, 70%, 100% { transform: scale(1); }
    35% { transform: scale(0); }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    background: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(33, 37, 41, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

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

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: calc(100% - 30px);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: #fff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 71% 77%, #2962ff 0, transparent 50%),
        radial-gradient(at 36% 47%, #2dd4bf 0, transparent 50%),
        radial-gradient(at 54% 29%, #8923e1 0, transparent 50%),
        radial-gradient(at 45% 51%, #212529 0, transparent 50%);
    background-blend-mode: screen;
    opacity: 0.15;
    z-index: 1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating 3D Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--success);
    bottom: -30px;
    right: -30px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #8923e1;
    top: 50%;
    right: 20%;
    animation: float 5s ease-in-out infinite 2s;
}

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

.hero-illustration {
    position: relative;
    perspective: 1000px;
}

.hero-illustration img.floating {
    animation: float 6s ease-in-out infinite, rotate 20s linear infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.wheel {
    width: 6px;
    height: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 3px;
    margin-top: 5px;
    animation: scroll-wheel 2s ease infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

.arrows {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
    margin: 0 3px;
    animation: scroll-arrow 2s ease infinite;
}

.arrow:nth-child(1) { animation-delay: 0.1s; }
.arrow:nth-child(2) { animation-delay: 0.2s; }
.arrow:nth-child(3) { animation-delay: 0.3s; }

@keyframes scroll-arrow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Advanced Button Effects */
.btn-hover-transform {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 1;
    border: none;
}

.btn-hover-transform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

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

.btn-hover-transform:hover::before {
    transform: translateY(0);
}

.btn-hover-border {
    position: relative;
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 1;
}

.btn-hover-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hover-border:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(41, 98, 255, 0.2);
    background: transparent;
    color: white;
}

.btn-hover-border:hover::before {
    opacity: 1;
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 10px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41,98,255,0.1) 0%, rgba(45,212,191,0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card .card-body {
    position: relative;
    z-index: 2;
    background: white;
    transition: all 0.3s ease;
}

.service-card:hover .card-body {
    transform: translateY(-10px);
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Feature Items */
.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Stats Card */
.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-item {
    text-align: center;
    min-width: 80px;
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-slider .slick-dots {
    bottom: -50px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary);
}

.testimonial-item {
    padding: 0 15px;
    outline: none;
}

.testimonial-item .card {
    transition: transform 0.3s ease;
}

.testimonial-item.slick-center .card {
    transform: scale(1.05);
}

/* Industry Cards */
.industry-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.industry-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Contact Form */
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.form-floating label {
    color: var(--gray);
}

.form-control {
    border-color: #e0e0e0;
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(41, 98, 255, 0.1);
    border-color: var(--primary);
}

textarea.form-control {
    height: auto !important;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

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

/* Badges */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 15px;
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-success-light {
    background-color: var(--success-light);
}

.bg-info-light {
    background-color: var(--info-light);
}

.bg-warning-light {
    background-color: var(--warning-light);
}

.bg-danger-light {
    background-color: var(--danger-light);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .stats-card {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .hero-illustration {
        margin-top: 50px;
    }
    
    .industry-card {
        margin-bottom: 20px;
    }
}
.fa-whatsapp:before {
    content: "\f232";
    color: #fff;
}
.icon-box {
    font-size:30px !important;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgb(75, 206, 227) !important;
}
.btn{
    background-color: rgb(75, 206, 227) !important;
    border: 1px solid #fff !important;
  color: #fff !important;
}