
/* ===== Chrome, Edge, Safari ===== */
body::-webkit-scrollbar {
    width: 1px !important;
}

body::-webkit-scrollbar-track {
    background: transparent !important; /* hide track */
}

body::-webkit-scrollbar-thumb {
    background-color: #c6d936 !important; /* green thumb */
    border-radius: 1px !important;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #a9bd2f !important; /* darker on hover */
}

/* ===== Firefox ===== */
body {
    scrollbar-width: thin !important;                 /* slim */
    scrollbar-color: #c6d936 transparent !important;  /* thumb | track */
}


.l-1{
    width:100%;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    display:block;
}

.l-3{
     width: 100%;
     display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;

}
.clamp-3{
      width: 100%;
     display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;   
}
.clamp-4{
      width: 100%;
     display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;   
}
.l-4{
    width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    hyphens: auto;
    line-clamp:2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;      /* number of lines */
    overflow: hidden;
    line-height: 1.4;          /* IMPORTANT */
    height: 2.8em;
}
.title-height{
    height:4rem;
}
.desc-height{
    height:10rem;
}
.title-height,
.desc-height {
    overflow-y: auto;
    padding-right: 0.5rem; /* optional */
}

/* Chrome, Edge, Safari */
.title-height::-webkit-scrollbar,
.desc-height::-webkit-scrollbar {
    width: 6px;  /* thin scrollbar */
}

.title-height::-webkit-scrollbar-track,
.desc-height::-webkit-scrollbar-track {
    background: transparent;  /* scrollbar track color */
}

.title-height::-webkit-scrollbar-thumb,
.desc-height::-webkit-scrollbar-thumb {
    background-color: #A8C92A; /* your color */
    border-radius: 10px;       /* rounded edges */
    border: 1px solid transparent; /* optional spacing */
}

.title-height::-webkit-scrollbar-thumb:hover,
.desc-height::-webkit-scrollbar-thumb:hover {
    background-color: #8fb228; /* slightly darker on hover */
}

/* Firefox */
.title-height,
.desc-height {
    scrollbar-width: thin;
    scrollbar-color: #A8C92A transparent;
}


.pagination{
    justify-content:center;
}
.page-item.active .page-link{
    background:#00612b;
    border-color:#00612b;
}
.page-link{
    color:#00612b;
}


.srv-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 16px;
  background: #f6f8f4;
  border: 1px solid #1A4137;
  transition: transform 0.3s ease;
  box-shadow:3px 3px 1px lightgrey;
}

.srv-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    180deg,
    rgba(233, 240, 210, 0.9) 0%,
    #A8C92A 100%
  );
  z-index: 0;
  transition: height 0.7s ease;
}


.srv-card:hover::before {
  height: 100%;
}

/* content stays above fill */
.srv-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.srv-card .srv-card-img{
    height:250px;
}

.srv-card .srv-card-img img{
    height:100% !important;
    width:100% !important;
    object-fit:cover !important;
}


/* Card */
.adv-li-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 12px 12px 60px;
  border: 1px solid rgba(26, 65, 55, 0.15);
  border-left: 3px solid #C6D936;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Subtle hover elevation */
.adv-li-card:hover {
  transform: translateY(-5px);
  border-color: #C6D936;
  box-shadow: 0 12px 30px rgba(26, 65, 55, 0.18);
}

/* Icon */
.adv-li-card-icon {
  position: absolute;
  left: 12px;
  top: 13px;
  width: 38px;
  height: 38px;
  background: #C6D936;
  color: #1A4137;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

/* Icon micro animation */
.adv-li-card:hover .adv-li-card-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 0 6px rgba(198, 217, 54, 0.25);
}

/* Content */
.adv-li-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A4137;
  margin-bottom:0px;
}

.adv-li-card p {
  margin: 0;
  color: #5b6b65;
  line-height: 1.6;
}


/*usage steps css*/
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.usage-step-card {
  position: relative;
  padding: 14px 18px 14px 60px;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed #C6D936;
  transition: all 0.3s ease;
}

.usage-step-card:hover {
  transform: translateX(6px);
  border-color: #C6D936;
  box-shadow: 0 8px 24px rgba(26, 65, 55, 0.15);
}

.step-number {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #1A4137;
  color: #C6D936;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.usage-step-card:hover .step-number {
  transform: translateY(-50%) scale(1.1);
}



