/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}
body {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


.loader, .preloader, #loader, .loading {
    display: none !important;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background: #fff;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Styles */
.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 12px;
    color: #64748b;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-menu > li > a:hover {
    color: #2563eb;
}

/* Mega Menu Styles */
.mega-menu-trigger {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid #2563eb;
}

.mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Mega Menu Grid */
.mega-grid {
    display: grid;
    gap: 30px;
}

/* Services Mega Menu Grid */
.services-mega {
    grid-template-columns: 2.5fr 1.5fr 1.5fr;
}

/* Industries Mega Menu Grid */
.industries-mega {
    grid-template-columns: 2fr 1.5fr 1.5fr;
}

.mega-col-title {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-col-title i {
    color: #2563eb;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.service-item a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.service-item a:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.service-item i {
    font-size: 20px;
    color: #2563eb;
    min-width: 25px;
}

.service-info {
    display: flex;
    flex-direction: column;
}

.service-info strong {
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 4px;
}

.service-info span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Featured Service Column */
.service-featured {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.service-featured h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-featured h4 i {
    color: #fbbf24;
    margin-right: 8px;
}

.featured-service {
    text-align: center;
}

.featured-service i.fa-rocket {
    font-size: 48px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.featured-service h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.featured-service p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: #10b981;
    margin-right: 10px;
    font-size: 14px;
}

.btn-featured {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-featured:hover {
    background: #2563eb;
}

/* Service CTA Column */
.service-cta {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content {
    text-align: center;
}

.cta-content h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .stat strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.cta-stats .stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.industry-item a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.industry-item a:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.industry-item i {
    font-size: 20px;
    color: #2563eb;
    min-width: 25px;
}

.industry-info {
    display: flex;
    flex-direction: column;
}

.industry-info strong {
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 4px;
}

.industry-info span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Success Stories Column */
.success-stories {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.story-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.story-card h5 {
    color: #1e293b;
    margin: 8px 0 5px;
    font-size: 16px;
}

.story-card p {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 5px;
}

.story-card small {
    color: #94a3b8;
    font-size: 11px;
}

.industry-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.industry-tag.education { background: #8b5cf6; }
.industry-tag.healthcare { background: #ec4899; }
.industry-tag.ecommerce { background: #f59e0b; }
.industry-tag.finance { background: #10b981; }
.industry-tag.manufacturing { background: #6366f1; }

/* Industry CTA Column */
.industry-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-cta h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.industry-cta p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.industry-stats {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
}

.stat-circle {
    text-align: center;
}

.stat-circle strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #3b82f6;
}

.stat-circle span {
    font-size: 12px;
    color: #94a3b8;
}

/* View All Link */
.mega-view-all {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: gap 0.3s;
}

.mega-view-all:hover {
    gap: 12px;
}

/* CTA Button */
.btn-consult {
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-consult:hover {
    background: #1e40af;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section Styles (for home page) */
.hero {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Trust Badges Section */
.trust-badges {
    padding: 60px 20px;
    background: #f8fafc;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 36px;
    color: #2563eb;
    margin-bottom: 5px;
}

.stat-item span {
    color: #64748b;
    font-size: 14px;
}

/* Footer Styles */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: #2563eb;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-mega,
    .industries-mega {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-mega .mega-col:last-child,
    .industries-mega .mega-col:last-child {
        grid-column: span 2;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .services-mega,
    .industries-mega {
        grid-template-columns: 1fr;
    }
    
    .services-mega .mega-col:last-child,
    .industries-mega .mega-col:last-child {
        grid-column: span 1;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
.services-grid::-webkit-scrollbar,
.industries-grid::-webkit-scrollbar {
    width: 5px;
}

.services-grid::-webkit-scrollbar-track,
.industries-grid::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.services-grid::-webkit-scrollbar-thumb,
.industries-grid::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 10px;
}
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.slide-subtitle {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.slide-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.slide-stats .stat-item {
    text-align: center;
    color: white;
}

.slide-stats .stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.slide-stats .stat-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.3);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Trusted Companies Section */
.trusted-companies {
    padding: 40px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.trusted-text {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-item {
    color: #94a3b8;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.logo-item:hover {
    color: #2563eb;
}

/* Section Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title .highlight {
    color: #2563eb;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-features {
    margin: 30px 0;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.about-features .feature i {
    color: #10b981;
    font-size: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #2563eb;
    color: #2563eb;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.about-stats {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.stat-circle strong {
    display: block;
    font-size: 36px;
    color: #2563eb;
}

.stat-circle span {
    color: #64748b;
    font-size: 14px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(37,99,235,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: #2563eb;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 8px;
    color: #475569;
    font-size: 14px;
}

.service-features i {
    color: #10b981;
    margin-right: 8px;
    font-size: 12px;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.industry-card {
    background: #f8fafc;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
}

.industry-card:hover {
    background: #2563eb;
    transform: translateY(-5px);
}

.industry-card:hover i,
.industry-card:hover h3,
.industry-card:hover p {
    color: white;
}

.industry-card i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 15px;
}

.industry-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e293b;
}

.industry-card p {
    color: #64748b;
    font-size: 14px;
}

.industries-cta {
    text-align: center;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #f8fafc;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37,99,235,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.project-info p {
    color: #64748b;
    font-size: 14px;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-content i {
    color: #2563eb;
    font-size: 30px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong {
    display: block;
    color: #1e293b;
    margin-bottom: 5px;
}

.author-info span {
    color: #64748b;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.btn-outline-light {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: #2563eb;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cta-features i {
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 42px;
    }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-stats {
        gap: 20px;
    }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}
/* Slide Background Images */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

/* Company Logos */
.company-logos .logo-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.company-logos .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stats Image */
.stats-image {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Service Icons */
.service-icon img {
    width: 40px;
    height: 40px;
}

/* Industry Card Images */
.industry-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.industry-card:hover img {
    filter: brightness(0) invert(1);
}

/* Testimonial Author Images */
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Project Images */
.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}
/* Testimonials Section with Slider */
.testimonials-section {
    padding: 60px 0;
    background: #f8fafc;
}

.testimonials-slider-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 50px;
}

.testimonials-wrapper {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2563eb;
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info span {
    color: #64748b;
    font-size: 14px;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content i.fa-quote-left {
    color: #2563eb;
    font-size: 24px;
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial-content p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Slider Controls */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #2563eb;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 10;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #2563eb;
    color: white;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dots .dot.active {
    background: #2563eb;
    width: 25px;
    border-radius: 10px;
}

/* ========== FOOTER STYLES ========== */

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 60px 0;
    color: white;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 35px;
    background: white;
    color: #2563eb;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Main Footer */
.footer-main {
    background: #0f172a;
    color: white;
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.footer-logo .logo-tagline {
    font-size: 14px;
    color: #94a3b8;
}

.company-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 12px;
    color: #2563eb;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info li i {
    font-size: 20px;
    color: #2563eb;
    margin-top: 3px;
}

.contact-info li div {
    flex: 1;
}

.contact-info li strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-info li span {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info li a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s;
}

.contact-info li a:hover {
    color: #2563eb;
}

/* Bottom Footer */
.footer-bottom {
    background: #0a0f1a;
    padding: 20px 0;
    color: #64748b;
    border-top: 1px solid #1e293b;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #2563eb;
}

.credit i {
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(37,99,235,0.3);
    transition: all 0.3s;
}

.back-to-top:hover {
    background: #1e40af;
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
/* ========== RESPONSIVE STYLES ========== */

/* Tablet Landscape (992px and below) */
@media screen and (max-width: 992px) {
    /* Header */
    .nav-container {
        height: 70px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        width: 30px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: #2563eb;
        margin: 3px 0;
        transition: all 0.3s;
        border-radius: 3px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        display: flex;
        gap: 15px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 12px 0;
        border-bottom: 1px solid #e2e8f0;
        justify-content: space-between;
    }
    
    .mobile-cta {
        margin-top: 20px;
    }
    
    .mobile-cta .btn-consult {
        display: block;
        text-align: center;
        padding: 12px;
    }
    
    /* Mega Menu for Mobile */
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: #f8fafc;
        display: none;
    }
    
    .mega-menu-trigger.active .mega-menu {
        display: block;
    }
    
    .mega-menu-container {
        padding: 20px;
    }
    
    .services-mega,
    .industries-mega {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .industries-grid {
        max-height: none;
        overflow-y: visible;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Industries Grid */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Projects Grid */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: 100%;
    }
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 768px) {
    /* Hero Section */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Industries Grid */
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    /* Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-slider-container {
        padding: 0 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .testimonial-content i.fa-quote-left {
        position: relative;
        display: block;
        margin-bottom: 10px;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile Landscape (576px and below) */
@media screen and (max-width: 576px) {
    /* Header */
    .nav-menu {
        width: 100%;
        max-width: none;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* About Section */
    .about-stats {
        padding: 20px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-circle {
        text-align: center;
    }
    
    /* Projects Filter */
    .projects-filter {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .filter-btn {
        width: calc(50% - 5px);
        padding: 8px 15px;
        font-size: 14px;
    }
    
    /* Testimonials */
    .testimonials-slider-container {
        padding: 0 30px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Footer */
    .footer-newsletter {
        padding: 40px 0;
    }
    
    .newsletter-content h3 {
        font-size: 22px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
    
    .contact-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 35px;
        height: 35px;
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }
}

/* Small Mobile (400px and below) */
@media screen and (max-width: 400px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .project-info h3 {
        font-size: 16px;
    }
    
    .project-info p {
        font-size: 12px;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        padding: 15px;
    }
    
    .nav-menu > li > a {
        padding: 8px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 30px 15px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .footer-newsletter,
    .cta-section,
    .back-to-top,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
}

/* High Resolution Screens */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .author-info strong {
        font-size: 16px;
    }
}
/* ========== MOBILE MENU STYLES - ये जरूर डालें ========== */

/* Mobile Menu Toggle - हमेशा दिखेगा सिर्फ mobile पर */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 30px;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #2563eb;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-cta {
    display: block;
}

.mobile-cta {
    display: none;
}

/* ========== TABLET AND MOBILE STYLES ========== */
@media screen and (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;  /* जरूर दिखे */
    }
    
    .nav-cta {
        display: none !important;  /* Desktop CTA छुपाओ */
    }
    
    .mobile-cta {
        display: block !important;  /* Mobile CTA दिखाओ */
        margin-top: 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 5px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
        display: flex !important;  /* हमेशा flex में रहे */
    }
    
    .nav-menu.active {
        left: 0 !important;  /* Menu दिखे */
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 12px 15px !important;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e2e8f0;
        font-size: 16px;
    }
    
    /* Mega Menu Mobile Styles */
    .mega-menu-trigger {
        position: relative !important;
    }
    
    .mega-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-top: none !important;
        background: #f8fafc;
        display: none;
        margin-top: 5px;
    }
    
    .mega-menu-trigger.active .mega-menu {
        display: block !important;
    }
    
    .mega-menu-container {
        padding: 15px !important;
    }
    
    .services-mega,
    .industries-mega {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    
    .service-item a,
    .industry-item a {
        padding: 10px !important;
    }
    
    /* Body when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Small Mobile */
@media screen and (max-width: 576px) {
    .nav-menu {
        width: 100% !important;
        max-width: none;
    }
}

/* ===== SUCCESS POPUP STYLES ===== */
.success-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.success-popup {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s;
    position: relative;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-icon i {
    font-size: 40px;
    color: white;
}

.success-popup h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.success-popup p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 5px;
    line-height: 1.6;
}

.popup-small {
    font-size: 14px !important;
    color: #94a3b8 !important;
    margin-bottom: 25px !important;
}

.popup-btn {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .success-popup {
        padding: 30px 20px;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
    }
    
    .popup-icon i {
        font-size: 30px;
    }
    
    .success-popup h2 {
        font-size: 24px;
    }
    
    .success-popup p {
        font-size: 14px;
    }
}