* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #fff;
}
p {
    font-weight: 300 !important;
}
ol {
    padding-left: 1rem;
}
/* =========================
   HEADER
========================== */

.site-header {
    width: 100%;
    padding: 17px 0px;
    background: #F8FAFC;
}

.header-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================== */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
}

/* =========================
   DESKTOP NAVIGATION
========================== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.main-nav ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.main-nav ul li{
    list-style: none;
}
.main-nav a {
    position: relative;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #62832b;
}
/* =========================
   NAVIGATION HOVER EFFECT
========================== */

.main-nav ul li > a:not(.contact-btn) {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* Underline */
.main-nav ul li > a:not(.contact-btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;

    width: 100%;
    height: 2px;

    background: #000;

    transform: translateX(-50%) scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

/* Hover */
.main-nav ul li > a:not(.contact-btn):hover {
    color: #000;
}

.main-nav ul li > a:not(.contact-btn):hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* =========================
   ACTIVE MENU
========================== */

.main-nav ul li.current-menu-item > a:not(.contact-btn)::after,
.main-nav ul li.current_page_item > a:not(.contact-btn)::after {
    transform: translateX(-50%) scaleX(1);
    background: #999;
}


/* Active hover becomes black */
.main-nav ul li.current-menu-item > a:not(.contact-btn):hover::after,
.main-nav ul li.current_page_item > a:not(.contact-btn):hover::after {
    background: #000;
}


/* =========================
   ACADEMY
========================== */

.academy-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* =========================
   CONTACT BUTTON
========================== */

.contact-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    background: #66862f;
    color: #fff !important;

    border-radius: 22px;

    font-family: "Inter Tight", sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

/* Make sure contact button has NO underline */
.contact-btn::after {
    display: none !important;
}

.contact-btn:hover {
    background: #526d25;
    color: #fff !important;
    transform: translateY(-1px);
}
/* Academy + Coming Soon */

.academy-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #f5d900;
    color: #111;
    font-family: "Inter Tight", sans-serif;
    font-size: 11px;
    font-weight: 400;

    padding: 4px 5px;
    border-radius: 5px;

    line-height: 1;
}

/* =========================
   CONTACT BUTTON
========================== */

.contact-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #66862f;
    color: #fff !important;
    border-radius: 30px;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px !important;
    font-weight: 400 !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-btn:hover {
    background: #526d25;
    transform: translateY(-1px);
}

/* =========================
   MOBILE MENU BUTTON
========================== */

.menu-toggle {
    width: 38px;
    height: 38px;

    display: none;

    align-items: center;
    justify-content: center;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.hamburger {
    width: 23px;
    height: 17px;

    position: relative;
}

.hamburger span {
    position: absolute;
    left: 0;

    width: 100%;
    height: 2px;

    background: #333;

    transition: 0.25s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
}

.hamburger span:nth-child(3) {
    top: 14px;
}

/* =========================
   MOBILE MENU ACTIVE
========================== */

.menu-toggle.active .hamburger span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.top-banner-content{
    padding: 88px 0 40px;
    background: #F8FAFC;
}
.banner-box{
    width: 100%;
    max-width: 805px;
}
.banner-box h1{
    font-family: "Inter Tight", sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 500;
    color: #000;
}
.banner-box p{
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #2E2E2E;
    line-height: 24px;
}
.btn-underline{
    font-family: "Inter Tight", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 24px;
}


/* =========================================
    HERO SLIDER
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: #111;
}

/* =========================================
    SLIDES
========================================= */

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(60px);
    transition:
        opacity 1s ease,
        transform 1.2s ease,
        visibility 1s ease;

    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}


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

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition:
        transform 7s cubic-bezier(.2,.6,.2,1);
}

/*
    Zoom starts when slide becomes active
*/

.slide.active img {
    transform: scale(1.10);
}
.slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .62) 0%,
            rgba(0, 0, 0, .35) 40%,
            rgba(0, 0, 0, .08) 75%,
            rgba(0, 0, 0, .15) 100%
        );

    z-index: 1;
}

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

.hero-content {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
    z-index: 5;
    opacity: 0;
    transform:translate(-50%, -50%);
    transition:
        opacity .8s ease .4s,
        transform .8s ease .4s;
}

.slide.active .hero-content {
    opacity: 1;
    transform:translate(-50%, -50%);
}



.hero-content h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;

}


.hero-content p {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 24px;
}


