/* 
=======================================================
iEnigma Website Styles
=======================================================
*/

/* ======= Development Notice Banner ======= */
.dev-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #4e73df, #224abe);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.dev-notice p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
}

.dev-notice strong {
    font-size: 20px;
    font-weight: 600;
}

.dev-notice a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dev-notice a:hover {
    color: #f8f9fc;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.close-notice {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
}

.close-notice:hover {
    color: #f8f9fc;
}

/* Adjust header for banner */
body.banner-visible .navbar {
    margin-top: 52px;
}

body.banner-visible .site-loader {
    top: 52px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .dev-notice p {
        font-size: 16px;
    }
    
    .dev-notice strong {
        font-size: 18px;
    }
}

/* ======= Base Styles ======= */
:root {
    --primary-color: #4e73df;
    --secondary-color: #1cc88a;
    --accent-color: #7367f0;
    --dark-color: #2e384d;
    --darker-color: #151921;
    --light-color: #f8f9fc;
    --text-color: #333;
    --white: #ffffff;
    --black: #000000;
    --gray: #a0a0a0;
    --light-gray: #2a2f3b;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --glow-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--darker-color);
    font-size: 16px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--secondary-color);
}

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

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

section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: #4066c9;
    border-color: #4066c9;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: var(--transition);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Text visibility improvements */
.text-light, .text-white {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

.text-white {
    color: #ffffff !important;
}

.card-title {
    font-weight: 600 !important;
    color: #ffffff !important;
}

.card-text, .benefit-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

strong {
    font-weight: 600;
    color: #ffffff;
}

/* Improve visibility for darker backgrounds */
.app-features-section p,
.how-it-works p,
.use-cases p,
.intro-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Feature card text */
.feature-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Pricing features text */
.pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

/* Heading improvements */
.intro-card h3,
.feature-card h3,
.pricing-card h3 {
    font-weight: 600;
}

/* ======= Header ======= */
.header {
    background-color: transparent;
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(21, 25, 33, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background-color: rgba(21, 25, 33, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

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

.logo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(0, 153, 255, 0.6));
    animation: logoFade 3s infinite alternate;
    transition: all 0.3s ease;
}

@keyframes logoFade {
    0% {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px rgba(0, 153, 255, 0.4));
    }
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(0, 153, 255, 0.8));
    }
}

.slogan {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 8px 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.navbar-nav .nav-link:hover::after, 
.navbar-nav .nav-link.active::after {
    width: 70%;
    left: 15%;
}

.navbar.sticky .nav-link {
    color: var(--dark-color);
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px;
}

.dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 5px;
}

.dropdown-item:hover, 
.dropdown-item.active {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* ======= Hero Section ======= */
.hero-section {
    background: linear-gradient(135deg, #151921 0%, #1e2330 100%);
    padding: 160px 0 100px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 153, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(28, 200, 138, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-section h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(to right, #0099ff, #1cc88a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 153, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 153, 255, 0.6);
    }
}

.hero-section .lead {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transition: 0.5s;
    z-index: -1;
}

.hero-buttons .btn-primary:hover::before {
    left: 0;
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.hero-image {
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.3));
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    75% {
        transform: translateY(20px) rotate(-2deg);
    }
}

/* Add tech particles animation */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.tech-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 153, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(28, 200, 138, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    animation: particleAnimation 20s linear infinite;
}

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

/* ======= About Section ======= */
.about-section {
    background-color: #1a1f2b;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 153, 255, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(28, 200, 138, 0.03) 0%, transparent 25%);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 20, 40, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 20, 40, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.section-header h2 {
    color: #fff;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.about-content h3 {
    color: #0099ff;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Circuit decoration for about image */
.about-image {
    position: relative;
    border: 2px solid rgba(0, 153, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px solid rgba(0, 153, 255, 0.1);
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), transparent);
}

/* Statistics styling */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 0 0 50%;
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.2), transparent);
    bottom: 0;
    left: 10%;
}

.stat-item h4 {
    color: #0099ff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 153, 255, 0.3);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 0;
}

/* ======= Services Section ======= */
.services-section {
    background-color: #101319;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 153, 255, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.services-section .section-header h2,
.services-section .section-header p {
    position: relative;
    z-index: 1;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    color: #1a2334;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .read-more {
    color: #0099ff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card .read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-card .read-more:hover {
    color: #007acc;
}

.service-card .read-more:hover i {
    transform: translateX(5px);
}

.icon-container {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #0066cc, #0099ff);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.5);
    position: relative;
}

.icon-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(0, 153, 255, 0.3);
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    animation: pulseRing 3s linear infinite;
}

.icon-container i {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* ======= Why Choose Us Section ======= */
.why-choose-section {
    background-color: #1a1f2b;
    position: relative;
    overflow: hidden;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(26, 31, 43, 0.8), transparent);
    z-index: 1;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
    color: #fff;
}