/* Description block */
.area-app-desc {
  position: relative;
  padding: 18px 22px;
  background: #f6f8f4;
  border-left: 4px solid #C6D936;
  border-radius: 14px;
  color: #5b6b65;
  line-height: 1.7;
  transition: all 0.35s ease;
}

/* Hover micro-interaction */
.area-app-desc:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(26, 65, 55, 0.18);
}




    /* Table base */
.thm-tbl {
  width: 100%;
  /*border-collapse: separate;*/
}

/* Header */
.thm-tbl thead th {
  background: #1A4137;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 10px;
  text-align: left;
  border-bottom: 2px solid #1A4137;
}

.thm-input {
      border: 2px solid #e9ecef;
      border-radius: 18px ;
      background: white;
      color: #00612b;
      transition: all 0.2s;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
      padding:10px 20px;
  }

.thm-input:focus {
    border-color: #00612b ;
    box-shadow: 0 0 0 4px rgba(0, 97, 43, 0.1) ;
    outline: none;
    transform: translateY(-2px);
}
.modal {
  z-index: 1055 !important;
}

.modal-backdrop {
  z-index: 1040 !important;
}

/* Body cells */
.thm-tbl tbody td {
  padding:6px 10px;
  color: #4f5f59;
  background: #ffffff;
  border: 1px solid #1A4137; !important;
  transition: background-color 0.25s ease;
}

/* Row hover (light shade fill) */
.thm-tbl tbody tr:hover td {
  background: rgba(26, 65, 55, 0.08);
}



/* Responsive polish */
.thm-tbl th,
.thm-tbl td {
  vertical-align: middle;
}

.about-product-list-card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(26, 65, 55, 0.18);
  box-shadow: 5px 5px 0px #C6D936;
  transition: all 0.45s ease;
}

/* Decorative corner stroke */
.about-product-list-card::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(198, 217, 54, 0.55);
  border-radius: 50%;
  transition: all 0.6s ease;
}

/* Floating ring element */
.about-product-list-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border: 3px solid rgba(198, 217, 54, 0.35);
  border-radius: 50%;
  animation: floatRing 6s ease-in-out infinite;
}

/* Hover effect */
.about-product-list-card:hover {
  transform: translateY(-12px);
  box-shadow: 0px 0px 5px #C6D936;
  border-color: #C6D936;
}

.about-product-list-card:hover::before {
  transform: scale(1.1) rotate(30deg);
  border-style: solid;
}

/* Card Body */
.about-product-list-card .card-body {
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}

/* Header */
.apl-header {
  margin-bottom: 18px;
}

.apl-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  background: #C6D936;
  color: #1A4137;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Titles */
.apl-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A4137;
  margin-bottom: 4px;
}

.apl-sub {
  font-size: 14px;
  font-weight: 600;
  color: #7b8d87;
}

/* List */
.apl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.apl-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #4f5f59;
  line-height: 1.6;
  transition: transform 0.3s ease;
}


.apl-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #C6D936;
  font-weight: bold;
}

.about-product-list-card:hover .apl-list li {
  transform: translateX(6px);
}

/* Entry animation */
.animate-apl {
  animation: aplFadeUp 0.9s ease both;
}

.dropdownHeight{
    height: 30rem;
    overflow-y: auto;
    overflow-x:hidden;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #a8c92a transparent;
}

.dropdownHeight::-webkit-scrollbar{
    width: 4px;
}

.dropdownHeight::-webkit-scrollbar-track{
    background: transparent;   /* 👈 hide track */
}

.dropdownHeight::-webkit-scrollbar-thumb{
    background: #a8c92a;
    border-radius: 10px;
}

.dropdownHeight::-webkit-scrollbar-thumb:hover{
    background: #00612b;
}

.dropdownHeight::-webkit-scrollbar-button{
    display: none;
}


@keyframes aplFadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating ring animation */
@keyframes floatRing {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}