.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 30px;
    background: transparent;
    font-family: "Inter Tight", sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #fff;

    transition:
        background .25s ease,
        transform .25s ease;
}

.hero-button:hover {
    background: #536e26;

    transform: translateY(-3px);
}



/* =========================================
    PROGRESS BAR
========================================= */

.slider-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: rgba(255,255,255,.15);

    z-index: 20;
}

.slider-progress-bar {
    width: 0;
    height: 100%;

    background: #66852f;
}

.slider-progress-bar.animate {
    animation: progress 6s linear forwards;
}

@keyframes progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}
.about-sec{
    padding: 100px 0;
}
.about-wrap {
    display: flex;
    gap: 80px;
    align-items: flex-end;
}
.about-sec h3{
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
}
.about-sec h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
	    max-width: 625px;
}

.about-left p{
    color: #2E2E2E;
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.count span{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 80px;
    font-weight: 600;
}
.about-left h4{
    color: #2E2E2E;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.about-conent-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
}
.about_content {
    display: flex;
    gap: 30px;
}
.about-left {
    width: 100%;
}
.about-right {
    width: 30%;
}
.about-left p{
    margin: 10px 0 0;
    color: #2E2E2E;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.about-right-box {
    margin: 0 0 20px;
    background: #F9F9F9;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 228px;
}
.trusted-icon-content p {
    font-size: 16px;
    color: #2E2E2E;
    line-height: 30px;
    margin: 20px 0 0;
}
.btn-color {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 56px;
    background: #66862f;
    color: #fff;
    border-radius: 30px;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.image-carousel {
    width: 100%;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;

    view-timeline-name: --carousel-scroll;
    view-timeline-axis: block;
}

.carousel-wrapper::after {
    content: "";
    position: absolute;

    left: 0;
    top: -100%;

    width: 100%;
    height: 100%;

    z-index: 9;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        #fff 0%,
        rgba(255, 255, 255, 0) 100%
    );

    opacity: 0;

    animation: gradientMove linear both;
    animation-timeline: --carousel-scroll;
    animation-range: entry 0% exit 100%;
}

@keyframes gradientMove {

    /* Scroll শুরু হওয়ার আগে/শুরুতে invisible */
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    /* Gradient দেখা যাচ্ছে */
    10% {
        transform: translateY(70%);
        opacity: 1;
    }

    /* Top → Bottom */
    70% {
        transform: translateY(300%);
        opacity: 1;
    }

    /* পুরোপুরি বের হয়ে যাবে */
    100% {
        transform: translateY(500%);
        opacity: 0;
    }
}
/* =========================
   HOVER
========================= */

.carousel-wrapper:hover::after {
    animation: gradientHover 1s ease forwards;
}

@keyframes gradientHover {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}
.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;

    /* Force remove old fade effect */
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: #FFFFFF1A;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(30, 40, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #555;
	    justify-content: center;
    align-items: center;
	width:94px;
	height:40px;
}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
}

.dot.active{
    background: #5F772D;
    width: 20px;
    height: 10px;
    border-radius: 8px;
}

.help-sec{
    padding: 100px 0;
    background: #F9F9F9;
}
.help-wrap{
    display: flex;
    gap: 160px;
}
.help-left{
    width: 100%;
}
.help-right{
    width: 100%;
}

.help-sec h3{
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
}
.help-sec h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
}
.help-sec h2 span {
    display: block;
}
.help-left p{
    color: #2E2E2E;
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.help-right ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.help-right ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
}
/*.help-right ul li span img {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*}*/
.help-right ul li p{
    margin: 0;
	font-weight: 400 !important;
}
.servies-sec{
    padding: 100px 0;
}
.servies-sec h3{
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.servies-sec h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}


/* ==========================================
   SERVICES WRAPPER
========================================== */

.services-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;

    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    align-items: stretch;
}


/* ==========================================
   SERVICE ITEM
========================================== */

.service-item {
    position: relative;

    flex: 0 0 calc((100% - 28px) / 3);

    padding: 22px 24px 30px;

    background: #f4f7fa;

    border-radius: 20px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 100px;

    cursor: pointer;
}

