.mission-wrapper {
    max-width: 1200px;
    margin: auto;
}

.main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
    font-family: "Montserrat", sans-serif;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    border-radius: 22px;
    padding: 40px 35px;
    color: black;
    position: relative;
    overflow: hidden;
    height: 200px !important;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.purpose-card {
    background: #f0bc5c;
}

.enable-card {
    background: #ff914d;
}

.card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.card p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

.enable-list {
    list-style: none;
    margin-top: 10px;
}

.enable-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
}

.enable-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -60px;
    bottom: -60px;
}

@media(max-width:768px) {

    .main-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .card {
        padding: 30px 25px;
    }

    .card h2 {
        font-size: 28px;
    }

    .card p,
    .enable-list li {
        font-size: 16px;
    }
}


why-section {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.section-subtitle {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.choose-card {
    background: #fff;
    border: 2px solid #ff914d;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.choose-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 145, 77, 0.12);
    border-radius: 50%;
    top: -50px;
    right: -40px;
}

.number {
    font-size: 56px;
    font-weight: 800;
    color: #ff914d;
    margin-bottom: 15px;
    line-height: 1;
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    color: black;
    margin-bottom: 18px;
    font-family: "Montserrat", sans-serif;
}

.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.quote-box {
    background: linear-gradient(135deg, #ff914d, #fff4ed);
    color: black;
    padding: 0px 16px;
    border-radius: 28px;
    text-align: center;
    margin: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote-box p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

@media(max-width:768px) {

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .number {
        font-size: 48px;
    }

    .card-title {
        font-size: 22px;
    }

    .quote-box p {
        font-size: 22px;
    }
}


.cta-section {
    /* padding: 30px 20px; */
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 145, 77, 0.88),
            rgba(158, 97, 60, 0.88));
    z-index: -1;
}

.cta-title {
    color: #fff;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;

    text-shadow:
        1px 1px 2px #000,
        -1px -1px 2px #000,
        1px -1px 2px #000,
        -1px 1px 2px #000;
}

.cta-description {
    color: #fdfdfd;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
        text-shadow:
        1px 1px 2px #000,
        -1px -1px 2px #000,
        1px -1px 2px #000,
        -1px 1px 2px #000;
}

.contact-info {
    color: #fff;
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 2;
        text-shadow:
        1px 1px 2px #000,
        -1px -1px 2px #000,
        1px -1px 2px #000,
        -1px 1px 2px #000;
}

.contact-info span {
    font-weight: 700;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.contact-info a:hover {
    color: #ffe7d8;
    border-color: #ffe7d8;
}

.cta-buttons {
    margin-top: 15px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 8px;
}

.btn-know {
    background: #ffffff;
    color: black;
}

.btn-know:hover {
    background: #ff914d;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-contact {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-contact:hover {
    background: #ffffff;
    color: black;
    transform: translateY(-3px);
}

@media(max-width:768px) {

    .cta-section {
        padding: 70px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description,
    .contact-info {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

#footer {
    position: relative;
    /* padding: 70px 0 30px; */
    overflow: hidden;
    border-top: 5px solid #ff914d;
}

/* Background Image */
#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Use your image path here */
    background: url('../images/FooterBg.png') no-repeat center center;

    background-size: cover;

    z-index: 0;
}

/* Content above bg */
#footer .container {
    position: relative;
    z-index: 2;
}

/* Logo */
.footer-widget img {
    max-width: 100px;
   margin-top: 40px;
}

/* Contact Links */
.menu1 {
    color: #fff4ed;
    text-decoration: none;
    font-size: 18px;
    line-height: 2;
    font-weight: 600;
    transition: 0.3s ease;
}

.menu1:hover {
    color: #ff914d;
}

/* Text */
#footer p {
    color: #5c4638;
    font-size: 16px;
    line-height: 1.8;
}

/* Social Icons */
.social-icons {
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

.social-icons li {
    display: inline-block;
    margin-right: 12px;
}

.social-icons li a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff914d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icons li a:hover {
    background: #fff4ed;
    transform: translateY(-4px);
}

/* Footer Links */
#footer p a {
    color: #ff914d;
    font-weight: 600;
}

#footer p a:hover {
    color: #fff4ed;
}

/* Mobile */
@media(max-width:768px) {

    #footer {
        text-align: center;
        padding: 50px 20px 25px;
    }

    .footer-widget img {
        margin: 0 auto 20px;
    }

    .social-icons {
        text-align: center;
    }
}



.services-container {
    max-width: 1200px;
    margin: auto;
}

.services-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: black;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 145, 77, 0.15);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Top Gradient Bar */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #ff914d, #fff4ed);
}