.thm-modal .modal-dialog {
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.thm-modal.show .modal-dialog {
  transform: scale(1);
}
.thm-modal-content {
  border-radius: 18px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(26, 65, 55, 0.35);
}

/* ===== HEADER ===== */
.thm-modal-header {
  background: linear-gradient(135deg, #1A4137, #244f44);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.thm-modal-header h5 {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}

.thm-modal .thm-close {
  background: #C6D936;
  border: none;
  color: #1A4137;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.thm-modal  .thm-close:hover {
  transform: rotate(90deg);
}

/* ===== BODY ===== */
.thm-modal .thm-modal-body {
  padding: 30px 22px 26px;
  background: #f7f9f8;
}

/* ===== FLOATING FIELD DESIGN ===== */
.thm-modal .thm-field {
  position: relative;
  margin-bottom: 14px;
}

.thm-modal .thm-field input,
.thm-modal .thm-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(26, 65, 55, 0.25);
  background: #ffffff;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.thm-modal .thm-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #f7f9f8;
  padding: 0 6px;
  color: #6b7d77;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
}

/* ===== ACTIVE / FOCUS ANIMATION ===== */
.thm-modal .thm-field input:focus,
.thm-modal .thm-field textarea:focus {
  border-color: #C6D936;
  box-shadow: 0 0 0 4px rgba(198, 217, 54, 0.25);
}

.thm-modal .thm-field input:focus + label,
.thm-modal .thm-field textarea:focus + label,
.thm-modal .thm-field input:not(:placeholder-shown) + label,
.thm-modal .thm-field textarea:not(:placeholder-shown) + label {
  top: -7px;
  font-size: 12px;
  color: #1A4137;
}

/* ===== SUBMIT BUTTON ===== */
.thm-modal .thm-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #C6D936, #b8cb32);
  color: #1A4137;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.thm-modal .thm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(198, 217, 54, 0.45);
}

.blink-text {
  animation: blinkFade 1.5s infinite;
}


@keyframes blinkFade {
  0%   { opacity: 1; }
  50%  { opacity: 0.2; }
  100% { opacity: 1; }
}


.social-icon{
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    background-color: rgba(var(--theme-color-white-rgb), 0.1);
    color: var(--theme-color-white);
    font-size: 15px;
}
.social-icon:hover{
    background-color: var(--theme-color1);
    color: var(--theme-color-black);
}


/* Project Card Styling */
.project-view-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid rgb(221, 221, 221);
    z-index: 1;
}
.project-view-card:hover {
    transform: translateX(-5px)translateY(-5px);
    box-shadow: 5px 5px 0px #a8c92a;
     border: 2px solid #a8c92a;
}
/* Card Image Container */
.project-view-card-image-div {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.project-view-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.project-view-card:hover .project-view-card-img {
    transform: scale(1.1);
}
/* Overlay for hover effect */
.project-view-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(168, 201, 42, 0.1),
        rgba(0, 97, 45, 0.2)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.project-view-card:hover .project-view-card-overlay {
    opacity: 1;
}
/* Animated circle element */
.project-view-card-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #a8c92a;
    bottom:-30px;
    right:-30px;
    opacity: 0;
    transform: translate(30px);
    transition: all 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 2;
}
.project-view-card:hover .project-view-card-circle {
    opacity: 1;
    transform:  translate(0px);
}
/* Animated outline box */
.project-view-card-img-line {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}
.project-view-card:hover .project-view-card-img-line {
    opacity: 1;
    transform: scale(1);
}
/* Card Content */
.project-view-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.project-view-card-title {
    color: #051B05;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    line-height: 1.3;
}
.project-view-card-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Mirror animation effect on hover */
.project-view-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 2;
}
.project-view-card:hover::before {
    left: 100%;
}

  
        .project-slider {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 450px;
            position: relative;
        }
        
        .project-image-slider {
            width: 100%;
            height: 100%;
        }
        
        .project-slider-swiper {
            position: relative;
            overflow: hidden;
        }
        
        .project-slider-swiper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 5s ease;
        }
        
        .project-slider-swiper-active img {
            transform: scale(1.05);
        }
        
        /* Slide Number Indicator */
        .project-slider-number {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 97, 45, 0.85);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        /* Navigation Arrows */
        .project-slider-next, .project-slider-prev {
            width: 44px !important;
            height: 44px !important;
            background: white !important;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            top: 50%;
            margin-top: -22px;
        }
        
        .project-slider-prev:after, .project-slider-next:after {
            font-size: 1rem !important; 
            color: #A8C92A !important;
        }
        
        .project-slider-next {
            right: 15px;
        }
        
        .project-slider-prev{
            left: 15px;
        }
        
        /* Pagination Dots */
        .project-slider-pagination {
            bottom: 15px !important;
        }
        
        .project-slider-pagination .swiper-pagination-bullet {
            width: 10px !important;
            height: 10px !important;
            background: rgba(255, 255, 255, 0.7) !important;
            opacity: 0.7 !important;
            transition: all 0.3s ease !important;
        }
        
        .project-slider-pagination .swiper-pagination-bullet-active {
            background:#A8C92A !important;
            opacity: 1 !important;
            transform: scale(1.2) !important;
        }
        


