/* todo 1 index page style */
/* todo 2 about us page style */
/* todo 2 about us page style */
/* todo 2 about us page style */
/* todo 2 about us page style */
/* todo 2 about us page style */
:root {
  --primary-color: #2e8b57;
  --secondary-color: #daa520;
  --light-color: #f8f9fa;
  --dark-color: #333;
  --transition: all 0.4s ease;
  --tech-primary: #2563eb;
  --tech-secondary: #3b82f6;
  --tech-dark: #1e293b;
  --tech-light: #f8fafc;
  --tech-accent: #f97316;
  --tech-neon: #06b6d4;
  --tech-gradient: linear-gradient(135deg, var(--tech-primary), var(--tech-secondary));
  --custom-primary: #4e54c8;
  --custom-secondary: #8f94fb;
  --custom-dark: #333;
  --custom-light: #f8f9fa;
  --custom-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --custom-transition: all 0.5s ease-in-out;
  --primary-clr: #2a6d38;
  --secondary-clr: #d8c593;
  --accent-clr: #8a6642;
  --light-bg: #f8f9f8;
  --dark-text: #1a1a1a;
  --bg: #121417;
  --surface: #1b1f24;
  --text: #e9eef5;
  --muted: #a8b0bb;
  --accent: #f4b421;
  --accent-strong: #ffcc33;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --custom-primary: #4f46e5;
  --custom-secondary: #10b981;
  --custom-accent: #f59e0b;
  --custom-dark: #1f2937;
  --custom-light: #f9fafb;
  --custom-text: #4b5563;
  --custom-title: #111827;
  --custom-body: #f3f4f6;
  --custom-container: #ffffff;
  --custom-shadow: rgba(0, 0, 0, 0.08);
  --custom-radius: 12px;
  --custom-transition: all 0.3s ease;
  --timeline-gap: 0px;
  --timeline-content-gap: .5rem;
  --timeline-entry-bg-color: #fff;
  --timeline-entry-padding: 1rem;
  --timeline-title-font-size: 1.4rem;
  --timeline-content-font-size: 1rem;
  --timeline-circle-size: 24px;
  --timeline-border-width: 5px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  /* background-color: var(--tech-light); */
  padding-top: 80px;
  color: #334155;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-color);
}

/* Navbar styles */
.main-navbar {
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:999;
  background:transparent;
  transition:0.4s;
}

.main-navbar.scrolled {
  background:#ffffff;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  height:70px;
}

.nav-container {
  width:99%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:130px;
  transition:0.4s;
}

.main-navbar.scrolled .nav-container {
  height:70px;
}

/* === LOGO SHRINK EFFECT === */
.nav-logo img {
  width:300px;
  transition:0.4s;
}

.main-navbar.scrolled .nav-logo img {
  width:100px;
}

/* === DESKTOP MENU === */
.nav-menu {display:flex; list-style:none; gap:7px; margin-bottom: 0px!important;}
.nav-menu li {position:relative;}

.nav-menu li a {
  text-decoration:none;
  color:#fff;
  font-weight:500;
  padding:5px;
  position:relative;
  transition:0.3s;
  white-space:nowrap;
}