/* Circle Background */
.service-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 145, 77, 0.08);
    border-radius: 50%;
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff914d, #fff4ed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 30px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 28px;
    color: black !important;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.read-more-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 40px;
    background: linear-gradient(135deg, #ff914d, #fff4ed);
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 145, 77, 0.35);
}

@media(max-width:768px) {

    .services-section {
        padding: 60px 20px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 24px;
    }
}




.approach-container {
    max-width: 1200px;
    margin: auto;
}

.approach-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: black;
    margin-bottom: 60px;
    font-family: "Montserrat", sans-serif;

}

.approach-stripe {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    margin-bottom: 22px;
    padding: 10px 16px;
    border-left: 8px solid #ff914d;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-stripe:nth-child(even) {
    border-left-color: #fff4ed;
}

.approach-stripe:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}



.approach-stripe:nth-child(even)::before {
    background: rgba(158, 97, 60, 0.08);
}

.stripe-icon {
    min-width: 80px;
    height: 80px;
    border-radius: 20px;
    /* background:linear-gradient(135deg,#ff914d,#fff4ed); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.stripe-content {
    position: relative;
    z-index: 2;
}

.stripe-content h3 {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
    font-weight: 700;
}

.stripe-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

@media(max-width:768px) {

    .approach-section {
        padding: 10px 15px;
    }

    .approach-title {
        font-size: 32px;
        margin-bottom: 40px;
        font-family: "Montserrat", sans-serif;
    }

    .approach-stripe {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 20px;
    }

    .stripe-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 26px;
    }

    .stripe-content h3 {
        font-size: 24px;
    }

    .stripe-content p {
        font-size: 15px;
    }
}






.pillars-container {
    max-width: 1250px;
    margin: auto;
}

.pillars-title {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #9e613c;
    margin-bottom: 70px;
    font-family: "Montserrat", sans-serif;
}

.pillar-box {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 35px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
    border-left: 8px solid #ff914d;
}

.pillar-box:nth-child(3) {
    border-left: 8px solid #9e613c;
}

.pillar-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

/* Soft Background Shape */
.pillar-box::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 145, 77, 0.08);
}

.pillar-box:nth-child(3)::before {
    background: rgba(158, 97, 60, 0.08);
}

.pillar-icon {
    min-width: 90px;
    height: 90px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff914d, #fff3db);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.pillar-content {
    position: relative;
    z-index: 2;
}

.pillar-content h3 {
    color: black;
    margin-bottom: 18px;
    font-weight: 700;
}

.pillar-content p {
    font-size: 17px;
    line-height: 2;
    color: #666;
    margin-bottom: 18px;
}

.pillar-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.pillar-highlights span {
    background: #fff4ed;
    color: black;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 145, 77, 0.25);
}

@media(max-width:768px) {

    .pillars-section {
        padding: 70px 15px;
    }

    .pillars-title {
        font-size: 32px;
        margin-bottom: 45px;
        font-family: "Montserrat", sans-serif;
    }

    .pillar-box {
        flex-direction: column;
        padding: 30px 25px;
        gap: 25px;
    }

    .pillar-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 34px;
    }

    .pillar-content h3 {
        font-size: 28px;
    }

    .pillar-content p {
        font-size: 15px;
        line-height: 1.9;
    }
}


/* Banner */
.breadcrumb-banner {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 110px;
    background: url("../images/Breadcrumb.png") center/cover no-repeat;
}


/* Gradient Overlay */
.breadcrumb-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(230 199 143 / 88%), rgba(255, 145, 77, 0.82))
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: #3d2b1f;
}

.breadcrumb-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Glass Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 6px 28px;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.breadcrumb a,
.breadcrumb strong {
    text-decoration: none;
    color: #4a2f1d;
    font-size: 15px;
    font-weight: 600;
}

/* Custom Angled Separator */
.breadcrumb span {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ff914d;
    border-right: 2px solid #ff914d;
    transform: rotate(45deg);
}

.breadcrumb a:hover {
    color: #ff914d;
    transition: .3s;
}

