/* ======================================== */
/* ABOUT HERO BANNER - Green + Black Texture */
/* ======================================== */



.about-hero-banner {
     position: relative;
    padding: 60px 0 80px 0;    /* ← Top padding kam */
    min-height: 500px;          /* ← Height thodi kam */
    display: flex;
    align-items: flex-start;    /* ← Top align */
    
    /* NEW GRADIENT BACKGROUND */
    background: linear-gradient(
        135deg,
        #a9fd9a 0%,
        #ffffff 45%,
        #120c49 200%
    );
    overflow: hidden;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(83, 158, 16, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-hero-banner .container {
    position: relative;
    z-index: 1;
}

/* ======================================== */
/* CONTENT STYLING - LEFT ALIGN            */
/* ======================================== */

.about-hero-content {
    max-width: 800px;
    margin: 0;
    margin-left: 40px;
    margin-top: 0px;  /* ← Thoda top margin */
}

.about-hero-left {
    text-align: left !important;
}

/* ======================================== */
/* TAG - "A LITTLE ABOUT US"               */
/* ======================================== */

.about-hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0d3d1a;                          /* deep green that matches header + left side of hero */
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(13, 61, 26, 0.28);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.25);
}

/* ======================================== */
/* MAIN TITLE - Green → Dark Navy Gradient */
/* ======================================== */

.about-hero-title {
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-align: left;

    /* Soft transition from deep green → rich navy (header + hero ends) */
    background: linear-gradient(
        135deg,
        #1a5c12 0%,      /* deep green */
        #0d3d1a 30%,     /* darker green */
        #0a1f3d 70%,     /* navy that matches #120c49 */
        #120c49 100%     /* pure dark navy */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    filter: drop-shadow(0 2px 18px rgba(10, 31, 61, 0.18));
}

/* ======================================== */
/* DESCRIPTION - Balanced Green-Navy        */
/* ======================================== */

.about-hero-subtext {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin: 0;
    margin-bottom: 10px;
    text-align: left;

    background: linear-gradient(
        135deg,
        #1f4a1a 0%,      /* mid-dark green */
        #163a28 45%,     /* forest */
        #0f2a3a 100%     /* soft navy */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    filter: drop-shadow(0 1px 8px rgba(15, 42, 58, 0.12));
}

/* ======================================== */
/* SECOND SUBTEXT - Same balanced theme     */
/* ======================================== */

.about-hero-subtext-2 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: left;

    background: linear-gradient(
        135deg,
        #1f4a1a 0%,
        #163a28 45%,
        #0f2a3a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    filter: drop-shadow(0 1px 8px rgba(15, 42, 58, 0.12));
}

/* ======================================== */
/* RESPONSIVE - Mobile                      */
/* ======================================== */

@media (max-width: 767px) {
    .about-hero-subtext-2 {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        padding: 0 10px 0 0;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-hero-subtext-2 {
        font-size: 13px;
    }
}

/* ======================================== */
/* RIGHT SIDE - Image with Black Circle    */
/* ======================================== */

.about-hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-hero-image-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-top: 120px;
}

/* Circle glow effect */
.about-hero-image-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(140, 255, 102, 0.15);
    animation: circleGlow 3s ease-in-out infinite;
}

/* Image inside circle */
.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Glow animation */
@keyframes circleGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* ======================================== */
/* SHOW MORE BUTTON - Left Align           */
/* ======================================== */

.show-more-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.show-more-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.show-more-btn .btn-icon i {
    transition: all 0.4s ease;
}

.show-more-btn .btn-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.show-more-btn:hover .btn-icon {
    background: #ffffff;
    color: #2d7a1a;
    border-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.3);
}

.show-more-btn:hover .btn-icon i {
    transform: rotate(180deg);
}

.show-more-btn:hover .btn-label {
    color: #ffffff;
    transform: translateX(4px);
}

.show-more-btn.active .btn-icon {
    background: #ffffff;
    color: #2d7a1a;
    border-color: #ffffff;
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.3);
}

.show-more-btn.active .btn-icon i {
    transform: rotate(180deg);
}

.show-more-btn.active .btn-label {
    color: #ffffff;
}

/* ======================================== */
/* STORY SECTION - Two Column Layout        */
/* ======================================== */

.about-story-section {
    background: #ffffff;
    padding: 0;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.5s ease, padding 0.5s ease;
}

.about-story-section.show {
    max-height: 3000px;
    opacity: 1;
    padding: 80px 0 100px 0;
}

.about-story-section.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
}

/* ======================================== */
/* LEFT SIDE - Quote                       */
/* ======================================== */

.story-left {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 40px;
}

.story-quote-text {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #0a1f06;
    text-align: left;
    letter-spacing: -0.5px;
    margin: 0;
    padding: 20px 0;
    border-left: 4px solid #539E10;
    padding-left: 30px;
}

.story-quote-text::before {
    content: '"';
    font-size: 60px;
    color: #539E10;
    font-weight: 400;
    line-height: 0;
    vertical-align: middle;
    margin-right: 5px;
}

/* ======================================== */
/* RIGHT SIDE - OUR STORY Content          */
/* ======================================== */

.story-right {
    padding-left: 20px;
}

/* OUR STORY Heading */
.story-heading {
    margin-bottom: 30px;
}

.story-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #539E10;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 4px 12px;
    border: 1px solid rgba(83, 158, 16, 0.2);
    border-radius: 50px;
    background: rgba(83, 158, 16, 0.05);
}

