/* RESTORED DARK THEME - WITH ABOUT-US CARD GEOMETRY */
/* FINAL CORPORATE THEME - DARK MODE UPDATED */
:root {
    --nav-navy: #1a3c8e;
    /* Top header blue - NEVER CHANGE */
    --nav-green: #68bd5d;
    /* Top header green buttons - NEVER CHANGE */
    --nav-red: #d93025;
    /* Active link red - NEVER CHANGE */
    --nav-orange: #ff8c37;
    /* Donate button orange - NEVER CHANGE */

    /* REFINED CORPORATE PALETTE */
    --primary: #d93025;
    /* Official Brand Red - NEVER CHANGE */
    --secondary: #ff4d4d;
    /* Complementary bright red */
    --bg-body: #010029;
    /* Deepest Navy (Slate 950) */
    --bg-card: #1e293b;
    /* Slate 800 */
    --text-main: #f8fafc;
    /* Slate 50 */
    --text-muted: #94a3b8;
    /* Slate 400 */
    --border: rgba(255, 255, 255, 0.08);
    --glow-color: rgba(225, 29, 72, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    /* Upgrade typography */
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* BACKGROUND ANIMATION RESTORED */
.bg-aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-body);
    /* Changed to new bg-body */
}

.aurora-blur {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(150px);
    /* Increased blur */
    opacity: 0.05;
    /* Reduced opacity */
    animation: float 25s infinite alternate;
    /* Slower animation */
}

.aurora-1 {
    background: var(--primary);
    top: -15%;
    left: -15%;
}

.aurora-2 {
    background: var(--secondary);
    bottom: -15%;
    right: -15%;
}

.aurora-3 {
    background: #1e3a8a;
    /* Deep Navy for depth */
    top: 45%;
    right: 25%;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(120px, 60px) scale(1.15);
    }
}



/* SERVICES SUB-NAVBAR - BRANDED */
.services-navbar {
    background: #ffffff !important;
    border-bottom: 2px solid var(--primary) !important;
    padding: 0 20px !important;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.PRC-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.PRC-logo img {
    height: 50px;
    width: auto;
}

.services-label {
    font-weight: 900;
    color: var(--bg-body);
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.services-navbar .nav-links {
    display: flex;
    gap: 10px;
}

.services-navbar .nav-links a {
    color: #475569 !important;
    /* Slate 600 */
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    transition: var(--transition);
}

.services-navbar .nav-links a:hover {
    background: #f1f5f9;
    color: var(--primary) !important;
}

.services-navbar .nav-links a.active {
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 12px var(--glow-color);
}

.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 1366px) {
    .services-navbar {
        justify-content: space-between;
        padding: 0 20px !important;
    }

    .hamburger-menu {
        display: block;
        width: 30px;
        height: 25px;
        /* Adjust scale */
        cursor: pointer;
        position: relative;
        text-decoration: none;
        margin-right: 0;
        /* Hide text character using transparent color and 0 size, pseudo elements will do the work */
        font-size: 0;
        background-color: transparent;
        border: none;
        padding: 0;
    }

    /* WE MUST OVERRIDE THE TEXT NODE DISPLAY to not mess up spacing */
    /* But we can't select text node. We just hide it with font-size:0 */

    .hamburger-menu {
        /* Middle bar using linear gradient */
        background-image: linear-gradient(var(--primary), var(--primary));
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 3px;
        transition: background-size 0.3s ease;
    }

    /* Top and Bottom bars */
    .hamburger-menu::before,
    .hamburger-menu::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--primary);
        transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
        border-radius: 2px;
    }

    .hamburger-menu::before {
        top: 0;
    }

    .hamburger-menu::after {
        bottom: 0;
    }

    /* ACTIVE STATE (X Close Button) */
    .hamburger-menu.open {
        background-size: 0% 3px;
        /* Hide middle bar */
    }

    .hamburger-menu.open::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburger-menu.open::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* Remove old hover rotation, as it conflicts with X animation */
    /* .hamburger-menu:hover { transform: rotate(90deg); } - REMOVED */

    .services-navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 3px solid var(--primary);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        padding: 10px 0;
        gap: 0;
        z-index: 10000;
        backdrop-filter: blur(10px);
        animation: slideDown 0.3s ease-out forwards;
        max-height: 80vh;
        overflow-y: auto;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .services-navbar .nav-links.responsive {
        display: flex;
    }

    .services-navbar .nav-links a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px 30px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
        color: #334155 !important;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .services-navbar .nav-links a:hover,
    .services-navbar .nav-links a.active {
        background: rgba(217, 48, 37, 0.05);
        color: var(--primary) !important;
        padding-left: 40px;
    }

    .services-navbar .nav-links a:last-child {
        border-bottom: none;
    }
}