/* Mobile */
@media (max-width:768px) {

    .breadcrumb-banner {
        height: 220px;
            margin-top: 40px;

    }

    .breadcrumb-content h1 {
        font-size: 2rem;
    }

    .breadcrumb {
        padding: 12px 18px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Company Name Watermark */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    white-space: nowrap;

    color: #000000;
    opacity: 0.09;

    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Keep content above watermark */
.breadcrumb-content {
    position: relative;
    z-index: 2;
}



.contact-popup {
    position: fixed;
    right: 25px;
    bottom: -400px;

    width: 340px;
    max-width: calc(100% - 30px);

    background: #fff4ed;

    border: 2px solid #ff914d;
    border-radius: 20px;

    padding: 25px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition:
        bottom .8s ease,
        opacity .8s ease;
}

/* Active State */
.contact-popup.show {
    bottom: 25px;
    opacity: 1;
    visibility: visible;
}

.contact-popup h3 {
    color: #ff914d;
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-popup p {
    color: #555;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-popup form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-popup input {
    width: 100%;
    padding: 12px 15px;

    border: 1px solid rgba(255, 145, 77, .4);
    border-radius: 10px;

    background: #fff;
    outline: none;

    font-size: 14px;
}

.contact-popup input:focus {
    border-color: #ff914d;
}

.contact-popup button[type="submit"] {
    border: none;
    cursor: pointer;

    padding: 13px;

    background: #ff914d;
    color: #fff;

    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;

    transition: .3s;
}

.contact-popup button[type="submit"]:hover {
    transform: translateY(-2px);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 12px;

    border: none;
    background: none;

    font-size: 24px;
    cursor: pointer;

    color: #ff914d;
}

@media(max-width:768px) {
    .contact-popup {
        right: 15px;
        left: 15px;
        width: auto;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.contact-popup button[type="submit"] {
    animation: pulse 2s infinite;
}

/* Floating CTA Button */
.contact-trigger {
    position: fixed;
    right: 25px;
    bottom: 25px;

    background: #ff914d;
    color: #fff;

    padding: 14px 22px;
    border-radius: 50px;

    font-weight: 600;
    cursor: pointer;

    z-index: 9998;

    display: none;

    box-shadow: 0 10px 25px rgba(255, 145, 77, .35);

    animation: pulseGlow 2s infinite;
}

/* Pulse Effect */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 145, 77, .5);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 18px rgba(255, 145, 77, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 145, 77, 0);
    }
}

@media(max-width:768px) {
    .contact-trigger {
        right: 15px;
        bottom: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }
}

.process-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 60px 20px;

}

/* Each Step */
.process-item {
    width: 150px;
    text-align: center;
    position: relative;
}

/* Number Bubble */
.step-no {
    width: 35px;
    height: 35px;

    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);

    background: var(--clr);
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    z-index: 2;
}

/* Main Circle */
.process-circle {
    width: 100px;
    height: 100px;

    margin: auto;

    background: #fff4ed;

    border: 3px solid var(--clr);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    box-shadow: 0 15px 25px rgba(0, 0, 0, .08);
}

/* Dotted Outer Ring */
.process-circle::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    border: 2px dashed var(--clr);
    border-radius: 50%;
}

/* Image */
.process-circle img {
width: 900px;
    height: 92px;
    object-fit: contain;
    border-radius: 50%;
}

/* Vertical Connector */
.connector {
    width: 2px;
    height: 28px;
    background: var(--clr);
    margin: 0 auto;
    position: relative;
}

.connector::after {
    content: "";

    width: 12px;
    height: 12px;

    border: 2px solid var(--clr);
    background: #fff;

    border-radius: 50%;

    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Title */
.process-item h3 {
    display: inline-block;

    margin: 20px 0 15px;

    padding: 4px 5px;

    background: var(--clr);
    color: #fff;

    border-radius: 8px;

    font-size: 15px !important;
    letter-spacing: 1px;
}

/* Title */
.process-item h4 {
    display: inline-block;

    margin: 20px 0 15px;

    padding: 7px 0px;
    color: var(--clr);

    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Description */
.process-item p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
    padding: 0 10px;
}

/* Arrow */
.process-arrow {
    font-size: 42px;
    color: var(--clr);
    margin-top: 20px;
}

/* Responsive */
@media(max-width:991px) {

    .process-section {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

.blue {
    --clr: #075cb6;
}

.green {
    --clr: #5baa3b;
}

.purple {
    --clr: #5a3c8c;
}
.Orange {
    --clr: #e97901;
}
.lightblue {
    --clr: #0f94a7;
}  
.gold{
   --clr: #d5940d
}


.why-growcrest{
    max-width:1100px;
    margin:2px  auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:38px;
    color:#ff914d;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:17px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.feature-card{
    background:rgba(255, 145, 77, 0.12);
    padding:25px;
    border-radius:14px;
    transition:.3s;
    border:1px solid transparent;
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:#ff914d;
}

.icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#ff914d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
}

.feature-card h3{
    color:black;
    margin-bottom:12px;
    font-size:20px;
}

.feature-card p{
    color:#555;
    line-height:1.6;
}
/* =========================
   FAQ SECTION
========================= */




.faq-section .container {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================
   HEADER
========================= */

.faq-header {
    text-align: center;
    margin-bottom: 55px;
}

.faq-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(255, 145, 77, 0.12);
    color: #ff914d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-header h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.faq-header p {
    max-width: 650px;
    margin: auto;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   FAQ WRAPPER
========================= */

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* =========================
   FAQ ITEM
========================= */

.faq-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 145, 77, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    border-color: #ff914d;
    box-shadow: 0 12px 35px rgba(255, 145, 77, 0.12);
}


/* =========================
   QUESTION
========================= */

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 23px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    cursor: pointer;
}

.faq-number {
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3ec;
    color: #ff914d;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.faq-title {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: #252525;
}

.faq-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7f7f7;
    color: #555;

    font-size: 24px;
    font-weight: 300;

    transition: all 0.3s ease;
}