.feature-box {
    background-color: rgba(42, 47, 59, 0.5);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 153, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 153, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 153, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #0066cc, #0099ff);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.5);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
}

/* ======= Testimonials Section ======= */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 15px 0;
    height: 100%;
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(66, 133, 244, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ======= Case Studies Section ======= */
.case-studies-section {
    background-color: var(--light-color);
}

.case-study-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--white);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-10px);
}

.case-study-content {
    padding: 25px;
}

.case-study-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ======= Partners Section ======= */
.partners-section {
    background-color: var(--white);
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo {
    flex: 0 0 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ======= Contact Section ======= */
.contact-section {
    position: relative;
    background-color: #1e2330;
    padding: 80px 0;
}

.contact-info {
    margin-bottom: 30px;
    color: #fff;
}

.contact-info h2 {
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 153, 255, 0.1);
    color: #0099ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-item div {
    flex: 1;
}

.contact-item h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 16px;
}

.contact-item a {
    color: #0099ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* ======= Newsletter Section ======= */
.newsletter-section {
    background-color: var(--white);
    padding: 50px 0;
}

.newsletter-container {
    background: linear-gradient(135deg, #4285f4, #34a853);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.newsletter-container h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-form .input-group {
    box-shadow: var(--box-shadow);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    height: 50px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 10px 25px;
}

/* ======= Footer ======= */
.footer {
    background-color: #263238;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

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

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact a {
    color: #0099ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
    text-decoration: none;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ======= Back to Top Button ======= */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* ======= Responsive Styles ======= */
@media (max-width: 991px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar-nav .nav-link {
        color: var(--dark-color);
    }
    
    .service-card, .feature-box, .testimonial-card, .case-study-card {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 130px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .partners-container {
        gap: 20px;
    }
    
    .partner-logo {
        flex: 0 0 120px;
    }
    
    .newsletter-container {
        padding: 30px 20px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright .col-md-6 {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 120px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .partner-logo {
        flex: 0 0 100px;
    }
}

/* Site Loader Animation */
.site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    overflow: hidden;
}

.site-loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 20, 40, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 20, 40, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}

.site-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 70%);
    z-index: -1;
}

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 5;
    max-width: 320px;
}

.loader-content::before,
.loader-content::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    border: 2px solid rgba(0, 153, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 3s linear infinite;
}

.loader-content::after {
    width: 130%;
    height: 130%;
    animation-delay: 1s;
}

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

.animated-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    animation: pulse 2s infinite;
}

.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo-container::before,
.logo-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 25px rgba(0, 153, 255, 0.8);
    animation: glowPulse 2s infinite alternate;
}

.logo-container::after {
    box-shadow: 0 0 35px rgba(0, 213, 255, 0.4);
    animation-delay: 0.5s;
}

.loader-logo-img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(0, 153, 255, 0.8));
    position: relative;
    z-index: 2;
}

.loader-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
}

.better-text::after {
    content: 'Making IT Easy';
    animation: typingEffect 1s steps(40) 1s 1 normal both;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    border-right: 3px solid #0099ff;
    padding-right: 5px;
    color: #0099ff;
}

.loader-bar {
    width: 280px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.3);
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background-color: #fff;
    filter: blur(3px);
    opacity: 0.7;
    animation: barGlow 3s ease-in-out infinite;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #005588, #0099ff);
    animation: progress 3s ease-in-out forwards;
    position: relative;
    box-shadow: 0 0 8px #0099ff;
}

.loader-progress::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 153, 255, 0), #0099ff);
}

.loader-message {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease;
    min-height: 20px;
}

.loader-message::after {
    content: '.....';
    animation: dots 1.5s steps(5, end) infinite;
    position: absolute;
    margin-left: 5px;
}

/* Circuit decoration elements */
.circuit-line {
    position: absolute;
    background-color: rgba(0, 153, 255, 0.15);
    z-index: 1;
}

.circuit-line.horizontal-1 {
    height: 2px;
    width: 60%;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.circuit-line.horizontal-2 {
    height: 2px;
    width: 40%;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
}

.circuit-line.vertical-1 {
    width: 2px;
    height: 40%;
    left: 25%;
    top: 50%;
    transform: translateY(-50%);
}

.circuit-line.vertical-2 {
    width: 2px;
    height: 40%;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 153, 255, 0.3);
    box-shadow: 0 0 5px #0099ff;
    z-index: 2;
}

.circuit-node.node-1 {
    top: 30%;
    left: 20%;
}

.circuit-node.node-2 {
    top: 30%;
    right: 20%;
}

.circuit-node.node-3 {
    bottom: 35%;
    left: 30%;
}