/* BACK BUTTON */
.back-btn-container {
    padding: 20px 5%;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.back-btn {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.back-btn:hover {
    color: #ffffff;
    background: rgba(217, 48, 37, 0.1);
    border-color: var(--nav-red);
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 0.8rem;
}

/* HERO SECTION - SLIDESHOW & STATIC */
#hero-slider {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

#slideshow {
    height: 80vh;
    /* Increased height */
    position: relative;
    overflow: hidden;
}

.slide-images {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.6);
    z-index: 1;
}

.hero-static {
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-static::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.hero-intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-intro p {
    font-size: 1.4rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* GLASS CARDS SECTION */
.section h2,
.section-header h2,
.service-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 60px 0 40px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.section h2::after,
.section-header h2::after,
.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card,
.feature-item,
.step,
.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover,
.feature-item:hover,
.step:hover,
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--glow-color);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary));
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.4;
}

/* TEAM GRIDS */
.team-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
}

.team-group {
    margin-bottom: 80px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    /* Corporate White */
    margin-bottom: 50px;
    position: relative;
    display: block;
    /* Ensure full width for centering */
    text-align: center;
    padding-bottom: 20px;
    text-transform: capitalize;
}

/* CONTACT CTA EMAIL - BIGGER */
.email-line {
    font-size: 1.5rem !important;
    color: #cbd5e1;
    margin-top: 25px;
}

.email-line strong {
    font-size: 2.2rem !important;
    /* Much bigger email text */
    color: #ffffff;
    font-weight: 900;
    display: block;
    margin-top: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    /* Corporate Red Underline */
    border-radius: 2px;
}

.team-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-grid-5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* TEAM CARDS REFINEMENT */
.team-member-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.team-member-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--glow-color);
    border-color: var(--primary);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    height: 18rem;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

.member-title {
    color: #dc2626;
    /* Red title from About Us */
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.member-bio {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* RESPONSIVE TEAM GRIDS */
@media (max-width: 1200px) {

    .team-grid-4,
    .team-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .team-grid-4,
    .team-grid-5 {
        grid-template-columns: 1fr;
    }
}

.features,
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.feature-grid,
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.feature-box {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--glow-color);
}

.feature-box h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-muted);
}