.main-navbar.scrolled .nav-menu li a {color:#333;}

/* === HOVER COLOR + LINE === */
.nav-menu li a::after {
  content:"";
  width:0;
  height:2px;
  background:#daa520;
  position:absolute;
  left:0;
  bottom:0;
  transition:0.3s;
}

.nav-menu li a:hover {color:#daa520;}
.nav-menu li a:hover::after {width:100%;}

/* === DESKTOP DROPDOWN === */
.dropdown-menu, .sub-dropdown-menu {
  position:absolute;
  top:100%; left:0;
  background:#fff;
  min-width:200px;
  list-style:none;
  display:none;
  opacity:0;
  transform:translateY(10px);
  transition:0.3s;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.dropdown:hover > .dropdown-menu {
  display:block;
  opacity:1;
  transform:translateY(0);
}

.sub-dropdown-menu {left:100%; top:0;}

.sub-dropdown:hover > .sub-dropdown-menu {
  display:block;
  opacity:1;
  transform:translateY(0);
}

.dropdown-menu li a, .sub-dropdown-menu li a {
  color:#333;
  display:block;
  padding:10px 15px;
  white-space:nowrap;
}

.dropdown-menu li a:hover, .sub-dropdown-menu li a:hover {
  background:#f2f2f2;
}

/* === MOBILE NAV === */
.nav-toggle {
  display:none;
  font-size:30px;
  color:#fff;
  cursor:pointer;
}

@media(max-width:992px){
  .nav-toggle {display:block;}
  .main-navbar.scrolled .nav-toggle {color:#333;}

  .nav-menu {
    position:fixed;
    top:100px; right:-100%;
    width:270px;
    height:100vh;
    background:#ffffff;
    flex-direction:column;
    padding:20px;
    gap:5px;
    transition:0.4s;
    overflow-y:auto;
  }
  .main-navbar.scrolled .nav-menu {top:70px;}

  .nav-menu.active {right:0;}
  .nav-menu li a {color:#333;}

  /* MOBILE DROPDOWN — slide open */
  .dropdown-menu,
  .sub-dropdown-menu {
    position:relative;
    top:0; left:0;
    opacity:1;
    transform:none;
    display:none;
    box-shadow:none;
    padding-left:10px;
  }

  .nav-menu .open > .dropdown-menu,
  .nav-menu .open > .sub-dropdown-menu {
    display:block;
  }

  .nav-menu li a::after {display:none;} /* remove hover line in mobile */
}

.contactbtn a{
  border: 1px solid #daa520;
  border-radius: 50px;
  padding: 6px 35px!important;
  color: #ffffff!important;
  background-color: #daa520;
  /* padding: 10px 15px; */
}
.contactbtn:hover{
  color: #daa520!important;
  background-color: #111827;

}
.contactbtn a:hover{
  color: #daa520!important;
  background-color: #111827;
  /* padding: 10px 15px; */
}


/* Swiper styles */
.tech-swiper {
  width: 100%;
  height: 100vh;
  margin-top: -80px;
}

.tech-swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
}

/* Video background */
.tech-slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* video সব থেকে নিচে */
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Scale effect on active slide video */
.tech-swiper-slide-active .tech-slide-video {
  transform: scale(1.1);
}

/* Overlay on top of video */
.tech-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* হালকা কালো overlay */
  z-index: 1;
  pointer-events: none; /* overlay ক্লিক ব্লক করবে না */
}

/* Slide content always above overlay */
.tech-slide-content {
  max-width: 100%;
  z-index: 2;
  position: relative;
  margin-left: -55px;
}

.tech-slide-title {
  font-size: 6.5rem;
  margin-bottom: -60px;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: 800;
  line-height: 82px;
  letter-spacing: 3px;
}





.tech-swiper-pagination {
  bottom: 30px !important;
}

.tech-swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: all 0.3s ease;
}

.tech-swiper-pagination-bullet-active {
  background: #fff;
  width: 30px;
  border-radius: 10px;
  transform: scale(1.2);
}



/* Eternal Heritage Section */
.custom-img-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  height: 100%;
}
.custom-img-containerr {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  height: 270px;
}
.custom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-img:hover {
  transform: scale(1.08);
}
.graysclcl{
   filter: grayscale();
}
.custom-primary-btn {
  background: linear-gradient(to right, #4e54c8, #8f94fb);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
}

.custom-heading {
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #4a5568, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-lead {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

.custom-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

@media (max-width: 992px) {
  .custom-img-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .custom-img-container {
    height: 250px;
  }

  .custom-content {
    text-align: center;
    /* padding: 2rem 1rem; */
  }

  .btn-container {
    justify-content: center !important;
  }
}

/* Sustainability Section */
.sustainability-section {
  padding: 0rem 0;
}

.sustenancia-image-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
    height: 550px;
  justify-content: center;
  z-index:999;
  /* border:2px solid green; */
  
}

.sustenancia-image-box .videobx {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* z-index: 999; */
}


/* Heritage Cards Section */
.videobackgronhg {
  position: relative;
  background-image: url('./../images/bck2.png'); /* change this to your image link */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;  /* makes the background fixed on scroll */
  overflow: hidden;
  z-index: 1;
}

 .newdesignchng1-bg {
      position: relative;
      min-height: 350px;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      width: 100%;
      background: #202020;
    }
    .newdesignchng1-bg-img {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(.31,1.52,.64,1);
      z-index: 1;
      filter: brightness(0.90);
    }
    .newdesignchng1-bg:hover .newdesignchng1-bg-img {
      transform: scale(1.045);
    }
    .newdesignchng1-titlebar {
      position: absolute;
      left: 0; right: 0;
      bottom: 0;
      background: rgba(30,30,30,0.85);
      color: #fff;
      padding: 18px 21px 11px 21px;
      z-index: 2;
      text-align: left;
      border-radius: 0 0 12px 12px;
      font-size: 1.18rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .newdesignchng1-titlebar .newdesignchng1-yellow {
      color: #ffd100;
    }
    .newdesignchng1-content-animate {
      position: absolute;
      left: 0; right: 0;
      bottom: -120px;
      background: rgba(30,30,30,0.93);
      color: #fff;
      border-radius: 0 0 12px 12px;
      box-shadow: 0 -8px 20px rgba(30,30,30,0.18);
      padding: 24px 21px 15px 21px;
      transition: bottom 0.45s cubic-bezier(.31,1.52,.64,1), opacity 0.45s;
      z-index: 3;
      opacity: 0;
      text-align: left;
      font-size: 1rem;
    }
    .newdesignchng1-bg:hover .newdesignchng1-content-animate {
      bottom: 0;
      opacity: 1;
    }
    .newdesignchng1-btn-link {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      opacity: 0;
      transition: opacity 0.35s;
    }
    .newdesignchng1-bg:hover .newdesignchng1-btn-link {
      opacity: 1;
    }
    .newdesignchng1-btn {
      background: #ffd100;
      color: #222;
      border-radius: 50%;
      border: none;
      padding: 16px 18px;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 7px 22px rgba(30,30,30,0.24);
      text-decoration: none;
    }
    .newdesignchng1-btn:hover {
      background: #ffe46c;
    }
    .newdesignchng1-btn .newdesignchng1-icon {
      font-size: 1.1rem;
      color: #222;
    }
    @media (max-width: 1200px) {
      .newdesignchng1-bg {
        min-height: 230px;
      }
      .newdesignchng1-titlebar,
      .newdesignchng1-content-animate {
        padding-left: 12px;
        padding-right: 12px;
      }
    }
    @media (max-width: 991px) {
      .newdesignchng1-bg {
        min-height: 170px;
      }
      .newdesignchng1-titlebar, .newdesignchng1-content-animate {
        font-size: 0.99rem;
        padding: 13px 8px;
      }
    }
    @media (max-width: 767px) {
      .newdesignchng1-bg {
        min-height: 120px;
      }
      .newdesignchng1-titlebar {
        font-size: 1rem;
        padding: 10px 8px;
      }
    }
 .myage2btprt-featuregrid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 30px auto;
      padding: 10px;
      gap: 24px 24px;
    }

    .myage2btprt-featurecard {
      perspective: 1200px;
      width: calc(25% - 18px);
      min-width: 210px;
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      height: 250px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    @media (max-width: 992px) {
      .myage2btprt-featurecard {
        width: calc(50% - 18px);
        height: 210px;
      }
    }

    @media (max-width: 600px) {
      .myage2btprt-featurecard {
        width: 100%;
        height: 170px;
      }
    }

    .myage2btprt-card-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transition: transform 0.6s cubic-bezier(.2,.7,.5,1);
      transform-style: preserve-3d;
      border-radius: 18px;
    }

    .myage2btprt-featurecard:hover .myage2btprt-card-inner,
    .myage2btprt-featurecard:focus-within .myage2btprt-card-inner {
      transform: rotateY(180deg);
    }

    .myage2btprt-card-front,
    .myage2btprt-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 18px;
      top: 0;
      left: 0;
      backface-visibility: hidden;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
    }

    .myage2btprt-card-front {
      background-size: cover;
      background-position: center;
      box-shadow: 0 1px 7px 0 #eee;
      background-color: #f8f8f8;
      z-index: 2;
    }

    .myage2btprt-title-top {
      position: absolute;
      top: 15px;
      left: 15px;
      display: flex;
      gap: 8px;
      align-items: center;
      background: rgba(255, 255, 255, 0.90);
      padding: 6px 14px 6px 10px;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 700;
      color: #222;
      max-width: 85%;
      box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.05);
      z-index: 10;
    }

    .myage2btprt-titleicon {
      font-size: 1.35em;
      vertical-align: middle;
    }

    .myage2btprt-card-back {
      background: #f7a034;
      box-shadow: 0 1px 7px 0 #eee;
      transform: rotateY(180deg);
      padding: 30px 18px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 3;
      color: #fff;
    }

    .myage2btprt-desc {
      font-size: 1.15rem;
      font-weight: 400;
      line-height: 1.4;
      word-break: break-word;
      margin: 0;
    }

    .myage2btprt-blue {
      color: #3296c8;
      font-weight: 600;
    }

    .myage2btprt-orange {
      color: #f7a034;
      font-weight: 600;
    }
   /* Content Slider Section */
        .content-slider-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--custom-shadow);
            width: 100%;
            /* max-width: 1280px; */
            margin: 40px auto;
        }

        

        .content-section {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%!important;
        }

        .content-subtitle {
            color: var(--custom-primary);
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .content-title {
            color: var(--custom-dark);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .content-text {
            color: #555;
            margin-bottom: 30px;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .content-features {
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature-icon {
            width: 30px;
            height: 30px;
            background: var(--custom-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .content-link {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            color: var(--custom-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--custom-transition);
            padding: 12px 30px;
            border: 2px solid var(--custom-primary);
            border-radius: 30px;
            margin-top: 10px;
        }

        .content-link:hover {
            background: var(--custom-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
        }

        .slider-section {
            position: relative;
            height: 700px;
            overflow: hidden;
        }

        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-image {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: var(--custom-transition);
            background-size: cover;
            background-position: center;
        }

        .slider-image.active {
            opacity: 1;
        }

        .slider-image-1 {
            background-image: url('./../images/b1.jpg');
        }

        .slider-image-2 {
            background-image: url('./../images/b2.jpg');
        }

        .slider-image-3 {
            background-image: url('./../images/b3.jpg');
        }

        .slider-image-4 {
            background-image: url('./../images/b2.jpg');
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 3;
            gap: 12px;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: var(--custom-transition);
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background-color: white;
            transform: scale(1.3);
            border-color: var(--custom-primary);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 3;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--custom-shadow);
            transition: var(--custom-transition);
            font-size: 1.2rem;
            color: var(--custom-dark);
        }

        .slider-arrow:hover {
            background-color: var(--custom-primary);
            color: white;
            transform: scale(1.1);
        }

        .slider-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 3;
        }

        .slider-btn {
            background-color: white;
            color: var(--custom-dark);
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--custom-transition);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            box-shadow: var(--custom-shadow);
        }

        .slider-btn:hover {
            background-color: var(--custom-primary);
            color: white;
        }

        .slider-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            background-color: var(--custom-primary);
            width: 0%;
            transition: width 0.3s linear;
            z-index: 3;
        }

        /* Content Slides */
        .content-slides {
            position: relative;
            width: 100%;
            overflow: hidden;
            height: 100%;
        }

        .content-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            display: flex;
            align-items: center;
        }

        .content-slide.active {
            opacity: 1;
            pointer-events: all;
        }

        /* Responsive Styles - Fixed for Mobile */
        @media (max-width: 992px) {
            .col-lg-6 {
                width: 100%;
            }
            
            /* Ensure content is visible and properly positioned */
            .content-slides {
                height: auto;
                min-height: 400px;
            }
            
            .content-slide {
                position: relative;
                opacity: 0;
                height: 0;
                overflow: hidden;
                transition: all 0.5s ease;
            }
            
            .content-slide.active {
                opacity: 1;
                height: auto;
                overflow: visible;
                position: relative;
            }
            
            .slider-section {
                height: 400px;
            }
            
            .content-title {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 30px 25px;
            }
        }

        @media (max-width: 768px) {
            .content-slider-container {
                margin: 20px auto;
            }
            
            .content-section {
                padding: 5px 0px;
            }
            
            .slider-section {
                height: 350px;
            }
            
            .content-title {
                font-size: 1.8rem;
            }
            
            .content-text {
                font-size: 1rem;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
            }
            
            .content-features {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
           
            
            .content-slides {
                min-height: 350px;
            }
            
            .slider-section {
                height: 300px;
            }
            
            .content-title {
                font-size: 1.6rem;
                margin-bottom: 15px;
            }
            
            .content-text {
                margin-bottom: 20px;
            }
            
            .content-link {
                padding: 10px 20px;
                font-size: 1rem;
            }
            
            .slider-controls {
                top: 15px;
                right: 15px;
            }
            
            .slider-btn {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
            
            .feature-item {
                margin-bottom: 12px;
            }
            
            .content-subtitle {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .content-title {
                font-size: 1.4rem;
            }
            
            .slider-section {
                height: 250px;
            }
            
            .content-section {
                padding: 20px 15px;
            }
            
            .slider-arrows {
                padding: 0 15px;
            }
            
            .slider-arrow {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .content-slides {
                min-height: 380px;
            }
        }
        
        /* Mobile visibility fixes */
        .mobile-content-container {
            display: none;
        }
        
        @media (max-width: 992px) {
            /* Hide the desktop content slides */
            .content-slides {
                display: none;
            }
            
            /* Show mobile content container */
            .mobile-content-container {
                display: block;
            }
            
            .mobile-content-slide {
                display: none;
                padding: 20px;
            }
            
            .mobile-content-slide.active {
                display: block;
            }
        }

/* Content Slider Section */


/* Values Section */



/* Testimonials Section */
.testimonials-container {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
}

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.testimonials-content {
  flex: 1;
  min-width: 300px;
}

.testimonials-subtitle {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  color: #FFCB00 !important;
  line-height: 1.2em;
  margin: 0 0 10px;
  padding-left: 15px;
  border-left: 5px solid #FFCB00;
}

.testimonials-title {
  color: #000;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}

.testimonials-title strong {
  color: #00650d;
  font-weight: 700;
}

.testimonials-description {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonials-slider-container {
  flex: 2;
  min-width: 300px;
  position: relative;
}

.testimonial-card {
  border-radius: 10px;
  background:  #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 340px;
  transform: scale(0.9);
  filter: blur(1px) grayscale(0.5);
  transition: all 0.3s ease;
}

.testimonial-card-active {
  transform: scale(1);
  filter: blur(0px) grayscale(0);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #005bea;
  font-size: 24px;
}

.testimonial-client-info h4 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.testimonial-client-info p {
  color: #FFCB00;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.testimonial-quote {
  width: 47px;
  height: 47px;
  border-radius: 10px;
  /* background: #333; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #650061;
}

.testimonial-text {
  color: #333;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
}

.testimonials-navigation {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.testimonial-nav-btn {
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: #FFCB00;
}

/* Floating buttons */
.floating-contact {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: #4a6844;
  border-radius: 40px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}

.circle-btn {
  width: 36px;
  height: 36px;
  background: #233522;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background 0.2s;
}

.circle-btn:hover {
  background: #38593b;
}

.circle-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .tech-mega-menu {
    width: 95% !important;
    left: 2.5% !important;
    right: 2.5% !important;
    position: fixed !important;
    margin-top: 10px !important;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1050;
  }

  .tech-navbar-nav {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .tech-nav-link {
    color: var(--tech-dark) !important;
  }

  .tech-nav-link::after {
    display: none;
  }

  .tech-dropdown-menu {
    border: none;
    box-shadow: none;
    position: static !important;
    transform: none !important;
    width: 100%;
    background: #ffffff;
  }

  .tech-dropdown-toggle::after {
    transition: transform 0.3s;
    color: var(--tech-dark);
  }

  .tech-dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .tech-contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 10px 0;
    display: block;
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .tech-slide-title {
    font-size: 2.5rem;
  }

  .tech-slide-desc {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .tech-category-item {
    margin-bottom: 15px;
  }

  .tech-contact-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    width: 90%;
  }

  .tech-mega-menu {
    padding: 15px !important;
  }

  .tech-mega-menu .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .tech-mega-menu .col-lg-4 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .tech-category-item {
    padding: 10px;
  }

  .tech-category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    padding: 10px;
    margin-bottom: 10px;
  }

  .tech-category-title {
    font-size: 1rem;
  }

  .tech-category-desc {
    font-size: 0.8rem;
  }

  .tech-swiper-slide {
    /* padding: 0 5%; */
    text-align: center;
  }

  .tech-slide-content {
    max-width: 100%;
  }

  .tech-slide-title {
    font-size: 2rem;
  }

  .tech-slide-desc {
    font-size: 1rem;
  }

  .tech-slide-btn {
    padding: 12px 30px;
  }

  .content-section {
    padding: 30px;
  }

  .content-title {
    font-size: 2rem;
  }

  .sustenancia-image-box {
    margin-bottom: 1rem;
  }

  .sustenancia-image-box img {
    height: 350px;
  }

  .testimonials-wrapper {
    flex-direction: column;
  }

  .testimonials-content,
  .testimonials-slider-container {
    width: 100%;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .testimonial-client-info h4 {
    font-size: 18px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .tech-contact-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .tech-mega-menu {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }

  .tech-slide-title {
    font-size: 1.8rem;
  }

  .tech-swiper-next,
  .tech-swiper-prev {
    display: none;
  }

  .slider-section {
    height: 400px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

      .floating-contact {
        right: 13px;
        padding: 10px 5px;
        gap: 16px;
    }

  .circle-btn {
    width: 44px;
    height: 44px;
  }

  .circle-btn svg {
    width: 22px;
    height: 22px;
  }
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2e8b57;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
.tech-logo{
  width: 280px;
  height:90px
}
.tech-logo img{
  width: 100%;
}

/* todo about us style start ====================================================================== */
/* todo about us style start ====================================================================== */



/* Hero Section */
.abouthero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('./../images/banner/b1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
}

.abouthero-section:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(46, 139, 87, 0.2);
  z-index: -1;
}


/*=============== ABOUT CARD ===============*/
 .about1st-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 70vh;
    }

    .about1st-content {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: start;
    }

    .about1st-title {
      font-size: 30px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    .about1st-title span {
      color: #00650d;
    }

    /* Hashtags */
    .about1st-tags {
      margin-bottom: .3rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.1rem;
    }

    .about1st-tags a {
      display: inline-block;
      background: rgba(245, 158, 11, 0.1);
      color: #00650d;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .about1st-tags a:hover {
      background: #00650d;
      color: white;
    }

    /* Description */
    .about1st-description p {
      margin-bottom: .2rem;
      line-height: 1.7;
      font-size: 1rem;
       color: var(--text-color);
    }

    .about1st-description p:first-child {
      font-weight: 600;
      color: var(--text-color);
    }

    /* Image */
    .about1st-image {
      position: relative;
      overflow: hidden;
      height: 750px;
      width:100%;
    }

    .about1st-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about1st-section {
        grid-template-columns: 1fr;
      }

      .about1st-content {
        padding: 2rem;
        text-align: left;
      }

      .about1st-title {
        font-size: 2rem;
      }
    }

    @media (max-width: 600px) {
      .about1st-content {
        padding: 1.5rem;
      }

      .about1st-title {
        font-size: 2.6rem;
      }

      .about1st-description p {
        font-size: 0.95rem;
      }
    }

    .abut2ndsection{
      margin: 40px auto;
      /* background-color: #111827; */
    }
.ab2nd{
  padding-top: 30px;
}
 .aboutus2nd-container-xl {
  padding: 30px auto;
      max-width: 1200px;
      margin: 0 auto;
      /* padding: 0 12px; */
    }
    .fgby{
      color: #f4b421;
    }
    .vbgt{
      color: white;
    }
    .aboutus2nd-mission-row {
      display: flex;
      gap: 40px;
      justify-content: center;
      flex-wrap: wrap;
      /* padding-top: 60px; */
      padding-bottom: 60px;
    }
    .aboutus2nd-mission-card-wrapper {
      position: relative;
      width: 360px;
      min-width: 280px;
      height:100%;
    }
    .aboutus2nd-mission-card-image {
      width: 140px;
      height: 135px;
      object-fit: cover;
      border-radius: 20px;
      position: absolute;
      top: -25px;
      left: -20px;
      box-shadow: 0 11px 30px rgba(0,0,0,0.35);
      background-color: #222;
      z-index: 3;
      transition: all 0.3s ease;
      margin-right: 10px;
    }
    .aboutus2nd-mission-card {
      background: #fff;
      border-radius: 40px;
      padding: 32px 28px 28px 70px;
      box-sizing: border-box;
      box-shadow: 0 8px 36px rgba(40,40,60,.10);
      color: #232225;
      height: 370px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }
    .aboutus2nd-mission-card-title {
      font-family: 'Georgia', serif;
      font-weight: bold;
      font-size: 1.40rem;
      line-height: 1.2;
      letter-spacing: 0.3px;
      margin-bottom: 12px;
      margin-left: 63px;
    }
    .aboutus2nd-mission-yellow-bar {
      width: 52px;
      height: 5px;
      background: #ffe600;
      border-radius: 3px;
      margin-bottom: 16px;
    }
    .aboutus2nd-mission-card-text {
      font-size: 1rem;
      line-height: 1.55;
    }
    @media (max-width: 830px) {
      .aboutus2nd-mission-row {
        gap: 28px;
        justify-content: center;
      }
      .aboutus2nd-mission-card-wrapper {
        width: 90vw;
        max-width: 600px;
      }
      .aboutus2nd-mission-card-image {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin-bottom: 0px;
        height: auto;
        width: 100%;
        border-radius: 0px;
        box-shadow: 0 10px 26px rgba(0,0,0,0.2);
        margin-right: 0;
      }
      .aboutus2nd-mission-card {
        padding: 24px 24px 24px 24px;
        min-height: auto;
      }
      .aboutus2nd-mission-card-title {
        font-size: 1.3rem;
        text-align: center;
      }
      .aboutus2nd-mission-yellow-bar {
        margin-left: auto;
        margin-right: auto;
      }
      .aboutus2nd-mission-card-text {
        font-size: 1rem;
        text-align: center;
      }
      .aboutus2nd-mission-card {
   
    border-radius: 0px;
    
}
    }

 .supplier-row {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 0;
      justify-content: space-between;
      align-items: stretch;
      padding: 0;
      background: #75706c;
      min-height: 500px;
      position: relative;
      margin: 40px auto;
    }
    .supplier-left {
      flex: 0 0 51%;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 3.2rem 2.2rem 0 2.6rem;
    }
    .supplier-icon {
      width: 50%;
      margin-bottom: 1.9rem;
    }
    .supplier-text {
      font-size: 1.06rem;
      line-height: 1.53;
      color: #fff;
      margin-bottom: 0.7rem;
    }
    .supplier-right {
      flex: 1 1 49%;
      min-width: 340px;
      position: relative;
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      overflow: hidden;
    }
    .supplier-wordcloud-img {
      width: 97%;
      max-width: 410px;
      min-width: 250px;
      height: 395px;
      object-fit: cover;
      opacity: 0.85;
      display: block;
      margin-top: 23px;
    }
    .supplier-heading {
      position: absolute;
      left: 60%;
      top: 50px;
      transform: translateX(-50%);
      font-size: 2.6rem;
      font-weight: bold;
      color: #21938e;
      text-align: left;
      line-height: 1.1;
      letter-spacing: -1px;
      z-index: 2;
      white-space: pre-line;
      width: 98%;
      max-width: 410px;
    }
    .supplier-heading span {
      color: #ff9900;
      font-weight: bold;
    }
    @media (max-width: 960px) {
      .supplier-row {
        flex-direction: column;
        min-height: 0;
      }
      .supplier-left,
      .supplier-right {
        min-width: 0;
        width: 100%;
        padding: 1.2rem 1.1rem 0 1.1rem;
      }
      .supplier-heading {
        position: static;
        transform: none;
        width: 100vw;
        font-size: 2rem;
        text-align: center;
        max-width: 94vw;
        margin-top: 0.7rem;
      }
      .supplier-right {
        padding-top: 0.3rem;
      }
      .supplier-wordcloud-img {
        margin-top: 10px;
        width: 99vw;
        max-width: 330px;
        height: 230px;
      }
    }
    @media (max-width: 600px) {
      .supplier-heading {
        font-size: 1.32rem;
      }
      .supplier-left {
        padding: 0.7rem;
      }
      .supplier-wordcloud-img {
        height: 140px;
      }
    }














.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Styling */
.section-padding {
  padding: 50px auto;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 20px auto;
  border-radius: 2px;
}

/* Mission Boxes */
.about3rd {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about3rd-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.about3rd-content h2 {
  font-weight: 400;
  margin-bottom: 1rem;
}

.about3rd-content h2 .green {
  color: #a6cc9e;
}

.about3rd-content h2 .orange {
  color: #e57d22;
  font-weight: bold;
}

.about3rd-content p {
  line-height: 1.5;
}

/* --- icons --- */
.about3rd-icons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.about3rd-icon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  background-color: #0a05004f;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  user-select: none;
  flex: 1 1 140px; /* responsive width */
  justify-content: center;
  text-align: center;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  color: white;
  font-size: 1.6rem;
}

.eco-friendly .icon-box {
  background: rgba(22, 163, 47, 0.3);
  box-shadow: 0 4px 15px rgba(22, 163, 47, 0.75);
}
.natural-materials .icon-box {
  background: rgba(94, 108, 73, 0.3);
  box-shadow: 0 4px 15px rgba(94, 108, 73, 0.75);
}
.custom-designs .icon-box {
  background: rgba(9, 141, 187, 0.3);
  box-shadow: 0 4px 15px rgba(9, 141, 187, 0.75);
}

/* --- button --- */
.about3rd-btn {
  background: #e57d22;
  color: #181a1b;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

/* --- image --- */
.about3rd-img {
  flex: 0 0 370px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about3rd-img img {
  width: 370px;
  height: 370px;
  object-fit: cover;
  border-top-right-radius: 180px 185px;
  border-bottom-right-radius: 180px 185px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 10px solid #858585;
  box-shadow: 0 10px 25px #0006;
  background: #222;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about3rd {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
  }

  .about3rd-content {
    order: 2;
  }

  .about3rd-img {
    order: 1;
    flex: unset;
  }

  .about3rd-img img {
    width: 70vw;
    height: 70vw;
    max-width: 320px;
    border-top-right-radius: 140px 145px;
    border-bottom-right-radius: 140px 145px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .about3rd-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about3rd {
    gap: 1rem;
    padding: 1rem;
  }

  .about3rd-content h2 {
    font-size: 1.4rem;
  }

  .about3rd-content p {
    font-size: 0.9rem;
  }

  .about3rd-icon-item {
    font-size: 0.95rem;
    flex: 1 1 100%;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
  }

  .icon-box {
    min-width: 38px;
    min-height: 38px;
    font-size: 1.3rem;
  }

  .about3rd-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
  }

  .about3rd-img img {
    width: 90vw;
    height: auto;
    max-width: 280px;
  }
}
@media (max-width: 600px) {
  .about3rd-img img {
    width: 90vw;
    height: 250px;
    max-width: 100%;
    border-radius: 0 !important; /* normal rectangle */
    border: 6px solid #858585;   /* thinner border for mobile */
  }
}


/* todo how we work css start*/
.pos-r {
  position: relative;
}



.work-process {
  position: relative;
}

.step-num {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 20px 0 rgba(117, 178, 240, 0.4);
  color: #005bea;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  right: 0;
  line-height: 55px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50px;
}

.theme-bg .work-process h4,
.theme-bg .work-process p {
  color: #ffffff;
}

.step-icon {
  background: #ffffff;
  width: 140px;
  height: 140px;
  position: relative;
  border: 3px solid #fafaff;
  border-radius: 50%;
  line-height: 140px;
  font-size: 40px;
  text-align: center;
  color: #1c1d3e;
}

.step-icon span {
  position: relative;
}

.step-icon span::after,
.step-icon span::before {
  border-radius: 50%;
  content: "";
  height: 40px;
  position: absolute;
  width: 40px;
  z-index: -1;
}

.step-icon span::after {
  background: #cdf3f6;
  height: 25px;
  left: -10px;
  top: 5px;
  width: 25px;
}

.step-icon span::before {
  background: #d4f8e6;
  bottom: 0;
  right: -10px;
}

.dark-bg .step-icon {
  color: rgba(255, 255, 255, 0.9);
  background: none;
}

.dark-bg .step-desc h4 {
  color: #2575fc;
}

.dark-bg .step-icon {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-bg .step-desc p {
  color: rgba(255, 255, 255, 0.7);
}

.step-num-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* SVG connector */
#svg-container {
  position: absolute;
  left: 52%;
  transform: translateX(-50%);
  width: 75%;
  z-index: -1;
}

#svgC {
  margin: 0 auto;
  width: 100%;
}

/* Loader dots */
.box-loader {
  border-radius: 100%;
  margin: 0 auto;
  position: absolute;
  top: 15px;
  left: 15px;
}

.box-loader span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #2575fc;
  margin: 0 5px;
  opacity: 0;
}

.box-loader span:nth-child(1) {
  animation: opacitychange 1s ease-in-out infinite;
}

.box-loader span:nth-child(2) {
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

.box-loader span:nth-child(3) {
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

/* Responsive */
@media (max-width: 1200px) {
  #svg-container {
    width: 85%;
  }
}

@media (max-width: 992px) {
  .md-mt-5 {
    margin-top: 50px !important;
  }

  .work-process .box-loader {
    display: none;
  }

  .step-desc p {
    max-width: 300px;
    margin: 0 auto;
  }

  #svg-container {
    width: 100%;
    transform: rotate(90deg);
    left: 0;
    top: 50%;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes bar-top {
  0% {
    transform: scale(0, 1);
  }

  12.5% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@keyframes bar-right {
  0% {
    transform: scale(1, 0);
  }

  12.5% {
    transform: scale(1, 0);
  }

  25% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(1, 1);
  }

  87.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

@keyframes bar-bottom {
  0% {
    transform: scale(0, 1);
  }

  25% {
    transform: scale(0, 1);
  }

  37.5% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 1);
  }

  75% {
    transform: scale(0, 1);
  }

  100% {
    transform: scale(0, 1);
  }
}

@keyframes bar-left {
  0% {
    transform: scale(1, 0);
  }

  37.5% {
    transform: scale(1, 0);
  }

  50% {
    transform: scale(1, 1);
  }

  62.5% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 0);
  }
}

@keyframes opacitychange {

  0%,
  100% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }
}

#timeline-section {
  padding: 4rem 0;
}

/* The container stays positioned for the spine & markers */
#timeline {
  position: relative;
}

/* LIST is the flex column now (restores gap + align-self behaviour) */
.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: var(--timeline-gap);
}

/* centre spine uses token; sits behind markers */
#timeline::before {
  content: "";
  width: var(--timeline-border-width);
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  z-index: 0;
}

.timeline-entry {
  display: flex;
  flex-direction: column;
  gap: var(--timeline-content-gap);
  box-sizing: border-box;
  padding: var(--timeline-entry-padding);
  background: var(--timeline-entry-bg-color);
  width: 45%;
  box-shadow: 0px 15px 30px -25px rgba(0, 0, 0, 0.5);
}

.timeline-entry i {
  font-size: 40px;
  color: #2e8b57;
  position: absolute;
  right: 20px;
  /* same jekhane svg chilo */
  top: 11px;
}

/* marker anchored to #timeline (intentional) */


.timeline-entry .title {
  font-size: var(--timeline-title-font-size);
}

.timeline-entry p {
  font-size: var(--timeline-content-font-size);
}

.timeline-entry svg {
  color: var(--primary-color);
  order: -1;
}

/* Desktop zig-zag: even items to the right */
@media (min-width: 768px) {
  .timeline-list .timeline-entry:nth-child(even) {
    align-self: flex-end;
  }
}

/* Mobile: move spine to start and widen entries */
@media (max-width: 767px) {
  #timeline::before {
    left: 0;
    transform: none;
  }

  .timeline-entry {
    width: 90%;
    align-self: flex-end;
  }

  .timeline-entry::after {
    left: calc(-1 * ((var(--timeline-circle-size) / 2) + (var(--timeline-border-width) / 2)));
    transform: none;
  }
}

/* Accessibility helper for the hidden heading */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* wwhy it matter style start */
.one-section {
  padding: 60px auto;
  margin: 40px auto;
  background: #f9f9f9;
}

.one-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  /* Equal height for all */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;

  /* Background pattern */
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
}

.one-card:hover {
  background-color: #28a745;
  color: #fff;
  transform: translateY(-8px);
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}

.one-card:hover h5,
.one-card:hover p,
.one-card:hover .one-icon {
  color: #fff;
}

.one-icon {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.one-card h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  transition: color 0.4s ease;
}

.one-card p {
  font-size: 0.95rem;
  color: #666;
  transition: color 0.4s ease;
}


/* Value Cards */


/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover:before {
  width: 100%;
}

.btn-primary:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Floating Elements */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-padding {
    padding: 60px 0;
  }
}

