/* ====================================
   PiLENS
   Professional AI & Python Solutions
   Main Stylesheet
==================================== */


/* =============== ROOT VARIABLES =============== */

:root {
    /* Brand Colors (Matched with Logo) */
    --primary-color: #00b377;
    --secondary-color: #14b8a6;
    --accent-color: #00b377;
    --accent-glow: rgba(0, 179, 119, 0.45);

    /* Backgrounds */
    --background-dark: #070c14;
    --card-background: #0f1926;
    --footer-background: #04070c;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;

    /* Borders */
    --border-color: rgba(0, 179, 119, 0.2);

    /* Shadows */
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, .30);
    --shadow-md: 0 20px 40px rgba(0, 179, 119, 0.15);
    --shadow-lg: 0 30px 60px rgba(0, 179, 119, 0.25);

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 30px;

    /* Transition */
    --transition: .35s ease;
}


/* =====================================================
   1. GLOBAL RESET & BASE STYLES
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--background-dark, #0a1118);
    color: var(--text-primary, #ffffff);
    line-height: 1.6;
}

/* =====================================================
   2. COMMON LAYOUT & UTILITIES
===================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 50px 0;
}

.section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.section p {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: var(--text-secondary);
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--text-secondary);
}

/* =====================================================
   3. ENTERPRISE LOGO
===================================================== */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.08);
}

.logo-text {
    color: var(--primary-color, #00b377);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1;
}

/* =====================================================
   4. BUTTONS & STYLING
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    padding: 15px 40px;
    background: #00b377;
    color: #0b1622;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease, color .35s ease;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.4);
}

.secondary-btn {
    background: transparent;
    border: 1px solid #00b377;
    color: #00b377;
}

.secondary-btn:hover {
    background: #00b377;
    color: #0b1622;
}

/* =====================================================
   1. HOME HERO SECTION (Standardized & 100% Synced)
===================================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 90px;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.95), rgba(15, 128, 96, 0.25));
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: auto;
    animation: fadeUp 0.8s ease;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 25px;
    border-radius: 30px;
    background: rgba(0, 179, 119, 0.1);
    color: #00b377;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(0, 179, 119, 0.2);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 25px 0;
    color: var(--text-primary);
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 750px;
    margin: auto;
    opacity: .9;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =====================================================
   6. SERVICES SECTION
===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(0, 179, 119, 0.1);
    color: #00b377;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00b377;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   7. TECHNOLOGY SECTION
===================================================== */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.technology-card {
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.15);
    border-radius: 18px;
    padding: 35px;
    transition: .35s;
}

.technology-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.technology-card h3 {
    color: #00b377;
    margin-bottom: 15px;
    font-size: 24px;
}

.technology-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   8. PROJECTS SECTION
===================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: all .35s ease;
}

.project-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.project-card h3 {
    color: #00b377;
    margin-bottom: 15px;
    font-size: 24px;
}

.project-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(0, 179, 119, 0.1);
    color: #00b377;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(0, 179, 119, 0.2);
}

/* =====================================================
   9. WHY CHOOSE US SECTION
===================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.why-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #00b377;
}

.why-card h3 {
    color: #00b377;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   10. COMPANY STATISTICS SECTION
===================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.stat-card h3 {
    font-size: 48px;
    color: #00b377;
    margin-bottom: 15px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* =====================================================
   11. ABOUT SECTION
===================================================== */
.about {
    padding: 50px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.section-subtitle {
    display: block;
    color: #00b377;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: none;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-primary);
    max-width: 700px;
}

.about-content p {
    text-align: left;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    margin-top: 15px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 15px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #00b377;
    background: linear-gradient(145deg, #0f1926, #0a1118);
}

.feature-card i {
    color: #00b377;
    font-size: 24px;
    margin-top: 5px;
}

.feature-card h3 {
    color: #00b377;
    margin-bottom: 2px;
}

.feature-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    border: 1px solid rgba(0, 179, 119, 0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,.35), 0 0 35px rgba(0, 179, 119, 0.2);
    transition: all .4s ease;
}

/* =====================================================
   12. CONTACT SECTION
===================================================== */
#contact {
    background: #0a1118;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.15);
    border-radius: 20px;
    transition: all .4s ease;
    overflow: hidden;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 25px 50px rgba(0,0,0,.35), 0 0 30px rgba(0, 179, 119, 0.25);
}

