@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600&family=Ubuntu:wght@400;500;700&family=Work+Sans:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* ====== Preloader Start ===== */

#loading {
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at center, #0f2027, #203a43, #2c5364);
  position: fixed;
  z-index: 99999;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

/* Rings */
.ring {
  height: 200px;
  width: 200px;
  border: 0px solid transparent;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.ring:nth-child(1) {
  border-bottom: 6px solid #ff00ff;
  animation: rotate1 2.5s linear infinite;
}

.ring:nth-child(2) {
  border-right: 6px solid #00eaff;
  animation: rotate2 2.5s linear infinite;
}

.ring:nth-child(3) {
  border-top: 6px solid #00ff6a;
  animation: rotate3 2.5s linear infinite;
}

/* Loading Text (Center of Rings) */
.loading-text {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  position: absolute;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  animation: fadeIn 1.2s ease-in-out infinite alternate;
}

/*Brand Name (Bottom) */
.brand-name {
  color: #00eaff;
  font-size: 22px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  margin-top: 280px;
  letter-spacing: 3px;
  text-shadow: 0 0 25px #00eaff;
}

/* Animations */
@keyframes rotate1 {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate3 {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

/* ====== Preloader End ===== */

/* ===== scroll-up-btn Start ===== */

.scroll-up-btn {
  position: fixed;
  bottom: 28px;
  right: 25px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: #ff0048;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-up-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(145deg, #ff0048, #ff5f87);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 0, 72, 0.4);
}

.scroll-up-btn.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .scroll-up-btn {
    height: 45px;
    width: 45px;
    bottom: 27px !important;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
  }
}
/* ===== scroll-up-btn End ===== */

/* ===== This code for Navbar, Sponsor & Testimonials Section Start ===== */

section .max-width {
  padding: 80px 80px;
}

/* ===== This code for Navbar, Sponsor & Testimonials Section End ===== */

/* ===== Navbar Start =====  */

.navbar .max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}
.max-width .navContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.max-width img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 9999;
  padding: 30px 0;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.3s ease;
}
.navbar.sticky {
  padding: 10px 0;
  background: #097a23;
  /* background: #26065b; */
}
.navbar ul .hidden {
  display: none;
}
.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a {
  /* font-family: "Playfair Display", serif; */
  color: #fff;
  font-size: 35px;
  font-weight: 400;
}
.navbar .logo a span {
  color: crimson;
}
.navbar.sticky .logo a span {
  color: #fff;
  transition: all 0.5s ease;
}
.navbar .menu li {
  list-style: none;
  display: inline-block;
}
.navbar .menu li a {
  font-family: "Montserrat", sans-serif;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover {
  color: #f5a623;
}
.navbar.sticky .menu li a:hover {
  color: #fff;
}

@media (max-width: 947px) {
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    /* background: linear-gradient(135deg, #00b09b, #96c93d); */

    background: linear-gradient(135deg, #00b09b, #96c93d, #8e2de2, #4a00e0);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;

    background-size: cover;
    object-fit: cover;
    height: 100%;
    text-align: center;
    padding-top: 130px;
    transition: all 0.3s ease;
  }

  /* 🔄 Animation Keyframes */
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .navbar .menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -10;
  }
  .navbar ul .hidden {
    display: block;
    font-size: 50px;
    color: transparent;
    margin-top: 80px;
    padding: 10px 20px;
    -webkit-text-stroke: 2px rgb(62, 184, 62);
    z-index: 999999;
  }
  .navbar ul .small {
    display: block;
    font-size: 30px;
    color: transparent;
    padding: 2px 20px;
    -webkit-text-stroke: 1px rgb(62, 184, 62);
    z-index: 999999;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 15px 0;
    font-size: 25px;
  }
}

@media (max-width: 500px) {
  .navbar .max-width {
    padding: 0 8px;
  }

  .navbar .logo a {
    font-size: 25px;
    font-weight: 300;
  }
}

.menu-btn {
  color: #fff;
  font-size: 35px;
  padding-right: 10px;
  cursor: pointer;
  display: none;
}
@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
}
/* ===== Navbar End =====  */

