/********** Template CSS **********/
:root {
    --primary: #3CB815;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
        .carousel-control-prev-icon,
        .carousel-control-next-icon{
            border: none;
            background-color: transparent;
            color: orange;
        }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}



/* Custom Styling Start here  */

.chead{
    font-size: 20px !important;
    color: #111111;
}


 .card-boxone {
     background: linear-gradient(135deg, #F65005 0%, #FF8C1A 100%);
     transition: all 0.4s ease;
     color: white;
     border-radius: 50% 50% 50% 50%;
 }

 .card-boxone .text-muted {
     color: white !important;
 }


 .card-boxone:hover {
     background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
     color: #fff !important;
     transform: translateY(-8px);
     box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
 }

 .card-boxone:hover .text-muted {
     color: #fff !important;
 }

 .card-boxone:hover i {
     color: #fff !important;
     transform: scale(1.2);
 }

 .icon i {
     transition: all 0.3s ease;
 }



 .card-boxtwo {
     background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);

     transition: all 0.4s ease;
     color: white;
     border-radius: 50% 50% 50% 50%;

 }

 .card-boxtwo .text-muted {
     color: white !important;
     padding: 10px !important;
 }


 .card-boxtwo:hover {
     background: linear-gradient(135deg, #F65005 0%, #FF8C1A 100%);
     color: #fff !important;
     transform: translateY(-8px);
     box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
 }

 .card-boxtwo:hover .text-muted {
     color: #fff !important;
 }

 .card-boxtwo:hover i {
     color: #fff !important;
     transform: scale(1.2);
 }


 @media (max-width: 768px) {
     .card-box {
         margin-bottom: 1rem;
     }

     .icon i {
         font-size: 2.5rem;
     }
 }



 /* What We Offer home page   */

 .bg-icon {
background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
 }

 .rounded-4 {
     border-radius: 1.25rem;
 }

 .text-success {
     color: #28a745 !important;
 }

 .text-warning {
     color: #f6a300 !important;
 }

 .text-danger {
     color: #dc3545 !important;
 }

 .text-primary {
     color: #007bff !important;
 }

 .btn-outline-success:hover,
 .btn-outline-warning:hover,
 .btn-outline-danger:hover,
 .btn-outline-primary:hover {
     color: #fff !important;
     background: linear-gradient(135deg, #f65005 0%, #ff8c1a 100%);
     border-color: transparent;
     box-shadow: 0 4px 10px rgba(246, 80, 5, 0.3);
 }

 .img-fluid {
     transition: transform 0.3s ease;
 }

 .bg-white:hover .img-fluid {
     transform: scale(1.1);
 }

 .hd{
    box-shadow: 5px #F65005 !important;
 }



 /* Process box  */
/* ============ PROCESS SECTION STYLING ============ */

.our-blog {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    background: url(../img/bg-icon.png) center center repeat;
        background-size: contain;
}
.title h3 {
    font-weight: 700;
    font-size: 32px;
    color: #111;
}

.title .site-color {
    color: #f65005;
}

/* Process Box */
.process-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.process-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(246, 80, 5, 0.35);
}

/* Angled Pointer on Box */
.process-left:after {
    content: "";
    border-top: 15px solid #ffffff;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    display: inline-grid;
    position: absolute;
    right: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: 3px -2px 3px 0px #00000036;
    z-index: 1;
}

.process-right:after {
    content: "";
    border-top: 15px solid #ffffff00;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff00;
    display: inline-grid;
    position: absolute;
    left: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: -1px 1px 3px 0px #0000001a;
    z-index: 1;
}

/* Step Header */
.process-step {
    background: linear-gradient(135deg, #F65005 0%, #F65005 100%);
    text-align: center;
    width: 90%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    padding: 10px 0;
    position: relative;
    top: -26px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

/* Step Header Arrows */
.process-step:after {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 15px solid #F65005;
}

.process-step:before {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 15px solid #F65005;
}

/* Step Text */
.process-step p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.process-step h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

/* Connector Circles */
.process-point-right,
.process-point-left {
    background: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 6px solid #F65005;
    box-shadow: 0 0 0px 4px #5c5c5c;
    margin: auto 0;
    position: absolute;
    bottom: 40px;
    z-index: 2;
}

.process-point-right {
    left: -60px;
}

.process-point-left {
    right: -60px;
}

/* Angled Connector Lines */
.process-point-right:before,
.process-point-left:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 140px;
    background: #5c5c5c;
    z-index: -1;
}

.process-point-right:before {
    transform: rotate(35deg);
    left: -45px;
    top: -20px;
}

.process-point-left:before {
    transform: rotate(-35deg);
    right: -45px;
    top: -20px;
}

/* Straight Lines Between Boxes */
.process-line-l,
.process-line-r {
    background: #5c5c5c;
    height: 3px;
    position: absolute;
    width: 120px;
    top: 65px;
    z-index: 9;
}

.process-line-l {
    right: -136px;
}

.process-line-r {
    left: -136px;
}

/* Remove Last Connector Line */
.process-last:before {
    display: none;
}

/* Box Text */
.process-box h5 {
    font-weight: 600;
    color:#F65005 ;
}

.process-box p small {
    color: #666;
}

.process-step h2{
    color: white !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {

    .process-left:after,
    .process-right:after,
    .process-line-l,
    .process-line-r,
    .process-point-left,
    .process-point-right {
        display: none;
    }

    .process-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .process-step {
        width: 100%;
        border-radius: 8px;
        top: 0;
    }
        .process-box h5{
            margin-top: 18px !important;
        }

    .process-step:before,
    .process-step:after {
        display: none;
    }
}

/* ============ OPTIONAL: BRAND COLOR VARIANT ============ */
/* Use this if you want to match MFTL orange gradient theme */
.brand-orange .process-step {
    background: linear-gradient(135deg, #F65005 0%, #F65005 100%) !important;
    box-shadow: 0 4px 10px rgba(246, 80, 5, 0.3);
}

.brand-orange .process-step:after {
    border-right-color: #f65005 !important;
}

.brand-orange .process-step:before {
    border-left-color: #f65005 !important;
}

.brand-orange .process-point-left,
.brand-orange .process-point-right {
    border-color: #f65005 !important;
    box-shadow: 0 0 0px 4px #ffb58a !important;
}

.brand-orange .process-line-l,
.brand-orange .process-line-r,
.brand-orange .process-point-left:before,
.brand-orange .process-point-right:before {
    background: #f65005 !important;
}


/* Certification  */

.certification-card {
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.certification-img {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.certification-img img {
    max-height: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
}

.certification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 184, 21, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;

}

.overlay-content {
    transform: translateY(20px);
    transition: all 0.3s ease;

}

.certification-detail {
    padding: 0 10px;
}

.certification-detail p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0;
}

.certification-card:hover .certification-img img {
    transform: scale(1.1);
}

.certification-card:hover .certification-overlay {
    opacity: 1;
}

.certification-card:hover .overlay-content {
    transform: translateY(0);
}

.certification-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 991.98px) {
    .certification-img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .certification-img {
        width: 170px;
        height: 170px;
    }
}


/* ========== Featured Products Section ========== */
/* ========== Featured Products Section ========== */
#featured-products {
    background: linear-gradient(135deg, #f65005 0%, #ff8c1a 100%);
    overflow: hidden;
}

#featured-products .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

#featured-products .feature-item {
    transition: all 0.4s ease;
    position: relative;
}

#featured-products .feature-item:hover {
    transform: translateX(10px);
}

#featured-products .icon {
    font-size: 2.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

#featured-products .feature-item:hover .icon {
    background: #fff;
    color: #f65005;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* CTA Buttons */
#featured-products .btn-light {
    background-color: #fff;
    color: #f65005;
    border: none;
    transition: all 0.3s ease;
}