.contact-card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 179, 119, 0.1);
    color: #00b377;
    border-radius: 15px;
    font-size: 24px;
    transition: .35s ease;
}

.contact-card:hover i {
    transform: rotate(10deg) scale(1.1);
}

.contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 20px;
}

.contact-card p {
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
    transition: .3s ease;
}

.contact-card:hover p {
    color: var(--text-primary);
}

.contact-form {
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 179, 119, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 179, 119, 0.2);
    background: #111827;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: .35s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00b377;
    box-shadow: 0 0 0 3px rgba(0, 179, 119, .12), 0 0 25px rgba(0, 179, 119, .22);
}

/* =====================================================
   13. ENTERPRISE CTA SECTION
===================================================== */
.cta-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(15, 128, 96, 0.2);
    filter: blur(120px);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-box {
    position: relative;
    text-align: center;
    padding: 70px 60px;
    border-radius: 30px;
    background: rgba(15, 25, 38, 0.4);
    border: 1px solid rgba(0, 179, 119, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 40px rgba(0, 179, 119, 0.2);
}

.cta-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.cta-badges span {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    background: rgba(0, 179, 119, 0.1);
    border: 1px solid rgba(0, 179, 119, 0.25);
    color: var(--text-primary);
    transition: 0.3s ease;
}

.cta-badges span:hover {
    transform: translateY(-4px);
    border-color: #00b377;
}

.cta-small-title {
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00b377;
}

.cta-box h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-description {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: #00b377;
    background: rgba(0, 179, 119, 0.1);
}

/* =====================================================
   14. FOOTER SECTION
===================================================== */
.footer-section {
    padding: 50px 0px;
    background: #0a1118;
    border-top: 1px solid rgba(0, 179, 119, 0.15);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-brand p {
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00b377;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00b377;
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid rgba(0, 179, 119, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #00b377;
    color: #0b1622;
    transform: translateY(-3px);
    border-color: #00b377;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(0, 179, 119, 0.15);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* =====================================================
   15. SCROLL TO TOP BUTTON (Synced 100% with Contact Page)
===================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #0b1622, #0f1c2e);
    color: #00b377;
    border: 1px solid rgba(0, 179, 119, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.4);
}

/* =====================================================
   16. RESPONSIVE MEDIA QUERIES
===================================================== */
@media(max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .about-content {
        order: 2;
    }
    .about-image {
        order: 1;
    }
    .about-content h2, .section-subtitle {
        text-align: center;
    }
}

@media(max-width: 1000px) {
    .services-grid,
    .technology-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 900px) {
    .nav-links {
        display: none;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .hero h1,
    .about-content h2 {
        font-size: 38px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-box {
        padding: 45px 25px;
    }
    .cta-box h2 {
        font-size: 32px;
    }
    .cta-description {
        font-size: 16px;
    }
}

@media(max-width: 650px) {
    .services-grid,
    .technology-grid,
    .projects-grid,
    .why-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: auto;
    }
    .footer-social {
        justify-content: center;
    }
}


/* =============== NAVIGATION DESIGN =============== */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(5, 11, 24, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    opacity: 0.9;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px;
    background: var(--text-primary);
    border-radius: 10px;
}

@media(max-width:768px){
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--background-dark);
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


/* =============== SCROLL REVEAL ANIMATION =============== */

.reveal {

    opacity: 0;

    transform: translateY(50px);

    transition: all 0.8s ease;

}



.reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =============== CARD HOVER EFFECTS =============== */

.service-card,
.project-card,
.technology-card {

    transition: 0.4s ease;

}



.service-card:hover,
.project-card:hover,
.technology-card:hover {

    transform: translateY(-10px);

}


/* =============== PERFORMANCE OPTIMIZATION =============== */

html{

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

.service-card,
.project-card,
.technology-card,
.contact-card,
.feature-card,
.stat-card,
.why-card{

    will-change:transform;

    backface-visibility:hidden;

    transform:translateZ(0);

}

.reveal{

    will-change:opacity,transform;

}



/* =============== SCROLL TO TOP BUTTON =============== */

.scroll-top-btn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary-color);

    color:#001018;

    font-size:20px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow: 0 10px 25px rgba(0, 128, 96, 0.5);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:
        opacity var(--transition),
        transform var(--transition),
        visibility var(--transition);

    z-index:999;
}

.scroll-top-btn:hover{

    transform:translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 128, 96, 0.5);

}

.scroll-top-btn.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

@media(max-width:768px){

    .scroll-top-btn{

        width:50px;

        height:50px;

        right:20px;

        bottom:20px;

    }

}


/* ==========================================
   ABOUT PAGE - EXPERTISE SECTION
========================================== */

/* =====================================================
   2. ABOUT PAGE HERO SECTION (Standardized & 100% Synced)
===================================================== */
.page-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 90px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.95), rgba(15, 128, 96, 0.25));
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(0, 179, 119, 0.12);
    filter: blur(120px);
    top: -200px;
    right: -150px;
}