/* ===== Home / Hero Section Start ===== */

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  min-height: 500px;
  background: #1c6331;
  /* background: linear-gradient(135deg, #06402b, #11998e, #38ef7d); */
  color: #fff;
  text-align: left;
  padding: 0 50px;
  font-family: "Ubuntu", sans-serif;
  position: relative;
  overflow: hidden;
}

.home-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.home-content .text-1 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #e0ffe0;
  margin-bottom: 10px;
  margin-top: 100px;
}
.home-content .text-2 {
  font-family: "Playfair Display", serif;
  font-size: 65px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
  padding: 10px 0;
}
.home-content .text-2A {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #d4f1d4;
  margin-bottom: 20px;
}
.home-content .text-3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  margin-bottom: 30px;
}
.home-content .text-3 span {
  color: #fff;
  font-weight: 500;
}
.home-content a {
  display: inline-block;
  background: #26065b;
  padding: 12px 28px;
  color: #fff;
  font-size: 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.home-content a:hover {
  background: #1b043f;
  color: #fff;
}

/* Particle container */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Individual particle styles */
.particles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: floatParticle linear infinite;
  pointer-events: none;
}

/* Floating + rotating animation */
@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(50vh) rotate(180deg);
    opacity: 1;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-50vh) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive text */
@media (max-width: 1200px) {
  .home {
    text-align: center;
    padding: 0 30px;
  }
  .home-content .text-2 {
    font-size: 55px;
  }
  .home-content .text-2A {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .home {
    height: auto;
    padding: 80px 20px;
    text-align: center;
  }
  .home-content .text-2 {
    font-size: 45px;
  }
  .home-content .text-2A {
    font-size: 20px;
  }
  .home-content .text-3 {
    font-size: 18px;
  }
  .home-content a {
    font-size: 18px;
    padding: 10px 24px;
  }
}
@media (max-width: 500px) {
  .home{
    margin-bottom: 20px;
  }
  .home-content .text-2 {
    font-size: 35px;
  }
  .home-content .text-2A {
    font-size: 18px;
  }
  .home-content .text-3 {
    font-size: 16px;
  }
  .home-content a {
    font-size: 16px;
    padding: 8px 20px;
  }
}

/* ===== Home / Hero Section End ===== */

/* ===== Moving Text Styling Start ===== */

.movingContainer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #f5f4f2;
}

.movingTitle {
  text-align: center;
  display: block;
}
.movingTitle h1 {
  text-align: center;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  color: rgb(201, 171, 19);
  display: inline-block;
  margin-top: 40px;
}

.moving {
  min-height: 20vh;
  /* margin-top: 30px; */
  margin-bottom: 20px;
  width: 100%;
  background-color: #ffffff;
  /* background-color: #f5f4f2; */
  white-space: nowrap;
  display: flex;
  align-items: center;
  margin-top: -12px;
}
.moving-text {
  overflow-x: auto;
  white-space: nowrap;
}
.moving-text::-webkit-scrollbar {
  display: none;
}
.con {
  white-space: nowrap;
  display: inline-block;
  animation-name: move;
  animation-duration: 55s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.moving-text:hover .con {
  animation-play-state: paused;
}
.moving-text h1 {
  font-size: 5vw;
  /* background-color: lightblue; */
  color: rgb(53, 127, 53);
  padding-top: 7px;
  display: inline-block;
}
#gola {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #fe320a;
  margin: 0.5vw 1.5vw;
  display: inline-block;
}
@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 480px) {
  /* Home Section Moving Text */
  .moving {
    min-height: 10vh;
    width: 100%;
    display: flex;
    align-items: center; /* centers vertically */
  }
  .movingTitle h1 {
    text-align: center;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
    margin-top: 40px;
  }
  .movingTitle:nth-child(1) h1{
    margin-top: 10px;
  }
  .moving-text {
    overflow-x: auto;
    white-space: nowrap;
  }
  .moving-text h1 {
    font-size: 5vw;
    padding: 0;
    line-height: 1.2;
    vertical-align: middle;
  }
  #gola {
    height: 15px;
    width: 15px;
    margin: 0 1vw;
    vertical-align: middle;
  }
}
/* ===== Moving Text Styling End ===== */

/* ===== Sliding Carousel Start ===== */

.mySlides {
  display: none;
}
.mySlides img {
  vertical-align: middle;
  height: 80vh;
}
/* Slideshow container */

