/* Custom Variables for Mode Switching */
:root {
    --bg-color: #ffffff;
    --text-color: #1e293b;
    --card-bg: #f8fafc;
    --navbar-bg: rgba(255, 255, 255, 0.9);
    --primary-gradient: linear-gradient(45deg, #00d2ff, #3a7bd5);
    --accent-blue: #00d2ff;
    --border-color: rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --card-bg: #1e293b;
    --navbar-bg: rgba(15, 23, 42, 0.9);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.1), transparent);
}

.hero-badge {
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.btn-gradient {
    background: var(--primary-gradient);
    color: white !important;
    border: none;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
}

/* Service Cards */
.service-row {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: 0.4s;
    height: 100%;
}

.service-row:hover {
    border-color: var(--accent-blue);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

/* Mode Toggle Button */
#theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s;
}

#theme-toggle:hover {
    background: rgba(0, 210, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.contact-pill {
    background: rgba(0, 0, 0, 0.05);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: 0.3s;
}

[data-bs-theme="dark"] .contact-pill {
    background: rgba(255, 255, 255, 0.05);
}

.contact-pill:hover {
    background: var(--accent-blue);
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}
/* About Us Section Styles */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .about-image-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gradient);
    width: 150px;
    height: 150px;
    z-index: -1;
    border-radius: 20px;
}

.about-stats {
    border-left: 4px solid var(--accent-blue);
    padding-left: 20px;
    margin-top: 30px;
}