@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    /* Modern Color Palette */
    --primary: #0A84FF;
    --primary-dark: #0056b3;
    --secondary: #5E5CE6;
    --accent: #BF5AF2;
    --success: #32D74B;
    --warning: #FF9F0A;
    --danger: #FF453A;

    /* Neutral Colors */
    --bg-white: #ffffff;
    --bg-soft: #F2F2F7;
    --text-main: #1C1C1E;
    --text-soft: #3A3A3C;
    --text-muted: #8E8E93;

    /* Layout */
    --container-width: 1240px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Glassmorphism & Shadows */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-white);
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

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

/* Header & Navigation */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-3px);
}

.logo:hover i {
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.35);
    transform: scale(1.05);
}

.logo:hover h1 {
    letter-spacing: 0px;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--text-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin: 0;
    transition: var(--transition);
}

.logo span {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0078d4;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #050505;
    color: white;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, var(--primary) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, var(--secondary) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--accent) 0%, transparent 50%);
    opacity: 0.15;
    filter: blur(80px);
    animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(-50px, 50px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 6rem 0;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: rgba(10, 132, 255, 0.12);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(10, 132, 255, 0.2);
    animation: slideInDown 0.8s var(--transition);
}

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

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

.hero-text h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    color: white;
    animation: slideInLeft 0.8s var(--transition) 0.1s backwards;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Parallax Section Class */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Parallax Background Element */
.parallax-bg {
    position: relative;
    overflow: hidden;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

.hero-text p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.85;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.1px;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.2px;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s var(--transition) 0.4s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3);
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 92, 230, 0.4);
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-button-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.anchor-link {
    display: none;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    animation: slideInRight 1s var(--transition) 0.2s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-visual {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(10, 132, 255, 0.4));
    animation: float 6s ease-in-out infinite;
}

.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: floatCards 8s ease-in-out infinite;
}

.stat-card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0.5s;
}

.stat-card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes floatCards {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.card-info .number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.card-info .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Common Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1f1f1f;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background:  #0078d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background:  #0078d4;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 120px;
    }
}

.section-title p {
    color: #555252 !important;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    border: 1px solid var(--bg-soft);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, var(--bg-soft), transparent 70%);
    opacity: 0.5;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.founder-info {
    background: var(--bg-soft);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    margin-top: 3rem;
    border-left: 6px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-soft);
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #1f1f1f;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-form {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--bg-soft);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f1f1f;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.5;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
    min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 120, 212, 0.4);
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0A0A0C 0%, #1C1C1E 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

footer .container {
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
}

.footer-section {
    word-break: break-word;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    letter-spacing: 0.3px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-section h3 i {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s, text-shadow 0.3s;
    display: inline-block;
    padding-left: 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(10, 132, 255, 0.4);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.contact-details i {
    color: var(--primary);
    min-width: 18px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(10, 132, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 0;
    flex-shrink: 0;
}

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

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 120, 212, 0), rgba(0, 120, 212, 0.3), rgba(0, 120, 212, 0));
    margin: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: #e0e0e0;
    flex: 1;
    min-width: 250px;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #0078d4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-links-bottom a:hover {
    color: #00b4f1;
    text-decoration: underline;
}