.slideshow-container {
  max-width: 80%;
  position: relative;
  margin: auto;
  margin-top: 10px;
  padding-bottom: 0;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 43%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(20, 220, 57);
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgb(20, 220, 150);
  color: #fff;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.active1,
.dot:hover {
  background-color: rgb(20, 17, 190);
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 460px) {
  .prev,
  .next {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 690px) {
  .slideshow-container {
    max-width: 95%;
  }
  .mySlides img {
    height: 26vh;
  }
}
/* ===== Sliding Carousel End ===== */

/* ===== About section Managing Director Start ===== */

.director-section h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.director-section p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.director-section {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #262626);
  color: #f9f9f9;
  font-family: "Noto Sans Bengali", "SolaimanLipi", sans-serif;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.director-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.3), transparent);
  border-radius: 50%;
  z-index: 0;
}

.director-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.25), transparent);
  border-radius: 50%;
  z-index: 0;
}

.director-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.director-photo-wrapper {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc00, #ff8a00);
  padding: 5px;
  border-radius: 50%;
}

.director-photo {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-photo:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.director-container h2 {
  color: #ffcc00;
  font-size: 28px;
  font-weight: 700;
  margin: 25px 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.director-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
  color: #f1f1f1;
}

.director-container ul {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
}

.director-container li {
  font-size: 18px;
  margin: 10px 0;
  color: #ffcc00;
}

.director-container li span {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .director-container {
    padding: 30px 20px;
  }
  .director-photo {
    width: 160px;
    height: 160px;
  }
  .director-container h2 {
    font-size: 22px;
  }
  .director-container p,
  li {
    font-size: 16px;
  }
}

/* ===== About section Managing Director End ===== */


/* ===== More About Start ===== */
.about-winway {
  background: linear-gradient(135deg, #fff7e6, #f3e7d6);
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 50px auto 40px;
  width: 90%;
  max-width: 900px;
  transition: all 0.3s ease-in-out;
}

.about-winway:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-winway h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-winway h2 span {
  color: #ff5e00;
}

.about-winway p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff5e00;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.pdf-btn i:first-child {
  font-size: 1.5rem;
  color: #fff;
}

.pdf-btn i:last-child {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.pdf-btn:hover {
  background: #ff7620;
  box-shadow: 0 6px 15px rgba(255, 94, 0, 0.4);
}

.pdf-btn:hover i:last-child {
  transform: translateX(6px);
}

/* ✅ Responsive Design */
@media screen and (max-width: 480px) {
  .about-winway h2 {
    font-size: 1.8rem;
  }

  .about-winway p {
    font-size: 1rem;
  }

  .pdf-btn {
    font-size: 1rem;
    padding: 12px 22px;
  }
}

/* ===== More About End ===== */


/* ===== Sponsor By Section Start ===== */

.supported-by {
  padding: 30px 0;
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  text-align: center;
}

.supported-by .title {
  font-size: 40px;
  font-weight: 700;
  color: #26065b;
  margin-bottom: 60px;
  position: relative;
}

.supported-by .title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: crimson;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.supported-by .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.supported-by .logo-box {
  width: 140px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  padding: 5px;
  transition: transform 0.3s;
}

.supported-by .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.supported-by .logo-box:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 992px) {
  .supported-by .logo-box {
    width: 120px;
    height: 80px;
    padding: 4px;
  }
}

/* 📱 Mobile (2-column grid) */
@media (max-width: 600px) {
  .supported-by .title {
    font-size: 30px;
  }

  .supported-by .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 25px;
  }

  .supported-by .logo-box {
    width: 120px;
    height: 75px;
    padding: 3px;
  }
}

/* ===== Sponsor By Section End ===== */

/* ===== Counting Number Section Start ===== */

.counters {
  padding: 4em 2em;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./img/counter/green_world.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.counters > div {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Large screen: 5 items in one row */
  gap: 3em 2em;
  align-items: center;
  justify-content: center;
}

.counter {
  position: relative;
  animation: fadeUp 600ms ease-in-out forwards;
}

.counter img {
  width: 65px;
  height: 65px;
  margin-bottom: 10px;
}

.white-icon {
  filter: brightness(0) invert(1);
}

.counter h1 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 0.2em;
  color: #f9ff54;
}

.counter p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.counters-2 .counter:not(:last-child)::before {
  content: "";
  background: #df4444;
  position: absolute;
  width: 2px;
  height: 3em;
  top: 50%;
  transform: translateY(-50%);
  right: -1em;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet (medium screen) */
@media screen and (max-width: 1023px) and (min-width: 501px) {
  .counters > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .counters-2 .counter:not(:last-child)::before {
    display: none;
  }
}

/* Mobile */
@media screen and (max-width: 500px) {
  .counters {
    margin-top: 20px;
  }
  .counters > div {
    grid-template-columns: 1fr;
    gap: 4em;
  }
  .counters-2 .counter:not(:last-child)::before {
    width: 90%;
    height: 2px;
    top: initial;
    right: initial;
    bottom: -3em;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== Counting Number Section End ===== */

/* ===== উইনওয়ে চুলার অনন্য বৈশিষ্ট্য Start */

.awareness-section {
  background: linear-gradient(135deg, #0d3b2e, #097a63);
  color: #fff;
  padding: 60px 10%;
  font-family: "Poppins", sans-serif;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.awareness-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  border-left: 5px solid #00ffb3;
  padding-left: 10px;
}

.awareness-section ul {
  list-style: none;
  padding-left: 0;
}

.awareness-section ul li {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
  padding: 12px 18px 12px 45px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 17px;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.awareness-section ul li::before {
  content: "⭐";
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 18px;
  color: #ffd700;
  text-shadow: 0 0 6px #ffde70;
}

.awareness-section ul li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-container {
    grid-template-columns: 1fr;
  }
  .awareness-section {
    padding: 40px 6%;
  }
  .awareness-section h2 {
    text-align: center;
  }
}

/* ===== উইনওয়ে চুলার অনন্য বৈশিষ্ট্য End */

/* ===== Stove Specification Start ===== */

.image-showcase {
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9f5ee);
}

.image-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.image-box {
  position: relative;
  overflow: hidden;
  /* height: 70vh; */
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-box:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.image-box:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.overlay p {
  font-size: 16px;
  font-weight: 400;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .image-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .overlay h3 {
    font-size: 20px;
  }
  .overlay p {
    font-size: 15px;
  }
}

/* ===== Stove Specification End ===== */

/* ===== উইনওয়ে কর্পোরেশনের পণ্যসমূহ Start ===== */

.product-gallery {
  background-color: #f9f9f9;
  padding: 80px 20px;
  font-family: "Noto Sans Bengali", "SolaimanLipi", sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #111;
  margin-bottom: 50px;
  font-weight: 700;
}

.sub-title {
  font-size: 26px;
  color: #f57c00;
  margin: 40px 0 30px;
  font-weight: 600;
  text-decoration: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
  margin-bottom: 60px;
}

.product-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding-bottom: 20px;
}

.product-item img {
  width: 100%;
  height: 250px;
  object-fit: contain; /* ✅ full image show */
  background-color: #fff; /* Optional: white background */
  display: block;
  padding: 10px; /* little spacing around image */
}

.product-item h4 {
  margin-top: 12px;
  font-size: 18px;
  color: #333;
}

.product-item p {
  font-size: 15px;
  color: #666;
  padding: 0 12px;
  margin: 10px 0;
}

.price {
  display: inline-block;
  margin-top: 5px;
  font-weight: 700;
  color: #e53935;
  font-size: 17px;
}

.product-item:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-item img {
    height: 220px;
  }
}

/* ===== উইনওয়ে কর্পোরেশনের পণ্যসমূহ End ===== */

/* ===== Video Gallery Section Start ===== */

#videoGallery {
  margin-top: 60px;
  padding: 30px 0;
  background: #eee;
  box-sizing: border-box;
  text-transform: capitalize;
}

.headingVideo {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}

.containerVdo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 0 5%;
}

/* Main video box */
.containerVdo .main-video {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.containerVdo .main-video iframe {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  border: none;
}

.containerVdo .main-video .videoTitle {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 10px;
}

/* Sidebar video list */
.containerVdo .video-list {
  background: #fff;
  border-radius: 10px;
  height: 468px;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.containerVdo .video-list::-webkit-scrollbar {
  width: 8px;
}

.containerVdo .video-list::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 50px;
}

.containerVdo .video-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 50px;
}

/* Each video list item */
.containerVdo .video-list .vid {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f8f8;
  border-radius: 8px;
  margin: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.containerVdo .video-list .vid iframe {
  width: 100px;
  height: 70px;
  border-radius: 5px;
  border: none;
  pointer-events: none; /* যাতে click করলে নিচের iframe না চলে */
}

.containerVdo .video-list .vid:hover {
  background: #d7ebfa;
  transform: scale(1.02);
}

.containerVdo .video-list .vid.active {
  background: #2980b9;
}

.containerVdo .video-list .vid.active .videoTitle {
  color: #fff;
}

.containerVdo .video-list .videoTitle {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .containerVdo {
    grid-template-columns: 1fr;
  }

  .containerVdo .main-video iframe {
    height: 300px;
  }

  .headingVideo {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .containerVdo .main-video .videoTitle {
    font-size: 16px;
  }

  .containerVdo .video-list .videoTitle {
    font-size: 13px;
  }

  .containerVdo .video-list .vid iframe {
    width: 80px;
    height: 60px;
  }

  .headingVideo {
    font-size: 28px;
  }
}

/* ===== Video Gallery Section End ===== */

/* ===== Features-section Start ===== */

.features-section {
  font-family: "Noto Sans Bengali", "SolaimanLipi", sans-serif;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff5e1, #ffe0cc);
}

.features-section h2 {
  font-size: 34px;
  color: #d35400;
  font-weight: 700;
  margin-bottom: 60px;
  text-shadow: 1px 1px 2px #999;
}

.features-section .sub-title {
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 25px;
  margin-top: 50px;
  display: inline-block;
  padding: 10px 25px;
  background: #f5a623;
  color: white;
  border-radius: 8px;
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.features-section .feature-item {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.features-section .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.features-section .feature-item span {
  font-size: 24px;
  margin-right: 10px;
}

.features-section .feature-item p {
  font-size: 17px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* Accent colors */
.features-section .feature-item:nth-child(1) span {
  color: #27ae60;
}
.features-section .feature-item:nth-child(2) span {
  color: #3498db;
}
.features-section .feature-item:nth-child(3) span {
  color: #f39c12;
}
.features-section .feature-item:nth-child(4) span {
  color: #9b59b6;
}
.features-section .feature-item:nth-child(5) span {
  color: #e67e22;
}
.features-section .feature-item:nth-child(6) span {
  color: #e74c3c;
}
.features-section .feature-item:nth-child(7) span {
  color: #2ecc71;
}
.features-section .feature-item:nth-child(8) span {
  color: #16a085;
}

/* Responsive */
@media (max-width: 768px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
  .features-section {
    padding: 50px 15px;
  }
  .features-section h2 {
    font-size: 28px;
  }
}

/* ===== Features-section End ===== */

/* ===== Vision & Objectives 🌟 Start ===== */

.vision-section {
  font-family: "Noto Sans Bengali", "SolaimanLipi", sans-serif;
  background: linear-gradient(135deg, #fff8e1, #ffe0cc);
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 128, 0.6),
    transparent 70%
  );
  animation: float 6s infinite ease-in-out;
}

.vision-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.5), transparent 70%);
  animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.vision-section h2 {
  font-size: 36px;
  color: #d35400;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 60px;
}

.vision-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vision-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vision-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.vision-box h3 {
  font-size: 28px;
  color: #e67e22;
  margin-bottom: 20px;
  position: relative;
}

.vision-box h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background: #f39c12;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.vision-box p {
  font-size: 17px;
  color: #2c3e50;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-container {
    grid-template-columns: 1fr;
  }
  .vision-section {
    padding: 60px 15px;
  }
  .vision-section h2 {
    font-size: 30px;
  }
}

/* ===== Vision & Objectives 🌟 End ===== */

/* ===== Testimonials section Start ===== */

.teams .title::after {
  content: "Opinions";
}

.teams .carousel .card {
  background: #222;
  border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  transition: all 0.3s ease;
}
.teams .carousel .card:hover {
  background: crimson;
}
.teams .carousel .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.teams .carousel .card:hover .box {
  transform: scale(1.05);
}
.teams .carousel .card .text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}
.teams .carousel .card img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid crimson;
  transition: all 0.3s ease;
}
.teams .carousel .card:hover img {
  border-color: #fff;
}
/* Font Awesome quote icon styling */
.teams .quote-icon {
  display: block;
  text-align: center;
  font-size: 40px;
  color: #f0592a;
  margin-bottom: 10px;
}

