/********** Template CSS **********/
:root {
    --primary: #009748;
    --secondary: #ffcb2f;  
    --light: #f0f4ff;
    --dark: #060315;
    --bs-white: #fff;
}

/* #F8F2F0  #efefefef */

body {
  font-family: 'Verdana', sans-serif !important;
  font-weight: 200 !important;
}

.fw-medium {
    font-weight: 200 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
  }
  
  .section-bg {
    background-color: #f0f4ff;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #009748;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #000000;
  }
  

/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    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 ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 40px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.img-fluid {
  height: 650px;

}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}



/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/about\ us\ banner.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.section-header{
  text-align: center;
}

   .hero-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: left;
      gap: 40px;
      margin-bottom: 50px;
    }

    .hero-tab {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      border-bottom: 2px solid rgba(255, 255, 255, 0.4);
      padding-bottom: 5px;
      transition: all 0.3s;
    }

    .hero-tab:hover {
      border-color: #fff;
    }

    .hero-tab {
      color: #ffffff;
      text-decoration: none;
      border-bottom: 2px solid rgba(255, 255, 255, 0.3);
      padding-bottom: 5px;
      transition: all 0.3s ease;
    }
/* full-width image fills the section */
.cta-bg-img{
  position:absolute;
  inset:0;                 /* top:0 right:0 bottom:0 left:0 */
  width:100%;
  height:100%;
  object-fit:cover;        /* keeps aspect ratio, crops if needed */
  z-index:0;               /* stays behind everything */
}

/* green overlay on top of the image */
.cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,151,72,.6);  /* #009748 at 60% opacity */
  mix-blend-mode:multiply;       /* photo detail shines through */
  z-index:1;
}

/* ensure text & button sit above overlay */
.cta-section .container{
  z-index:2;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  border: 1px solid transparent;
}

.featured-services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;          /* keep inline placement or override later */
    display: inline-block;
    overflow: hidden;            /* harmless now, but keeps edges neat */
    font-size: 0;                /* neutralise whitespace nodes */
}

/* === Shared icon & label styling === */
.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    /* — Visual look — */
    background: linear-gradient(135deg, #51F2B8 100%);
    color: #000000;
    border-radius: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    /* — Typography & spacing — */
    height: 42px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .4px;

    /* — NO animation — */
    left: 0 !important;          /* cancel any offset */
    transition: none !important; /* kill slide-in/out */
    z-index: 1;
}

/* === Icon tweaks === */
.service-item a.btn-slide i,
.price-item a.btn-slide i,
.team-item div.btn-slide i {
    /* remove the arrow completely */
    display: none;
}

/* === Optional hover colour pop === */
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover span,
.team-item div.btn-slide:hover span {
     background: linear-gradient(135deg,#51F2B8 0%, #009748 100%);
}



/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #009748;
    border-bottom: 3px solid #009748;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  
  .contact .info i {
    font-size: 20px;
    color: #009748;
    float: left;
    width: 44px;
    height: 44px;
    background: #eaf6ed;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #222222;
  }
  
  .contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000000;
  }
  
  .contact .info .social-links {
    padding-left: 60px;
  }
  
  .contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #000000;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
  }
  
  .contact .info .social-links a:hover {
    background: #009748;
    color: #fff;
  }
  
  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    background: #009748;
    color: #fff;
  }

  .contact .php-email-form {
    width: 100%;
    border-top: 3px solid #009748;
    border-bottom: 3px solid #009748;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: #009748;
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: #009748;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: #6ec083;
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    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);
}