#featured-products .btn-light:hover {
    background-color: #ffe0cc;
    color: #f65005;
    box-shadow: 0 8px 20px rgba(246, 80, 5, 0.3);
}

#featured-products .btn-outline-light:hover {
    background-color: #fff;
    color: #f65005;
}

/* Wave at bottom */
#featured-products svg path {
    transition: all 0.4s ease;
}

/* Animation (Floating icons) */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

#featured-products .icon {
    animation: floatIcon 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    #featured-products .icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }

    #featured-products h4 {
        font-size: 1.1rem;
    }

    #featured-products p {
        font-size: 0.95rem;
    }
}


/* global presence  */

/* ========== Global Presence Section ========== */
/* ===== GLOBAL PRESENCE SECTION ===== */
#global-presence {
    background: radial-gradient(circle at center, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    position: relative;
}

#global-presence h2 {
    color: #fff;
}

.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(246, 80, 5, 0.25), transparent 70%);
    filter: blur(120px);
    z-index: 0;
}

/* Orbit Wrapper */
.orbit-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    z-index: 2;
}

/* Central Node (Logo or Text) */
.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f65005, #ff8c1a);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 25px rgba(246, 80, 5, 0.5);
}

.center-node .logo-img {
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
}

/* Orbit Rings */
.orbit {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 15s linear infinite;
}