.story-intro {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #0a1f06;
    max-width: 700px;
    margin: 0;
}

/* Story Description */
.story-description {
    max-width: 100%;
    margin-bottom: 40px;
}

.story-description p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.story-description p:last-child {
    margin-bottom: 0;
}

/* ======================================== */
/* FOOTER QUOTE - GREEN BACKGROUND          */
/* ======================================== */

.story-footer-quote {
    padding-top: 30px;
    border-top: 2px solid rgba(83, 158, 16, 0.1);
}

.story-footer-quote blockquote {
    background: #a8ff8b;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #0a1f06;
    text-align: left;
    padding: 20px 30px;
    border-left: 4px solid #2d7a1a;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0 2px 15px rgba(83, 158, 16, 0.15);
}

.story-footer-quote blockquote::before {
    content: '"';
    font-size: 40px;
    color: #0a1f06;
    font-weight: 700;
    line-height: 0;
    vertical-align: middle;
    margin-right: 8px;
}

/* ======================================== */
/* JOURNEY SECTION - MARQUEE EFFECT         */
/* ======================================== */

.journey-section {
    background: #f8fafc;
    padding: 80px 0 100px 0;
    border-top: 1px solid rgba(83, 158, 16, 0.08);
    overflow: hidden;
}

/* ======================================== */
/* HEADING                                  */
/* ======================================== */

.journey-heading {
    text-align: center;
    margin-bottom: 50px;
}

.journey-title {
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0a1f06;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.journey-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a4a0e;
    margin-bottom: 10px;
}

.journey-description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* ======================================== */
/* MARQUEE WRAPPER                         */
/* ======================================== */

.journey-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Gradient overlay - fade effect */
.journey-marquee-wrapper::before,
.journey-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.journey-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.journey-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

/* ======================================== */
/* MARQUEE TRACK - Animation               */
/* ======================================== */

.journey-marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.journey-marquee-track:hover {
    animation-play-state: paused;
}

/* ======================================== */
/* MARQUEE ITEM - Vertical Layout          */
/* ======================================== */

.journey-marquee-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 22px 30px;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 200px;
}

.journey-marquee-item:hover {
    border-color: #539E10;
    box-shadow: 0 8px 25px rgba(83, 158, 16, 0.12);
    transform: scale(1.02);
}

/* Step Number - Top */
.marquee-step-number {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #539E10;
    display: block;
    margin-bottom: 6px;
}

/* Step Title - Middle */
.marquee-step-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a1f06;
    display: block;
    margin-bottom: 4px;
}

/* Step Description - Bottom */
.marquee-step-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    display: block;
    border-left: none;
    padding-left: 0;
}

/* ======================================== */
/* ANIMATION - MARQUEE SCROLL              */
/* ======================================== */

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ======================================== */
/* THE COGENTIX WAY SECTION                 */
/* ======================================== */

.cogentix-way-section {
    background: #f8fafc;
    padding: 80px 0 100px 0;
    border-top: 1px solid rgba(83, 158, 16, 0.08);
}

/* ======================================== */
/* LEFT SIDE - Image                       */
/* ======================================== */

.cogentix-image {
    padding-right: 30px;
}

.cogentix-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ======================================== */
/* RIGHT SIDE - Content                    */
/* ======================================== */

.cogentix-content {
    padding-left: 20px;
}

/* ======================================== */
/* TAG - "THE COGENTIX WAY"                */
/* ======================================== */

.cogentix-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #539E10;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 6px 16px;
    border: 1px solid rgba(83, 158, 16, 0.25);
    border-radius: 50px;
    background: rgba(83, 158, 16, 0.06);
}

/* ======================================== */
/* MAIN TITLE - Bada aur Bold              */
/* ======================================== */

.cogentix-main-title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #0a1f06;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* ======================================== */
/* DESCRIPTION                             */
/* ======================================== */

.cogentix-description {
    margin-bottom: 35px;
}

.cogentix-description p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.cogentix-description p:last-child {
    margin-bottom: 0;
}

.cogentix-description strong {
    color: #539E10;
    font-weight: 700;
}

/* ======================================== */
/* 3 CARDS - HORIZONTAL (Side by Side)     */
/* ======================================== */

.cogentix-cards-horizontal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Individual Card - Horizontal */
.cogentix-card-horizontal {
    flex: 1;
    min-width: 160px;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.cogentix-card-horizontal:hover {
    border-color: #539E10;
    box-shadow: 0 8px 25px rgba(83, 158, 16, 0.12);
    transform: translateY(-4px);
}

/* Card Number */
.cogentix-card-number-h {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #539E10;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

/* Card Body */
.cogentix-card-body-h {
    flex: 1;
}

.cogentix-card-title-h {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0a1f06;
    margin: 0 0 4px 0;
}

.cogentix-card-desc-h {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* ======================================== */
/* COGEN SECTION - What Keeps Us Grounded   */
/* ======================================== */

.cogen-section {
    background: #0a1f06;
    padding: 100px 0 120px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.cogen-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 8px
        );
    pointer-events: none;
}

/* ======================================== */
/* LEFT SIDE - Content                     */
/* ======================================== */

.cogen-left {
    padding-right: 40px;
}

/* Tag */
.cogen-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #8cff66;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(140, 255, 102, 0.25);
    border-radius: 50px;
    background: rgba(140, 255, 102, 0.06);
}

/* Main Title */
.cogen-title {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Description */
.cogen-description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.cogen-description strong {
    color: #8cff66;
    font-weight: 700;
}

/* ======================================== */
/* RIGHT SIDE - COGEN Big Text + Cards     */
/* ======================================== */

.cogen-right {
    padding-left: 20px;
}

/* ======================================== */
/* COGEN BIG TEXT                          */
/* ======================================== */

.cogen-big-text {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    padding-right: 20px;
}

.cogen-big-c {
    color: #ffffff;
}

.cogen-big-o {
    color: #8cff66;
}

.cogen-big-g {
    color: #ffffff;
}

.cogen-big-e {
    color: #8cff66;
}

.cogen-big-n {
    color: #ffffff;
}

/* ======================================== */
/* 5 CARDS                                 */
/* ======================================== */

.cogen-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual Card */
.cogen-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Card Hover Effect */
.cogen-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(140, 255, 102, 0.08), transparent);
    transition: left 0.6s ease;
}