/* Active question */

.faq-item.active .faq-number {
    background: #ff914d;
    color: #fff;
}

.faq-item.active .faq-icon {
    background: #ff914d;
    color: #fff;
    transform: rotate(45deg);
}


/* =========================
   ANSWER
========================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;

    transition:
        max-height 0.45s ease,
        padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 28px 28px 93px;
}

.faq-answer p {
    margin: 0 0 15px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #333;
}


/* =========================
   TRAINING LIST
========================= */

.faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.faq-list span {
    padding: 9px 15px;
    border-radius: 50px;
    background: #fff5ef;
    border: 1px solid rgba(255, 145, 77, 0.18);
    color: #555;
    font-size: 13px;
    font-weight: 500;
}


/* =========================
   INDUSTRIES
========================= */

.industry-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.industry-list span {
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff8f4;
    border-left: 3px solid #ff914d;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}


/* =========================
   HIGHLIGHT
========================= */

.faq-highlight {
    margin-top: 20px;
    padding: 20px 22px;
    border-radius: 12px;
    background: #fff4ed;
    border-left: 4px solid #ff914d;

    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-highlight strong {
    color: #ff914d;
    font-size: 16px;
}

.faq-highlight span {
    color: #666;
    font-size: 14px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 70px 15px;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-header h2 {
        font-size: 30px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px;
        gap: 12px;
    }

    .faq-number {
        min-width: 38px;
        height: 38px;
        font-size: 11px;
    }

    .faq-title {
        font-size: 15px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 22px 68px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }

    .industry-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .industry-list span {
        padding: 11px;
        font-size: 13px;
    }
}


@media (max-width: 480px) {

    .faq-header h2 {
        font-size: 26px;
    }

    .faq-question {
        align-items: flex-start;
    }

    .faq-number {
        min-width: 34px;
        height: 34px;
    }

    .faq-title {
        font-size: 14px;
    }

    .faq-icon {
        min-width: 30px;
        width: 30px;
        height: 30px;
    }

    .faq-item.active .faq-answer {
        padding-left: 18px;
    }

    .industry-list {
        grid-template-columns: 1fr;
    }

    .faq-list {
        gap: 7px;
    }

    .faq-list span {
        font-size: 12px;
        padding: 8px 12px;
    }
}
.training-programs {
    width: 100%;
    padding: 20px 0;
}

.training-programs h3 {
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.training-programs h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #ed641d;
}

.training-program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.training-program-item {
    display: flex;
    align-items: center;

    min-height: 120px;

    border-bottom: 1px solid #ed641d;

    padding: 7px 10px;

    transition: all 0.3s ease;
}

.training-icon {
    width: 90px;
    min-width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ed641d;

    font-size: 48px;
}

.training-title {
    padding-left: 25px;
    font-size: 20px;
    color: #222;
    line-height: 1.4;
}

.training-program-item:hover .training-icon {
    transform: scale(1.08);
}

.training-program-item:hover .training-title {
    color: #ed641d;
}

.training-ttt {
    font-weight: 700;
    margin-top: 35px;
    color: #333;
}
.training-subtitle {
    font-weight: 700;
    color: #333;
    font-size: 20px;
    margin: 25px 0;
    position: relative;
    padding-left: 5px;
}

.training-subtitle::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #ed641d;
    margin-top: 8px;
}
@media (max-width: 767px) {

    .training-programs {
        padding: 30px 15px;
    }

    .training-programs h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .training-program-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .training-program-item {
        min-height: 100px;
        padding: 12px 5px;
    }

    .training-icon {
        width: 65px;
        min-width: 65px;
        height: 65px;
        font-size: 36px;
    }

    .training-title {
        padding-left: 18px;
        font-size: 17px;
    }
}