.job_section {
    padding-top: 10px;
    background-color: #ffffff;
    color: #ffffff;
  }
  
  .job_section .heading_container {
    margin-bottom: 15px;
  }
  
  .job_section .job_container {
    margin-top: 45px;
  }
  
  .job_section .job_heading {
    margin-bottom: 0;
    text-transform: uppercase;
  }
  
  .job_section .box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    border: 1px solid #ffcb2f;
    margin-top: 25px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    border-radius: 5px;
  }
  
  .job_section .box .job_content-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .job_section .box .img-box {
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    margin-right: 20px;
    border: 1px solid #ffcb2f;
    background-color: #ffffff;
  }
  
  .job_section .box .img-box img {
    width: 100%;
  }
  
  .job_section .box .detail-box h5 {
    font-weight: 600;
  }
  
  .job_section .box .detail-box .detail-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .job_section .box .detail-box .detail-info h6 {
    margin: 0;
    margin-right: 15px;
  }
  
  .job_section .box .option-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
  
  .job_section .box .option-box .fav-btn {
    margin-right: 25px;
    border: none;
    background: none;
    outline: none;
    font-size: 20px;
    color: inherit;
  }
  
  .job_section .box .option-box .apply-btn {
    display: inline-block;
    padding: 5px 15px;
    background-color: #009748;
    color: #ffffff;
    border-radius: 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    border: 1px solid #009748;
    outline: none;
  }
  
  .job_section .box .option-box .apply-btn:hover {
    background-color: transparent;
    color: #009748;
  }
  
  .job_section .box .option-box .apply-btn:hover {
    color: #ffffff;
  }
  
  .job_section .btn-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
  
  .job_section .btn-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ffcb2f;
    color: #ffffff;
    border-radius: 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    border: 1px solid #ffcb2f;
    outline: none;
  }
  
  .job_section .btn-box a:hover {
    background-color: transparent;
    color: #ffcb2f;
  }
  

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.awards-section {
    padding: 60px 50px;
    background: #ffffff;
    text-align: center;
}

.awards-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.awards-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #000000;
}

.award-cards {
    display: flex;
    justify-content:center;
    gap: 30px;
    flex-wrap: wrap;
}

.award-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 40%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card img {
    width: 90%;
    height: 300px;
    object-fit: cover;
    padding: 12px;
}

.award-info {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.award-info h3 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #000000;
}

.award-info p {
    font-size: 16px;
    color: #000000;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}



@media (max-width: 768px) {
    .award-cards {
        flex-direction: column;
        align-items: center;
    }

    .award-card {
        width: 80%;
    }
}

.container1 {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 500px;
  position: relative;
  text-align: center;
  transition: background-color 0.5s ease, transform 0.4s ease, box-shadow 0.4s ease, color 0.5s ease;
}

/* .card:hover {
  background-color: #ffcb2f; 
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: white;
} */

.card:hover h2,
.card:hover p {
    color: rgb(0, 0, 0);
}

.award-logo {
  height: 170px;
  margin-bottom: 20px;
}

.medal-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  height: 150px;
}

.trophy-icon {
  position: absolute;
  bottom: -20px;
  left: -30px;
  height: 200px;
}

h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.divider {
  width: 40px;
  height: 4px;
  background: rgb(0, 128, 49);
  margin: 10px auto;
  border-radius: 2px;
}

p {
  font-size: 14px;
  margin-top: 10px;
  color: #000000;
}

.news-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.news-section h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #000000;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.2s;
}

.social-link:hover {
  transform: scale(1.05);
}

