/* ================================
------global---------------------
================================ */

:root {
    --color-primary: #f25cd9;
    --color-secondary: #aaa;
    --color-user-1: #f25cd9;
    --color-user-2: #8b5cf6;
    --color-user-3: #6366f1;
    --color-default: #f0f0f0;
    --color-background: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-default);
    background: linear-gradient(90deg, #0a0515 10%, #0d1020 100%);
    min-height: 100vh;
}

.gradient-text {
    background: linear-gradient(90deg, #f25cd9 10%, #3c45d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
------header & navigation---------
================================ */

header.ed-element {
    background: #0f0f0f;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(242, 92, 217, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ed-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.ed-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.ed-menu li a {
    color: var(--color-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ed-menu li a:hover,
.ed-menu li a.active {
    background: linear-gradient(90deg, #f25cd9 -19.48%, #8b5cf6 29.97%, #6366f1 101.23%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
------hamburger menu---------------
================================ */

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex !important;
    gap: 2rem !important;
    list-style: none;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f0f0f;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 2rem 0 !important;
        display: none !important;
        box-shadow: 0 8px 16px rgba(242, 92, 217, 0.1);
        z-index: 98;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(242, 92, 217, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem !important;
        color: var(--color-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: rgba(242, 92, 217, 0.1);
        padding-left: 2.5rem !important;
        color: #f25cd9 !important;
    }

    header.ed-element {
        padding: 1rem 2rem;
        z-index: 99;
    }

    .ed-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .preset-banner-v3-product-landing-page-electronics {
        padding: 0.5rem 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .banner-image {
        flex: 1;
        justify-content: center;
    }

    .banner-image img {
        width: 100%;
        max-width: 150px;
    }

    .banner-content {
        margin-left: 0;
    }

    .banner-title {
        font-size: 2rem !important;
    }

    .banner-subtitle {
        font-size: 1rem !important;
    }
}


/* ================================
------banner---------------------
================================ */

.preset-banner-v3-product-landing-page-electronics {
    background: transparent;
    padding: 0.5rem 2rem;
    text-align: left;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.preset-banner-v3-product-landing-page-electronics.center-banner {
    justify-content: center;
    text-align: center;
}

.services-banner {
    position: relative;
    padding-top: 2rem;
}

.banner-trianglex1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-trianglex1 img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(242, 92, 217, 0.3));
}

.banner-triangles {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    pointer-events: none;
}

.banner-triangles img {
    width: 600px;
    height: auto;
}

.about-banner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3rem 2rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.about-banner .banner-content {
    flex: 1;
    margin-left: 0;
}

.banner-body {
    flex: 1;
    padding: 1rem 0;
    max-width: 400px;
}

.banner-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-default);
}

.about-content-with-image {
    padding: 3rem 2rem;
}

.content-with-image {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.phoenix-left {
    max-width: 150px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 20px rgba(242, 92, 217, 0.3));
    flex-shrink: 0;
    margin-left: auto;
}

.content-with-image .content {
    flex: 1;
}

.banner-image-below {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image-below img {
    max-width: 150px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 20px rgba(242, 92, 217, 0.3));
}

.banner-image {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    filter: drop-shadow(0 0 30px rgba(242, 92, 217, 0.4));
    padding-right: -20rem;
}

.banner-image img {
    width: 150%;
    max-width: none;
    height: auto;
    opacity: 0.9;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-title {
    color: white !important;
    font-weight: bold !important;
    text-align: left !important;
    font-size: 3.5rem !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase !important;
}

.banner-content {
    margin-left: 3rem;
}

.pink-heading {
    color: #f25cd9 !important;
}

.banner-subtitle {
    color: #f25cd9 !important;
    font-size: 1.5rem !important;
}

.ed-button,
.form-button {
    background: linear-gradient(90deg, #f25cd9 10%, #3c45d6 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.ed-button:hover,
.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 92, 217, 0.3);
}

/* ================================
------sections-------------------
================================ */

section {
    padding: 3rem 2rem;
}

section.ed-element {
    max-width: 1200px;
    margin: 0 auto;
}

.preset-boxes-v3-border {
    padding-top: 0 !important;
}

.content {
    text-align: center;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.content p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
------boxes & cards--------------
================================ */

.preset-boxes-v3-border {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 2000px;
    margin: 0 auto;
    padding: 2rem 0.3rem;
}

.two-boxes-center {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.box {
    padding: 1.5rem;
    border: none;
    border-radius: 15px;
    text-align: center;
    background: linear-gradient(135deg, rgba(60, 69, 214, 0.2) 0%, rgba(242, 92, 217, 0.2) 100%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(60, 69, 214, 0.2);
    z-index: 1;
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f25cd9, #3c45d6);
}

.box:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(60, 69, 214, 0.3);
    border-color: rgba(60, 69, 214, 0.4);
}

.box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.box .icon.phoenix-small {
    margin-bottom: 0.5rem;
}

.box .icon.phoenix-small img {
    max-width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.box-top-icon {
    margin-bottom: 0.5rem;
}

.box-top-icon img {
    max-width: 40px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.box .icon img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.box-icon {
    max-width: 120px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    opacity: 0.9;
}

.box h3 {
    color: #f25cd9;
    margin-bottom: 0.8rem;
    margin-top: 0.3rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.box p {
    font-size: 0.85rem;
    color: var(--color-default);
    line-height: 1.6;
    flex-grow: 1;
}

.white-heading {
    color: #f25cd9 !important;
    font-weight: normal !important;
    font-size: 0.9rem !important;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.8rem;
    color: white;
    background: transparent;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f25cd9 10%, #3c45d6 100%);
    z-index: -1;
    transition: left 0.3s ease;
}

.learn-more-btn:hover {
    color: white;
}

.learn-more-btn:hover::before {
    left: 0;
}

.box-bottom-logo {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-bottom-logo img {
    max-width: 60px;
    height: auto;
    opacity: 0.8;
}

.box-bottom-logo img.logo-large {
    max-width: 85px;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(242, 92, 217, 0.5);
    letter-spacing: 0.5px;
}

.box p {
    color: var(--color-secondary);
    line-height: 1.6;
}

/* ================================
------contact section-----------
================================ */

.contact-banner {
    background: transparent !important;
    position: relative;
    padding-top: 2rem;
}

.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

/* Contact Info Cards */
.contact-info-cards {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    order: 2;
}

.contact-card {
    padding: 0.5rem 0;
    border-radius: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}}}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
    border-color: transparent;
    background: transparent;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-card h3 {
    color: #f25cd9;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}}

.contact-card p {
    color: var(--color-default);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}}

.contact-card a {
    color: #3c45d6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #f25cd9;
    text-decoration: underline;
}

/* Contact Form Styling */
.contact-form-wrapper {
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(60, 69, 214, 0.08) 0%, rgba(242, 92, 217, 0.08) 100%);
    border: 1px solid rgba(60, 69, 214, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f25cd9, #3c45d6);
}

.contact-form-modern {
    display: grid;
    gap: 0.5rem;
}}}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border: 2px solid rgba(60, 69, 214, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f25cd9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(242, 92, 217, 0.15);
    transform: translateY(-2px);
}

.form-button-modern {
    padding: 1rem 2rem;
    margin-top: 1rem;
    background: linear-gradient(90deg, #f25cd9 10%, #3c45d6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.form-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(242, 92, 217, 0.4);
}

.form-button-modern:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-container {
        gap: 1.5rem;
        max-width: 100%;
        width: 100%;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        display: grid;
        order: 2;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        background: rgba(60, 69, 214, 0.08);
        border: 1px solid rgba(60, 69, 214, 0.2);
        border-radius: 8px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .form-button-modern {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .contact-info-below {
        flex-direction: column !important;
    }

    .contact-banner {
        padding: 2rem 1.5rem !important;
    }

    .pink-heading {
        font-size: 1.8rem !important;
    }
}

/* ================================
------forms---------------------
================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    color: #333333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(60, 69, 214, 0.1);
}

/* ================================
------footer--------------------
================================ */

footer.ed-element {
    background: #0f0f0f;
    color: white;
    padding: 0.7rem 0.5rem;
    text-align: center;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-content p {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    text-align: center;
}

footer .ed-menu ul {
    justify-content: center;
    text-align: center;
}

footer .ed-menu li a {
    color: white;
    font-size: 0.85rem;
    text-align: center;
}

footer .ed-menu li a:hover {
    opacity: 0.8;
}

/* ================================
------responsive design---------
================================ */

@media (max-width: 768px) {
    .ed-menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .preset-boxes-v3-border {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .preset-columns-two-v2-product-landing-page-electronics-contact-form-section {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 600px) {
    header.ed-element {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .banner-content h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.8rem;
    }

/* ================================
------forms----------------------
================================ */

.request-form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.form-container {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(242, 92, 217, 0.2);
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: white;
    border: 1px solid rgba(242, 92, 217, 0.3);
    color: black;
    padding: 0.8rem;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(242, 92, 217, 0.2);
}

/* ================================
------about page-----------------
================================ */

.top-tagline-section {
    padding: 2rem 2rem;
    text-align: right;
    max-width: 1200px;
    margin: 0 auto;
}

.top-tagline-section .banner-title {
    font-size: 1.4rem !important;
    text-align: right !important;
    text-transform: lowercase !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
}

.preset-unequal-columns-v2-product-landing-page-electronics-section-after-header {
    padding: 2rem 2rem 0.5rem 2rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.preset-unequal-columns-v2-product-landing-page-electronics-section-after-header:empty {
    padding: 0 !important;
    margin: 0 !important;
}

.preset-boxes-v3-border.two-boxes-center {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem !important;
    max-width: 900px;
    margin: 0 auto;
}

.preset-boxes-v3-border.two-boxes-center .box {
    width: 100%;
    max-width: none;
}

.about-banner {
    padding: 4rem 2rem !important;
}

.about-banner-with-boxes {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 1.5rem 2rem !important;
}

.about-banner-with-boxes .banner-content {
    flex: 1;
}

.about-banner-with-boxes > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-vision-section {
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-vision-content {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(60, 69, 214, 0.08) 0%, rgba(242, 92, 217, 0.08) 100%);
    border-radius: 15px;
    border: 1px solid rgba(60, 69, 214, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.mission-vision-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f25cd9, #3c45d6);
}

.mission-vision-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(60, 69, 214, 0.2);
    border-color: rgba(60, 69, 214, 0.4);
}

.mission-vision-icon {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #f25cd9 10%, #3c45d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    opacity: 0.6;
}

.mission-vision-content h3 {
    color: #f25cd9;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mission-vision-content p {
    color: var(--color-default);
    line-height: 1.4;
    font-size: 0.75rem;
    flex-grow: 1;
}

.pink-heading {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tagline-section {
    padding: 3rem 2rem;
    text-align: right;
    margin: 3rem 0;
}

.tagline-heading {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .tagline-section {
        text-align: center;
    }
    
    .tagline-heading {
        font-size: 1.8rem;
    }

    .about-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 1.5rem !important;
    }

    .about-banner .banner-content {
        flex: 1;
        margin-left: 0;
    }

    .about-banner-with-boxes {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 1.5rem !important;
    }

    .about-banner-with-boxes .banner-content {
        width: 100%;
    }

    .about-banner-with-boxes > div:last-child {
        width: 100%;
    }

    .decorative-triangle {
        display: none !important;
    }

    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .mission-vision-content {
        padding: 1rem;
        min-height: 150px;
    }

    .mission-vision-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .mission-vision-content p {
        font-size: 0.7rem;
    }

    .mission-vision-icon {
        font-size: 1.6rem;
    }
}

.preset-unequal-columns-v2-product-landing-page-electronics-section-after-header {
    padding: 3rem 2rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.preset-boxes-v3-border.two-boxes-center {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem !important;
    max-width: 900px;
    margin: 0 auto;
}

.preset-boxes-v3-border.two-boxes-center .box {
    width: 100%;
    max-width: none;
}

.about-banner {
    padding: 1rem 2rem !important;
}

.pink-heading {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-button {
    background: linear-gradient(90deg, #f25cd9 10%, #3c45d6 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 1rem;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 92, 217, 0.3);
}

/* ================================
------responsive----------------
================================ */

@media (max-width: 768px) {
    .form-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* About page responsive */
    .about-banner-with-boxes {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 1.5rem 1rem !important;
    }

    .about-banner-with-boxes .banner-content {
        flex: 1 !important;
    }

    .about-banner-with-boxes .banner-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }

    .about-banner-with-boxes > div[style*="flex: 1"] {
        max-width: 100% !important;
        flex: 1 !important;
    }

    .mission-vision-content {
        max-width: 100% !important;
        padding: 0.8rem !important;
    }

    /* Founder section on about page responsive */
    section[style*="padding: 1rem 2rem 4rem"] {
        padding: 1rem 1rem 2rem 1rem !important;
    }

    section[style*="padding: 1rem 2rem 4rem"] h2 {
        font-size: 1.1rem !important;
        padding-left: 0 !important;
        margin-bottom: 1rem !important;
    }

    section[style*="padding: 1rem 2rem 4rem"] img {
        padding-left: 0 !important;
        width: 150px !important;
        height: 150px !important;
        margin: 0 0 0.5rem 0 !important;
    }

    section[style*="padding: 1rem 2rem 4rem"] h3 {
        font-size: 0.9rem !important;
        padding-left: 0 !important;
        margin-bottom: 0.3rem !important;
    }

    section[style*="padding: 1rem 2rem 4rem"] a {
        margin-left: 0 !important;
        font-size: 0.85rem !important;
    }
    /* Landing page mobile */
    .banner-title {
        font-size: 1.8rem !important;
    }

    .banner-subtitle {
        font-size: 0.9rem !important;
    }

    .banner-image {
        display: none !important;
    }

    .divider-icon {
        display: none !important;
    }

    .banner-content {
        margin-left: 0 !important;
        padding-top: 2rem !important;
    }

    /* Our Core Pillars section mobile */
    .preset-unequal-columns-v2-product-landing-page-electronics-section-after-header h2 {
        font-size: 1.3rem !important;
        text-align: left !important;
    }

    .preset-unequal-columns-v2-product-landing-page-electronics-section-after-header p {
        font-size: 0.85rem !important;
        text-align: left !important;
    }

    .about-banner-with-boxes .banner-title {
        font-size: 1.5rem !important;
        text-align: left !important;
    }

    .about-banner-with-boxes p {
        text-align: left !important;
    }

    /* Founder/Bio page mobile */
    section[style*="max-width: 1400px"] {
        padding: 1.5rem 1rem !important;
    }

    section[style*="max-width: 1400px"] > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 0rem !important;
    }

    section[style*="max-width: 1400px"] img {
        width: 200px !important;
        height: 200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    section[style*="max-width: 1400px"] div[style*="margin-bottom: 2rem"] {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    section[style*="max-width: 1400px"] h2 {
        font-size: 1.8rem !important;
        padding-left: 0 !important;
        text-align: center !important;
    }

    section[style*="max-width: 1400px"] > div > div > h2,
    section[style*="max-width: 1400px"] h2[style*="text-align: left"] {
        text-align: center !important;
        padding-left: 0 !important;
    }

    section[style*="max-width: 1400px"] p {
        padding-left: 0 !important;
        text-align: center !important;
    }

    section[style*="max-width: 1400px"] p[style*="text-align: left"] {
        text-align: center !important;
        padding-left: 0 !important;
    }

    section[style*="max-width: 1400px"] div[style*="text-align: left"] {
        text-align: center !important;
    }

    section[style*="max-width: 1400px"] div[style*="margin-bottom: 2rem"] {
        text-align: center !important;
    }

    section[style*="max-width: 1400px"] div[style*="flex: 1"] {
        text-align: center !important;
    }

    /* Story section mobile */
    section[style*="margin-top: -4rem"] {
        margin-top: 0 !important;
        padding: 1rem !important;
    }

    section[style*="margin-top: -4rem"] div {
        padding-left: 0 !important;
    }

    section[style*="margin-top: -4rem"] p {
        text-align: left !important;
        font-size: 0.9rem !important;
    }

    /* What drives me boxes - center text */
    section[style*="max-width: 1400px"] div[style*="padding: 1.2rem"] {
        text-align: center !important;
    }

    section[style*="max-width: 1400px"] div[style*="padding: 1.2rem"] h3 {
        text-align: center !important;
    }

    section[style*="max-width: 1400px"] div[style*="padding: 1.2rem"] p {
        text-align: center !important;
    }

    /* About page - Our Vision Lead section mobile */
    section[style*="max-width: 1200px"] {
        text-align: center !important;
    }

    section[style*="max-width: 1200px"] h2 {
        padding-left: 0 !important;
        text-align: center !important;
    }

    section[style*="max-width: 1200px"] img {
        padding-left: 0 !important;
        margin: 0 auto 0.3rem auto !important;
    }

    section[style*="max-width: 1200px"] h3 {
        padding-left: 0 !important;
        text-align: center !important;
    }

    section[style*="max-width: 1200px"] a {
        margin-left: 0 !important;
    }
}