.cogen-card:hover::before {
    left: 100%;
}

.cogen-card:hover {
    border-color: rgba(140, 255, 102, 0.4);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Card Letter - C, O, G, E, N */
.cogen-card-letter {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #8cff66;
    min-width: 44px;
    line-height: 1;
    padding-top: 2px;
    transition: all 0.3s ease;
}

.cogen-card:hover .cogen-card-letter {
    transform: scale(1.15);
}

/* Card Body */
.cogen-card-body {
    flex: 1;
}

.cogen-card-title {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.cogen-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* ======================================== */
/* HUMAN SIDE SECTION                       */
/* ======================================== */

.human-side-section {
    background: #ffffff;
    padding: 80px 0 100px 0;
    border-top: 1px solid rgba(83, 158, 16, 0.08);
}

/* ======================================== */
/* LEFT SIDE - Image                       */
/* ======================================== */

.human-side-image {
    padding-right: 40px;
}

.human-side-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ======================================== */
/* RIGHT SIDE - Content                    */
/* ======================================== */

.human-side-content {
    padding-left: 20px;
}

/* ======================================== */
/* TAG - "The human side"                  */
/* ======================================== */

.human-side-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #539E10;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 6px 16px;
    border: 1px solid rgba(83, 158, 16, 0.25);
    border-radius: 50px;
    background: rgba(83, 158, 16, 0.06);
}

/* ======================================== */
/* MAIN TITLE                              */
/* ======================================== */

.human-side-title {
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a1f06;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* ======================================== */
/* DESCRIPTION                             */
/* ======================================== */

.human-side-description {
    margin-bottom: 35px;
}

.human-side-description p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.human-side-description p:last-child {
    margin-bottom: 0;
}

/* ======================================== */
/* BUTTON - Let's Work Together            */
/* ======================================== */

.human-side-btn-wrapper {
    margin-top: 10px;
}

.human-side-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #539E10;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(83, 158, 16, 0.25);
}

.human-side-btn:hover {
    background: #225b16;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(83, 158, 16, 0.35);
    color: #ffffff;
}

.human-side-btn .btn-arrow {
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 20px;
    line-height: 1;
}

.human-side-btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* ======================================== */
/* PROUD SECTION - A few things we're proud of */
/* ======================================== */

.proud-section {
    background: #ffffff;
    padding: 80px 0 100px 0;
    border-top: 1px solid rgba(83, 158, 16, 0.08);
}

/* ======================================== */
/* HEADING                                 */
/* ======================================== */

.proud-heading {
    text-align: center;
    margin-bottom: 50px;
}

.proud-title {
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0a1f06;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.proud-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #4a5568;
    margin: 0;
}

/* ======================================== */
/* 4 CARDS - No hover, thin border, no gaps */
/* ======================================== */

.proud-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    overflow: hidden;
}

/* Individual Card */
.proud-card {
    background: #ffffff;
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid #e8edf2;
    transition: none;
}

.proud-card:last-child {
    border-right: none;
}

/* Card Number - 100+, ISO 9001, ISO 27001, Partner */
.proud-card-number {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0a1f06;
    display: block;
    margin-bottom: 10px;
}

/* Card Description */
.proud-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* ======================================== */
/* FOOTER NOTE                             */
/* ======================================== */

.proud-note {
    text-align: center;
    margin-top: 25px;
}

.proud-note p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #4a5568;
    margin: 0;
    font-style: italic;
}

/* ======================================== */
/* CONVERSATION SECTION                    */
/* ======================================== */