.service-item-content {  
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(20%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item:hover .service-item-content {
    transform: translateY(0);
}
/* ==========================================
   DARK BLUE CIRCLE REVEAL
========================================== */

.service-item::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: 34px;
    top: 20px;

    border-radius: 50%;

    background: #002b55;

    z-index: 1;

    transform: scale(0);

    transform-origin: center center;

    transition:
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Expand circle on hover */

.service-item:hover::before {
    transform: scale(10);
}


/* ==========================================
   ICON
========================================== */

.service-item-img {
    position: relative;
    z-index: 3;
}


/* Keep icon exactly where it is */

.service-item img {
    display: block;

    transform: none !important;
}


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

.service-item-content {
    position: relative;
    z-index: 3;
}


/* ==========================================
   TITLE
========================================== */

.service-item h4 {
    margin: 0 0 12px;
    color: #151515;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    transition:
        color 0.4s ease;
}
/* Hover title */
.service-item:hover h4 {
    color: #ffffff;
}

/* ==========================================
   DESCRIPTION
========================================== */
.service-item p {
    margin: 0;
    color: #8f8f8f;
    font-size: 15px;
    line-height: 1.45;
    max-width: 100%;
    transition:
        color 0.4s ease;
}


/* Hover description */

.service-item:hover p {
    color: #ffffff;
}


/* ==========================================
   KNOW MORE
========================================== */

.btn-services {
    display: inline-block;

    width: fit-content;

    margin-top: 10px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1;

    text-decoration: underline;
    text-underline-offset: 3px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity 0.4s ease 0.15s,
        visibility 0.4s ease 0.15s,
        transform 0.4s ease 0.15s;
}


/* Show Know More */

.service-item:hover .btn-services {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}





/* ==========================================
   REMOVE OLD EFFECTS
========================================== */

.service-item:hover {
    background: #f4f7fa;

    transform: none;
    box-shadow: none;
}
.service-item::before {
    width: 100px;
    height: 100px;
    left: 34px;
    top: 20px;
    border-radius: 50%;
    background: #002b55;

    transform: scale(0);
}

.service-item:hover::before {
    transform: scale(10);
}



.industries-sec{
    padding: 100px 0;
    background: #F9F9F9;
    text-align: center;
}
.industries-sec h3{
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.industries-sec h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}


/* ==========================================
   SERVICES WRAPPER - FLEX
========================================== */

.industries-wrap {
    width: 100%;
    max-width: 990px;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 7px;
    align-items: flex-start;
}
.industries-item {
    position: relative;
    flex: 0 0 calc((100% - 28px) / 4);
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    text-align: center;
    align-items: center;
}
.industries-item img{
    width: 198px;
    height: 251px;
    border-radius: 400px;
    object-fit: cover;
}
.industries-item h4{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.industries-sec p.industries-content {
    font-style: italic;
    color: #2E2E2E;
    font-size: 14px;
    margin: 30px 0 30px;
}


.trusted-sec{
    padding: 100px 0;
}
.trusted-sec h3{
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
}
.trusted-sec h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
}
.trusted-sec h2 span{
    display: block;
}
.trusted-wrap {
    display: flex;
    justify-content: space-between;
}
.trusted-left{
    width: 70%;
}

.trusted-right{
    width: 100%;
}
.trusted-item {
    display: flex;
    gap: 15px;
    margin: 0 0 30px;
}
.trusted-item-img {
    width: 228px;
    height: 130px;
    opacity: 1;
    border-radius: 200px;
    overflow: hidden;
}
.trusted-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trusted-item-content{
    width: 100%;
    max-width: 420px;
}
.trusted-item h4{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.trusted-item p {
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 300;
}
.cta-sec{
    position: relative;
}
.cta-sec img{
    width: 100%;
}
.cta-caption {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 45%;
    left: 50%;
    width: 64%;
    text-align: center;
}
.cta-caption h2{
    color: #fff;
    font-family: "Inter Tight", sans-serif;
    font-size: 50px;
    font-weight: 600;
}
.cta-caption p{
    color: #F8FAFC;
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 400;
}
footer {
    background: #022952;
    border-radius: 20px 20px 0px 0;
    margin: -20px 0 0;
    z-index: 99;
    position: relative;
    padding: 32px 0;
    font-family: "Inter Tight", sans-serif;
}
.footer-top {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #FFFFFF3D;
    margin: 0 0 30px;
    padding: 0 0 30px;
}
.footer-one {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-two {
    width: 100%;
    max-width: 350px;
}
.footer-menus {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
footer p{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}
footer p span{
    display: block;
}
footer p a{
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 0 0 5px;
}
.footer-menus ul{
    margin: 0;
    padding: 0;
}
.footer-menus ul li{
    list-style: none;
    padding: 0 0 15px;
}
.footer-menus ul li a{
    color: #fff;
    text-decoration: none;
}
.btn-white {
    border: 1px solid #fff;
    padding: 14px 36px;
    color: #fff;
    border-radius: 30px;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    width: 50%;
}
.footer-box {
    display: flex;
    justify-content: space-between;
}
.footer-logo {
    width: 100%;
    max-width: 512px;
}
.footer-social{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.flowus {
    display: none;
}
.footer-social h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}
.footer-social ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.footer-social ul li{
    list-style: none;
}

.top-about h1{
    font-weight: 600;
    font-size: 52px;
    max-width: 625px;
}
.top-about ul{
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.top-about ul li{
    list-style: none;
}
.top-about ul li a{
    text-decoration: none;
    color: #000;
}
.aboutpage-sec {
    margin: 80px 0;
}
.aboutpage-wrap {
    display: flex;
    gap: 66px;
    width: 100%;
    max-width: 1100px;
    justify-content: center;
    margin: 0 auto;
}
.aboutpage-wrap-image {
    flex: 1;
}
.aboutpage-wrap-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aboutpage-wrap-right h3{
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
}
.aboutpage-wrap-right h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
}
.aboutpage-wrap-right p {
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 300;
    margin: 0 0 25px;
}
.aboutpage-wrap-right ul {
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 300;
    padding: 0 0 20px;
    margin: 0;
}
.aboutpage-wrap-right ul li {
    list-style: none;
}
.page-id-12 .aboutpage-wrap-right ul li {
    list-style: none;
    padding: 0 0 0 25px;
    margin: 0 0 8px;
    position: relative;
}
.page-id-12 .aboutpage-wrap-right ul li:after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E2E2E;
    position: absolute;
    content: '';
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}
.bussiness-sec {
    margin: 80px 0 0;
    background: #F8FAFC;
}
.bussiness-wrap {
    display: flex;
    gap: 20px;
}
.bussiness-left {
    width: 80%;
}
.bussiness-right {
    width: 25%;
    padding: 80px 0;
}
.bussiness-left img {
    float: left;
    margin: 0 20px 0 0;
}
.bussiness-left h3 {
    margin: 150px 0 15px;
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
}
.bussiness-left h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
    width: 100%;
    max-width: 540px;
}
.bussiness-left h2 span{
    display: block;
}
.bussiness-right p {
    color: #2E2E2E;
    font-size: 16px;
    font-weight: 300;   
}
.bussiness-right img{
    width: 100%;
}
.bussiness-right {
    width: 30%;
    padding: 0 0 0 25px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    border-left: 1px solid #000;
    margin: 80px 0;
}

.missonvission-sec{
    padding: 80px 0;
}
.missonvission-sec h3 {
    color: #2E2E2E;
    font-family: "Geist Mono", monospace;
    font-size: 16px;
    font-weight: 400;
}
.missonvission-sec h2{
    color: #000;
    font-family: "Inter Tight", sans-serif;
    font-size: 40px;
    font-weight: 600;
    width: 100%;
    max-width: 540px;
}
.missonvission-sec p {
    color: #2E2E2E;
    font-size: 16px;
    font-weight: 300;   
}
.missionvisson-wrap {
    display: flex;
    gap: 30px;
}
.missionvisson-wrap img{
    width: 100%;
}
.misson-box{
    width: 100%;
}
.misson-img{
    width: 100%;
}
.vission-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.aboutbussiness-sec {
    background: url(../images/bg.png);
    background-size: cover;
    background-position: center;
    padding: 80px 0 0;
}
.aboutbussiness-sec01{
    padding: 80px 0;
}
.count {
    border-left: 1px solid #000;
    padding: 0 0 0 20px;
}
.service-item-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-item-img span {
    font-size: 14px;
    background: #e6c325;
    padding: 1px 8px;
    border-radius: 30px;
}
.count .counter {
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
}

.count .counter.count-active {
    transform: translateY(0);
    opacity: 1;
}
.arrow-btn {
    width: 60px;
    height: 60px;
    background: #0d2b4d;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn span {
    position: absolute;
    color: #fff;
    transition: transform 0.45s cubic-bezier(.76, 0, .24, 1);
}

.arrow-one {
    transform: translate(0, 0);
}

.arrow-two {
    transform: translate(-80px, 80px);
}

.arrow-btn:hover {
    transform: scale(1.08);
}

.arrow-btn:hover .arrow-one {
    transform: translate(80px, -80px);
}

.arrow-btn:hover .arrow-two {
    transform: translate(0, 0);
}

/* ================================
   ACADEMY SECTION
================================ */

.academy-sec {
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    background: url(../images/bg.png);
    background-size: cover;
    background-position: center;
    color: #111;
}

.academy-sec__container {
    display: flex;
    justify-content: space-between;
}

.academy-sec__left {
    padding-top: 4px;
    width: 100%;
    max-width: 450px;
}

.academy-sec__eyebrow {
    margin-bottom: 12px;
    color: #000;
    font-family: Geist Mono;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.academy-sec__title {
    margin: 0 0 14px;
    font-family: Inter Tight;
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0%;
}

.academy-sec__intro {
    margin: 0 0 12px;
    color: #000;
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.academy-sec__description {
    color: #2E2E2E;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.academy-sec__programs {
    width: 100%;
    max-width: 590px;
}

.academy-sec__program {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #d9dddd;
}

.academy-sec__program:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.academy-sec__program h2 {
    margin: 0 0 15px;
    font-family: Inter Tight;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}

.academy-sec__program p {
    margin: 0;
    color: #2E2E2E;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

/* =========================================
   ACADEMY WAITLIST SECTION
========================================= */

.academy-sec--waitlist {
  width: 100%;
  min-height: 205px;
  padding: 80px 0px;
  background: #fff;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

.academy-sec__waitlist {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.academy-sec__waitlist-title {
    margin: 0 0 8px;
    font-family: Inter Tight;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
}

.academy-sec__waitlist-subtitle {
    margin: 0 0 25px;
    color: #2E2E2E;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}


/* FORM */

.academy-sec__waitlist-form {
    width: 100%;
    max-width: 745px;
    height: 70px;
    margin: 0 auto 13px;
    padding: 10px;
    display: flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 60px;
    background: #fff;
}

.academy-sec__waitlist-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 15px;
    border: 0;
    outline: none;
    background: transparent;
    color: #111;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.academy-sec__waitlist-input::placeholder {
  color: #333;
  opacity: 1;
}

.academy-sec__waitlist-button {
    flex-shrink: 0;
    border: 0;
    border-radius: 30px;
    background: #5d7b29;
    color: #fff;
    transition: background 0.2s ease;
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    padding: 10px 50px;
}

.academy-sec__waitlist-button:hover {
  background: #4d681f;
}


/* SECURITY TEXT */

.academy-sec__waitlist-security {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    gap: 10px;
}

.academy-sec__waitlist-shield {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #12b76a;
  font-size: 7px;
  border-radius: 2px 2px 5px 5px;
}

/* ==========================================
   CONTACT SECTION
========================================== */

.contact-sec {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.contact-sec__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-sec__row {
  align-items: flex-start;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.contact-sec__content {
  padding-right: 45px;
}

.contact-sec__eyebrow {
    color: #2E2E2E;
    font-family: Geist Mono;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 10px;
    letter-spacing: 0%;
}

.contact-sec__title {
    margin: 0 0 20px;
    color: #000;
    font-family: Inter Tight;
    font-weight: 600;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0%;
}

.contact-sec__text {
    margin: 0 0 12px;
    color: #2E2E2E;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.contact-sec__text--bottom {
  margin-top: 8px;
}


/* ==========================================
   FORM
========================================== */

.contact-sec__form {
  width: 100%;
}

.contact-sec__name-row {
  margin-bottom: 20px;
}


/* Every input */

.contact-sec__field {
  margin-bottom: 20px;
}

.contact-sec__floating {
  position: relative;
}

.contact-sec__floating > .form-control, .contact-sec__floating > .form-select {
    height: 56px;
    min-height: 56px;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    border: 1px solid #E2E8F0;
}
.contact-sec .form-control:focus,
.contact-sec .form-select:focus {
  border-color: #cfd5d8;
  box-shadow: none !important;
}


/* Floating inputs */

.contact-sec__floating > .form-control,
.contact-sec__floating > .form-select {
  height: 56px;
    min-height: 56px;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    border: 1px solid #E2E8F0;
}





/* Hide floating behavior */
.contact-sec__floating > .form-control::placeholder {
  color: #000;
}




/* Select */

.contact-sec__floating .form-select {
  padding-left: 24px;
  padding-right: 30px;
  height: 56px;
    min-height: 56px;
    border-radius: 30px;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    border: 1px solid #E2E8F0;
}




/* ==========================================
   HOW CAN WE HELP
========================================== */

.contact-sec__help {
  margin-top: 14px;
}

.contact-sec__help-title {
    margin-bottom: 14px;
    color: #000;
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.contact-sec__checks {
  margin: 0;
}

.contact-sec__checks > div {
  padding-left: 0;
  padding-right: 10px;
}


/* Checkbox */

.contact-sec__check {
    min-height: 16px;
    margin-bottom: 20px;
    padding-left: 18px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.contact-sec__check .form-check-input {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  margin-left: -18px;
  border: 1px solid #aeb5b8;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
}

.contact-sec__check .form-check-input:focus {
  box-shadow: none;
}

.contact-sec__check .form-check-input:checked {
  background-color: #5d7b29;
  border-color: #5d7b29;
}
.form-floating>.form-control-plaintext:-webkit-autofill, .form-floating>.form-control:-webkit-autofill {
    padding-top: 0;
    padding-bottom: 0;
}
.contact-sec__check .form-check-label {
    color: #2E2E2E;
    cursor: pointer;
    white-space: nowrap;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}


/* ==========================================
   MESSAGE
========================================== */

.contact-sec__message {
  margin-top: 10px;
}

.contact-sec__textarea {
  width: 100%;
  height: 33px !important;
  min-height: 33px !important;
  resize: none;
  padding: 9px 10px !important;
  border-radius: 18px !important;
  font-size: 9px !important;
  line-height: 14px;
}

.contact-sec__textarea::placeholder {
  color: #222;
  opacity: 1;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.contact-sec__submit {
    margin-top: 18px;
    padding: 14px 60px;
    border: 0;
    border-radius: 30px;
    background: #5F772D;
    color: #fff;
    text-align: center;
    box-shadow: none !important;
    font-family: Inter Tight;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.contact-sec__submit:hover,
.contact-sec__submit:focus,
.contact-sec__submit:active {
  background: #526d24 !important;
  color: #fff !important;
  border-color: #526d24 !important;
}
.form-floating>.form-control-plaintext:focus, .form-floating>.form-control-plaintext:not(:placeholder-shown), .form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 0;
    padding-bottom: 0;
}



.industries-page {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0px;
}

/* =========================
   FLEX LAYOUT
========================= */

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 42px;
    max-width: 1100px;
    width:100%;
    margin: 0 auto;
}

.industry-card {
  width: calc(50% - 27.5px);
}

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

.industry-image {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #e9ece8;
}

/*
  IMAGE WIDTH PATTERN

  1 = 85%
  2 = 100%
  3 = 100%
  4 = 85%

  Then repeats:
  5 = 85%
  6 = 100%
  7 = 100%
  8 = 85%
*/

/* .industry-card:nth-child(4n + 1) .industry-image,
.industry-card:nth-child(4n) .industry-image {
  width: 85%;
} */

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

.industry-content {
  padding-top: 36px;
}

.industry-title {
    color: #000;
    margin-bottom: 16px;
    font-family: Inter Tight;
    font-weight: 600;
    font-size: 44px;
    line-height: 56px;
    letter-spacing: 0%;
    width: 100%;
    max-width: 360px;
}
.industry-content p{
    color: #2E2E2E;
    font-family: Inter Tight;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0%;
}



.industry-meta {
    color: #2E2E2E;
    margin-bottom: 12px;
    font-family: Inter Tight;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

.industry-card-01, .industry-card-04, .industry-card-05, .industry-card-08 {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* =========================
   BUTTON
========================= */

.industry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 82px;
  height: 23px;
  padding: 0 17px;

  border: 0;
  border-radius: 20px;

  background: #567b20;
  color: #fff;

  font-size: 8px;
  font-weight: 600;
  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.industry-button:hover {
  background: #3f6015;
  transform: translateY(-1px);
}
.aboutbussiness-sec a.btn-color{
    background: #022952;
}
.service-section-6 .aboutpage-wrap, .service-section-7 .aboutpage-wrap, .service-section-8 .aboutpage-wrap {
    flex-direction: row-reverse;
}
.page-id-231 .aboutpage-wrap-right {
    justify-content: center;
}
.page-template-default .aboutpage-wrap-right ul li {
    list-style: none;
    padding: 0 0 0 25px;
    margin: 0 0 8px;
    position: relative;
}
.page-template-default .aboutpage-wrap-right ul li:after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E2E2E;
    position: absolute;
    content: '';
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}