/* Custom Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Artisan Pattern Background */
.pattern-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e8b57' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pattern-bg1 {
  background-image: url("./../images/Artisanparten2.jpg");
}

.pattern-bg2 {
  background-image: url("./../images/parten3.jpg");
  /* margin-top: -24px; */
}

/* .pattern-bg4 {
  background-image: url("./../images/bck1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

} */
.pattern-bg4 {
  background-image: url("./../images/WhatsApp\ Image\ 2025-10-27\ at\ 12.26.51_a2de2f9a.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* border:2px solid red; */

}
.pattern-bg5 {
  background-image: url("./../images/bck2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

}
.glass-card {
 
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 10px 5px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}
.vector-section {
  position: relative;

  overflow: hidden;
  /* border: 2px solid red; */
  text-align: center;
  padding: 70px 0px;
}.vector-section1 {
  position: relative;

  overflow: hidden;
  /* border: 2px solid red; */
  text-align: center;
  padding: 0px 0px;
}
.bnhy{
  background-color: #3d3938;
}
.vector-top,
.vector-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 9;
}

.vector-top {
  top: -1px;
  background-image: url("./../images/download.png"); /* white top vector */
}

.vector-bottom {
  bottom: 0;
  background-image: url("./../images/download1.png"); /* orange bottom vector */
}
.vector-top1,
.vector-bottom1 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  z-index: 9;
}
.vector-top1 {
  top: 0;
  background-image: url("./../images/download.png"); /* white top vector */
}