/* BUTTONS */
.know-more-btn {
    padding: 12px 30px;
    background: var(--nav-red);
    border: none;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.know-more-btn:hover {
    background: #b91c1c;
    box-shadow: 0 6px 15px var(--glow-color);
    transform: translateY(-2px);
}

.contact-btn {
    padding: 16px 50px;
    background: var(--nav-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-btn:hover {
    background: #b91c1c;
    box-shadow: 0 8px 25px var(--glow-color);
    transform: translateY(-2px);
}

/* FOOTER STYLING */
footer {
    background: #020617 !important;
    /* Unified dark background */
    color: white;
    padding: 60px 20px 40px;
    border-top: 1px solid var(--border);
}

footer h1,
footer h2 {
    color: #ffffff !important;
    font-family: inherit;
    border-bottom: 2px solid var(--nav-red);
    /* Matches brand red */
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

footer p {
    color: var(--text-muted);
}

footer a {
    color: var(--text-muted) !important;
}

footer a:hover {
    color: #ffffff !important;
}

.footer-main-heading {
    border-bottom: none;
    margin-bottom: 40px;
    text-align: center;
}

.footer-main-heading h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--secondary);
}

/* FOOTER GRID SYSTEM */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: #fff !important;
}

/* RESPONSIVE TWEAKS */
/* ========================================================
   RESPONSIVENESS & MOBILE OPTIMIZATION
   ======================================================== */

@media (max-width: 1200px) {

    .team-grid-4,
    .team-grid-5 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero-intro h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* HEADER & TOP BAR */
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 10px;
    }

    .right-buttons-container {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .navbar {
        padding: 10px !important;
    }

    /* NAV LINKS MOBILE MENU - INHERITED FROM 900px QUERY */
    /* Already styled in max-width: 900px block */


    /* SLIDESHOW & HERO */
    #slideshow {
        height: 50vh;
    }

    .hero-intro {
        padding: 0 15px;
        width: 100%;
    }

    .hero-intro h1 {
        font-size: 2rem;
    }

    .hero-intro p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* GRIDS & SECTIONS */
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .section h2,
    .section-title {
        font-size: 1.5rem;
        margin: 30px 0;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .back-btn-container {
        padding: 10px 15px;
    }

    /* FOOTER TABLET */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .connect-section .social-icons {
        justify-content: center;
    }

    footer h1,
    footer h2 {
        display: inline-block;
        /* Reset from block if needed, or keep inline-block with centering */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-intro h1 {
        font-size: 1.8rem;
    }

    .contact-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* ADDITIONAL SERVICES PAGES STYLES */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(to right, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

.service-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item,
.service-card,
.value-card,
.step {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: var(--transition);
    cursor: pointer;
}

.feature-item:hover,
.service-card:hover,
.value-card:hover,
.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item h3,
.service-card h3,
.value-card h3,
.step h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.feature-item p,
.service-card p,
.value-card p,
.step p {
    color: #94a3b8;
    font-size: 1rem;
}

/* DIGITAL MARKETING CARDS ACCENTS */
.service-card.seo {
    border-top: 4px solid #3b82f6;
}

.service-card.smm {
    border-top: 4px solid #ef4444;
}

.service-card.content {
    border-top: 4px solid #f59e0b;
}

.service-card.email {
    border-top: 4px solid #22c55e;
}

.service-card.affiliate {
    border-top: 4px solid #a855f7;
}

.service-card.other {
    border-top: 4px solid #06b6d4;
}

/* HOME DELIVERY PROCESS STEPS */
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

/* CONTACT CTA */
.contact-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    border-radius: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

/* ABOUT PAGE PREMIUM CARD */
.about-card-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    /* Pull up to overlap hero slightly */
    z-index: 10;
}

.about-card-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    flex: 1.4;
    /* Slightly more room for text */
}

.about-text h2 {
    text-align: left;
    margin-top: 0;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-image {
    flex: 1;
    /* Equal balance */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns on desktop */
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.value-card {
    padding: 50px 30px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.mission-section {
    padding: 120px 20px;
    background: radial-gradient(circle at center, #1e293b, #0f172a);
    text-align: center;
    border-top: 1px solid var(--border);
}

.mission-text {
    font-size: 2.2rem;
    /* Much larger and bolder */
    max-width: 1100px;
    margin: 0 auto;
    color: #f1f5f9;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
}

.mission-text strong {
    color: var(--primary);
    font-weight: 800;
    font-style: normal;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }
}

/* TRUSTED USERS COUNTER */
.trusted-section {
    padding: 80px 0;
    background: var(--bg-body);
    text-align: center;
    position: relative;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
}

.counter-item {
    background: var(--bg-card);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.counter-plus {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 900;
    vertical-align: top;
    position: absolute;
    top: 35px;
    right: 25%;
    opacity: 0.8;
}

.counter-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.view-all-container {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .counter-plus {
        right: 35%;
    }
}

/* CUSTOMERS PAGE STYLES */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Strict 3 columns on desktop */
    gap: 30px;
    padding: 60px 40px;
    /* More side padding */
    max-width: 1400px;
    /* Increased from 1200px */
    margin: 0 auto;
}

@media (max-width: 992px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .customers-grid {
        grid-template-columns: 1fr;
    }
}

.customer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.customer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.customer-img {
    width: 100%;
    height: 250px;
    /* Big rectangle height */
    border-radius: 12px;
    /* Rounded corners instead of circle */
    margin: 0 auto 20px;
    background-size: 200% 200%;
    border: none;
    /* Remove border for cleaner look */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.customer-card h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.customer-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stars {
    color: #ffd700;
    margin: 10px 0;
    font-size: 1.4rem;
    /* Increased size */
}

.customer-review {
    font-style: italic;
    color: #e2e8f0;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding: 0 10px;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-3 {
        grid-template-columns: 1fr;
    }
}

.creative-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .creative-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .creative-services-grid {
        grid-template-columns: 1fr !important;
    }
}

.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

@media (max-width: 1100px) {
    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .process-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1100px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .services-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

.services-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}