/* Style only testimonial paragraph */
.teams .testimonial-text {
  color: #ddd;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
  margin-top: 10px;
}
/* 🔹 Responsive size for mobile screens */
/* For mobile screens */
@media (max-width: 768px) {
  .teams .carousel .card {
    width: 90% !important; /* একটু বড় রাখো */
    margin: 0 auto; /* কেন্দ্রস্থ করবে */
    padding: 25px 25px;
  }
  .teams .quote-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }
  .teams .testimonial-text {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

/* For very small phones */
@media (max-width: 480px) {
  .teams .max-width {
    width: 100%;
    padding: 60px 15px;
  }
  .teams .carousel .card {
    width: 95% !important; /* আরও সামান্য বড় */
    padding: 20px 20px;
  }
  .teams .quote-icon {
    font-size: 24px;
  }
  .teams .testimonial-text {
    font-size: 14px;
  }
}

/* ===== Testimonials section End ===== */

/* ===== Achievements & Success Stories Start ===== */

.achievements-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
  font-family: "Noto Sans Bengali", "SolaimanLipi", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #d35400;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.achievements-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  border-left: 5px solid #e67e22;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 2.5rem;
  color: #ff6f00;
  flex-shrink: 0;
}

.achievement-content h3 {
  margin: 0 0 10px;
  color: #e67e22;
  font-size: 1.4rem;
}