.vector-bottom1 {
  bottom: 40px;
  background-image: url("./../images/download1.png"); /* orange bottom vector */
}

.two-vision-section {
  padding: 80px 20px;
  /* background: #f9f9f9; */
}

.two-vision-text {
  padding-right: 30px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.two-vision-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.two-vision-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.two-vision-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #444;
}

.two-hashtags {
  font-style: italic;
  font-weight: 500;
  color: #333;
  border-left: 4px solid #28a745;
  padding-left: 15px;
  margin-top: 15px;
}

.two-vision-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.two-vision-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.two-vision-images img:hover {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 20px;
}

@media (max-width: 992px) {
  .two-vision-section .row {
    flex-direction: column;
  }

  .two-vision-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .two-vision-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-card {
    margin: 10px auto;

  }
}

@media (max-width: 576px) {
  .two-vision-images {
    grid-template-columns: 1fr;
  }

  .custom-card {
    margin: 5px auto;

  }
}

/* todo services page style start hare======================================================= */
/* todo services page style start hare======================================================= */
.serviceshero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('./../images/banner/b1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
}

.serviceshero-section:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(46, 139, 87, 0.2);
  z-index: -1;
}




 /* Grid Layout */
    .hero-section {
      padding: 50px 20px;
      background: #f4f4f4;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    /* Flip Card Container */
    .hero-item {
      perspective: 1000px;
      position: relative;
      border-radius: 12px;
      height: 280px; /* fixed card height */
    }

    .hero-inner {
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      border-radius: 12px;
      position: relative;
    }

    /* On hover flip */
    .hero-item:hover .hero-inner {
      transform: rotateY(180deg);
    }

    /* Front & Back common */
    .hero-front, .hero-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 12px;
      backface-visibility: hidden;
      overflow: hidden;
      top: 0;
      left: 0;
    }

    /* Front */
    .hero-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 12px;
    }

    .hero-front .hero-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: #fff;
      padding: 10px;
      font-size: 1rem;
      font-weight: 600;
      text-align: center;
    }

    /* Back */
    .hero-back {
      background: rgba(42, 109, 56, 0.95);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      transform: rotateY(180deg);
    }

    .hero-back p {
      margin-bottom: 15px;
      font-size: 0.95rem;
    }

    .hero-btn {
      display: inline-block;
      padding: 10px 20px;
      background: #fff;
      color: #2a6d38;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: background 0.3s, color 0.3s;
    }

    .hero-btn:hover {
      background: #2a6d38;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-item {
        height: 220px;
      }
    }

    @media (max-width: 576px) {
      .hero-item {
        height: 200px;
      }
    }