.page-hero-content {
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease;
}

.page-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(0, 179, 119, 0.10);
    border: 1px solid rgba(0, 179, 119, 0.20);
    color: #00b377;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.page-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin: 25px 0;
    color: var(--text-primary);
}

.page-hero p {
    max-width: 750px;
    margin: auto;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    opacity: .9;
}

.page-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-hero-buttons .btn {
    margin-top: 0;
    background: #00b377;
    color: #0b1622;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: .35s ease;
    border: 2px solid #00b377;
}

.page-hero-buttons .btn:hover {
    background: transparent;
    color: #00b377;
}

.page-hero-buttons .secondary-btn {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.35);
}

.page-hero-buttons .secondary-btn:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
}

@media(max-width: 768px) {
    .page-hero {
        padding: 120px 20px 70px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero p {
        font-size: 17px;
    }

    .page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* ==========================================
   EXPERTISE SECTION (2nd Section)
========================================== */
.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-expertise-card {
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 179, 119, 0.12);
    text-align: center;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.about-expertise-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #00b377;
    filter: blur(100px);
    top: -60px;
    right: -60px;
    opacity: .12;
}

.about-expertise-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
}

.about-expertise-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(0, 179, 119, 0.10);
    color: #00b377;
    font-size: 32px;
}

.about-expertise-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-expertise-card p {
    color: #a0aec0;
    line-height: 1.8;
}

@media(max-width: 1000px) {
    .about-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .about-expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   MISSION & VISION SECTION (3rd Section)
========================================== */
.mission-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.mission-content {
    max-width: 900px;
    padding: 50px;
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    border-radius: 28px;
    border: 1px solid rgba(0, 179, 119, 0.12);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
    transition: .35s ease;
}

.mission-content:hover {
    transform: translateY(-8px);
    border-color: #00b377;
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
}

.mission-content p {
    color: #a0aec0;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 35px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: rgba(0, 179, 119, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 179, 119, 0.08);
    transition: .35s ease;
}

.mission-point:hover {
    transform: translateX(8px);
    border-color: #00b377;
}

.mission-point i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 179, 119, 0.12);
    color: #00b377;
}

.mission-point span {
    color: #ffffff;
    font-size: 17px;
}

.vision-box {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 60px 50px;
    text-align: center;
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    border-radius: 30px;
    border: 1px solid rgba(0, 179, 119, 0.12);
    transition: .35s ease;
}

.vision-box:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
}

.vision-box h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #ffffff;
}

.vision-box p {
    color: #a0aec0;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .mission-content {
        padding: 35px 25px;
    }

    .mission-content h2,
    .vision-box h2 {
        font-size: 32px;
    }

    .vision-box {
        padding: 40px 25px;
    }
}