/* Planet Nodes (Countries) */
.planet {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    animation: orbit-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Different Orbit Sizes & Speeds */
.orbit-1 {
    width: 130px;
    height: 130px;
    animation-duration: 10s;
}

.orbit-2 {
    width: 190px;
    height: 190px;
    animation-duration: 14s;
}

.orbit-3 {
    width: 250px;
    height: 250px;
    animation-duration: 18s;
}

.orbit-4 {
    width: 310px;
    height: 310px;
    animation-duration: 22s;
}

.orbit-5 {
    width: 370px;
    height: 370px;
    animation-duration: 26s;
}

/* Animations */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbit-float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

/* Orange Gradient Button */
.btn-orange-gradient {
    background: linear-gradient(135deg, #f65005, #ff8c1a);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange-gradient:hover {
    background: linear-gradient(135deg, #ff8c1a, #f65005);
    box-shadow: 0 0 20px rgba(246, 80, 5, 0.5);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .orbit-wrapper {
        width: 280px;
        height: 280px;
    }

    .center-node {
        width: 80px;
        height: 80px;
    }

    .planet {
        font-size: 1.4rem;
    }
}



/* ===== GET IN TOUCH SECTION ===== */
/* ===== SIMPLE CONTACT SECTION ===== */
#contact {
   
    position: relative;
}

.contact-box {
    background: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-box:hover {
    border: 2px solid #f65005;
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(246, 80, 5, 0.2);
}

/* Icon Styling */
.contact-box .icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #f65005, #ff8c1a);
    color: #fff;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: transform 0.4s ease;
}

.contact-box:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

/* Gradient Button */
.btn-orange-gradient {
    background: linear-gradient(135deg, #f65005, #ff8c1a);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange-gradient:hover {
    background: linear-gradient(135deg, #ff8c1a, #f65005);
    box-shadow: 0 8px 20px rgba(246, 80, 5, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-box {
        margin-bottom: 20px;
    }

    .contact-box .icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}


/* ===== OUR VISION SECTION ===== */
#vision {
    background: #fff;
    overflow: hidden;
}

#vision .vision-img img {
    transition: transform 0.6s ease, box-shadow 0.3s ease;
}

#vision .vision-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(246, 80, 5, 0.25);
}

/* Gradient Button */
.btn-orange-gradient {
    background: linear-gradient(135deg, #f65005, #ff8c1a);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange-gradient:hover {
    background: linear-gradient(135deg, #ff8c1a, #f65005);
    box-shadow: 0 8px 20px rgba(246, 80, 5, 0.3);
}

/* Fade Animations (for WOW.js or standalone use) */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wow.fadeInLeft {
    animation: fadeInLeft 1s ease forwards;
}

.wow.fadeInRight {
    animation: fadeInRight 1s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    #vision .vision-img {
        text-align: center;
    }

    #vision .vision-img img {
        width: 90%;
    }

    #vision h2 {
        font-size: 1.5rem;
    }
}


/* our promise  about us  */

.promise-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.promise-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.promise-column {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.promise-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(60, 184, 21, 0.15);
}

.promise-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.promise-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.promise-column:hover .promise-header i {
    transform: scale(1.2) rotate(10deg);
}

.farmer-col .promise-header {
    background: linear-gradient(135deg, rgba(60, 184, 21, 0.1), rgba(60, 184, 21, 0.2));
    color: #3CB815;
}

.client-col .promise-header {
    background: linear-gradient(135deg, rgba(246, 80, 5, 0.1), rgba(246, 80, 5, 0.2));
    color: #F65005;
}

.industry-col .promise-header {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.2));
    color: #0d6efd;
}

.promise-body {
    padding: 30px;
    position: relative;
}