/*  todo bigscreen Custom Classes */

    /* Tabs Container */
    .custom-tab-container {
      /* max-width: 1200px; */
      margin: auto;
      padding: 20px;
    }

    .custom-tab-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: start;
      gap: 10px;
      margin-bottom: 20px;
    }

    .custom-tab-btn {
      background: #1a1a2e;
      border: none;
      padding: 12px 30px;
      color: #fff;
      border-radius: 6px;
      cursor: pointer;
      font-size: 18px;
      transition: 0.3s ease;
    }

    .custom-tab-btn.active,
    .custom-tab-btn:hover {
      background: linear-gradient(45deg, #009ffd, #2a2a72);
    }

    /* Tab Content */
    .custom-tab-content {
      display: none;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .custom-tab-content.active {
      display: flex;
    }

    .custom-tab-text {
      flex: 1;
      min-width: 280px;
    }

    .custom-tab-text h2 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .custom-tab-text p {
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .custom-tab-text .custom-tab-btn-link {
      display: inline-block;
      background: #28a745;
      color: #fff;
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      margin-top: 15px;
      transition: 0.3s;
    }

    .custom-tab-text .custom-tab-btn-link:hover {
      background: #218838;
    }

    .custom-tab-image {
      flex: 1;
      min-width: 280px;
    }

    .custom-tab-image img {
      max-width: 100%;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .custom-tab-btn {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
      }
      .custom-tab-content {
        flex-direction: column;
        text-align: center;
      }
      .custom-tab-text h2 {
        font-size: 24px;
      }
    }


.bagSection {
background: #2d2d2d;
color: #fff;
padding: 40px 20px;
}

.bagBtn {
background: #4CAF50;
color: #fff;
border: none;
padding: 12px 25px;
font-weight: bold;
margin-top: 15px;
transition: 0.3s;
border-radius: 5px;
}

.bagBtn:hover {
background: #3a8c3a;
}

.bagSlider img {
width: 100%;
border-radius: 8px;
}

.bagThumbs img {
width: 100%;
height: 100px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}

.bagThumbs img:hover {
transform: scale(1.05);
}

.bagHeading {
display: flex;
align-items: center;
color: white;
}

.bgs span {
font-size: 69px;
font-weight: 900;
font-style: oblique;
color: #daa520;
height: 110px;
/* border: 1px solid red; */
}

.t2 {
color: #79ac84;
/* font-size: 15px; */
font-weight: bold;
}

.t3 {
margin-top: -14px;
font-size: 15px;
font-weight: bold;
text-transform: uppercase;
}

.t5 {
text-transform: uppercase;
}

.hero-desc1 {
margin: 5px auto !important;
line-height: normal;
color: #d8c593;

}

.nav-buttons {
/* background: white; */
border-radius: 12px;
/* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); */
padding: 1px;
}

.btn-nav {
flex: 1;
margin: 11px 1px;
padding: 5px 7px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
text-align: center;
transition: all 0.3s ease;
color: #2c3e50;
/* background: #f8f9fa; */
/* border: 1px solid #e9ecef; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-width: 50px;
}

.btn-nav:hover {
background: #2e8b57;
color: white;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(74, 108, 247, 0.2);
border-color: #2e8b57;
}

.btn-nav.active {
background: #2e8b57;
color: white;
border-color: #2e8b57;
}

.btn-nav i {
font-size: 20px;
margin-bottom: 0px;
}

@media (max-width: 768px) {
.btn-nav {
min-width: 100px;
padding: 10px 12px;
font-size: 14px;
}
}




.hero-box {
      /* background-color: white; */
      border-radius: 15px;
      /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
      overflow: hidden;
      /* margin: 20px auto; */
      /* max-width: 1200px; */
      padding:30px 0px;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
    }

    .col-lg-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }

    /* Left Content */
    .hero-content {
      padding: 15px 0px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* background: linear-gradient(to bottom, white 0%, #f8f9f8 100%); */
    }

    .hero-title {
      color: #2a6d38;
      font-size: 2.8rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
    
    }

    .hero-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: #ff8800;
    }

    .hero-tag a {
      text-decoration: none;
      color: #2a6d38;
      font-weight: 600;
      margin: 0 8px 10px 0;
      display: inline-block;
      font-size: 1rem;
      background-color: rgba(42, 109, 56, 0.1);
      padding: 5px 12px;
      border-radius: 20px;
    }

    .hero-vision {
      font-size: 3.6rem;
      color: #333;
      margin: 10px 0;
      font-weight: 700;
      line-height: 1.4;
      text-transform:capitalize;
    }

    .hero-vision span {
      font-size: 5rem;
      color: #fcd357;
      font-weight: 700;
    }

    .hero-desc {
      margin-bottom: 36px;
       color: #4a5568;
  line-height: 1.7;
  font-size: 1.5rem;
    }

    .hero-btn {
      text-decoration: none;
      text-align: center;
      background-color: #fcdd81;
      color: rgb(4, 1, 10);
      padding: 12px 28px;
      font-weight: 600;
      border-radius: 30px;
      border: none;
      font-size: 1rem;
      transition: all 0.3s ease;
      cursor: pointer;
      display: inline-block;
    }

    .hero-btn:hover {
      background-color: #1f5230;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(42, 109, 56, 0.4);
    }

    /* Right Side: Flip Grid */
    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      padding: 15px;
    }

    .hero-item {
      perspective: 1000px;
      border-radius: 12px;
      height: 250px;
      position: relative;
    }

    .hero-inner {
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      border-radius: 12px;
      position: relative;
    }

    .hero-item:hover .hero-inner {
      transform: rotateY(180deg);
    }

    .hero-front, .hero-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 12px;
      backface-visibility: hidden;
      top: 0;
      left: 0;
      overflow: hidden;
    }

    /* Front Side */
    .hero-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: white;
      padding: 8px;
      font-size: 1rem;
      font-weight: 600;
      text-align: center;
    }

    /* Back Side */
    .hero-back {
      background: rgba(42, 109, 56, 0.95);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      transform: rotateY(180deg);
    }

    .hero-back p {
      margin-bottom: 15px;
      font-size: 0.95rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
      }
      .hero-content {
        text-align: center;
        padding: 25px;
      }
      .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    @media (max-width: 576px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .hero-item {
        height: 200px;
      }
    }