/* ==========================================
   CORE VALUES SECTION (4th Section)
========================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    padding: 35px 25px;
    text-align: center;
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    border-radius: 24px;
    border: 1px solid rgba(0, 179, 119, 0.12);
    overflow: hidden;
    transition: .35s ease;
}

.value-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #00b377;
    filter: blur(90px);
    top: -40px;
    right: -40px;
    opacity: .10;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 179, 119, 0.10);
    color: #00b377;
    font-size: 28px;
    transition: .35s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    color: #a0aec0;
    line-height: 1.7;
}

@media(max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   OUR APPROACH SECTION (5th Section)
========================================== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.approach-card {
    position: relative;
    padding: 40px 25px;
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    border-radius: 24px;
    border: 1px solid rgba(0, 179, 119, 0.12);
    text-align: center;
    overflow: hidden;
    transition: .35s ease;
}

.approach-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: #00b377;
    filter: blur(100px);
    top: -50px;
    right: -50px;
    opacity: .10;
}

.approach-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
}

.approach-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(0, 179, 119, 0.10);
    color: #00b377;
    font-size: 28px;
    transition: .35s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
}

.approach-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #ffffff;
}

.approach-card p {
    color: #a0aec0;
    line-height: 1.7;
}

@media(max-width: 1100px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TRUST SECTION (6th Section)
========================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.trust-card {
    position: relative;
    padding: 35px 25px;
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    border-radius: 24px;
    border: 1px solid rgba(0, 179, 119, 0.12);
    text-align: center;
    overflow: hidden;
    transition: .35s ease;
}

.trust-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: #00b377;
    filter: blur(100px);
    top: -50px;
    right: -50px;
    opacity: .10;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
}

.trust-card i {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: rgba(0, 179, 119, 0.10);
    color: #00b377;
    font-size: 30px;
    transition: .35s ease;
}

.trust-card:hover i {
    transform: scale(1.1);
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-card p {
    color: #a0aec0;
    line-height: 1.7;
}

@media(max-width: 1100px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   OUR TEAM SECTION (7th Section)
========================================== */
.team-section {
    background-color: rgba(10, 17, 24, 0.4);
    padding: 90px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 420px));
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
}

.team-card {
    position: relative;
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    border: 1px solid rgba(0, 179, 119, 0.12);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    padding: 40px 30px;
    transition: .35s ease;
}

.team-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: #00b377;
    filter: blur(100px);
    top: -50px;
    right: -50px;
    opacity: .10;
}

.team-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
}

.team-img-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00b377;
    box-shadow: 0 0 20px rgba(0, 179, 119, 0.25);
    background: #060a0f;
    position: relative;
    z-index: 1;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #ffffff;
}

.team-role {
    color: #00b377;
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 179, 119, 0.08);
    border: 1px solid rgba(0, 179, 119, 0.15);
    color: #00b377;
    font-size: 16px;
    transition: .35s ease;
}

.team-social a:hover {
    background: #00b377;
    color: #0b1622;
    transform: translateY(-3px);
}

@media(max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ABOUT PAGE CTA (8th Section)
========================================== */
.about-cta {
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-cta .cta-box {
    max-width: 1000px;
    margin: auto;
    background: linear-gradient(145deg, #0a1118, #0f1c2e);
    border: 1px solid rgba(0, 179, 119, 0.15);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta .cta-small-title {
    display: inline-block;
    color: #00b377;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-cta .cta-box h2 {
    font-size: 40px;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto 20px auto;
}

.about-cta .cta-description {
    color: #a0aec0;
    font-size: 18px;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 35px auto;
}

.about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.about-cta .cta-buttons .btn {
    background: #00b377;
    color: #0b1622;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    transition: .35s ease;
    border: 2px solid #00b377;
}

.about-cta .cta-buttons .btn:hover {
    background: transparent;
    color: #00b377;
}

.about-cta .cta-buttons .btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.about-cta .cta-buttons .btn-outline:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
}

.about-cta .cta-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-cta .cta-trust span {
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 179, 119, 0.08);
    border: 1px solid rgba(0, 179, 119, 0.15);
    color: #00b377;
    font-size: 14px;
}

/* ==========================================
   LOGO-MATCHED SCROLL TO TOP BUTTON
========================================== */
.about-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #0b1622, #0f1c2e);
    color: #00b377;
    border: 1px solid rgba(0, 179, 119, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.about-scroll-top:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.4);
}



/* =====================================================
   SERVICES PAGE ENTERPRISE DESIGN
===================================================== */

/* =====================================================
   3. SERVICES HERO SECTION (Standardized & 100% Synced)
===================================================== */
.services-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 90px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.95), rgba(15, 128, 96, 0.25));
    text-align: center;
}

.services-hero-content {
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease;
}

.services-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin: 25px 0;
    color: var(--text-primary);
}

.services-hero p {
    max-width: 750px;
    margin: auto;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    opacity: .9;
}

@media(max-width: 768px) {
    .services-hero {
        padding: 120px 20px 70px;
    }

    .services-hero h1 {
        font-size: 38px;
    }

    .services-hero p {
        font-size: 17px;
    }
}

/* ==========================================
   SERVICES INTRO SECTION
========================================== */
.services-intro {
    text-align: center;
    padding: 80px 20px 40px;
    position: relative;
}