.circuit-node.node-4 {
    bottom: 35%;
    right: 30%;
}

@keyframes pulse {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.08); filter: brightness(1.2); }
    100% { transform: scale(1); filter: brightness(1); }
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes progress {
    0% { width: 0; }
    15% { width: 30%; }
    45% { width: 55%; }
    85% { width: 80%; }
    100% { width: 100%; }
}

@keyframes barGlow {
    0% { left: -10%; }
    100% { left: 100%; }
}

@keyframes typingEffect {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80% { content: '....'; }
    100% { content: '.....'; }
}

@keyframes nodeGlow {
    0% { 
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(0, 153, 255, 0.5);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
        box-shadow: 0 0 10px rgba(0, 153, 255, 0.8), 0 0 15px rgba(0, 213, 255, 0.5);
    }
    100% { 
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(0, 153, 255, 0.5);
    }
}

/* Circuit path decorations for sections */
.circuit-path {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 153, 255, 0.15);
    border-radius: 0 20px 0 0;
    z-index: 0;
    pointer-events: none;
}

.circuit-path::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 153, 255, 0.5), rgba(0, 153, 255, 0));
    top: 0;
    left: 0;
}

.circuit-path::after {
    content: '';
    position: absolute;
    height: 15px;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 153, 255, 0.5), rgba(0, 153, 255, 0));
    top: 0;
    right: 0;
}

.circuit-node-decoration {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(0, 153, 255, 0.7);
    top: -2.5px;
    left: -2.5px;
    box-shadow: 0 0 8px rgba(0, 153, 255, 0.8);
    animation: nodeGlow 2s infinite alternate;
}

/* ======= Apps Section ======= */
.apps-section {
    background-color: #101319;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 153, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(28, 200, 138, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.app-card {
    background: rgba(42, 47, 59, 0.5);
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 153, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 153, 255, 0.2);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0066cc, #0099ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
}

.app-icon i {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.app-content {
    color: #fff;
}

.app-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.app-badge {
    display: inline-block;
    background: rgba(0, 153, 255, 0.2);
    color: #0099ff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.app-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.app-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: #00bbff;
    margin-right: 10px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 153, 255, 0.3);
}

.feature span {
    color: rgba(255, 255, 255, 0.9);
}

.app-actions {
    display: flex;
    gap: 15px;
}

.app-actions .btn {
    padding: 12px 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-actions .btn i {
    font-size: 1.2rem;
}

.app-actions .btn-primary {
    background: linear-gradient(45deg, #0066cc, #0099ff);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

.app-actions .btn-primary:hover {
    background: linear-gradient(45deg, #0099ff, #00bbff);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.4);
}

.app-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
}

.app-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* App Slideshow Styles */
.app-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.app-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s 0.7s;
    z-index: 1;
}

.app-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    transition: transform 8s ease;
    pointer-events: none;
}

.app-slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 0;
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px;
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-subtitle h4 {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-actions {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

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

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

.slide-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.5);
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 1000 !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
}

.slide-nav.prev {
    left: 15px;
}

.slide-nav.next {
    right: 15px;
}

.slide-nav:hover {
    background-color: var(--primary-color);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(78, 115, 223, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slide-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slide-nav i {
    display: block;
    line-height: 1;
    pointer-events: none;
}

/* Ensure animations work on mobile */
@media (max-width: 768px) {
    .app-slideshow {
        height: 350px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-title h2 {
        font-size: 28px;
    }
    
    .slide-description p {
        font-size: 14px;
    }
    
    .slide-nav {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px;
    }
    
    .slide-nav.prev {
        left: 10px;
    }
    
    .slide-nav.next {
        right: 10px;
    }
}

/* Force show active slide for touch devices */
.touch .app-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.navigation-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
}

.navigation-buttons .slide-nav {
    pointer-events: auto;
}

.slide-overlay {
    pointer-events: none !important;
}

.slide-background {
    pointer-events: none !important;
}

/* Contact Form Section styles */
#ready-contact {
    position: relative;
    background-color: #1a2334;
    padding: 60px 0;
}

#ready-contact .card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#ready-contact .form-control {
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

#ready-contact .form-control:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    border-color: #4d84e2;
}

#ready-contact .btn-primary {
    background: linear-gradient(135deg, #4d84e2, #5e72e4);
    border-color: transparent;
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#ready-contact .btn-primary:hover {
    background: linear-gradient(135deg, #3a6fd3, #4d63d8);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(78, 132, 226, 0.3);
}

#ready-contact textarea.form-control {
    min-height: 120px;
}

#ready-contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

#ready-contact p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Similar styles for other contact forms */
.contact-form .form-control {
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
}

.contact-form .btn-primary {
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.alert-success {
    background-color: #26c9a3;
    color: white;
    border: none;
    border-radius: 5px;
} 