/* =========================================
   ABOUT PAGE COMMON
========================================= */

.about-page-hero,
.about-company-section,
.about-services-section,
.owner-section,
.vision-mission-section,
.why-about-section,
.about-cta-section {

    position: relative;

    overflow: hidden;

}


/* =========================================
   ABOUT HERO — DARK GREEN THEME
========================================= */

.about-page-hero {

    position: relative;

    padding: 40px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(32, 189, 103, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(69, 245, 143, 0.06),
            transparent 28%
        ),
        #07130e;

}


/* Subtle grid */

.about-page-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;

}


/* =========================================
   HERO LABEL
========================================= */

.about-page-label,
.section-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #45f58f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


/* Green dot */

.about-page-label::before {

    content: "";

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #45f58f;

    box-shadow:
        0 0 0 5px rgba(69,245,143,0.08),
        0 0 15px rgba(69,245,143,0.7);

}


/* =========================================
   HERO CONTENT
========================================= */

.about-hero-content {

    position: relative;

    z-index: 3;

}


.about-hero-content h1 {

    max-width: 720px;

    margin-bottom: 24px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -2.5px;

}


.about-hero-content h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #45f58f,
            #20bd67
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.about-hero-content > p {

    max-width: 590px;

    margin-bottom: 32px;

    color: #8c9d94;

    font-size: 15px;

    line-height: 1.85;

}


/* =========================================
   HERO BUTTONS
========================================= */

.about-hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

}


/* Primary */

.about-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 7px 8px 7px 20px;

    border: 1px solid rgba(69,245,143,0.15);

    border-radius: 8px;

    background: #45f58f;

    color: #06120c;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 10px 35px rgba(69,245,143,0.12);

    transition: 0.3s ease;

}


.about-primary-btn span {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    background: #07130e;

    color: #45f58f;

    transition: 0.3s ease;

}


.about-primary-btn:hover {

    color: #06120c;

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(69,245,143,0.2);

}


.about-primary-btn:hover span {

    transform: rotate(45deg);

}


/* Secondary */

.about-secondary-btn {

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 8px;

    background: rgba(255,255,255,0.02);

    color: #d8e4de;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;

}


.about-secondary-btn:hover {

    border-color: rgba(69,245,143,0.5);

    background: rgba(69,245,143,0.05);

    color: #45f58f;

}


/* =========================================
   HERO VISUAL
========================================= */

.about-hero-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* Main green glow */

.hero-glow {

    position: absolute;

    width: 330px;

    height: 330px;

    border-radius: 50%;

    background: rgba(32,189,103,0.20);

    filter: blur(80px);

    animation: heroGlow 4s ease-in-out infinite;

}


@keyframes heroGlow {

    0%,
    100% {

        transform: scale(1);

        opacity: .7;

    }

    50% {

        transform: scale(1.12);

        opacity: 1;

    }

}


/* =========================================
   ORBIT CIRCLES
========================================= */

.hero-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(69,245,143,0.20);

}


.circle-one {

    width: 360px;

    height: 360px;

    animation:
        orbitRotate 18s linear infinite;

}


.circle-two {

    width: 480px;

    height: 480px;

    border-color: rgba(69,245,143,0.08);

    animation:
        orbitRotateReverse 25s linear infinite;

}


@keyframes orbitRotate {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}


@keyframes orbitRotateReverse {

    from {

        transform: rotate(360deg);

    }

    to {

        transform: rotate(0deg);

    }

}


/* =========================================
   HERO IMAGE
========================================= */

.about-hero-image {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 480px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 35px rgba(0,0,0,0.45)
        )
        drop-shadow(
            0 0 30px rgba(32,189,103,0.10)
        );

    animation:
        aboutHeroFloat 4s ease-in-out infinite;

}


@keyframes aboutHeroFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* =========================================
   FLOATING CARD
========================================= */

.hero-floating-card {

    position: absolute;

    right: -5px;

    bottom: 65px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    background:
        rgba(10,28,20,0.88);

    border: 1px solid rgba(69,245,143,0.15);

    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);

    backdrop-filter: blur(12px);

}


.hero-floating-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(69,245,143,0.10);

    color: #45f58f;

    box-shadow:
        inset 0 0 15px rgba(69,245,143,0.05);

}


.hero-floating-card strong {

    display: block;

    color: #ffffff;

    font-size: 12px;

}


.hero-floating-card small {

    color: #7f9389;

    font-size: 10px;

}


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

@media (max-width: 991px) {

    .about-page-hero {

        padding: 30px 0 70px;

    }


    .about-hero-content {

        text-align: center;

        margin-bottom: 20px;

    }


    .about-page-label {

        justify-content: center;

    }


    .about-hero-content h1 {

        margin-left: auto;

        margin-right: auto;

    }


    .about-hero-content > p {

        margin-left: auto;

        margin-right: auto;

    }


    .about-hero-buttons {

        justify-content: center;

    }


    .about-hero-visual {

        min-height: 450px;

    }

}