.conversation-section {
    background: linear-gradient(135deg, #0d3d1a 0%, #1a6b2e 40%, #2d8a3a 70%, #1a6b2e 100%);
    padding: 100px 0 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle texture overlay */
.conversation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 2px,
            transparent 2px,
            transparent 10px
        ),
        radial-gradient(ellipse at 20% 50%, rgba(140, 255, 102, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(140, 255, 102, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Glow effect */
.conversation-section::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(140, 255, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.conversation-section .container {
    position: relative;
    z-index: 1;
}

/* ======================================== */
/* TAG - "Let's start with a conversation"  */
/* ======================================== */

.conversation-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #8cff66;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

/* Decorative line before and after tag */
.conversation-tag::before,
.conversation-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(140, 255, 102, 0.25);
}

.conversation-tag::before {
    right: calc(100% + 15px);
}

.conversation-tag::after {
    left: calc(100% + 15px);
}

/* ======================================== */
/* TITLE - Have a technology challenge...   */
/* ======================================== */

.conversation-title {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* ======================================== */
/* DESCRIPTION                             */
/* ======================================== */

.conversation-desc {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* ======================================== */
/* BUTTON - Start a Conversation           */
/* ======================================== */

.conversation-btn-wrapper {
    display: flex;
    justify-content: center;
}

.conversation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0a1f06;
    background: #ffffff;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.conversation-btn:hover {
    background: #8cff66;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(140, 255, 102, 0.3);
    color: #0a1f06;
}

.conversation-btn .conversation-btn-arrow {
    display: inline-block;
    transition: all 0.35s ease;
    font-size: 22px;
    line-height: 1;
}

.conversation-btn:hover .conversation-btn-arrow {
    transform: translateX(8px);
}

/* ======================================== */
/* RESPONSIVE - TABLET                     */
/* ======================================== */

@media (max-width: 991px) {
    .about-hero-banner {
        padding: 80px 0 90px 0;
        min-height: 400px;
    }
    
    .about-hero-title {
        font-size: 38px;
        line-height: 1.3;
    }
    
    .about-hero-subtext {
        font-size: 16px;
        line-height: 1.7;
        max-width: 90%;
    }
    
    .about-hero-content {
        margin-left: 20px;
    }
    
    .about-hero-image-circle {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
    
    .story-left {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .story-right {
        padding-left: 0;
    }
    
    .story-quote-text {
        font-size: 28px;
        padding-left: 20px;
    }
    
    .story-footer-quote blockquote {
        font-size: 17px;
        padding: 18px 25px;
        background: #a8ff8b;
        border-left: 4px solid #2d7a1a;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(83, 158, 16, 0.15);
    }
    
    .journey-title {
        font-size: 30px;
    }
    
    .journey-subtitle {
        font-size: 20px;
    }
    
    .journey-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .journey-marquee-wrapper {
        padding: 15px 0;
    }
    
    .journey-marquee-wrapper::before,
    .journey-marquee-wrapper::after {
        width: 60px;
    }
    
    .journey-marquee-track {
        gap: 25px;
        animation-duration: 20s;
    }
    
    .journey-marquee-item {
        padding: 18px 24px;
        min-width: 170px;
    }
    
    .marquee-step-number {
        font-size: 20px;
    }
    
    .marquee-step-title {
        font-size: 17px;
    }
    
    .marquee-step-desc {
        font-size: 13px;
    }
    
    .cogentix-way-section {
        padding: 60px 0 70px 0;
    }
    
    .cogentix-image {
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .cogentix-content {
        padding-left: 0;
    }
    
    .cogentix-main-title {
        font-size: 38px;
    }
    
    .cogentix-description p {
        font-size: 15px;
    }
    
    .cogentix-cards-horizontal {
        gap: 12px;
    }
    
    .cogentix-card-horizontal {
        padding: 16px 18px;
        min-width: 140px;
    }
    
    .cogentix-card-number-h {
        font-size: 20px;
    }
    
    .cogentix-card-title-h {
        font-size: 16px;
    }
    
    .cogentix-card-desc-h {
        font-size: 13px;
    }
    
    .cogen-section {
        padding: 70px 0 80px 0;
    }
    
    .cogen-left {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .cogen-right {
        padding-left: 0;
    }
    
    .cogen-title {
        font-size: 36px;
    }
    
    .cogen-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .cogen-big-text {
        font-size: 56px;
        justify-content: flex-start;
    }
    
    .cogen-card {
        padding: 14px 18px;
    }
    
    .cogen-card-letter {
        font-size: 28px;
        min-width: 38px;
    }
    
    .cogen-card-title {
        font-size: 16px;
    }
    
    .cogen-card-desc {
        font-size: 13px;
    }
    
    .human-side-section {
        padding: 60px 0 70px 0;
    }
    
    .human-side-image {
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .human-side-content {
        padding-left: 0;
    }
    
    .human-side-title {
        font-size: 32px;
    }
    
    .human-side-description p {
        font-size: 15px;
    }
    
    .human-side-btn {
        font-size: 15px;
        padding: 12px 28px;
    }
    
    .proud-section {
        padding: 60px 0 70px 0;
    }
    
    .proud-title {
        font-size: 32px;
    }
    
    .proud-subtitle {
        font-size: 18px;
    }
    
    .proud-cards {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }
    
    .proud-card {
        padding: 25px 20px;
        border-right: 1px solid #e8edf2;
        border-bottom: 1px solid #e8edf2;
    }
    
    .proud-card:nth-child(2) {
        border-right: none;
    }
    
    .proud-card:nth-child(3) {
        border-bottom: none;
    }
    
    .proud-card:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }
    
    .proud-card-number {
        font-size: 24px;
    }
    
    .proud-card-desc {
        font-size: 13px;
    }
    
    .conversation-section {
        padding: 80px 0 90px 0;
    }
    
    .conversation-title {
        font-size: 34px;
    }
    
    .conversation-desc {
        font-size: 17px;
        max-width: 90%;
    }
    
    .conversation-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
    
    .conversation-tag::before,
    .conversation-tag::after {
        width: 25px;
    }
}

/* ======================================== */
/* RESPONSIVE - MOBILE                     */
/* ======================================== */

@media (max-width: 767px) {
    .about-hero-banner {
        padding: 60px 0 70px 0;
        min-height: 350px;
    }
    
    .about-hero-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    
    .about-hero-title {
        font-size: 28px;
        line-height: 1.3;
        text-align: left;
    }
    
    .about-hero-subtext {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        padding: 0 10px 0 0;
        text-align: left;
    }
    
    .about-hero-content {
        margin-left: 10px;
        padding: 0 10px;
    }
    
    .about-hero-image-circle {
        width: 240px;
        height: 240px;
        margin: 20px auto;
    }
    
    .show-more-wrapper {
        justify-content: flex-start;
    }
    
    .show-more-btn .btn-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        font-size: 16px;
    }
    
    .show-more-btn .btn-label {
        font-size: 14px;
    }
    
    .about-story-section.show {
        padding: 50px 0 60px 0;
    }
    
    .story-left {
        padding-bottom: 30px;
    }
    
    .story-right {
        padding-left: 0;
    }
    
    .story-quote-text {
        font-size: 22px;
        padding-left: 15px;
    }
    
    .story-quote-text::before {
        font-size: 40px;
    }
    
    .story-intro {
        font-size: 18px;
    }
    
    .story-description p {
        font-size: 15px;
    }
    
    .story-footer-quote blockquote {
        font-size: 15px;
        padding: 15px 20px;
        background: #a8ff8b;
        border-left: 4px solid #2d7a1a;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(83, 158, 16, 0.15);
    }
    
    .story-footer-quote blockquote::before {
        font-size: 30px;
    }
    
    .journey-section {
        padding: 50px 0 60px 0;
    }
    
    .journey-title {
        font-size: 24px;
    }
    
    .journey-subtitle {
        font-size: 18px;
    }
    
    .journey-description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .journey-marquee-wrapper {
        padding: 12px 0;
    }
    
    .journey-marquee-wrapper::before,
    .journey-marquee-wrapper::after {
        width: 40px;
    }
    
    .journey-marquee-track {
        gap: 18px;
        animation-duration: 18s;
    }
    
    .journey-marquee-item {
        padding: 14px 18px;
        min-width: 150px;
    }
    
    .marquee-step-number {
        font-size: 18px;
    }
    
    .marquee-step-title {
        font-size: 16px;
    }
    
    .marquee-step-desc {
        font-size: 12px;
    }
    
    .cogentix-way-section {
        padding: 50px 0 60px 0;
    }
    
    .cogentix-tag {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 4px 12px;
    }
    
    .cogentix-main-title {
        font-size: 30px;
        line-height: 1.2;
    }
    
    .cogentix-description p {
        font-size: 14px;
    }
    
    .cogentix-cards-horizontal {
        gap: 10px;
    }
    
    .cogentix-card-horizontal {
        padding: 14px 16px;
        min-width: 120px;
        flex: 1 1 calc(33.33% - 10px);
    }
    
    .cogentix-card-number-h {
        font-size: 18px;
    }
    
    .cogentix-card-title-h {
        font-size: 15px;
    }
    
    .cogentix-card-desc-h {
        font-size: 12px;
    }
    
    .cogen-section {
        padding: 50px 0 60px 0;
    }
    
    .cogen-tag {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 4px 12px;
    }
    
    .cogen-title {
        font-size: 28px;
    }
    
    .cogen-description {
        font-size: 15px;
    }
    
    .cogen-big-text {
        font-size: 42px;
        gap: 2px;
        letter-spacing: 4px;
        justify-content: flex-start;
    }
    
    .cogen-cards {
        gap: 10px;
    }
    
    .cogen-card {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .cogen-card-letter {
        font-size: 24px;
        min-width: 32px;
    }
    
    .cogen-card-title {
        font-size: 15px;
    }
    
    .cogen-card-desc {
        font-size: 12px;
    }
    
    .cogen-card:hover {
        transform: translateX(0px);
    }
    
    .human-side-section {
        padding: 50px 0 60px 0;
    }
    
    .human-side-tag {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 4px 12px;
    }
    
    .human-side-title {
        font-size: 26px;
    }
    
    .human-side-description p {
        font-size: 14px;
    }
    
    .human-side-btn {
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
    }
    
    .proud-section {
        padding: 50px 0 60px 0;
    }
    
    .proud-title {
        font-size: 26px;
    }
    
    .proud-subtitle {
        font-size: 16px;
    }
    
    .proud-cards {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    
    .proud-card {
        padding: 20px 16px;
        border-right: none;
        border-bottom: 1px solid #e8edf2;
    }
    
    .proud-card:last-child {
        border-bottom: none;
    }
    
    .proud-card-number {
        font-size: 22px;
    }
    
    .proud-card-desc {
        font-size: 13px;
    }
    
    .proud-note p {
        font-size: 12px;
    }
    
    .conversation-section {
        padding: 60px 0 70px 0;
    }
    
    .conversation-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .conversation-tag::before,
    .conversation-tag::after {
        display: none;
    }
    
    .conversation-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .conversation-desc {
        font-size: 15px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .conversation-btn {
        font-size: 15px;
        padding: 12px 28px;
        gap: 10px;
    }
    
    .conversation-btn .conversation-btn-arrow {
        font-size: 18px;
    }
}

/* ======================================== */
/* RESPONSIVE - SMALL MOBILE               */
/* ======================================== */

@media (max-width: 480px) {
    .about-hero-banner {
        padding: 50px 0 60px 0;
        min-height: 300px;
    }
    
    .about-hero-tag {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 3px 10px;
    }
    
    .about-hero-title {
        font-size: 22px;
    }
    
    .about-hero-subtext {
        font-size: 13px;
    }
    
    .about-hero-content {
        margin-left: 5px;
        padding: 0 5px;
    }
    
    .about-hero-image-circle {
        width: 180px;
        height: 180px;
        margin: 15px auto;
    }
    
    .about-story-section.show {
        padding: 40px 0 50px 0;
    }
    
    .story-quote-text {
        font-size: 18px;
    }
    
    .story-intro {
        font-size: 16px;
    }
    
    .story-description p {
        font-size: 14px;
    }
    
    .story-footer-quote blockquote {
        font-size: 14px;
        padding: 12px 15px;
        background: #a8ff8b;
        border-left: 4px solid #2d7a1a;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(83, 158, 16, 0.12);
    }
    
    .journey-section {
        padding: 40px 0 50px 0;
    }
    
    .journey-title {
        font-size: 20px;
    }
    
    .journey-subtitle {
        font-size: 16px;
    }
    
    .journey-description {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .journey-marquee-wrapper {
        padding: 10px 0;
    }
    
    .journey-marquee-wrapper::before,
    .journey-marquee-wrapper::after {
        width: 25px;
    }
    
    .journey-marquee-track {
        gap: 14px;
        animation-duration: 15s;
    }
    
    .journey-marquee-item {
        padding: 12px 14px;
        min-width: 130px;
    }
    
    .marquee-step-number {
        font-size: 16px;
    }
    
    .marquee-step-title {
        font-size: 15px;
    }
    
    .marquee-step-desc {
        font-size: 11px;
    }
    
    .cogentix-way-section {
        padding: 40px 0 50px 0;
    }
    
    .cogentix-main-title {
        font-size: 24px;
    }
    
    .cogentix-description p {
        font-size: 13px;
    }
    
    .cogentix-card-horizontal {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .cogentix-card-number-h {
        font-size: 16px;
    }
    
    .cogentix-card-title-h {
        font-size: 14px;
    }
    
    .cogentix-card-desc-h {
        font-size: 12px;
    }
    
    .cogen-section {
        padding: 40px 0 50px 0;
    }
    
    .cogen-title {
        font-size: 24px;
    }
    
    .cogen-description {
        font-size: 14px;
    }
    
    .cogen-big-text {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .cogen-card {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .cogen-card-letter {
        font-size: 20px;
        min-width: 28px;
    }
    
    .cogen-card-title {
        font-size: 14px;
    }
    
    .cogen-card-desc {
        font-size: 11px;
    }
    
    .human-side-section {
        padding: 40px 0 50px 0;
    }
    
    .human-side-title {
        font-size: 22px;
    }
    
    .human-side-description p {
        font-size: 13px;
    }
    
    .human-side-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .proud-section {
        padding: 40px 0 50px 0;
    }
    
    .proud-title {
        font-size: 22px;
    }
    
    .proud-subtitle {
        font-size: 15px;
    }
    
    .proud-card {
        padding: 16px 14px;
    }
    
    .proud-card-number {
        font-size: 20px;
    }
    
    .proud-card-desc {
        font-size: 12px;
    }
    
    .conversation-section {
        padding: 50px 0 60px 0;
    }
    
    .conversation-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .conversation-title {
        font-size: 20px;
    }
    
    .conversation-desc {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .conversation-btn {
        font-size: 14px;
        padding: 10px 22px;
        gap: 8px;
        width: 90%;
        justify-content: center;
    }
    
    .conversation-btn .conversation-btn-arrow {
        font-size: 16px;
    }
}
/* ================================
   OUR STORY SECTION
================================ */

.our-story {
    width: 100%;
    background: #ffffff;
    padding: 85px 0 100px;
    font-family: Arial, Helvetica, sans-serif;
}

.story-container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 55px;

    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}


/* ================================
   LEFT QUOTE
================================ */

.story-quote-left {
    display: flex;
    align-items: center;
    min-height: 450px;
    padding-left: 65px;
}

.quote-line {
    width: 5px;
    height: 248px;
    background: #48a819;
    margin-right: 38px;
}

.quote-content {
    position: relative;
    max-width: 560px;
}

.quote-content h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    color: #061c20;
    letter-spacing: -1.2px;
}

.quote-mark {
    display: block;
    color: #43a819;
    font-size: 55px;
    font-weight: 700;
    line-height: 0.5;
    margin-bottom: 12px;
}

.quote-bottom {
    color: #43a819;
    margin-top: 12px;
    margin-left: 0;
}


/* ================================
   RIGHT CONTENT
================================ */

.story-content {
    padding-left: 35px;
    padding-right: 15px;
}

.story-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 17px;

    border: 1px solid #d8e9ca;
    border-radius: 30px;

    color: #3d991d;
    background: #fbfef9;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;

    margin-bottom: 20px;
}


.story-content h1 {
    max-width: 850px;

    margin: 0 0 38px;

    color: #071c20;

    font-size: 26px;
    line-height: 1.4;

    font-weight: 700;
    letter-spacing: -0.4px;
}


.story-content p {
    max-width: 850px;

    margin: 0 0 30px;

    color: #3e5b76;

    font-size: 20px;
    line-height: 1.75;

    font-weight: 400;
}


/* ================================
   DIVIDER
================================ */

.story-divider {
    width: 100%;
    height: 1px;

    background: #e1ebdc;

    margin: 48px 0 36px;
}


/* ================================
   GREEN HIGHLIGHT BOX
================================ */

.story-highlight {
    position: relative;

    width: 100%;
    min-height: 116px;

    display: flex;
    align-items: center;

    background: #9dfd7c;

    border-radius: 12px;

    padding: 24px 40px;

    box-shadow: 0 8px 25px rgba(76, 150, 46, 0.12);

    border-left: 5px solid #238b17;
}


.story-highlight p {
    margin: 0;

    color: #071b10;

    font-size: 22px;
    line-height: 1.55;

    font-weight: 700;

    max-width: none;
}


.highlight-quote {
    position: absolute;

    left: 35px;
    top: 20px;

    color: #071b10;

    font-size: 42px;
    line-height: 1;

    font-weight: 700;
}

.story-highlight p {
    padding-left: 0;
    margin-left: 0;
}

.story-highlight .closing {
    display: none;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1100px) {

    .story-container {
        grid-template-columns: 40% 60%;
        padding: 0 35px;
    }

    .story-quote-left {
        padding-left: 20px;
    }

    .quote-line {
        margin-right: 25px;
    }

    .quote-content h2 {
        font-size: 31px;
    }

    .story-content {
        padding-left: 20px;
    }

    .story-content h1 {
        font-size: 24px;
    }

    .story-content p {
        font-size: 18px;
    }

    .story-highlight p {
        font-size: 19px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .our-story {
        padding: 55px 0 65px;
    }

    .story-container {
        display: block;
        padding: 0 22px;
    }


    /* LEFT QUOTE */

    .story-quote-left {
        min-height: auto;

        padding: 0;

        margin-bottom: 55px;

        align-items: flex-start;
    }

    .quote-line {
        width: 4px;
        height: 190px;

        margin-right: 20px;
        flex-shrink: 0;
    }

    .quote-content h2 {
        font-size: 27px;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .quote-mark {
        font-size: 42px;
    }


    /* RIGHT CONTENT */

    .story-content {
        padding: 0;
    }

    .story-label {
        font-size: 12px;
        letter-spacing: 3px;

        padding: 7px 14px;
    }

    .story-content h1 {
        font-size: 23px;
        line-height: 1.4;

        margin-bottom: 28px;
    }

    .story-content p {
        font-size: 17px;
        line-height: 1.7;

        margin-bottom: 25px;
    }


    /* DIVIDER */

    .story-divider {
        margin: 35px 0 28px;
    }


    /* GREEN BOX */

    .story-highlight {
        min-height: auto;

        padding: 25px 25px 25px 48px;

        border-radius: 10px;
    }

    .story-highlight p {
        font-size: 17px;
        line-height: 1.5;
    }

    .highlight-quote {
        left: 17px;
        top: 19px;

        font-size: 35px;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .story-container {
        padding: 0 18px;
    }

    .quote-content h2 {
        font-size: 23px;
    }

    .quote-line {
        height: 165px;
        margin-right: 16px;
    }

    .story-content h1 {
        font-size: 21px;
    }

    .story-content p {
        font-size: 16px;
    }

    .story-highlight {
        padding-left: 43px;
    }

    .story-highlight p {
        font-size: 16px;
    }
}

/* ======================================== */
/* MISSION & VISION CARDS - BELOW IMAGE    */
/* ======================================== */

/* Card Headings - Black */
.modern-floating-card .card-icon-title h4 {
    color: #000000 !important;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

/* Card Icon Title - Flex Layout */
.modern-floating-card .card-icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* Green Dots */
.modern-floating-card .icon-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.modern-floating-card .mission-dot {
    background: #539E10;
}

.modern-floating-card .vision-dot {
    background: #539E10;
}

/* Card Text */
.modern-floating-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

/* Main Card Styles */
.modern-floating-card {
    background: #ffffff;
    color: #000000;
    backdrop-filter: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 18px 22px;
    transition: all 0.3s ease;
}



/* Hover Effect */
.modern-floating-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper - Vertical Layout */
.about-hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: auto;
}

/* ======================================== */
/* MISSION & VISION - 3D AUTO FLIP CARD    */
/* ======================================== */

.flip-container {
    perspective: 1500px;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.flip-inner {
    position: relative;
    width: 100%;
    min-height: 170px;
    transform-style: preserve-3d;
    animation: autoFlip 6s ease-in-out infinite;
}

/* Front (Mission) & Back (Vision) - dono same jagah stacked */
.flip-front,
.flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    /* ✅ SIRF BACKGROUND TRANSPARENT */
    background: transparent !important;
}

/* Back card ko 180deg pehle se rotate kar rakha hai */
.flip-back {
    transform: rotateY(180deg);
}

/* Auto-flip animation: 
   0-40%   -> Mission front pe dikhta hai
   40-50%  -> flip ho raha hai
   50-90%  -> Vision front pe dikhta hai
   90-100% -> wapas Mission pe flip */
@keyframes autoFlip {
    0%   { transform: rotateY(0deg); }
    40%  { transform: rotateY(0deg); }
    50%  { transform: rotateY(180deg); }
    90%  { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* Flip indicator icon (↻) */
.flip-indicator {
    position: absolute;
    bottom: -8px;
    right: 10px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #539E10;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(83, 158, 16, 0.3);
    animation: spinIndicator 6s linear infinite;
}

@keyframes spinIndicator {
    0%, 40% { transform: rotate(0deg); }
    50%, 90% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

/* ======================================== */
/* CONTACT FORM - Modal Styles             */
/* ======================================== */

/* ======================================== */
/* CONTACT FORM - Modal Styles (Index Style)*/
/* ======================================== */

/* Modal Background - White */
#contactUsModal .modal-content {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
    overflow: hidden !important;
}

/* Modal Header - Light Green */
#contactUsModal .modal-header {
    background: #e8f5e9 !important;
    border-bottom: 1px solid rgba(83, 158, 16, 0.15) !important;
    padding: 20px 30px 15px 30px !important;
    border-radius: 16px 16px 0 0 !important;
}

#contactUsModal .modal-header .modal-title {
    color: #1a1a2e !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

#contactUsModal .modal-header .btn-close {
    filter: none !important;
    opacity: 0.6 !important;
}

#contactUsModal .modal-header .btn-close:hover {
    opacity: 1 !important;
}

/* Modal Body - White */
#contactUsModal .modal-body {
    padding: 0 !important;
    background: #ffffff !important;
}

/* Row - Full Height */
#contactUsModal .modal-body .row {
    min-height: 450px;
    margin: 0 !important;
}

/* ======================================== */
/* IMAGE COLUMN - Left Side                */
/* ======================================== */

.contact-modal-image {
    position: relative;
    height: 100%;
    min-height: 100%;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    margin-top: 0 !important;
    padding: 0 !important;
}

.contact-modal-img {
    width: 100%;
    height: 100%;
    min-height: 450px !important;
    object-fit: cover;
    display: block;
}

/* Image Column - White Background */
#contactUsModal .modal-body .col-md-5 {
    background: #ffffff !important;
}

/* ======================================== */
/* FORM COLUMN - Right Side                */
/* ======================================== */

#contactUsModal .modal-body .col-md-7 {
    display: flex;
    align-items: center;
    background: #f0f7e8 !important;
    border-radius: 0 0 16px 0 !important;
}

/* Modal Width */
#contactUsModal .modal-dialog {
    max-width: 1100px !important;
    width: 95% !important;
}

/* ======================================== */
/* FORM ROW - Two Column Layout            */
/* ======================================== */

#contactUsModal .cf-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

/* Last row (Comment) ke baad extra gap */
#contactUsModal .cf-row:last-of-type {
    margin-bottom: 20px;
}

/* Each column - 50% width */
#contactUsModal .cf-col {
    flex: 1 1 calc(50% - 9px);
    min-width: 0;
}

/* Form Group */
#contactUsModal .form-group-float {
    margin: 0 !important;
    width: 100%;
    position: relative;
}

/* ======================================== */
/* LABELS - Floating Effect                */
/* ======================================== */

#contactUsModal .form-label {
    color: #1a1a2e !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 5px !important;
}

/* Input/Textarea ko upar se extra padding */
#contactUsModal .form-group-float .form-control {
    padding-top: 20px !important;
    padding-bottom: 8px !important;
}

/* Label ki default position - input ke andar */
#contactUsModal .form-group-float .form-label {
    position: absolute;
    left: 16px;
    top: 16px;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(0,0,0,0.4) !important;
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
}

/* Textarea ka label */
#contactUsModal .form-group-float textarea ~ .form-label {
    top: 16px;
}

/* Focus ya content filled -> label upar chala jaye */
#contactUsModal .form-group-float .form-control:focus ~ .form-label,
#contactUsModal .form-group-float .form-control:not(:placeholder-shown) ~ .form-label {
    top: -9px;
    left: 12px;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #539E10 !important;
    background: #f0f7e8;
    padding: 0 6px;
    letter-spacing: 0.3px;
}

/* ======================================== */
/* INPUTS - Style                          */
/* ======================================== */

#contactUsModal .form-control {
    background: #ffffff !important;
    border: 1px solid #d4edda !important;
    color: #1a1a2e !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

/* Input Placeholder */
#contactUsModal .form-control::placeholder {
    color: rgba(0,0,0,0.35) !important;
    font-size: 13px !important;
}

/* Input Focus - Green Outline */
#contactUsModal .form-control:focus {
    background: #ffffff !important;
    border-color: #539E10 !important;
    box-shadow: 0 0 0 4px rgba(83, 158, 16, 0.15) !important;
    outline: none !important;
    color: #1a1a2e !important;
}