.services-intro .section-description {
    max-width: 850px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

/* ==========================================
   SERVICE DETAIL GRID & CARDS
========================================== */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-detail-card {
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(15, 118, 110, 0.15);
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0f766e;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: #0f766e;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.35);
}

/* ICON BOX */
.service-icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(15, 118, 110, 0.10);
    margin-bottom: 25px;
    font-size: 28px;
    color: #0f766e;
    transition: 0.35s ease;
}

.service-detail-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(15, 118, 110, 0.20);
}

.service-detail-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-detail-card p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.service-detail-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f766e;
    font-weight: bold;
}

/* ==========================================
   DEVELOPMENT PROCESS SECTION
========================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.process-card {
    position: relative;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(15, 118, 110, 0.15);
    transition: 0.35s ease;
    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: #0f766e;
    filter: blur(100px);
    top: -50px;
    right: -50px;
    opacity: .10;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: #0f766e;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.35);
}

.process-card span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0f766e;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(15, 118, 110, 0.3);
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   LOGO-MATCHED SCROLL TO TOP BUTTON (Synced)
========================================== */
.services-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #0b1622, #0f1c2e);
    color: #00b377;
    border: 1px solid rgba(0, 179, 119, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.services-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-scroll-top:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.4);
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media(max-width: 1100px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 700px) {
    .services-hero h1,
    .page-hero h1 {
        font-size: 38px;
    }

    .services-hero p,
    .page-hero p {
        font-size: 17px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 25px;
    }
}



/* ======================================================
   TECHNOLOGY PAGE ENTERPRISE DESIGN
====================================================== */

/* =====================================================
   4. TECHNOLOGY HERO SECTION (Standardized & 100% Synced)
===================================================== */
.technology-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 90px;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.95), rgba(15, 128, 96, 0.25));
    text-align: center;
}

.technology-hero .page-hero-content {
    max-width: 850px;
    margin: auto;
    animation: fadeUp 0.8s ease;
}

.technology-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin: 25px 0;
    color: var(--text-primary);
}

.technology-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    opacity: .9;
}

@media(max-width: 768px) {
    .technology-hero {
        padding: 120px 20px 70px;
    }

    .technology-hero h1 {
        font-size: 38px;
    }

    .technology-hero p {
        font-size: 17px;
    }
}

/* ==========================================
   2. TECHNOLOGY INTRO SECTION
========================================== */
.technology-intro-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.technology-intro-content p {
    margin-top: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.technology-highlight-box {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 179, 119, 0.15);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.25);
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    font-size: 30px;
    color: #00b377;
}

.highlight-item h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.highlight-item p {
    color: var(--text-secondary);
}

/* ==========================================
   3. TECHNOLOGY DOMAIN SECTION
========================================== */
.technology-domain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.technology-domain-card {
    padding: 35px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.technology-domain-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.35);
}

.technology-domain-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #00b377;
    color: white;
    font-size: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 179, 119, 0.3);
}

.technology-domain-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.technology-domain-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   4. TECHNOLOGY STACK SECTION
========================================== */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.stack-item {
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all .35s ease;
}

.stack-item:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    background: rgba(0, 179, 119, 0.05);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.2);
}

.stack-item i {
    font-size: 38px;
    color: #00b377;
    margin-bottom: 20px;
}

.stack-item h3 {
    color: var(--text-primary);
    font-size: 18px;
}

/* ==========================================
   5. AI ENGINEERING SECTION
========================================== */
.engineering-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.engineering-points {
    margin-top: 30px;
}

.engineering-point {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: center;
    color: var(--text-secondary);
}

.engineering-point i {
    color: #00b377;
    font-size: 18px;
}

.tech-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: linear-gradient(135deg, #00b377, transparent);
    animation: pulseTech 3s infinite;
    box-shadow: 0 0 30px rgba(0, 179, 119, 0.3);
}

.tech-circle i {
    font-size: 90px;
    color: white;
}