.promise-ornament {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    opacity: 0.1;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.farmer-col .promise-ornament {
    background-image: url('img/wheat-icon.svg');
}

.client-col .promise-ornament {
    background-image: url('img/handshake-icon.svg');
}

.industry-col .promise-ornament {
    background-image: url('img/globe-icon.svg');
}

.promise-column:hover .promise-ornament {
    transform: scale(1.5);
    opacity: 0.2;
}

.grow-together-box {
    background: linear-gradient(135deg, #3CB815, #2e7d32);
    padding: 40px;
    border-radius: 15px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.grow-together-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.grow-together-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .promise-columns {
        flex-direction: column;
        align-items: center;
    }

    .promise-column {
        max-width: 100%;
    }

    .grow-together-box {
        padding: 30px 20px;
    }
}

.gif-background {
    background: url('../img/ai-generated-7879042_1280.jpg') center/cover no-repeat !important;
    min-height: 500px;
    position: relative;
    background-attachment: fixed;
    /* Creates parallax effect */
    background-size: cover;
    background-position: center center;
    animation: fadeIn 1.5s ease-in-out;
    /*
     Smooth fade in */
}






/* ===== OUR SERVICES SECTION ===== */
#services {
    background-color: #f9fafb;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(246, 80, 5, 0.15);
}

/* Icon Circle */
.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f65005, #ff8c1a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.service-card:hover .icon-circle {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 15px rgba(246, 80, 5, 0.3);
}

/* List Style */
.service-card ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
    padding-left: 25px;
}

.service-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f65005;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


/* Process   */

.main-timeline5 {
    overflow: hidden;
    position: relative
}

.main-timeline5 .timeline {
    position: relative;
    margin-top: -79px
}

.main-timeline5 .timeline:first-child {
    margin-top: 0
}

.main-timeline5 .timeline-icon,
.main-timeline5 .year {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.main-timeline5 .timeline:after,
.main-timeline5 .timeline:before {
    content: "";
    display: block;
    width: 100%;
    clear: both
}

.main-timeline5 .timeline:before {
    content: "";
    width: 100%;
    height: 100%;
    box-shadow: -8px 0 5px -5px rgba(0, 0, 0, .5) inset;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2
}

.main-timeline5 .timeline-icon {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #0475C0;
    border-right-color: #0475C0;
    z-index: 1;
    transform: rotate(45deg)
}

.main-timeline5 .year {
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    font-size: 40px;
    font-weight: 700;
    color: #0475C0;
    text-align: center;
    transform: rotate(-45deg)
}

.main-timeline5 .timeline-content {
    width: 35%;
    float: right;
    background: #0475C0;
    padding: 30px 20px;
    margin: 50px 0;
    z-index: 1;
    position: relative
}

.main-timeline5 .timeline-content:before {
    content: "";
    width: 20%;
    height: 15px;
    background: #0475C0;
    position: absolute;
    top: 50%;
    left: -20%;
    z-index: -1;
    transform: translateY(-50%)
}

.main-timeline5 .title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px
}

.main-timeline5 .description {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin: 0
}

.main-timeline5 .timeline:nth-child(2n):before {
    box-shadow: 8px 0 5px -5px rgba(0, 0, 0, .5) inset
}

.main-timeline5 .timeline:nth-child(2n) .timeline-icon {
    transform: rotate(-135deg);
    border-top-color: #039554;
    border-right-color: #039554;
}

.main-timeline5 .timeline:nth-child(2n) .year {
    transform: rotate(135deg);
    color: #039554
}

.main-timeline5 .timeline:nth-child(2n) .timeline-content {
    float: left
}

.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    left: auto;
    right: -20%
}

.main-timeline5 .timeline:nth-child(2n) .timeline-content,
.main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
    background: #039554
}

.main-timeline5 .timeline:nth-child(3n) .timeline-icon {
    border-top-color: #F65005;
    border-right-color: #F65005
}

.main-timeline5 .timeline:nth-child(3n) .year {
    color: #F65005
}

.main-timeline5 .timeline:nth-child(3n) .timeline-content,
.main-timeline5 .timeline:nth-child(3n) .timeline-content:before {
    background: #F65005
}

.main-timeline5 .timeline:nth-child(4n) .timeline-icon {
    border-top-color: #105572;
    border-right-color: #105572
}

.main-timeline5 .timeline:nth-child(4n) .year {
    color: #105572
}

.main-timeline5 .timeline:nth-child(4n) .timeline-content,
.main-timeline5 .timeline:nth-child(4n) .timeline-content:before {
    background: #105572
}

@media only screen and (max-width:1199px) {
    .main-timeline5 .timeline {
        margin-top: -103px
    }

    .main-timeline5 .timeline-content:before {
        left: -18%
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        right: -18%
    }
}