.project-video-card{
  height:15rem;
  width:100%;
  border-radius:20px;
  border:1px solid #A8C92A;
  position: relative;
  padding: 10px;
  background: linear-gradient(to right, #f9ffe3 0%, #fcfef6 100%);
  margin-bottom:1.8rem;
}
.project-video-card video{
  width:100%;
  height:100%;
  border-radius:15px;
  object-fit:cover;
}
.project-video-card::after{
  content:"";
  position: absolute;
  top:-5px;
  left:50%;
  transform: translate(-50%);
  width:60%;
  height:10px;
  border-radius:5px;
  background-color: #A8C92A;
  box-sizing:border-box;
  pointer-events:none;
}


.floating_btn {
    position: fixed;
    bottom: 90px;
    right: 15px;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 15px #fff0
    }
}

.contact_icon img {
    border-radius: 50px;
    color: #fff;
    width: 50px;
    height: 50px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 1.25s cubic-bezier(.66,0,0,1) infinite pulsing;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: 1.25s cubic-bezier(.66,0,0,1) infinite pulsing;
    -moz-animation: 1.25s cubic-bezier(.66,0,0,1) infinite pulsing;
    -ms-animation: pulsing 1.25s infinite cubic-bezier(.66,0,0,1);
    font-weight: 400;
    font-family: sans-serif;
    text-decoration: none!important
}

    .product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    background-color: #00612b; /* your theme purple */
    color: #fff;
    box-shadow: 0 4px 10px rgba(138, 63, 232, 0.35);
}


/* ================= THM TABLE 2 ================= */
.thm-table-2{
    width:100%;
    border-collapse: separate;
    border-spacing: 0;
    background:#fff;
    border:1px solid #d6e2b8;
    border-radius:10px;
    overflow:hidden;
    font-family: "Segoe UI", sans-serif;
}

/* ---------- TABLE HEAD ---------- */
.thm-table-2 thead{
    background:#a8c92a !important;
}

.thm-table-2 thead th{
    color:#fff !important;
    padding:7px 14px !important;
    background:#a8c92a !important;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.4px;
    border-right:1px solid rgba(255,255,255,.25);
}

.thm-table-2 thead th:last-child{
    border-right:none;
}

/* ---------- TABLE BODY ---------- */
.thm-table-2 tbody tr{
    transition:background .25s ease;
}

.thm-table-2 tbody tr:nth-child(even){
    background:#f9fbe8;
}

.thm-table-2 tbody tr:hover{
    background:#f1f6d3;
}

/* ---------- TABLE CELLS ---------- */
.thm-table-2 tbody td{
    padding:7px 10px !important;
    font-size:14px;
    color:#333;
    border-top:1px solid #e1ebc5;
    border-right:1px solid #e1ebc5;
    vertical-align:middle;
}

.thm-table-2 tbody td:last-child{
    border-right:none;
}

/* ---------- OPTIONAL ALIGNMENTS ---------- */
.thm-table-2 .text-center{
    text-align:center;
}

/* Wrapper */
.flash-wrapper {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 555555;
}

.flash-alert {
    display: flex;
    align-items: center;              /* FIX alignment */
    gap: 12px;
    background: #fff;
    color: #333;
    padding: 14px 16px;
    border-radius: 8px;
    border-left: 6px solid;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: fit-content;
    min-width: 400px;
    max-width: 90vw;
    animation: slideDown 0.45s ease forwards;
    position: relative;
}

/* Text container */
.flash-content {
    flex: 1;                          /* allows proper spacing */
}

/* Title + text */
.flash-content strong {
    display: block;
    font-size: 18px;
    font-weight:700;
    text-shadow:1px 2px 1px lightgrey;
    line-height: 1.2;
}

.flash-content p,
.flash-content ul {
    margin: 4px 0 0;
    font-size: 14px;
}