@media (max-width: 576px) {

    .about-page-hero {

        padding: 20px 0 50px;

    }


    .about-hero-content h1 {

        font-size: 42px;

        letter-spacing: -1.5px;

    }


    .about-hero-content > p {

        font-size: 14px;

    }


    .about-hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .about-primary-btn,
    .about-secondary-btn {

        width: 100%;

        justify-content: center;

    }


    .about-hero-visual {

        min-height: 380px;

    }


    .circle-one {

        width: 280px;

        height: 280px;

    }


    .circle-two {

        width: 350px;

        height: 350px;

    }


    .hero-glow {

        width: 250px;

        height: 250px;

    }


    .about-hero-image {

        width: 85%;

    }


    .hero-floating-card {

        right: 0;

        bottom: 30px;

        padding: 10px 12px;

    }


    .hero-floating-icon {

        width: 34px;

        height: 34px;

    }

}


/* =========================================
   COMPANY SECTION
========================================= */

.about-company-section {

    padding: 110px 0;

    background: #ffffff;

}


.company-image-box {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: #f4f9f6;

    overflow: hidden;

}


.company-image-glow {

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background: rgba(69,245,143,0.18);

    filter: blur(60px);

}


.company-image {

    position: relative;

    z-index: 2;

    width: 82%;

    max-width: 430px;

    object-fit: contain;

}


.experience-card {

    position: absolute;

    left: 20px;

    bottom: 20px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 6px 24px;

    border-radius: 10px;

    background: #0b1712;

    color: #ffffff;

}


.experience-card strong {

    color: #45f58f;

    font-size: 25px;

}


.experience-card span {

    color: #dce7e0;

    font-size: 10px;

    line-height: 1.4;

}


.company-content {

    padding-left: 25px;

}


.company-content h2,
.owner-content h2,
.services-heading h2,
.why-heading h2 {

    margin-bottom: 22px;

    color: #102019;

    font-size: clamp(35px, 4vw, 50px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.company-content h2 span,
.owner-content h2 span,
.services-heading h2 span,
.why-heading h2 span {

    color: #20bd67;

}


.company-content p {

    margin-bottom: 14px;

    color: #718078;

    font-size: 14px;

    line-height: 1.8;

}


.company-points {

    display: flex;

    flex-wrap: wrap;

    gap: 12px 25px;

    margin-top: 25px;

}


.company-point {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #536159;

    font-size: 12px;

}


.company-point i {

    color: #20bd67;

}


/* =========================================
   WHAT WE DO
========================================= */

.about-services-section {

    padding: 100px 0;

    background: #f7faf8;

}


.services-heading {

    max-width: 700px;

    margin: 0 auto 50px;

}


.services-heading p {

    color: #718078;

    font-size: 14px;

    line-height: 1.8;

}


.about-service-card {

    position: relative;

    height: 100%;

    padding: 30px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5ece7;

    border-radius: 16px;

    transition: 0.4s ease;

}


.about-service-card:hover {

    transform: translateY(-8px);

    border-color: #45f58f;

    box-shadow:
        0 20px 45px rgba(20,70,40,0.09);

}


.service-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 12px;

    background: #e8fcef;

    color: #20bd67;

    font-size: 22px;

}


.service-number {

    position: absolute;

    top: 20px;

    right: 22px;

    color: #dce6df;

    font-size: 30px;

    font-weight: 800;

}


.about-service-card h3 {

    margin-bottom: 12px;

    color: #14211a;

    font-size: 22px;

}


.about-service-card p {

    margin-bottom: 20px;

    color: #78847e;

    font-size: 13px;

    line-height: 1.7;

}


.about-service-card a {

    color: #20bd67;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

}


.about-service-card a i {

    margin-left: 5px;

}


/* =========================================
   OWNER
========================================= */

.owner-section {

    padding: 110px 0;

    background: #ffffff;

}


.owner-image-wrapper {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.owner-image-bg {

    position: absolute;

    width: 360px;

    height: 430px;

    border-radius: 25px;

    background: #eaf8ef;

    transform: rotate(-5deg);

}


.owner-image {

    position: relative;

    z-index: 2;

    width: 350px;

    height: 430px;

    object-fit: cover;

    border-radius: 22px;

    box-shadow:
        0 25px 50px rgba(20,50,30,0.14);

}


.owner-badge {

    position: absolute;

    right: 10px;

    bottom: 45px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 16px;

    border-radius: 9px;

    background: #0b1712;

    color: #ffffff;

    font-size: 11px;

}


.owner-badge i {

    color: #45f58f;

}


.owner-content {

    padding-left: 20px;

}


.owner-content > p {

    color: #718078;

    font-size: 14px;

    line-height: 1.8;

}


.owner-quote {

    position: relative;

    margin: 25px 0;

    padding: 20px 25px;

    border-left: 3px solid #45f58f;

    background: #f5faf7;

}


.owner-quote i {

    color: #20bd67;

    font-size: 25px;

}


.owner-quote p {

    margin: 5px 0 0;

    color: #435149;

    font-size: 13px;

    font-style: italic;

    line-height: 1.7;

}


.owner-details h4 {

    margin: 0;

    color: #15221a;

    font-size: 16px;

}


.owner-details span {

    color: #20bd67;

    font-size: 11px;

}


/* =========================================
   VISION MISSION
========================================= */

.vision-mission-section {

    padding: 100px 0;

    background: #f7faf8;

}


.vision-card,
.mission-card {

    position: relative;

    height: 100%;

    padding: 40px;

    overflow: hidden;

    border-radius: 18px;

    color: #ffffff;

    background: #0b1712;

}


.mission-card {

    background: #12251b;

}


.vm-top {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;

}


.vm-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: rgba(69,245,143,0.12);

    color: #45f58f;

    font-size: 20px;

}


.vm-top > span {

    color: #45f58f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.vision-card h3,
.mission-card h3 {

    margin-bottom: 18px;

    font-size: 30px;

    line-height: 1.2;

}


.vision-card h3 span,
.mission-card h3 span {

    color: #45f58f;

}


.vision-card p,
.mission-card p {

    color: #b9c8bf;

    font-size: 13px;

    line-height: 1.8;

}


.vm-line {

    width: 70px;

    height: 3px;

    margin-top: 25px;

    border-radius: 5px;

    background: #45f58f;

}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-about-section {

    padding: 100px 0;

    background: #ffffff;

}


.why-heading {

    margin-bottom: 50px;

}


.why-card {

    height: 100%;

    padding: 25px;

    border: 1px solid #e8eee9;

    border-radius: 14px;

    transition: 0.3s ease;

}


.why-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(20,60,35,0.08);

}


.why-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 9px;

    background: #e8fcef;

    color: #20bd67;

}