/* todo */

.newservsdesi-hero {
  width:100%;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.newservsdesi-bgvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.newservsdesi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1
}

.newservsdesi-panel {
  position: relative;
  z-index: 2;
  /* max-width: 1280px; */
  width: 100%;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1s ease-in-out
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.newservsdesi-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 10px;
  margin-bottom: 16px;
  /* border: 1px solid red; */
}

.newservsdesi-tab-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(145deg, #1e293b, #1c1d3e);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all .3s ease
}

.newservsdesi-tab-btn:hover {
  background: linear-gradient(145deg, #2f2f2f, #3a3a3a)
}

.newservsdesi-tab-btn.active {
  background: linear-gradient(145deg, #00650d, #005bea);
  color: #fff;
  box-shadow: 0 0 12px rgba(207, 207, 207, 0.6)
}

.newservsdesi-content-wrap {
  border-radius: 12px;
  overflow: hidden
}

.newservsdesi-content {
  display: none;
  gap: 20px;
  align-items: stretch;
  animation: fadeIn 0.8s ease
}

.newservsdesi-content.active {
  display: flex
}

.newservsdesi-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between
}

.newservsdesi-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff
}

.newservsdesi-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6
}

.newservsdesi-recent {
  margin-top: 1px
}

.newservsdesi-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth
}

