/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

strong{
    color: #32C36C ;
}
/*** 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-outline-primary: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 ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .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;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@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 p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about-banner.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** 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);
    } */
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }
    

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    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 {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.why-list li {
  margin-bottom: 18px;
  padding: 15px 18px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
}

.why-list li:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-list .icon {
  color: #32C36C ;
  transition: color 0.3s ease;
}

.why-list li:hover .icon {
  color: #32C36C ; /* darker primary color on hover */
}
.why-list li:hover {
  border-left: 4px solid #32C36C ;
  padding-left: 14px;
}
    .contact-section {
  background: #f7f9fc;
}

.contact-box {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 123, 255, 0.15);
  transition: all .35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
  border-color: rgba(28, 230, 71, 0.45);
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1af16d20, #01b44c05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #32C36C;
  font-size: 28px;
  margin: 0 auto;
  transition: 0.3s;
}

.contact-box:hover .contact-icon {
  color: #fff;
  background: #32C36C;
  box-shadow: 0 8px 20px rgba(14, 247, 52, 0.45);
}

.contact-box h5 {
  font-weight: 700;
  color: #1A2A36;
}
/* Section Styling */
.infrastructure-section {
  background: #f6f7fb;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A2A36;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 16px;
  color: #1A2A36;
  line-height: 1.7;
}

/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Styling */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
}

.card:hover {
  background-color: #32C36C;
}

.card .icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1A2A36;
  transition: 0.5s ease;
}
.card:hover h4 {
  color: #ffffff;
}
.card p {
  color: #363636;
  line-height: 1.6;
}
.card:hover p {
  color: #ffffff;
}
/* Footer Text */
.footer-text {
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
  color: #363636;
  max-width: 900px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect for children */
.cards .card:nth-child(1) { transition-delay: 0.1s; }
.cards .card:nth-child(2) { transition-delay: 0.2s; }
.cards .card:nth-child(3) { transition-delay: 0.3s; }
.cards .card:nth-child(4) { transition-delay: 0.4s; }

.card .icon{
    color: #32C36C;
}
.card:hover .icon{
    color: #ffffff;
}
/* Section background decoration */
.core-values-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow: visible;
}

/* subtle decorative blob using pseudo-element */
.core-values-section::after{
  content:'';
  position:absolute;
  right:-60px;
  top:-30px;
  width:280px;
  height:280px;
  background: radial-gradient(circle at 30% 30%, rgba(13,110,253,0.06), transparent 25%),
              radial-gradient(circle at 70% 70%, rgba(0,199,190,0.03), transparent 20%);
  border-radius:50%;
  z-index:0;
  pointer-events:none;
}

/* Intro card */
.intro-card {
  position: relative;
  z-index:1;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-left: 6px solid transparent;
  transition: transform .35s ease, box-shadow .35s ease;
}
.intro-card:hover,
.intro-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(18,38,63,0.06);
}

/* Grid and card layout */
.values-grid { position: relative; z-index:1; }
.value-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(13,110,253,0.06);
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
  outline: none;
}
.value-card:focus,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(13,110,253,0.08);
  border-color: rgba(13,110,253,0.15);
}