@keyframes pulseTech {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ==========================================
   6. AUTOMATION SECTION
========================================== */
.automation-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.automation-box {
    padding: 40px;
    border-radius: 25px;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .4s;
}

.automation-box:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.automation-box i {
    font-size: 40px;
    color: #00b377;
    margin-bottom: 20px;
}

.automation-box h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.automation-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   7. CLOUD SECTION
========================================== */
.cloud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cloud-card {
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .4s;
}

.cloud-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.cloud-card i {
    font-size: 40px;
    color: #00b377;
    margin-bottom: 20px;
}

.cloud-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cloud-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   8. TECHNOLOGY ADVANTAGE SECTION
========================================== */
.advantage-box {
    padding: 50px;
    border-radius: 30px;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.2);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.advantage-grid div {
    text-align: center;
}

.advantage-grid i {
    font-size: 35px;
    color: #00b377;
    margin-bottom: 20px;
}

.advantage-grid h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.advantage-grid p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   9. SCROLL TO TOP BUTTON
========================================== */
.technology-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #0b1622, #0f1c2e);
    color: #00b377;
    border: 1px solid rgba(0, 179, 119, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.technology-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.technology-scroll-top:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.4);
}

/* ==========================================
   10. RESPONSIVE DESIGN
========================================== */
@media(max-width: 992px) {
    .technology-intro-wrapper,
    .engineering-layout {
        grid-template-columns: 1fr;
    }

    .technology-domain-grid,
    .cloud-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .automation-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .technology-domain-grid,
    .cloud-grid,
    .stack-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .tech-circle {
        width: 200px;
        height: 200px;
    }
}







/* =====================================================
   PROJECTS PAGE ENTERPRISE DESIGN
===================================================== */

/* =====================================================
   5. PROJECTS HERO SECTION (Standardized & 100% Synced)
===================================================== */
.projects-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 90px;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.95), rgba(15, 128, 96, 0.25));
    text-align: center;
}

.projects-hero .page-hero-content {
    max-width: 850px;
    margin: auto;
    animation: fadeUp 0.8s ease;
}

.projects-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin: 25px 0;
    color: var(--text-primary);
}

.projects-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    opacity: .9;
}

@media(max-width: 768px) {
    .projects-hero {
        padding: 120px 20px 70px;
    }

    .projects-hero h1 {
        font-size: 38px;
    }

    .projects-hero p {
        font-size: 17px;
    }
}

/* =====================================================
   2. PROJECT INTRODUCTION SECTION
===================================================== */
.project-intro-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.project-intro-content p {
    margin-top: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.project-highlight-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: all .35s ease;
}

.project-highlight i {
    font-size: 32px;
    color: #00b377;
}

.project-highlight h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.project-highlight p {
    color: var(--text-secondary);
}

.project-highlight:hover {
    transform: translateX(10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.2);
}

/* =====================================================
   3. FEATURED PROJECT SHOWCASE SECTION
===================================================== */
.projects-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-showcase-card {
    padding: 35px 30px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

.project-showcase-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    border-radius: 50%;
    background: #00b377;
    opacity: .12;
}

.project-showcase-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.35);
}

.project-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(0, 179, 119, 0.1);
    margin-bottom: 25px;
}

.project-icon i {
    font-size: 30px;
    color: #00b377;
}

.project-showcase-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.project-showcase-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.project-tags span {
    padding: 7px 15px;
    border-radius: 20px;
    font-size: .85rem;
    background: rgba(0, 179, 119, 0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 179, 119, 0.2);
}

/* =====================================================
   4. CASE STUDY SECTION
===================================================== */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    padding: 35px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s ease;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.case-study-number {
    font-size: 45px;
    font-weight: 800;
    color: #00b377;
    opacity: .25;
    margin-bottom: 15px;
}

.case-study-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.case-study-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-study-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.case-study-details span {
    font-size: .85rem;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(0, 179, 119, 0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 179, 119, 0.2);
}

/* =====================================================
   5. CATEGORY SECTION
===================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.category-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s ease;
}

.category-card i {
    font-size: 35px;
    color: #00b377;
    margin-bottom: 20px;
}

.category-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-secondary);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

/* =====================================================
   6. DEVELOPMENT PROCESS SECTION
===================================================== */
.process-timeline {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s ease;
}

.process-item h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-item:hover {
    transform: translateX(12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.2);
}

.process-icon {
    min-width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #00b377;
    box-shadow: 0 0 15px rgba(0, 179, 119, 0.4);
}

.process-icon i {
    font-size: 25px;
    color: #ffffff;
}

/* =====================================================
   7. IMPACT SECTION
===================================================== */
.impact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px;
    border-radius: 25px;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.2);
}