/* Icon */
.flash-icon {
    font-size: 35px;
    line-height: 1;
    flex-shrink: 0;  
    margin-right:10px;/* prevent squeeze */
}

/* Close button */
.flash-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    display: flex;                    /* center X */
    align-items: center;
    justify-content: center;
}

.flash-close:hover {
    opacity: 1;
}

/* Variants */
.flash-success {
    border-color: #28a745;
}
.flash-success .flash-icon {
    color: #28a745;
}

.flash-error {
    border-color: #dc3545;
}
.flash-error .flash-icon {
    color: #dc3545;
}

.flash-warning {
    border-color: #ffc107;
}
.flash-warning .flash-icon {
    color: #ffc107;
}

/* ANIMATIONS */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Exit animation */
.flash-alert.hide {
    animation: slideUp 0.35s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-40px);
    }
}


.cart-widget {
  position: fixed;
  right: 20px;
  top:200px;
  transform: translateY(-50%);
  z-index:150;
}
.cart-widget.profile {
  position: fixed;
  right: 20px;
  top:280px;
  transform: translateY(-50%);
  z-index: 150;
}

.cart-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a8c92a, #00612b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.cart-icon i {
  font-size: 26px;
  color: #ffffff;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ffffff;
  color: #00612b;
  font-size: 13px;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1400px) {
  .logo {
  width:170px;
  }
  .main-header .logo img {
  max-width: 65%;
}

.sticky-header .auto-container{
    padding:0px 25px;
}
}



@media (max-width: 1300px) {
  .logo {
  width:150px;
  }
  .header-style-three .main-box .nav-outer .nav .navigation li{
    margin-right:40px;
  }
}

@media(max-width:1220px){
    .header-style-three .main-box .nav-outer .nav .navigation li{
    margin-right:35px;
  }
}


@media (max-width:1200px){
  .call-circle-icon-sticky{
    display: none !important;
  }
  .sticky-header .main-menu .navigation > li{
    margin-right:40px;
  }
   .header-style-three .outer-box .call-circle-icon{
      display:none !important;
    }

}
@media (max-width:1150px){
  .header-style-three .main-box .nav-outer .nav .navigation li{
    margin-right:35px;
  }
  .header-style-three .main-box .nav-outer .nav{
    padding:20px 35px;
  }
}

@media (max-width:1100px){
    .header-style-three .outer-box .info-box{
      display:none;
    }
      .header-style-three .sticky-header .outer-box .info-box{
      display:block;
    }
}

@media (max-width:1060px){

  .sticky-header .main-menu .navigation > li{
    margin-right:30px;
  }
}
@media (max-width: 992px) {
    .header-style-three .header-top .auto-container{
        padding-left:20px !important;
    }
    
    .header-style-three .main-box{
        padding-left:20px !important;
    }
    .header-style-three .outer-box .info-box{
      display:none;
    }
    .project-slider {
        height: 400px;
    }
    .product-details .bxslider .image-box{
        margin-right:0px;
    }
    .sticky-header .outer-box{
      display: none;
    }
    .sticky-header .nav-outer{
      margin-left:auto;
      margin-right:0;
    }
}

@media (max-width: 768px) {
    .project-view-card-image-div {
        height: 250px;
    }
    
    .project-slider {
        height: 350px;
    }
     
    .page-title{
     padding:50px 20px;
    }
      .page-title .title{
        font-size:40px;
        margin-bottom:10px;
        line-height:45px;
    }
    .contact-details-block{
        padding:40px 20px;
    }
   .brand-block {
    max-width: 145px;
    height:95px;
    }
}


@media (max-width: 576px) {
 
  .main-header .logo img {
  max-width: 55%;
  }

  .project-slider {
         height: 280px;
    }
    
    .project-slider-next, .project-slider-prev {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
    .page-title{
     padding:50px 10px;
    }
    
    .page-title .title{
        font-size:30px;
        margin-bottom:10px;
        line-height:45px;
    }
    .flash-alert{
        min-width:320px;
    }
    
    .cart-widget {
      top:150px;
    }
    .cart-widget.profile {
      top:210px;
    }
    .cart-icon {
      width: 50px;
      height: 50px;
    }
    .cart-icon i {
      font-size: 22px;
    }
    .cart-count {
      font-size:10px;
      width: 20px;
      height: 20px;
    }
    .brand-block {
    max-width: 155px;
    height:100px;
    }
}