/* Textarea */
#contactUsModal textarea.form-control {
    resize: vertical !important;
    min-height: 80px !important;
}

/* ======================================== */
/* SUBMIT BUTTON - Green                   */
/* ======================================== */

#contactUsModal .Join_now {
    background: linear-gradient(135deg, #539E10, #3d7a0c) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-top: 5px !important;
    width: 100% !important;
}

#contactUsModal .Join_now:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(83, 158, 16, 0.4) !important;
    background: linear-gradient(135deg, #3d7a0c, #2d5e09) !important;
}

#contactUsModal .Join_now:disabled {
    opacity: 0.7 !important;
    transform: none !important;
    cursor: not-allowed !important;
}

/* ======================================== */
/* STATUS MESSAGES                         */
/* ======================================== */

#formStatus .alert-success {
    background: rgba(83, 158, 16, 0.1) !important;
    color: #2d5e09 !important;
    border: 1px solid rgba(83, 158, 16, 0.2) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
}

#formStatus .alert-danger {
    background: rgba(255, 0, 0, 0.08) !important;
    color: #c62828 !important;
    border: 1px solid rgba(255, 0, 0, 0.15) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
}

/* ======================================== */
/* RESPONSIVE - Mobile                     */
/* ======================================== */

@media (max-width: 576px) {
    #contactUsModal .modal-body {
        padding: 0 !important;
    }
    #contactUsModal .modal-header {
        padding: 15px 20px 10px 20px !important;
    }
    #contactUsModal .modal-header .modal-title {
        font-size: 18px !important;
    }
    #contactUsModal .form-control {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    #contactUsModal .Join_now {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    #contactUsModal .cf-col {
        flex: 1 1 100%;
    }
}