.impact-box p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.impact-stats {
    display: flex;
    gap: 30px;
}

.impact-stat {
    text-align: center;
}

.impact-stat h3 {
    font-size: 35px;
    color: #00b377;
    margin-bottom: 5px;
}

.impact-stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =====================================================
   8. PROJECT CTA SECTION
===================================================== */
.projects-cta {
    margin-top: 80px;
}

.projects-cta .cta-box {
    text-align: center;
}

/* =====================================================
   9. FOOTER SECTION
===================================================== */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: .3s ease;
}

.footer-links a:hover {
    color: #00b377;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    color: var(--text-secondary);
}

/* =====================================================
   10. SCROLL TO TOP BUTTON (Synced)
===================================================== */
.projects-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #0b1622, #0f1c2e);
    color: #00b377;
    border: 1px solid rgba(0, 179, 119, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.projects-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.projects-scroll-top:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.4);
}

/* =====================================================
   11. RESPONSIVE DESIGN
===================================================== */
@media(max-width: 992px) {
    .project-intro-wrapper,
    .projects-showcase-grid,
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-box {
        flex-direction: column;
    }
}

@media(max-width: 600px) {
    .projects-hero h1 {
        font-size: 2.2rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }
}



/* ======================================================
   CONTACT PAGE ENTERPRISE DESIGN
====================================================== */


/* =====================================================
   6. CONTACT HERO SECTION
===================================================== */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 90px;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.95), rgba(15, 128, 96, 0.25));
    text-align: center;
}

.contact-hero-content {
    max-width: 850px;
    margin: auto;
    animation: fadeUp 0.8s ease;
}

.contact-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 25px 0;
    color: var(--text-primary);
}

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 750px;
    margin: auto;
    color: var(--text-secondary);
    opacity: .9;
}

.contact-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 70px;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-hero-content p {
        font-size: 17px;
    }

    .contact-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================================
   2. CONTACT INTRO SECTION
===================================================== */
.contact-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: center;
}

.contact-intro-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.contact-trust-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-trust-item {
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 179, 119, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
}

.contact-trust-item:hover {
    transform: translateY(-8px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.2);
}

.contact-trust-item i {
    font-size: 28px;
    color: #00b377;
}

.contact-trust-item h3 {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-trust-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =====================================================
   3. CONTACT INFORMATION CARDS SECTION
===================================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.contact-info-card i {
    font-size: 35px;
    margin-bottom: 20px;
    color: #00b377;
}

.contact-info-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   4. CONTACT FORM SECTION
===================================================== */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-content p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.form-benefits {
    margin-top: 30px;
}

.form-benefits div {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.form-benefits i {
    font-size: 18px;
    color: #00b377;
}

.contact-form {
    padding: 35px;
    border-radius: 22px;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.2);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 179, 119, 0.2);
    outline: none;
    background: #111827;
    color: white;
    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: scale(1.02);
    border-color: #00b377;
    box-shadow: 0 0 10px rgba(0, 179, 119, 0.25);
}

/* =====================================================
   5. WHY CONTACT SECTION
===================================================== */
.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-contact-card {
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(145deg, #0a1118, #0f1926);
    border: 1px solid rgba(0, 179, 119, 0.15);
    transition: .35s;
}

.why-contact-card:hover {
    transform: translateY(-12px);
    border-color: #00b377;
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.3);
}

.why-contact-card i {
    font-size: 38px;
    margin-bottom: 20px;
    color: #00b377;
}

.why-contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.why-contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   6. CONTACT CTA SECTION
===================================================== */
.contact-cta {
    margin-top: 50px;
}

/* =====================================================
   7. FOOTER SECTION
===================================================== */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: .3s ease;
}

.footer-links a:hover {
    color: #00b377;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    color: var(--text-secondary);
}

/* =====================================================
   8. SCROLL TO TOP BUTTON (Synced)
===================================================== */
.contact-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #0b1622, #0f1c2e);
    color: #00b377;
    border: 1px solid rgba(0, 179, 119, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-scroll-top:hover {
    background: #00b377;
    color: #0b1622;
    border-color: #00b377;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 179, 119, 0.4);
}

/* =====================================================
   9. ANIMATION
===================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   10. MOBILE RESPONSIVE
===================================================== */
@media(max-width: 900px) {
    .contact-intro-wrapper,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-grid,
    .why-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }

    .contact-hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}