.newservsdesi-slide {
  flex: 0 0 auto;
  width: 140px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  /* border: 2px solid rgba(255, 255, 255, 0.1); */
  transition: transform .3s ease, box-shadow .3s ease
}

.newservsdesi-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5)
}

.newservsdesi-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.newservsdesi-slide a {
    font-size: 16px;
    font-size: 15px;
    border: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.newservsdesi-right {
  flex: 1;
  min-width: 310px;
  max-width: 29%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  height: 430px;
}
.newservsdsn{
  text-decoration: none;
  font-weight: 600;
  font-size:19px;
  color: #fca044;
}
.newservsdesi-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.srvcsnw{
  color: #ffcc33;;
}
.srvcsnw1{
  font-weight: 900;
  
  color: #fca044;
}
.srvcsnw1 span{
  color: white;
}
@media (max-width:1024px) {
  .newservsdesi-content {
    flex-direction: column
  }

  .newservsdesi-right {
    max-width: none;
    height: 280px
  }

  .newservsdesi-slide {
    width: 120px;
    height: 90px
  }
}

@media (max-width:640px) {
  .newservsdesi-title {
    font-size: 18px
  }

  .newservsdesi-text {
    font-size: 14px
  }

  .newservsdesi-slide {
    width: 100px;
    height: 70px
  }
}

/* todo */
 

.bag-section {
  background-color: #2e2e2e;
  color: white;
  padding: 30px 10px;
  text-align: center;
}

.bag-section h2 {
  font-weight: bold;
  color: white;
}

.bag-section h2 span {
  color: #fcb900;
}

/* Box */
.bag-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bag-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

/* Hover Zoom */
.bag-item:hover img {
  transform: scale(1.1);
}

/* Overlay Name */
.bag-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  transition: bottom 0.4s ease;
}