.why-card h4 {

    margin-bottom: 10px;

    color: #17231d;

    font-size: 16px;

}


.why-card p {

    margin: 0;

    color: #78847e;

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================
   CTA
========================================= */

.about-cta-section {

    padding: 20px 0 100px;

    background: #ffffff;

}


.about-cta {

    position: relative;

    padding: 50px;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            120deg,
            #0b1712,
            #14271c
        );

}


.cta-decoration {

    position: absolute;

    width: 300px;

    height: 300px;

    right: -100px;

    top: -120px;

    border: 1px solid rgba(69,245,143,0.15);

    border-radius: 50%;

}


.about-cta span {

    color: #45f58f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.about-cta h2 {

    max-width: 700px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.15;

}


.about-cta h2 strong {

    color: #45f58f;

}


.about-cta p {

    margin: 0;

    color: #b9c8bf;

    font-size: 13px;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    border-radius: 8px;

    background: #45f58f;

    color: #07100d;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s ease;

}


.cta-button i {

    transition: 0.3s ease;

}


.cta-button:hover {

    color: #07100d;

    transform: translateY(-3px);

}


.cta-button:hover i {

    transform: rotate(45deg);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-page-hero,
    .about-company-section,
    .owner-section {

        padding: 80px 0;

    }


    .about-hero-content {

        text-align: center;

    }


    .about-hero-content > p {

        margin-left: auto;

        margin-right: auto;

    }


    .about-hero-buttons {

        justify-content: center;

    }


    .about-hero-visual {

        min-height: 430px;

        margin-top: 30px;

    }


    .company-content,
    .owner-content {

        padding-left: 0;

    }


    .company-content {

        text-align: center;

    }


    .company-points {

        justify-content: center;

    }


    .owner-content {

        text-align: center;

    }


    .owner-quote {

        text-align: left;

    }


    .owner-details {

        text-align: center;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-page-hero {

        padding: 65px 0 55px;

    }


    .about-hero-content h1 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .about-hero-content > p {

        font-size: 14px;

    }


    .about-hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .about-primary-btn,
    .about-secondary-btn {

        width: 100%;

        justify-content: center;

    }


    .about-hero-visual {

        min-height: 350px;

    }


    .hero-circle.circle-one {

        width: 280px;

        height: 280px;

    }


    .hero-circle.circle-two {

        width: 350px;

        height: 350px;

    }


    .about-hero-image {

        width: 82%;

    }


    .hero-floating-card {

        right: 0;

        bottom: 25px;

        padding: 10px 12px;

    }


    .about-company-section,
    .owner-section {

        padding: 70px 0;

    }


    .company-image-box {

        min-height: 350px;

    }


    .company-content h2,
    .owner-content h2,
    .services-heading h2,
    .why-heading h2 {

        font-size: 34px;

    }


    .company-points {

        flex-direction: column;

        align-items: center;

    }


    .about-services-section,
    .vision-mission-section,
    .why-about-section {

        padding: 70px 0;

    }


    .about-service-card {

        padding: 25px;

    }


    .owner-image-wrapper {

        min-height: 400px;

    }


    .owner-image-bg {

        width: 290px;

        height: 360px;

    }


    .owner-image {

        width: 280px;

        height: 350px;

    }


    .owner-badge {

        right: 0;

        bottom: 25px;

    }


    .vision-card,
    .mission-card {

        padding: 30px;

    }


    .vision-card h3,
    .mission-card h3 {

        font-size: 26px;

    }


    .about-cta-section {

        padding-bottom: 70px;

    }


    .about-cta {

        padding: 35px 25px;

        text-align: center;

    }


    .about-cta h2 {

        font-size: 30px;

    }


}