.achievement-content p {
  margin: 0;
  color: #444;
  line-height: 1.6;
  font-size: 1.1rem;
  text-align: justify;
}

/* Large screens: two-column layout */
@media (min-width: 768px) {
  .achievements-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
  .achievement-item {
    flex-direction: row;
    padding: 20px 15px;
  }
  .icon {
    font-size: 2rem;
  }
}
/* ===== Achievements & Success Stories End ===== */

/* ===== Contact Section Start ===== */

@media (max-width: 500px) {
  #contactUs {
    margin-top: 40px;
  }
}

/* ===== Contact Section End ===== */

/* ===== যোগাযোগের ঠিকানা Section Start ===== */
/* যোগাযোগের ঠিকানা Section Styles */
.address-section {
  background-color: #111;
  color: #f1f1f1;
  padding: 80px 20px;
  font-family: "Noto Sans Bengali", "SolaimanLipi", Arial, sans-serif;
}

.address-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.address-section h2 {
  font-size: 32px;
  color: #f5a623;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

.address-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.address-box {
  background: #1a1a1a;
  padding: 30px 25px;
  border-radius: 12px;
  flex: 1 1 400px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.address-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(245, 166, 35, 0.3);
}

.address-box h3 {
  color: #f5a623;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.address-box p {
  font-size: 17px;
  line-height: 28px;
  color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .address-section h2 {
    font-size: 26px;
  }

  .address-box {
    flex: 1 1 100%;
  }
}
/* ===== যোগাযোগের ঠিকানা Section End ===== */

/* ===== Form Contact Us Page Start ===== */
.contact-section {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 850px;
  background: linear-gradient(135deg, #ffffff 40%, #fff3ee);
  padding: 60px 40px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(240, 89, 42, 0.2);
  margin-top: 50px;
  margin-bottom: 90px;
  overflow: hidden;
  animation: floatEffect 4s ease-in-out infinite alternate;
  transition: all 0.4s ease;
}

@keyframes floatEffect {
  0% {
    transform: translate(-50%, 0px);
  }
  100% {
    transform: translate(-50%, -8px);
  }
}

/* Gradient Border Glow */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(135deg, #f0592a, #ff9f43, #ff6b6b);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Heading */
.form-wrapper h2 {
  text-align: center;
  color: #f0592a;
  margin-bottom: 35px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(240, 89, 42, 0.3);
  position: relative;
}

.form-wrapper h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #f0592a, #ff7b54);
  margin: 12px auto 0;
  border-radius: 5px;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1.4rem;
  background: #fdfdfd;
  color: #333;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Placeholder Color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #f0592a;
  opacity: 0.9;
  font-weight: 500;
}

/* Focus Effect */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f0592a;
  box-shadow: 0 0 15px rgba(240, 89, 42, 0.4);
  background: #fff;
  outline: none;
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit Button */
.contact-form button {
  padding: 16px;
  background: linear-gradient(45deg, #f0592a, #ff8a65, #ff6b6b);
  color: white;
  border: none;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(240, 89, 42, 0.4);
}

.contact-form button:hover {
  transform: scale(1.07);
  background: linear-gradient(45deg, #ff7a47, #f0592a);
  box-shadow: 0 8px 25px rgba(240, 89, 42, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 25px;
    margin: 30px auto;
  }

  .form-wrapper h2 {
    font-size: 2.3rem;
  }

  .contact-form button {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 20px;
  }

  .form-wrapper h2 {
    font-size: 2rem;
  }
}

/* ===== Form Contact Us Page End ===== */

/* ===== Footer section Start ===== */

.custom-footer {
  background-color: #111;
  color: #ccc;
  font-family: Arial, sans-serif;
  padding: 80px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* Default Footer Columns */
.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

/* Slightly wider Contact Info column */
.footer-col.contact-info {
  flex: 1.2 1 calc(30% - 30px); /* a bit wider */
}

.footer-col.first-col {
  padding-left: 60px;
}
.footer-col.third-col {
  margin-left: -100px !important;
}

/* Other columns */
.footer-col:not(.contact-info) {
  flex: 1 1 calc(23% - 30px);
}

/* Footer Logo */
.logo-img {
  height: 170px;
  width: auto;
  padding-bottom: 40px;
}

/* Headings */
.footer-col h4 {
  color: #f5a623;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 16px;
  padding: 3px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f5a623;
}

/* Arrows before list items */
.footer-col ul li::before {
  content: "> ";
  color: #f5a623;
  margin-right: 5px;
}

/* Disabled links */
.disabled-link {
  pointer-events: none;
  cursor: default;
  color: inherit;
  text-decoration: none;
}

/* Remove arrows from contact info */
.footer-col ul.no-arrow li::before {
  content: none;
}

/* Contact Icons */
.footer-col ul.no-arrow li i {
  margin-right: 8px;
  color: #f5a623;
}

/* Contact item divider lines */
.footer-col ul.no-arrow li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-col ul.no-arrow li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Social Icons */
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #007bff;
  margin-right: 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.footer-socials a:hover {
  background: #f5a623;
  color: white;
}

/* Divider */
.custom-footer hr {
  border: none;
  height: 1px;
  background-color: #fff;
  margin: 30px 0;
}
.contact-info li h5 {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  padding-bottom: 10px;
}
/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
}

.footer-bottom a {
  color: #f5a623;
  text-decoration: none;
}

.footer-bottom .highlighted {
  color: #f5a623;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-col,
  .footer-col.contact-info {
    flex: 1 1 calc(50% - 30px); /* 2 columns */
  }
  .footer-col.first-col {
    padding-left: 0px;
  }
  .footer-col.third-col {
    margin-left: -0px !important;
  }
}

@media (max-width: 576px) {
  .footer-col,
  .footer-col.contact-info {
    flex: 1 1 100%; /* 1 column */
  }

  .footer-socials a {
    margin-bottom: 10px;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  footer .hr {
    display: none;
  }

  .footer-bottom {
    margin-top: 50px;
  }
}

/* ===== Footer section End ===== */

/* ===== WhatsApp Floating Button Start */

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25px;
  right: 85px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float img {
  width: 27px;
  margin-top: 12px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

/* ===== WhatsApp Floating Button End */

/* ===== Stylyling Title for Common (Testimonials & contactPage) Start =====  */

section .title {
  position: relative;
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 60px;
  padding: 20px;
  font-family: "Lobster", sans-serif;
}
section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 240px;
  height: 3px;
  background: #111;
  transform: translateX(-50%);
}
section .title::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  font-size: 22px;
  color: crimson;
  padding: 5px;
  background: #fff;
  transform: translateX(-50%);
}
@media (max-width: 460px) {
  section .title::before {
    height: 2px;
  }
  section .title::after {
    font-size: 16px;
  }
}

/* ===== Stylyling Title for Common (Testimonials & contactPage) End =====  */