.bag-item:hover .bag-overlay {
  bottom: 0;
}


.bag-btn {
  background-color: #fcb900;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  margin-left: 10px;
  transition: 0.3s;
}

.bag-btn:hover {
  background-color: #000;
  color: #fff;
}

.h3rt h3 {
  color: white;
}


.custom-section {
  padding: 50px 10px;
}


.custom-title span {
  color: #ff9900;
  font-weight: bold;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.custom-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.custom-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.custom-box:hover img {
  transform: scale(1.2);
}

.custom-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: bottom 0.4s ease;
}

.custom-box:hover .custom-overlay {
  bottom: 0;
}

.custom-highlight {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0;
}

.custom-highlight span {
  color: #ff9900;
  text-transform: uppercase;
}

.custom-accessories-text h2 {
  font-size: 50px;
  font-weight: bold;
  text-transform: capitalize;
}

.custom-accessories-text h2 span {
  color: #ff9900;
}

.custom-accessories-text p {
  margin-top: 15px;
  font-size: 16px;
  color: #000000;
}

/* Section styling */
/* Section styling */
.concept-section {
  background: var(--surface);
  color: var(--text);
  padding: clamp(28px, 6vw, 72px) clamp(16px, 5vw, 40px);
  max-width: 3250px;
  margin: 0 auto;
}

.concept-head {
  margin: 0 auto clamp(20px, 5vw, 36px);
}

.concept-heading {
  margin: 0 0 6px 0;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .2px;
  font-size: clamp(22px, 4.5vw, 40px);
}

.concept-subheading {
  margin: 0 0 12px 0;
  font-weight: 800;
  color: var(--accent);
  text-transform: lowercase;
  font-size: clamp(18px, 3.2vw, 30px);
}

.concept-subheading span {
  filter: saturate(1.2)
}

.concept-intro {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
  font-size: clamp(13px, 1.8vw, 16px);
}

/* Container */
.concept-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
}

/* Left Images Grid */
.concept-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}

/* Flip card container */
.concept-badge {
  perspective: 1000px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* larger boxes */
  border-radius: var(--radius);
}

/* Inner Flip */
.concept-badge__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.concept-badge:hover .concept-badge__inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.concept-badge__front,
.concept-badge__back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.concept-badge__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-badge__back {
  background: #2a6d38;
  color: white;
  transform: rotateY(180deg);
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  text-align: center;
}

.concept-badge__title {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 800;
  margin: 0;
}

.concept-badge__desc {
  font-size: clamp(12px, 1.5vw, 14px);
  margin: 0;
  color: white;
}

.concept-badge__btn {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  background: var(--accent);
  color: #0f1113;
  cursor: pointer;
  transition: transform .2s;
}
.concept-badge__btn:hover {
  transform: scale(1.05);
}

/* Right column */
.concept-right {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.6vw, 18px);
}

.concept-copy {
  margin: 0;
  color: #dbe3ee;
  line-height: 1.75;
  font-size: clamp(13px, 1.8vw, 16px);
}

.concept-cta-row {
  margin-top: clamp(12px, 3vw, 22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.concept-tagline {
  margin: 0;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .2px;
  font-size: clamp(15px, 2.6vw, 22px);
}

.concept-cta {
  appearance: none;
  border: 0;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #0f1113;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .6), 0 12px 30px rgba(0, 0, 0, .35);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.concept-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.1)
}
.concept-cta:active {
  transform: translateY(1px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, .65)
}

/* Responsive */
@media (max-width: 1200px) {
  .concept-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .concept-container {
    grid-template-columns: 1fr;
  }
  .concept-left {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .concept-left {
    grid-template-columns: 1fr;
  }
  .concept-badge {
    aspect-ratio: 1;
  }
}

.footer {
  background: #111;
  color: #ccc;
  padding: 50px 20px 30px;
}

.footer h5 {
  color: #daa520;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background:  #daa520;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .social-icons a {
  margin-right: 10px;
  font-size: 18px;
  display: inline-block;
}

/* Image grid */
.footer .image-grid img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.footer .image-grid img:hover {
  transform: scale(1.05);
}



/* todo gallery style start */
    /* Main gallery with grid */
    .mygallery1-photos {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* প্রতি row এ ৪ টা image */
      gap: 15px;
      padding: 20px;
    }

    .mygallery1-photo-item {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
    }

    .mygallery1-photo-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 6px;
      transition: filter 0.3s ease;
      cursor: pointer;
    }

    .mygallery1-photo-item img:hover {
      filter: contrast(120%);
    }

    /* Name on right side */
    .mygallery1-photo-name {
      position: absolute;
      top: 10px;
      right: 10px; 
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 13px;
    }

    /* Hover preview */
    .mygallery1-preview {
      position: fixed;
      pointer-events: none;
      display: none;
      z-index: 1000;
    }

    .mygallery1-preview img {
      width: 100px;  /* ছোট preview */
      height: auto;
      border: 2px solid #fff;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }

    /* Modal full screen image */
    .mygallery1-modal {
      display: none; 
      position: fixed; 
      z-index: 2000; 
      left: 0; top: 0; 
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.9); 
      overflow: auto;
    }

    .mygallery1-modal-content {
      display: block;
      margin: auto;
      max-width: 95%;
      max-height: 90vh;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }

    .mygallery1-close {
      position: absolute;
      top: 20px; right: 30px;
      font-size: 36px;
      font-weight: bold;
      color: #fff;
      cursor: pointer;
    }

    /* Responsive breakpoints */
    @media(max-width: 1200px) {
      .mygallery1-photos {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media(max-width: 768px) {
      .mygallery1-photos {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 480px) {
      .mygallery1-photos {
        grid-template-columns: 1fr;
      }
    }

    .aboiutnav{
      /* border: 2px solid red; */
      margin-top: -80px;
      background-color: #333;
    }


    .sustenanciahdng{
      color: white!important;
    }
    .lead{
      color: white!important;
    }.main-container {
    margin: 80px auto;
}

.susmetcls1{
    text-align: right!important;
    /* border:3px solid yellow; */
    
}
.sustenanciahdng{
  padding:0px;
font-size: 76px;
    line-height: 110px;
}
.parasus{
  text-align: left!important;
  text-align: justify;
  color: white;
  font-size:20px;
}


@media (max-width:780px) {
     .tech-nav {
        transition: all 0.4s ease;
        background-color: #ffffff6e !important;
        padding: 0px 0;
        border: 1px solid red;
        width: 100%!important;
        overflow-y:hidden;
    }
  .tech-logo {
    width: 90px;
    height: unset;
}
.tech-slide-content {
    /* max-width: 700px; */
    z-index: 2;
    position: relative;
    margin-left: 68px;
}
.mobilehideh{
  display:none;
}
.tech-swiper {
    width: 100%;
    height: 500px;
    margin-top: -80px;
}.hero-title {
    color: #2a6d38;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}.vector-section1 {
    display: none;
}.hero-vision {
    font-size: 2.2rem;
    color: #333;
    margin: 10px 0;
    font-weight: 700;
    line-height: 1.1;
    text-transform: capitalize;
}
}

.mmb{
  margin-bottom: 12px;
}
.mmnh{
  font-size: 22px;
}

.pfgtr{
  padding:30px auto!important;
}