@media only screen and (max-width:990px) {
    .main-timeline5 .timeline {
        margin-top: -127px
    }

    .main-timeline5 .timeline-content:before {
        left: -2%
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        right: -2%
    }
}

@media only screen and (max-width:767px) {
    .main-timeline5 .timeline {
        margin-top: 0;
        overflow: hidden
    }

    .main-timeline5 .timeline:before,
    .main-timeline5 .timeline:nth-child(2n):before {
        box-shadow: none
    }

    .main-timeline5 .timeline-icon,
    .main-timeline5 .timeline:nth-child(2n) .timeline-icon {
        margin-top: -30px;
        margin-bottom: 20px;
        position: relative;
        transform: rotate(135deg)
    }

    .main-timeline5 .timeline:nth-child(2n) .year,
    .main-timeline5 .year {
        transform: rotate(-135deg)
    }

    .main-timeline5 .timeline-content,
    .main-timeline5 .timeline:nth-child(2n) .timeline-content {
        width: 100%;
        float: none;
        border-radius: 0 0 20px 20px;
        text-align: center;
        padding: 25px 20px;
        margin: 0 auto
    }

    .main-timeline5 .timeline-content:before,
    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        width: 15px;
        height: 25px;
        position: absolute;
        top: -22px;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, 0)
    }
}


/* Social Slider Container */
.social-slider {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    /* Reverse column order */
    align-items: center;
}

/* Trigger Button */
.slider-trigger {
    width: 50px;
    height: 50px;
    background-color: #F65005;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    order: 1;
    /* Ensure trigger stays at bottom */
}

.slider-trigger:hover {
    background-color: #039554;
    transform: scale(1.1);
}

.slider-trigger i {
    font-size: 25px;
}

/* Slider Content */
.slider-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.slider-content.open {
    max-height: 300px;
    /* Adjust based on number of icons */
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #F65005;
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
    background-color: #039554;
}

.social-icon i {
    font-size: 20px;
    font-weight: 200;
}

.back-to-top
{
    background-color:#F65005 ;
    color: white;
}


/* Section Styling */
#about-vision {
    background-color: #f8f9fa;
}

/* Equal Height for Columns */
.aboutvision-row {
    display: flex;
    align-items: stretch;
}

/* Image Column */
.aboutvision-image-col {
    display: flex;
    align-items: center;
}

.aboutvision-image-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutvision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Content Column */
.aboutvision-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .aboutvision-row {
        flex-direction: column;
    }

    .aboutvision-img {
        height: auto;
    }

    .aboutvision-content-col {
        text-align: center;
        padding-top: 1rem;
    }
}


/* font family  */


.navbar .navbar-nav .nav-link {
    font-family: Fortbook, Arial, San-serif !important;

}

p,
h1,
h3,
h2,
h4,
h5,
a,
li,
h6 {
    font-family: Fortbook, Arial, San-serif !important;

}

span {
    font-family: Fortbook, Arial, San-serif !important;
}

p {

    font-size: 16px !important;
}

.linkf {
    font-family: Fortbook, Arial, San-serif !important;
    font-size: 16px !important;
}

.button {
    font-family: Fortbook, Arial, San-serif !important;
}

@media only screen and (max-width:767px){
.mbcar{
    margin-top: 120px !important;
}
.mbcb{
    background-color: white ;
    padding: 10px !important;
    border-radius: 4%;
}

.headerhead
{
    background-color: white;
        padding: 10px !important;
        align-items: center;
        margin: auto;
}
.btnd{
    margin-top: 20px !important;
}

.contact-mb{
    margin-top: -20px !important;
}

}
.mib {
    color: white;
}
/*-----------------------------------------*/
.gif-background {
  background-image: url('img/your-background.jpg'); /* Replace with your actual image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .gif-background {
    background-attachment: scroll; /* Prevents distortion on mobile */
    background-size: cover;
    background-position: center top;
  }
}
/*-----------------------------------------------*/
.bg-light {
  border: 2px solid #e6e6e6;
  transition: all 0.3s ease;
}

.bg-light:hover {
  background-color: #f0fff4;
  transform: scale(1.03);
}

.bg-light h3 {
  font-size: 1.4rem;
}

.bg-light small {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .d-flex.align-items-start {
    flex-direction: column;
    text-align: center;
  }

  .d-flex.align-items-start .me-4 {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
}