.footer-links-bottom span {
    color: #666;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Extra Small Devices - Mobile (max-width: 480px) */
@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    header {
        padding: 0.75rem 0;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .logo i {
        width: 32px;
        height: 32px;
        font-size: 1.6rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        color: #0078d4;
        z-index: 100;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        color: #424242;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding-bottom: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background-color: #f5f5f5;
        color: #0078d4;
        padding-left: 2rem;
    }

    .nav-links a.active {
        background-color: #e8f4fd;
        color: #0078d4;
        border-left: 4px solid #0078d4;
        padding-left: 1.2rem;
    }

    .hero {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
    }

    .visual-container {
        height: 350px;
        width: 100%;
        max-width: 400px;
    }

    .glass-card {
        padding: 0.75rem 1rem;
        transform: scale(0.9);
    }

    .stat-card-1 {
        left: -5%;
        top: 5%;
    }

    .stat-card-2 {
        right: -5%;
        bottom: 5%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Disable parallax on mobile for better performance */
    .hero,
    .about-hero,
    .services-hero,
    .contact-hero,
    .cta-banner,
    .about-stats,
    .parallax-section {
        background-attachment: scroll !important;
    }

    .cta-button,
    .cta-button-outline {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-title p {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .services-grid,
    .why-grid,
    .projects-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .service-card,
    .why-card,
    .team-card,
    .faq-card {
        padding: 1.5rem;
    }

    .service-card h3,
    .why-card h4,
    .team-card h4 {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .product-section {
        padding: 3rem 0;
    }

    .product-header h2 {
        font-size: 1.5rem;
    }

    .product-tagline {
        font-size: 1rem;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .product-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .shape {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links-bottom {
        justify-content: center;
        width: 100%;
    }

    .copyright {
        text-align: center;
        min-width: unset;
    }
}

/* Small Devices - Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        width: 92%;
        padding: 0 15px;
    }

    .nav-links {
        display: none;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo i {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }

    .hero {
        min-height: 550px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 2.5rem 0;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.05rem;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .visual-container {
        height: 400px;
        max-width: 500px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-outline {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .services-grid,
    .why-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card,
    .why-card {
        padding: 2rem;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-header h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Medium Devices - iPad (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 94%;
        max-width: 950px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .logo i {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .hero {
        min-height: 550px;
    }

    .hero-content {
        grid-template-columns: 1fr 0.8fr;
        gap: 2.5rem;
        padding: 3rem 0;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    section {
        padding: 5.5rem 0;
    }

    .section-title h2 {
        font-size: 2.3rem;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr 0.9fr;
        gap: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr 1.3fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Devices - Desktop (max-width: 1024px for 4-column footer) */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra Large Devices - Desktop and above (1025px+) */
@media (min-width: 1025px) {
    .container {
        width: 90%;
        max-width: 1200px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services Hero Section */
/* Services Hero Section */
.services-hero {
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: #050505;
    color: white;
}

.services-hero .hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, white 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Categories & Cards */
.services-details {
    padding: 8rem 0;
    background: var(--bg-soft);
}

.category-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(10, 132, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.category-badge.gold {
    background: rgba(255, 215, 0, 0.1);
    color: #DAA520;
}

.services-grid.premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(10, 132, 255, 0.2);
}

.service-card-glass h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card-glass p {
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-bullets {
    list-style: none;
    padding: 0;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.feature-bullets li i {
    color: var(--success);
    font-size: 0.7rem;
}

/* Flagship Sections on Services Page */
.service-category.flagship {
    background: white;
    padding: 6rem;
    border-radius: var(--border-radius-lg);
    margin-top: 6rem;
    box-shadow: var(--shadow-md);
}

.service-category.flagship .product-grid {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .services-grid.premium {
        grid-template-columns: 1fr;
    }

    .service-category.flagship {
        padding: 3rem;
    }
}

/* SetuBuzz Product Section */
/* --- Premium Product Sections --- */
.product-section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.setubuzz-section {
    background: radial-gradient(circle at top right, rgba(10, 132, 255, 0.05), transparent 40%),
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.equitykaro-section {
    background: radial-gradient(circle at bottom left, rgba(94, 92, 230, 0.05), transparent 40%),
        #ffffff;
    border-top: 1px solid var(--bg-soft);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.product-grid.reverse {
    direction: rtl;
}

.product-grid.reverse>* {
    direction: ltr;
}

/* Info Panel */
.product-info-panel {
    animation: slideInLeft 1s ease-out;
}

.product-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(10, 132, 255, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border: 1px solid rgba(10, 132, 255, 0.2);
}

.product-badge.accent {
    background: rgba(94, 92, 230, 0.1);
    color: var(--secondary);
    border-color: rgba(94, 92, 230, 0.2);
}

.product-info-panel h2{
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color:#005a9e !important;
}

.product-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.product-description {
    font-size: 1.15rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.product-cta-simple {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Visual Panel */
.product-visual-panel {
    position: relative;
    perspective: 1000px;
}

.product-image-main {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: rotateY(-5deg) rotateX(5deg);
}

.product-visual-panel:hover .product-image-main {
    transform: rotateY(0deg) rotateX(0deg);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-icons i {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1s;
}

.icon-3 {
    top: 40%;
    left: -5%;
    animation-delay: 2s;
}

/* Details Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.product-features,
.product-benefits {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.product-features h3,
.product-benefits h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature-item {
    transition: var(--transition);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(10, 132, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(10, 132, 255, 0.3);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.benefit-item:hover {
    background: white;
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Final CTA Area */
.final-cta {
    padding: 8rem 0;
    background: #050505;
}

.cta-card {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.1) 0%, rgba(94, 92, 230, 0.1) 100%);
    padding: 6rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.cta-card p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-primary.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: black;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button-primary.gold:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Policy Pages Styles */
.policy-hero {
    padding: 6rem 0;
    background: #050505;
    text-align: center;
    color: white;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fix for lint warning */
}

.policy-hero p {
    color: var(--text-muted);
}

.policy-content {
    padding: 6rem 0;
    background: var(--bg-soft);
}

.container.narrow {
    max-width: 1100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.legal-sidebar h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background: var(--bg-soft);
    color: var(--primary);
    padding-left: 1.25rem;
}

.sidebar-nav a.active {
    background: var(--primary-soft);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

.policy-card {
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.policy-card p {
    margin-bottom: 2rem;
    line-height: 2;
    color: var(--text-soft);
    font-size: 1.15rem;
}

.policy-card ul {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.policy-card li {
    margin-bottom: 1.2rem;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1.15rem;
}

.policy-card h2 {
    margin: 4rem 0 2rem;
    color: var(--text-main);
    font-size: 2.2rem;
    border-bottom: 2px solid var(--primary-soft);
    padding-bottom: 0.75rem;
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
}

.policy-card h3 {
    margin: 3rem 0 1.5rem;
    color: var(--text-main);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.policy-highlight {
    background: var(--bg-soft);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    margin-bottom: 2.5rem;
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .product-description {
        margin-left: auto;
        margin-right: auto;
    }

    .product-cta-simple {
        justify-content: center;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick Contact Section */
.quick-contact {
    background: #f3f3f3;
    padding: 3rem 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.quick-contact-card i {
    font-size: 2.5rem;
    color: #0078d4;
    margin-bottom: 1rem;
}

.quick-contact-card h4 {
    color: #1f1f1f;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.quick-contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.quick-contact-card a {
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.quick-contact-card a:hover {
    color: #005a9e;
}

/* Contact Form Section */
.contact-form h3 {
    color: #1f1f1f;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.faq-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #0078d4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 120, 212, 0.05));
    transition: height 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 8px 20px rgba(0, 120, 212, 0.1);
    transform: translateY(-4px);
}

.faq-card:hover::after {
    height: 100%;
}

.faq-card h4 {
    color: #0078d4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.faq-card p {
    color: #666;
    line-height: 1.75;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-container {
    margin-top: 3rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-block;
    background: white;
    color: #0078d4;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}

.cta-button-secondary:hover {
    background: white;
    color: #0078d4;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    border-top: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 120, 212, 0.15);
    border-top-color: #0078d4;
}

.why-icon {
    font-size: 3rem;
    color: #0078d4;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.12), rgba(0, 90, 158, 0.12));
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #0078d4, #005a9e);
    color: white;
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 120, 212, 0.3);
}

.why-card h4 {
    color: #1f1f1f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.why-card p {
    color: #666;
    line-height: 1.75;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0078d4, #005a9e);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 120, 212, 0.15);
}

.project-card:hover::after {
    transform: scaleY(1);
}

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.project-content {
    padding: 2rem;
}

.project-content h4 {
    color: #1f1f1f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.project-category {
    color: #0078d4;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-content p {
    color: #666;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

.project-link {
    color: #0078d4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0078d4, #005a9e);
    transition: width 0.3s ease;
}

.project-link:hover {
    color: #005a9e;
}

.project-link:hover::after {
    width: 100%;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info h3 {
    color: #1f1f1f;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.contact-info .contact-item h4 {
    color: #0078d4;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info .contact-item p {
    color: #666;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #0078d4;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Core Values Section */
.core-values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f3f3f3 0%, #f9f9f9 100%);
    border-radius: 4px;
    border-left: 4px solid #0078d4;
    position: relative;
}

.value-number {
    font-size: 3rem;
    font-weight: 300;
    color: #0078d4;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #1f1f1f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0078d4, #005a9e);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 120, 212, 0.15);
}

.team-card:hover::before {
    width: 80%;
}

.team-image {
    font-size: 5rem;
    color: white;
    margin-bottom: 1rem;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0078d4, #005a9e);
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
}

.team-card:hover .team-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 120, 212, 0.35);
}

.team-card h4 {
    color: #1f1f1f;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.team-role {
    color: #0078d4;
    font-weight: 600;
    margin-bottom: 1rem !important;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.team-bio {
    color: #666;
    line-height: 1.75;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Achievements & Timeline Section */
.achievements-section {
    padding: 5rem 0;
    background: white;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0078d4, transparent);
    transform: translateY(-50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        display: none;
    }
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    border: 2px solid #e5e5e5;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.timeline-item:hover {
    border-color: #0078d4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: #0078d4;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* About Stats Section */
.about-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.about-stats .stats-grid {
    margin-top: 3rem;
}

/* Hero Sections with Parallax */
.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 50%, #003d73 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.services-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about-hero::after,
.services-hero::after,
.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    z-index: 1;
}

.about-hero .container,
.services-hero .container,
.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, #f3f3f3 0%, #f9f9f9 100%);
    padding: 5rem 0;
    text-align: center;
}

.about-cta h2 {
    color: #1f1f1f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-cta p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-block;
    background: #0078d4;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.cta-button-primary:hover {
    background: #005a9e;
    transform: translateY(-3px);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: #0078d4;
    padding: 1rem 2.5rem;
    border: 2px solid #0078d4;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: #0078d4;
    color: white;
}