/* Icon circle */
.value-icon {
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 44px;
  color: #32C36C;
  font-weight:600;
}
/* soft color backgrounds for variety */
.bg-soft-primary { background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(13,110,253,0.02)); color:#0d6efd; }
.bg-soft-teal { background: linear-gradient(135deg, rgba(0,199,190,0.07), rgba(0,199,190,0.02)); color:#00c7be; }
.bg-soft-yellow { background: linear-gradient(135deg, rgba(255,193,7,0.07), rgba(255,193,7,0.02)); color:#d39e00; }
.bg-soft-pink { background: linear-gradient(135deg, rgba(220,53,69,0.06), rgba(220,53,69,0.02)); color:#dc3545; }

/* Typography */
.core-values-section h3 { font-weight:700; letter-spacing: -0.02em; }
.core-values-section h5 { font-size:1rem; font-weight:600; margin-left:0; color:#111827; }

/* small text and spacing */
.value-card p { margin-bottom:0; }

/* entrance animation (subtle) */
@keyframes popIn { from { transform: translateY(8px); opacity:0 } to { transform:none; opacity:1 } }
.value-card { animation: popIn .48s ease both; }
.value-card:nth-child(1) { animation-delay:0.03s; }
.value-card:nth-child(2) { animation-delay:0.08s; }
.value-card:nth-child(3) { animation-delay:0.12s; }
.value-card:nth-child(4) { animation-delay:0.16s; }

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .core-values-section::after { display:none; }
  .value-icon { width:40px; height:40px; }
  .cart-items{
      padding: 0px !important;
    }
    .name {
    font-size: 12px;
}
.overlay-text {
  font-size: 12px;
}
}
.strengths-section {
  padding: 80px 0;
  background: #f8f9ff;
  font-family: "Inter", sans-serif;
}

/* Image styling */
.strengths-image img {
  width: 100%;
  border-radius: 0px;
  object-fit: cover;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: .5s ease; */
}

/* .strengths-image img:hover {
  transform: scale(1.06);
} */

/* Title */
.strengths-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Strength Item Box */
.strength-item {
  background: #fff;
  padding: 20px 20px 20px 20px;
  border-radius: 14px;
  position: relative;
  transition: 0.3s ease;
  border: 1px solid rgba(79,70,229,0.1);
}

.strength-item:hover {
  box-shadow: 0 12px 35px rgba(64, 245, 125, 0.2);
  transform: translateY(-6px);
  border-color: #32C36C;
}

/* Icons */
.strength-item i {
  /* position: absolute;
  left: 20px;
  top: 22px; */
  font-size: 28px;
  color: #32C36C;
  transition: 0.3s;
  padding-bottom: 10px;
}

.strength-item:hover i {
  transform: scale(1.12);
  color: #32C36C;
}

/* Headings */
.strength-item h3 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 600;
}

/* Text */
.strength-item p {
  margin: 0;
  color: #555;
  font-size: 14.5px;
  line-height: 1.5;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
   .vision-mission-section {
  background: #f7faff;
}

.vm-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

.vision-card {
  border-left: 6px solid #32C36C;
}

.mission-card {
  border-left: 6px solid #32C36C;
}

.vision-mission-section h3 {
  font-weight: 700;
  color: #111;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  margin-bottom: 12px;
  padding-left: 3px;
  display: flex;
  align-items: flex-start;
  color: #555;
}

.mission-list li i {
  font-size: 18px;
  color: #32C36C;
  margin-top: 3px;
}
.product-section {
  padding: 80px 0;
  background: #fafaff;
  font-family: "Inter", sans-serif;
}

/* IMAGE */
.product-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: .5s ease;
}   

.product-image img:hover {
  transform: scale(1.06);
}

/* CONTENT */
.product-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.product-content h4 {
  font-size: 20px;
  color: #32C36C;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-content .desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Feature & Application Boxes */
.product-box {
  background: white;
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(79,70,229,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.product-box:hover {
  border-color: #32C36C;
  box-shadow: 0 12px 35px rgba(79, 70, 229, 0.15);
  transform: translateY(-4px);
}

.product-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.product-box h3 i {
  color: #32C36C;
  margin-right: 8px;
}

.product-box ul {
  padding-left: 18px;
}

.product-box ul li {
  font-size: 15px;
  margin-bottom: 6px;
  color: #444;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

    .card-1 {
    text-align: center;
}

.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.overlay-text {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 10px 0;
    transition: 0.4s ease;
}

.img-box:hover img {
    transform: translateY(-10px);
}

.img-box:hover .overlay-text {
    bottom: 0;
}

.name {
    margin-top: 10px;
    font-weight: bold;
}