.facebook { background-color: #3b5998; }
.linkedin  { background-color: #0077b5; }
.youtube   { background-color: #ff0000; }

.social-icon {
  width: 24px;
  height: 24px;
}

.card1 {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.3s ease;
}

.card1:hover {
  background-color: #ffcb2f; 
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.card1:hover h2,
.card1:hover p {
    color: rgb(0, 0, 0);
}


.partner-section {
  /* background-color: #f9f9f9; */
  padding: 20px 20px;
}

.partner-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #000000;
}

.partner-entry {
  display: flex;
  align-items: center;
  background: #fff;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px 30px;
  /* border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.partner-logo {
  flex-shrink: 0;
  width: 175px;
  height: auto;
  margin-right: 30px;
}

.partner-info {
  text-align: left;
}

.partner-info h3 {
  margin: 0;
  font-size: 22px;
  color: #000000;
}

.partner-info p {
  margin-top: 10px;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .partner-entry {
    flex-direction: column;
    text-align: center;
  }

  .partner-logo {
    margin: 0 0 20px 0;
  }

  .partner-info {
    text-align: center;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: left;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(43, 131, 90, 0.7); /* Purple overlay */
  clip-path: polygon(0 0, 70% 0, 50% 100%, 0% 100%);
}

.banner-content {
  position: relative;
  color: white;
  text-align: left;
  padding: 0 80px;
  z-index: 2;
}

.banner-content h1 {
  font-size: 3rem;
  margin: 0;
  color: white;
}

.banner-content p {
  font-size: 1.25rem;
  margin: 10px 0 20px;
  color: white;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

.container p{
  font-size: 16px;
}

.section-title {
  color: #015120;
  font-weight: 500;
}
.benefit-icon {
  width: 75px;
  height: 50px;
}
.benefit-card {
  background-color: #f9f9fb;
  border: none;
}


.circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(5deg, #004c23 0%, #009748 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.circle:hover {
  transform: scale(1.05) rotate(5deg);
}

.circle h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.circle p {
  font-size: 0.9rem;
  color: #EEEEEE;
}
/* Why Choose Us Section */
.container2 h5{
  font-weight: 100;
}

/* Make circles smaller on small screens */
@media (max-width: 576px) {
  .circle {
    width: 200px;
    height: 200px;
  }
}

.title {
  color: #015120;
  font-weight: 800;
  font-size: 1.5rem;
}
.hero {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  color: #fff;
  padding: 80px 0;
}
.value-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.value-icon {
  font-size: 40px;
  color: #009748;
}

.section {
  background: linear-gradient(135deg, #f0f4ff, #f0f4ff);
  padding: 60px 0;
  border-radius: 20px;
  margin-bottom: 40px;
}
.section h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #009748;
}
.icon-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.icon-box:hover {
  transform: translateY(-10px);
}
.icon {
  font-size: 40px;
  color: #009748;
  margin-bottom: 15px;
}
.icon-box h5{
  color: #000000;
}

.img-fluid1 {
  border-radius: 15px;
  height: 350px;
  width: 550px;
}

.feature-img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}
.erp-section {
  padding: 60px 20px;
  text-align: center;
}
.erp-section p{
  font-size: medium;
  font-weight: 500;
  color: #000000;
}
.erp-section h2 {
  margin-bottom: 40px;
  color: #009748;
}
.erp-feature {
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000000;
}
.cards {
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.cards:hover {
  transform: scale(1.03);
}

.cards-header {
  font-size: 16px;
  text-align: center;
}

.cardss {
  height: 520px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.cardss:hover {
  transform: scale(1.03);
}

.cardss-header {
  font-size: 16px;
  text-align: center;
}

.icon {
  font-size: 2rem;
  margin-right: 10px;
}


.card3 {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
  transition: background-color 0.5s ease, transform 0.4s ease, box-shadow 0.4s ease, color 0.5s ease;
}

/* .card3:hover {
  background-color: #ffcb2f; 
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: white;
} */

.card3:hover h2,
.card3:hover p {
    color: rgb(0, 0, 0);
}

.point-section h5 {
  font-weight: bold;
}
.point-section p, .bullet-point {
  color: #000000;
}
.bullet-point {
  margin-bottom: 1rem;
}
.img-fluid3 {
  border-radius: 12px;
  height: 280px;
  width: 450px;
}

.feature-section1 {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 30px;
  margin-bottom: 10px;
  height: 100%;
}
h2 {
  margin-bottom: 20px;
  color: #009748;
}
ul li {
  margin-bottom: 10px;
}

.text-box {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: 20px;
}
.section-title3 {
  font-weight: bold;
  color: #009748;
}
.chart-img {
  max-width: 100%;
  height: 350px;
  display: block;
  margin: auto;
  border-radius: 50%;
}

.banner1 {
  background: linear-gradient(90deg, #009748, #0bd76d);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.banner1 h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ddd;
}

.banner1 p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #ffffff;
}

.eol-section {
  background-color: #f0f4ff;
  padding: 80px 20px;
  text-align: center;
}

.eol-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 30px;
  height: 100%;
  transition: transform 0.3s;
}

.card-title {
  font-weight: bold;
  color: #009748;
  margin-bottom: 15px;
}

ul {
  text-align: left;
  padding-left: 20px;
}
.feature-card2 {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.2s ease;
}
.feature-card2:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2rem;
  color: #ffcb2f;
}

.card5 {
            margin-bottom: 2rem;
            border-left: 5px solid #009748;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        .card-title {
            color: #009748
        }

      .image-card {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .image-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .overlay-text {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 1rem;
      font-size: 1.2rem;
      text-align: center;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .image-card:hover img {
      transform: scale(1.05);
    }

    .image-card:hover .overlay-text {
      background: rgba(0, 0, 0, 0.75);
      color: #f8f9fa;
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      background-color: #009748;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 20px;
      font-size: 24px;
    }
    .card5 {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .card5:hover {
      transform: translateY(-10px);
    }

    .central-image {
      display: flex;
      justify-content: center;
      margin: 40px 0;
    }
    .central-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

.navbar {
      background-color: #a9d0f5;
    }
    .contact-info {
      font-size: 0.9rem;
      text-align: right;
    }

    @media (max-width: 768px) {
      .contact-info {
        text-align: left;
        margin-top: 10px;
      }
    }

 .carousel-item {
      padding: 0px 0;
    }

    .image-row {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: nowrap;
      overflow: hidden;
      padding: 0 20px;
    }

    .image-row img {
      width: 100%;
      max-width: 350px;
      height: auto;
      border-radius: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: black;
      border-radius: 50%;
    }

    .support-logo-section {
      background: linear-gradient(135deg, #ffffff, #fffefa);
      border-radius: 24px;
      padding: 50px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(97, 97, 97, 0.5);
    }

    .support-logo-section::before,
    .support-logo-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.4;
      z-index: 0;
    }

    .support-logo-section::before {
      width: 180px;
      height: 80px;
      background: #ffffff;
      top: -60px;
      left: -60px;
    }

    .support-logo-section::after {
      width: 300px;
      height: 300px;
      background: #ffffff;
      bottom: -100px;
      right: -80px;
    }

    @keyframes gradientText {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 100% 50%;
      }
    }

    .support-badge {
      max-width: 180px;
      border-radius: 16px;
      transition: 0.4s ease;
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
      z-index: 1;
    }

    .support-badge:hover {
      transform: scale(1.05) rotate(2deg);
      box-shadow: 0 12px 30px rgba(255, 255, 255, 0.6);
    }

    .support-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .highlight {
      color: #262626;
      font-weight: 600;
    }

    @media (max-width: 767.98px) {
      .support-heading {
        font-size: 1.6rem;
      }

      .support-badge {
        max-width: 140px;
        margin-bottom: 20px;
      }
    }

   .imagen-card {
      height: 350px;
      border-radius: 12px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .imagen-card:hover {
      transform: translateY(-5px);
    }

    .imagen-overlay {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: white;
      text-align: center;
      font-weight: 500;
      font-size: 1.1rem;
    }

    @media (max-width: 768px) {
      .imagen-overlay {
        font-size: 1rem;
        padding: 15px;
      }
    }
    .navitsa-section {
      padding: 10px 0;
    }
    .navitsa-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #0d0d0d;
    }
    .navitsa-text {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.8;
    }
    .highlight {
      color: #262626;
      font-weight: 600;
    }
    .left-content, .right-content {
      padding: 30px;
    }
    @media (max-width: 768px) {
      .left-content, .right-content {
        padding: 20px 15px;
      }
    }

    /* BANKING */
.solutions-section {                     /* subtle radial backdrop */
  background: radial-gradient(
              circle at 10% 10%,
              #fafbff 0%, #f0f4ff 100%);
}

/* Card shell */
.solution-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 .75rem 2rem rgba(0,0,0,.06);
  height: 100%;                          /* equal heights */
  transition: transform .35s ease,
              box-shadow .35s ease;
}

/* Lift on hover */
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.25rem 2.25rem rgba(0,0,0,.09);
}

/* Icon circle with gradient halo */
.icon-wrap {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg,#009748 0%,#004c23 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 .5rem 1rem rgba(111,61,208,.25);
}
.icon-wrap img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;                /* crisp inset ring */
}

/* Small paragraph tweaks */
.solution-card p { line-height: 1.6; }


/* --- Card design --- */
.card-custom {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,0.05);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
}

.highlight-title {
  color: #009748;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* --- Center image --- */
.chart-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  clip-path: circle(50%);
  object-fit: cover;
  border: 5px solid #009748;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
}

/* --- Custom Card for Why Navitsa Section --- */
.value-card-custom {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.value-card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #009748, #ffcb2f);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

/* AUTOMOTIVE */
/* --- Choose-Us cards --- */
.choose-card{
  background:#fff;
  padding:2rem 1.5rem;
  border-radius:1rem;
  box-shadow:0 .6rem 1.4rem rgba(0,0,0,.06);
  transition:transform .3s ease, box-shadow .3s ease;
  height:100%;
}
.choose-card:hover{
  transform:translateY(-6px);
  box-shadow:0 1rem 2rem rgba(0,0,0,.1);
}

/* Gradient icon circle */
.choose-icon{
  width:70px;
  height:70px;
  margin:0 auto 1.2rem;
  border-radius:50%;
  background:linear-gradient(135deg,#009748 0%,#ffcb2f 100%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.7rem;
  box-shadow:0 .4rem 1rem rgba(0,0,0,.12);
}

/* WHOLESALE */
.solution-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: all 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.solution-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #009748, #ffcb2f);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

h5 {
  font-weight: 600;
  color: #000000;
}

.single-testimonial {
  background: #f1f5f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-wrapper {
  max-width: 970px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.testimonial-client {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.clients-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.primary-color {
  color: #009748;
}

.secondary-color {
  color: #ffcb2f; 
}

.client-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.client-info .client-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.client-info .client-role {
  font-size: 0.85rem;
  color: #777;
}

.logo-highlight {
  background: linear-gradient(135deg, #eef2f7, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.logo-container {
  max-width: 600px;
  margin: auto;
}

.main-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  animation: float 3s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

/* Floating logo animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Responsive adjustment (optional but helpful) */
@media (max-width: 480px) {
  .logo-highlight {
    padding: 40px 15px;
  }

  .main-logo {
    max-width: 240px;
  }
}

    .accordion-item {
      background: #fff;
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 16px;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
    }

    .accordion-item:hover {
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .accordion-button {
      background-color: #ffffff;
      font-weight: 600;
      font-size: 18px;
      padding: 18px 24px;
      color: #212529;
      border: none;
      border-radius: 0;
      transition: background-color 0.3s ease;
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background-color: #e9f2ff;
      color: #009748;
    }

    .accordion-body {
      background-color: #fafbfe;
      padding: 20px 24px;
      color: #555;
      font-size: 16px;
      border-top: 1px solid #e0e6ed;
    }

.btn-learn-more {
  background-color: #18d26e;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 35px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.15);
  text-decoration: none;
  display: inline-block;
}

.btn-learn-more:hover {
  background-color: #009748;
  box-shadow: 0 6px 14px rgba(13, 110, 253, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

.testimonial-section {
      background: #f8f9fa;
      padding: 20px 0;
    }

    .testimonial-card {
      max-width: 300px;
      margin: auto;
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .testimonial-video {
      border-bottom: 1px solid #ddd;
    }

    .accordion1-item {
      border: none;
      background: #f8f9fa;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      margin-bottom: 20px;
    }

    .accordion1-item img {
      width: 200px;
      height: 200px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .accordion1-body {
      text-align: left;
    }

  .separator-image {
    overflow: hidden;
    line-height: 0;
  }

  .separator-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .custom-image {
  width: 100%;
  max-width: auto;
  margin: auto;
  display: block;
}

.accordion1-collapse {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease;
    }
    .accordion1-collapse.show {
      max-height: 600px; /* adjust based on content */
    }

    /* Fade + Slide effect */
    .accordion1-body {
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.5s ease-in-out;
      background: #dcf6e8;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      margin-top: 10px;
      height: 330px;
      text-align: justify;
    }
    .accordion1-collapse.show .accordion1-body {
      opacity: 1;
      transform: translateY(0);
    }

    /* Optional: Style accordion button */
    .accordion-button {
      background: #ffffff;
      font-weight: 600;
      border-radius: 8px;
      transition: background 0.3s ease;
    }
    .accordion-button:hover {
      background: #f1f5f9;
    }
    .accordion1-item img {
      width: 100%;
      max-width: 150px; /* don’t let it get too big */
      height: auto;
      margin-bottom: 15px;
}
    .accordion1-item {
      text-align: center;
      margin-bottom: 20px;
    }

    .section2 {
      padding: 50px 10%;
      background-color: #f0f4ff;
    }

    .section2 h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .trials-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .trial-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left;
    }

    .trial-card img {
      width: 100%;
      max-width: 500px;
      height: 300px;
      border-radius: 8px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }

    .trial-card h3 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .trial-card p {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

    .trial-card a {
      display: inline-block;
      padding: 12px 24px;
      background: #0bd76d;
      color: #fff;
      font-weight: bold;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .trial-card a:hover {
      background: #ffcb2f;
    }

    @media (max-width: 768px) {
      .section2 {
        padding: 30px 5%;
      }

      .trial-card img {
        max-width: 100%;
      }
    }

     .header5 {
      background: #e89505;
      color: white;
      padding: 20px;
      text-align: center;
    }
    .header5 h1 {
      margin: 0;
      font-size: 28px;
    }
    .header5 p {
      margin: 5px 0 0;
      font-size: 14px;
    }
    .section5 {
      max-width: 900px;
      margin: 30px auto;
      padding: 0 20px;
    }
    .head-h2 {
      color: #e89505;
    }
    .stakeholders {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .card5 {
      background: white;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .card5 h3 {
      margin-top: 0;
      color: #e89505;
      font-size: large;
    }
    .card5 .logo {
      width: 230px;       /* adjust size */
      height: 50px;      /* keep square */
      margin-bottom: 10px;
      display: block;
      justify-content: center;
}
   /* retail-casestudy */
    /* Showcase Section */
    .showcase {
      background: linear-gradient(to right, #ffcb2f, #ffcb2f);
      color: white;
      padding: 100px 20px;
      text-align: center;
      border-bottom-left-radius: 80px;
      border-bottom-right-radius: 80px;
    }
    .showcase h1 {
      font-size: 2.8rem;
      font-weight: 700;
    }
    /* Section Headings */
    .section-heading {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    .section-heading::after {
      content: "";
      position: absolute;
      width: 60%;
      height: 4px;
      background: #ffcb2f;
      left: 0;
      bottom: -8px;
      border-radius: 4px;
    }
    
    /* Result Points */
    .result-points li {
      margin-bottom: 12px;
    }

    /* Tab container */
    .tabs1 {
      display: flex;
      justify-content: center; /* center horizontally */
      gap: 80px; /* space between tabs */
      border-bottom: 2px solid #ddd;
      padding-bottom: 10px;
    }

    /* Tab links */
    .tabs-links {
      text-decoration: none;
      padding: 10px 0;
      font-size: 18px;
      color: #333;
      position: relative;
    }

    /* Active tab style */
    .tabs-links.active {
      color: #009748; /* highlight text color */
      font-weight: bold;
    }

    .tabs-links.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 3px;
      background-color: #009748; /* underline color */
    }

    /* Content styling */
    .tabs-content {
      display: none;
      margin-top: 30px;
      text-align: center;
    }

    .tabs-content.active {
      display: block;
    }

    /* Full width background */
  .case-study-section {
    width: 100%;
    background: linear-gradient(135deg, #009748, #03613a); /* or use an image */
    color: white;
    padding: 50px 10px;
    text-align: center;
  }

  /* Content inside */
  .case-study-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
  }

  .case-study-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #FFFFFF;
  }

  /* Button */
  .btnc {
    display: inline-block;
    background: white;
    color: #009748;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
  }

  .btnc:hover {
    background: #f1f1f1;
    color: #ffcb2f;
  }

  /* Buttons */
  .btnd-group {
    display: flex;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap;
  }

  .btnd {
    display: inline-block;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
  }

  .btnd.secondary {
    background: #c69503; 
    border: 2px solid #c69503;
    color: white;
  }

  .btnd.secondary:hover {
    background: #ffcb2f;
    border-color: #ffcb2f;
  }