/* ===========================
   TOP BAR
=========================== */
.topbar {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #17379a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 55px;
  overflow: hidden;
}

.topbar-left {
  position: relative;
  background: #ff6b23;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  padding: 14px 55px 14px 40px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 45px) 100%, 0 100%);
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-left span {
  font-size: 15px;
  font-weight: 500;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease;
}

.topbar-social a:hover {
  background: #fff;
  color: #ff6b23;
  border-color: #fff;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 10px 40px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  white-space: nowrap;
  min-width: 0;
}

.topbar-item span,
.topbar-item a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.topbar-item i {
  font-size: 15px;
  flex-shrink: 0;
}

/* ===========================
   MAIN HEADER / NAVBAR
=========================== */

.header {
  width: 100%;
  padding: 0;
  background: #fff;
}

.nav-container {
  width: 100%;
  max-width: 1410px;
  margin: auto;
  background: #fff;
  border-radius: 0px 25px 25px 0px;
  display: flex;
  justify-content: flex-start; /* instead of space-between */

  gap: 50px;
  align-items: center;
  padding: 15px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 210px;
  display: block;
}

/* fallback text logo (used if no image) */
.logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 700;
  color: #17379a;
}

.logo-text i {
  color: #ff6b23;
  font-size: 32px;
}

.logo-text .accent {
  color: #ff6b23;
}

.navbar {
  position: relative; /* anchors .navbar-close on mobile */
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  position: relative;
}

.navbar a {
  color: #17379a;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar a:hover,
.navbar li.active > a {
  color: #ff6b23;
}

.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  z-index: 999;
  margin: 0;
}

.submenu li {
  width: 100%;
  padding: 0 18px;
}

.submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  color: #17379a;
  line-height: 1.4;
  border-radius: 8px;
}

.submenu li a:hover {
  background: #f5f7ff;
  color: #ff6b23;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.search-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #dfe3ef;
  border-radius: 50%;
  font-size: 18px;
  color: #17379a;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn:hover {
  background: #17379a;
  color: #fff;
  border-color: #17379a;
}

.search-wrap {
  position: relative;
}

.search-box {
  position: absolute;
  top: 58px;
  right: 0;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 6px 6px 6px 20px;
  width: 300px;
  max-width: 85vw;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s ease;
  z-index: 1000;
}

.search-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #17379a;
  background: transparent;
}

.search-box input::placeholder {
  color: #9aa5c5;
}

.search-box button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff6b23;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

.talk-btn {
  background: #ff6b23;
  color: #fff !important;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: 0.3s ease;
}

.talk-btn:hover {
  background: #17379a;
}

.icon-toggle {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #17379a;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  border: none;
}

.mobile-talk {
  display: none;
}

.menu-toggle {
  display: none;
}

/* ---------- Mobile panel close (X) button ---------- */
.navbar-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #17379a;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10000;
}

.navbar-close:hover {
  background: #ff6b23;
}

/* ---------- 1200px: tighten spacing before things break ---------- */
@media (max-width: 1200px) {
  .nav-container {
    gap: 28px;
    padding: 15px 25px;
  }

  .navbar ul {
    gap: 20px;
  }

  .navbar a {
    font-size: 16px;
  }

  .nav-right {
    gap: 14px;
  }

  .talk-btn {
    padding: 13px 22px;
    font-size: 14px;
  }
}

/* ---------- 991px: collapse main nav into slide-in panel ---------- */
@media (max-width: 991px) {
  .nav-container {
    justify-content: space-between;
    padding: 15px 20px;
    gap: 0;
    position: relative;
  }

  .logo img {
    width: 170px;
  }

  .navbar {
    position: fixed;

    top: 0;

    right: -100%;

    width: 300px;

    max-width: 85%;

    height: 100vh;

    background: #fff;

    padding: 90px 25px 30px;

    transition: 0.35s;

    z-index: 9999;

    overflow-y: auto;

    display: block;
  }

  .navbar.show {
    right: 0;
  }

  .navbar-close {
    display: flex;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .navbar ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .navbar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
  }

  .submenu {
    position: static;

    display: none !important;

    opacity: 1;

    visibility: visible;

    transform: none;

    box-shadow: none;

    background: #f8f8f8;

    padding: 0;

    min-width: 100%;
  }

  .dropdown.menu-open > .submenu {
    display: block !important;
  }

  .dropdown.menu-open > a i.fa-chevron-down {
    transform: rotate(180deg);
  }

  .navbar ul li a i {
    transition: 0.25s ease;
  }

  .submenu li {
    border: none;
  }

  .submenu li a {
    padding: 12px 20px;
    font-size: 14px;
  }

  .nav-right .talk-btn {
    display: none;
  }

  .search-wrap {
    display: block;
  }

  .search-box {
    right: -40px;
  }

  .menu-toggle {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    background: #17379a;

    color: #fff;

    border-radius: 50%;

    cursor: pointer;
  }

  .mobile-talk {
    display: block;
    margin-top: 20px;
  }

  .mobile-talk .talk-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- 768px: mobile landscape ---------- */
@media (max-width: 768px) {
  /* topbar becomes two stacked rows */
  .topbar {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    overflow: visible; /* don't clip wrapped items */
  }

  .topbar-left {
    clip-path: none;
    /* justify-content: center; */
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .topbar-right {
    /* justify-content: center; */
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 20px;
    padding: 10px 16px;
    width: 100%;
  }

  /* let the clock/time item wrap instead of forcing nowrap off-screen */
  .topbar-item {
    white-space: normal;
    text-align: center;
  }

  .topbar-item span,
  .topbar-item a {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .nav-container {
    padding: 12px 16px;
    border-radius: 0;
  }

  .logo img {
    width: 140px;
  }

  .nav-right {
    gap: 10px;
  }

  .search-btn,
  .icon-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .search-box {
    right: -10px;
    width: 260px;
  }
}

/* ---------- 480px: small mobile ---------- */
@media (max-width: 480px) {
  .topbar-left span {
    font-size: 13px;
  }

  .topbar-item {
    font-size: 12px;
  }

  .logo img {
    width: 120px;
  }

  .navbar {
    width: 85vw;
    padding: 80px 18px 25px;
  }

  .search-box {
    width: 250px;
    right: -45px;
    padding: 5px 5px 5px 16px;
  }

  .search-box input {
    font-size: 14px;
  }
}

/*=========================================
        ABOUT BANNER
=========================================*/

.about-banner {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container2 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Background */

.about-banner-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: -1;
}

/* Content */

.about-banner-content {
  text-align: center;
}

.about-banner-content h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb li a:hover {
  color: #ff6d2c;
}

.breadcrumb i {
  color: #fff;
  font-size: 18px;
}

.breadcrumb .active {
  color: #ff6d2c;
}

/* =====================
Responsive
======================== */

/* Tablet */

@media (max-width: 991px) {
  .about-banner {
    height: 350px;
  }

  .about-banner-content h1 {
    font-size: 46px;
  }

  .breadcrumb li {
    font-size: 18px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .about-banner {
    height: 300px;
  }

  .about-banner-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .breadcrumb {
    gap: 10px;
  }

  .breadcrumb li {
    font-size: 16px;
  }

  .breadcrumb i {
    font-size: 14px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .about-banner {
    height: 260px;
  }

  .about-banner-content h1 {
    font-size: 26px;
  }

  .breadcrumb li {
    font-size: 12px;
  }
}

/*=====================================
        ABOUT SECTION
======================================*/

.about-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about-container2 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/*=====================================
        LEFT IMAGE AREA
======================================*/

.about-images {
  position: relative;
  width: 48%;
  min-height: 760px;
}

/* Common Image */

.about-img,
.small-about-img {
  position: absolute;
  overflow: hidden;
  border-radius: 180px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.about-img img,
.small-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* White Shine Effect */

.about-img::before,
.small-about-img::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 60%;
  height: 250%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(35deg);
  transition: 0.7s ease;
  z-index: 2;
}

/* Hover */

.about-img:hover::before,
.small-about-img:hover::before {
  top: 120%;
  left: 120%;
}

.about-img:hover img,
.small-about-img:hover img {
  transform: scale(1.08);
}

/* Top Image */

.about-img-one {
  width: 300px;
  height: 400px;
  right: 300px;
  top: -31px;
  border-radius: 160px 160px 0px 160px;
}

/* Bottom Image */

.about-img-two {
  width: 300px;
  height: 420px;
  right: -16px;
  bottom: 40px;
  border-radius: 0px 160px 160px 160px;
}

/*=====================================
        EXPERIENCE BADGE
======================================*/

.experience-badge {
  position: absolute;
  left: 366px;
  top: 70px;
  width: 166px;
  height: 160px;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 5px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  z-index: 10;
  animation: slideLeftRight 3s ease-in-out infinite;
}

/* First Inner Circle */
.experience-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid #f5f7ff;
  border-radius: 50%;
}

/* Second Inner Circle */
.experience-badge::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 3px solid #f5f7ff;
  border-radius: 50%;
}

/*==============================
    Animated Background Circle
==============================*/

.experience-badge .circle-bg {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(255, 109, 44, 0.25);
  animation: ripple 3s linear infinite;
  z-index: -1;
}

.experience-badge .circle-bg:nth-child(1) {
  animation-delay: 0s;
}

.experience-badge .circle-bg:nth-child(2) {
  animation-delay: 1s;
}

.experience-badge .circle-bg:nth-child(3) {
  animation-delay: 2s;
}

/* Ripple Animation */

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.experience-badge h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.experience-badge span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

/*=====================================
        DECORATIVE SHAPE
======================================*/

.about-shape {
  position: absolute;
  left: 80px;
  top: 120px;
  width: 420px;
  height: 420px;
  /* background: url("assests/home2_image/about3.jpg") center/contain no-repeat; */
  opacity: 0.25;
  z-index: -1;
  animation: rotateShape 20s linear infinite;
}

/*=====================================
        RIGHT CONTENT
======================================*/

.about-content {
  width: 52%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff1ea;
  color: #ff6d2c;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.section-tag i {
  font-size: 22px;
}

.about-content h2 {
  font-size: 34px;
  line-height: 1.3;
  color: #2d46ad;
  font-weight: 800;
  margin-bottom: 23px;
}

.about-content h2 span {
  display: block;
}

.about-text {
  font-size: 20px;
  line-height: 1.5;
  color: #6c7898;
  margin-bottom: 35px;
}

/*=====================================
        FEATURE BOX
======================================*/

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
}

.about-feature .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature .feature-icon i {
  font-size: 24px;
}

.feature-content h4 {
  font-size: 28px;
  color: #2d46ad;
  margin-bottom: 13px;
  font-weight: 700;
}

.feature-content p {
  color: #6b7896;
  font-size: 16px;
  line-height: 1.8;
}

.about-content hr {
  border: none;
  height: 2px;
  background: #ececec;
  margin: 40px 0;
}

/*=====================================
        BOTTOM AREA
======================================*/

.about-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.small-about-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.small-about-img img {
  width: 150%;
  height: 100%;
  object-fit: cover;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  margin-left: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #2d46ad;
  font-size: 18px;
  font-weight: 500;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-list i {
  color: #ff6d2c;
  font-size: 24px;
}

/*=====================================
        BUTTON
======================================*/

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff6d2c;
  color: #fff;
  padding: 20px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: 0.35s;
}

.about-btn:hover {
  background: #2d46ad;
  transform: translateY(-4px);
}

.about-btn i {
  transition: 0.35s;
}

.about-btn:hover i {
  transform: rotate(45deg);
}

/*=====================================
        ANIMATION
======================================*/

@keyframes slideLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*=========================================
     RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-images,
  .about-content {
    width: 100%;
  }

  .about-images {
    min-height: 620px;
    margin-bottom: 30px;
  }

  .about-img-one {
    left: 20px;
  }

  .about-img-two {
    right: 20px;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }

  .about-content {
    text-align: center;
  }

  .section-tag {
    margin: auto auto 20px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-feature {
    justify-content: center;
    text-align: left;
  }

  .about-bottom {
    flex-direction: column;
    text-align: left;
  }

  .about-btn {
    margin: auto;
  }
}
/*=========================================
            MOBILE
=========================================*/

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about2-container {
    padding: 0 20px !important;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 0px;
  }

  /*==========================
        IMAGES
==========================*/

  .about-images {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 650px;
    margin: 0 auto;
  }

  .about-img {
    position: absolute;
    width: 230px;
    height: 310px;
  }

  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Top Image */

  .about-img-one {
    top: -40px;
    left: 0;
    border-radius: 130px 130px 0 130px;
  }

  /* Bottom Image */

  .about-img-two {
    bottom: 95px;
    border-radius: 0 130px 130px 130px;
  }

  /*==========================
    EXPERIENCE BADGE
==========================*/

  .experience-badge {
    position: absolute;
    top: 30%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 20;
    animation: slideLeftRight 3s ease-in-out infinite;
  }

  .experience-badge h2 {
    font-size: 26px;
  }

  .experience-badge span {
    font-size: 11px;
    line-height: 1.3;
  }

  .experience-badge::before {
    inset: 6px;
  }

  .experience-badge::after {
    inset: 12px;
  }

  /* Hide Shape */

  .about-shape {
    display: none;
  }

  /*==========================
        CONTENT
==========================*/

  .about-content {
    width: 100%;
    text-align: start;
  }

  .section-tag {
    margin: 0 auto 20px;
  }

  .about-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.8;
  }

  /*==========================
      FEATURE BOX
==========================*/

  .about-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-feature .feature-icon {
    width: 70px;
    height: 70px;
  }

  .about-feature .feature-icon i {
    font-size: 28px;
  }

  .feature-content h4 {
    font-size: 22px;
  }

  .feature-content p {
    font-size: 16px;
  }

  /*==========================
      BOTTOM AREA
==========================*/

  .about-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .small-about-img {
    margin-top: -60px;
    width: 90px;
    height: 90px;
  }

  .about-list li {
    margin-left: 0;
    justify-content: center;
    font-size: 16px;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }
}
/*=========================================
            SMALL MOBILE
=========================================*/

@media (max-width: 480px) {
  .about-images {
    max-width: 300px;
    height: 560px;
  }

  .about-img {
    width: 190px;
    height: 260px;
  }

  .about-img-one {
    left: 0;
  }

  .about-img-two {
    right: 0;
  }

  .experience-badge {
    width: 110px;
    height: 110px;
  }

  .experience-badge h2 {
    font-size: 18px;
  }

  .experience-badge span {
    font-size: 9px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .section-tag {
    font-size: 15px;
  }

  .feature-content h4 {
    font-size: 20px;
  }

  .feature-content p {
    font-size: 15px;
  }

  .about-list li {
    margin-top: 44px;
    font-size: 15px;
  }

  .about-btn {
    font-size: 16px;
    padding: 15px;
  }
}

/*=====================================
        COUNTER SECTION
======================================*/

.counter-section {
  border-radius: 0px 30px 30px 0px;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  position: relative;
  padding: 30px 0;
  background: #ff6d2c;
  overflow: hidden;
  z-index: 1;
}

.counter-container {
  width: 80%;
  /* max-width: 1900px; */
  margin: 0 auto;
  /* padding: 0 60px; */
}

/* Wrapper */

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Counter Item */

.counter-item {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

/* Icon */

.counter-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  transition: 0.4s;
}

.counter-icon i {
  font-size: 30px;
  color: #ff6d2c;
  transition: 0.4s;
}

/* Hover */

.counter-item:hover .counter-icon {
  transform: rotate(360deg);
}

.counter-item:hover .counter-icon i {
  transform: scale(1.15);
}

/* Content */

.counter-content h2 {
  display: flex;
  align-items: flex-start;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1;
}

.counter-content h2 .counter {
  font-size: 36px;
  font-weight: 800;
}

.counter-content h2 sup {
  font-size: 34px;
  font-weight: 700;
  margin-left: 6px;
  top: 10px;
  position: relative;
}

.counter-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

/* Decorative Circles */

/* .counter-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
  top: -280px;
  right: -120px;
} */

/* .counter-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.05);
  bottom: -220px;
  left: -120px;
} */

/* Floating Animation */

.counter-item {
  animation: counterFloat 4s ease-in-out infinite;
}

.counter-item:nth-child(2) {
  animation-delay: 0.3s;
}

.counter-item:nth-child(3) {
  animation-delay: 0.6s;
}

.counter-item:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes counterFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/*=====================================
        COUNTER RESPONSIVE
======================================*/

/* Tablet */

@media (max-width: 991px) {
  .counter-section {
    width: 100%;
    padding: 50px 20px;
    border-radius: 20px;
  }

  .counter-container {
    width: 100%;
  }

  .counter-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .counter-item {
    justify-content: flex-start;
  }

  .counter-icon {
    width: 65px;
    height: 65px;
  }

  .counter-icon i {
    font-size: 28px;
  }

  .counter-content h2 .counter {
    font-size: 30px;
  }

  .counter-content h2 sup {
    font-size: 20px;
  }

  .counter-content p {
    font-size: 16px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .counter-section {
    width: 100%;
    padding: 40px 20px;
    border-radius: 20px;
  }

  .counter-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .counter-item {
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
  }

  .counter-icon i {
    font-size: 24px;
  }

  .counter-content h2 {
    margin-bottom: 6px;
  }

  .counter-content h2 .counter {
    font-size: 28px;
  }

  .counter-content h2 sup {
    font-size: 18px;
    top: 5px;
  }

  .counter-content p {
    font-size: 15px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .counter-section {
    width: 90%;
    padding: 35px 15px;
    border-radius: 0px 20px 20px 0px;
  }

  .counter-item {
    gap: 15px;
  }

  .counter-icon {
    width: 55px;
    height: 55px;
  }

  .counter-icon i {
    font-size: 22px;
  }

  .counter-content h2 .counter {
    font-size: 26px;
  }

  .counter-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*=========================================
        TEAM SECTION
=========================================*/
.team-section {
  padding: 20px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.team-section .team-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        HEADING
=========================================*/

.team-heading {
  text-align: center;
  margin-bottom: 40px;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff2eb;
  color: #ff6d2c;
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 25px;
}

.team-tag i {
  width: 40px;
  height: 40px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.team-heading h2 {
  font-size: 30px !important;
  line-height: 1.15;
  font-weight: 700;
  color: #2d43a6;
  margin: 0;
}

/*=========================================
        GRID
=========================================*/

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/*=========================================
        CARD
=========================================*/

.team-card {
  position: relative;
  transition: 0.4s ease;
}

.team-card:hover {
  transform: translateY(-12px);
}

/*=========================================
        IMAGE
=========================================*/

.team-image {
  position: relative;
  border-radius: 25px 25px 100px 25px;
  overflow: hidden;
}

.team-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

.team-card:hover .team-image::before {
  opacity: 1;
}

.team-image img {
  width: 100%;
  height: 318px !important;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

/*=========================================
        CONTENT
=========================================*/

.team-content {
  padding-top: 14px;
}

.team-content h3 {
  margin: 0;
  font-size: 22px !important;
  font-weight: 700;
  color: #2d43a6;
  transition: 0.3s;
}

.team-card:hover h3 {
  color: #ff6d2c;
}

.team-content p {
  margin-top: 6px;
  color: #ff6d2c;
  font-size: 16px;
  font-weight: 500;
}

/*=========================================
        TEAM SOCIAL
=========================================*/

.team-social {
  position: absolute;
  right: -10px;
  bottom: 62px;
  z-index: 10;
}

.team-share {
  width: 60px;
  height: 60px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(255, 109, 44, 0.35);
}

.team-share:hover {
  background: #2d43a6;
  transform: rotate(45deg);
}

.team-social-links {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.35s;
}

.team-social.active .team-social-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.team-social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #ff6d2c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.team-social-links a:hover {
  background: #ff6d2c;
  color: #fff;
  transform: translateY(-4px);
}

/*=========================================
        991px
=========================================*/
@media (max-width: 991px) {
  .team-section {
    padding: 70px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-heading {
    margin-bottom: 35px;
  }

  .team-heading h2 {
    font-size: 36px !important;
    line-height: 1.3;
  }

  .team-tag {
    font-size: 20px;
    padding: 8px 18px;
  }

  .team-tag i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .team-image {
    border-radius: 20px 20px 80px 20px;
  }

  .team-image img {
    height: 320px !important;
  }

  .team-social {
    right: -8px;
    bottom: 50px;
  }

  .team-share {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .team-social-links a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/*=========================================
        767px
=========================================*/
@media (max-width: 767px) {
  .team-section {
    padding: 60px 0;
  }

  .team-container {
    width: 92%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .team-heading {
    margin-bottom: 30px;
  }

  .team-heading h2 {
    font-size: 30px !important;
    line-height: 1.35;
  }

  .team-tag {
    font-size: 18px;
    padding: 8px 16px;
  }

  .team-tag i {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .team-image {
    border-radius: 22px 22px 90px 22px;
  }

  .team-image img {
    height: 420px !important;
  }

  .team-content h3 {
    font-size: 24px !important;
  }

  .team-content p {
    font-size: 17px;
  }

  .team-social {
    right: -6px;
    bottom: 55px;
  }

  .team-share {
    width: 56px;
    height: 56px;
  }

  .team-social-links {
    bottom: 65px;
    gap: 10px;
  }
}

/*=========================================
        575px
=========================================*/
@media (max-width: 575px) {
  .team-section {
    padding: 20px 0;
  }

  .team-container {
    width: 95%;
  }

  .team-heading h2 {
    font-size: 16px !important;
  }

  .team-tag {
    font-size: 14px;
    padding: 8px 15px;
  }

  .team-tag i {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .team-grid {
    gap: 30px;
  }

  .team-image {
    border-radius: 20px 20px 80px 20px;
  }

  .team-image img {
    height: 340px !important;
  }

  .team-content {
    padding-top: 12px;
  }

  .team-content h3 {
    font-size: 21px !important;
  }

  .team-content p {
    font-size: 15px;
  }

  .team-social {
    right: -5px;
    bottom: 45px;
  }

  .team-share {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .team-social-links {
    bottom: 60px;
    gap: 8px;
  }

  .team-social-links a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

/*=========================================
        TESTIMONIAL SECTION
=========================================*/

.testimonial-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: #184a99;
  z-index: 1;
}

/* Background Overlay */

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("assets/home2_image/testimonial_bg.webp") center center/cover
    no-repeat; */
  opacity: 0.08;
  z-index: -2;
}

/* Grid Lines */

.testimonial-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 280px 280px;
  z-index: -1;
}

/*=========================================
        CONTAINER
=========================================*/

.testimonial-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        HEADING
=========================================*/

.testimonial-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #fff;
  border-radius: 50px;
  color: #ff6d2c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.testimonial-tag i {
  width: 38px;
  height: 38px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-heading h2 {
  color: #fff;
  font-size: 58px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

/*=========================================
        SLIDER
=========================================*/

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: 0.5s ease;
}

/*=========================================
        CARD
=========================================*/
.testimonial-card {
  flex: 0 0 calc(25% - 23px);
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  overflow: visible;
  transition: 0.4s ease;
  z-index: 2;
}

/* Orange Bottom Design */

.testimonial-card::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 26px;
  right: 15px;
  bottom: -12px;
  background: #ff6d2c;
  transform: skewX(-28deg);
  border-radius: 0 0 18px 18px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: -1;
}

/* Small Right Piece */

.testimonial-card::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 26px;
  right: 0;
  bottom: -6px;
  background: #ff6d2c;
  border-radius: 0 0 22px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card:hover::after,
.testimonial-card:hover::before {
  opacity: 1;
  visibility: visible;
}
/*=========================================
        QUOTE
=========================================*/

.quote-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 54px;
  height: 54px;
  background: #ff6d2c;
  border-radius: 0 30px 0 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
}

/*=========================================
        RATING
=========================================*/

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.rating i {
  color: #ffa800;

  font-size: 18px;
}

/*=========================================
        CONTENT
=========================================*/

.testimonial-card p {
  color: #6b7280;
  line-height: 2;
  font-size: 13px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

/*=========================================
        CLIENT
=========================================*/

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  color: #2d43a6;
  font-size: 20px;
}

.client-info span {
  color: #ff6d2c;
  font-size: 15px;
}

/*=========================================
        DOTS
=========================================*/

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots span.active {
  width: 30px;
  border-radius: 20px;
  background: #ff6d2c;
}
/*=========================================
        RESPONSIVE
=========================================*/

/* Large Laptop */

@media (max-width: 1200px) {
  .testimonial-heading h2 {
    font-size: 48px;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    padding: 25px;
  }

  .client-info h4 {
    font-size: 18px;
  }

  .client-info span {
    font-size: 14px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-container {
    width: 94%;
  }

  .testimonial-heading {
    margin-bottom: 45px;
  }

  .testimonial-heading h2 {
    font-size: 38px;
    line-height: 1.3;
  }

  .testimonial-tag {
    font-size: 15px;
    padding: 8px 18px;
  }

  .testimonial-tag i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
    padding: 22px;
  }

  .quote-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .client-info img {
    width: 55px;
    height: 55px;
  }

  .client-info h4 {
    font-size: 18px;
  }

  .client-info span {
    font-size: 14px;
  }
}

/*==========================
 Mobile (767px)
==========================*/

@media (max-width: 767px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-container {
    width: 90%;
    margin: auto;
  }

  .testimonial-heading {
    margin-bottom: 30px;
  }

  .testimonial-heading h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .testimonial-tag {
    padding: 6px 15px;
    font-size: 13px;
  }

  .testimonial-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .testimonial-slider {
    overflow: hidden;
  }

  .testimonial-track {
    gap: 15px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 2px);
    padding: 18px;
    border-radius: 20px;
  }

  .quote-icon {
    width: 42px;
    height: 42px;
    font-size: 15px;
    border-radius: 0 20px 0 20px;
  }

  .rating {
    margin-bottom: 12px;
  }

  .rating i {
    font-size: 14px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  .client-info {
    gap: 10px;
  }

  .client-info img {
    width: 46px;
    height: 46px;
  }

  .client-info h4 {
    font-size: 18px;
  }

  .client-info span {
    font-size: 13px;
  }

  .testimonial-dots {
    margin-top: 28px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-heading h2 {
    font-size: 25px;
  }

  .testimonial-tag {
    font-size: 13px;
    padding: 7px 15px;
  }

  .testimonial-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .testimonial-card {
    padding: 18px;
    border-radius: 20px;
  }

  .quote-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .testimonial-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .client-info img {
    width: 45px;
    height: 45px;
  }

  .client-info h4 {
    font-size: 16px;
  }

  .client-info span {
    font-size: 12px;
  }

  .testimonial-dots span {
    width: 10px;
    height: 10px;
  }

  .testimonial-dots span.active {
    width: 24px;
  }
}

/*=========================================
        WHY CHOOSE US SECTION
=========================================*/

.why-section {
  padding: 40px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/*=========================================
        LEFT CONTENT
=========================================*/

.why-content {
  width: 55%;
}

.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #fff3ec;
  border-radius: 50px;
  color: #ff6d2c;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.why-tag i {
  font-size: 15px;
  width: 30px;
  height: 30px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-content h2 {
  font-size: 28px;
  line-height: 1.15;
  color: #2d43a6;
  font-weight: 700;
  margin: 0 0 25px;
}

.why-description {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 45px;
}

/*=========================================
        FEATURE LIST
=========================================*/

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  transition: 0.35s;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ff6d2c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: 0.35s;
}

.why-item:hover .why-icon {
  background: #2d43a6;
  transform: rotate(15deg);
}

.why-text {
  flex: 1;
}

.why-text h3 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #2d43a6;
  font-weight: 600;
}

.why-text p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.8;
}

.why-number {
  position: absolute;
  right: 30px;
  bottom: 5px;
  font-size: 90px;
  font-weight: 700;
  color: #ff6d2c;
  opacity: 0.08;
  pointer-events: none;
}

/*=========================================
        RIGHT IMAGES
=========================================*/

.why-images {
  width: 45%;

  position: relative;

  min-height: 700px;
}

.why-image-main {
  height: 90%;
  width: 90%;
  margin-left: auto;
}

.why-image-main img {
  width: 100%;
  display: block;
  border-radius: 35px;
}

.why-image-small {
  position: absolute;
  right: -20px;
  bottom: 60px;
  width: 90%;
  transform: rotate(8deg);
}

.why-image-small img {
  width: 100%;

  display: block;

  border-radius: 35px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

  transition: 0.4s;
}

.why-image-small:hover img {
  transform: rotate(-8deg) scale(1.03);
}

/*=========================================
        WHY SECTION RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .why-section {
    padding: 70px 0;
  }

  .why-container {
    width: 92%;
    flex-direction: column;
    gap: 50px;
  }

  .why-content {
    width: 100%;
  }

  .why-content h2 {
    font-size: 36px;
  }

  .why-description {
    margin-bottom: 30px;
  }

  .why-item {
    padding: 18px;
  }

  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .why-text h3 {
    font-size: 20px;
  }

  .why-text p {
    font-size: 14px;
  }

  .why-number {
    font-size: 60px;
  }

  .why-images {
    width: 100%;
    min-height: 500px;
  }

  .why-image-main {
    width: 65%;
    margin: auto;
  }

  .why-image-small {
    width: 55%;
    right: 10%;
    bottom: 0;
  }
}

/*=========================
Mobile
=========================*/

@media (max-width: 767px) {
  .why-section {
    padding: 20px 0;
  }

  .why-container {
    width: 95%;
    gap: 25px;
  }

  .why-content h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .why-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-list {
    gap: 18px;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .why-text h3 {
    font-size: 20px;
  }

  .why-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .why-number {
    font-size: 45px;
    right: 15px;
    top: 10px;
    bottom: auto;
  }

  .why-images {
    width: 100%;
    min-height: 420px;
  }

  .why-image-main {
    width: 85%;
  }

  .why-image-small {
    width: 70%;
    right: 0;
    bottom: 20px;
  }
}

/*=========================
Small Mobile
=========================*/

@media (max-width: 480px) {
  .why-container {
    width: 94%;
  }

  .why-tag {
    font-size: 13px;
    padding: 7px 15px;
  }

  .why-tag i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .why-content h2 {
    font-size: 23px;
  }

  .why-description {
    font-size: 14px;
  }

  .why-item {
    padding: 18px;
    border-radius: 18px;
  }

  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .why-text h3 {
    font-size: 18px;
  }

  .why-text p {
    font-size: 13px;
  }

  .why-number {
    font-size: 36px;
    right: 12px;
  }

  .why-images {
    min-height: 320px;
  }

  .why-image-main {
    width: 100%;
  }

  .why-image-small {
    width: 80%;
    right: 8px;
    bottom: 10px;
  }
}

/*==========================================
        CLIENT VIDEO SECTION
==========================================*/

.client-video-section {
  position: relative;
  width: 100%;
  overflow: visible;
  background: #fff;
  /* padding: 0 0 130px; */
}

/*==============================
        OVERLAY
===============================*/

.video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 550px;
  background: rgba(0, 0, 0, 0.45);
}

.client-slider {
  position: relative;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  background: #fff;
  border-radius: 30px;
  /* padding: 10px 0; */
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/*=========================================
        FOOTER SECTION
=========================================*/

.footer-section {
  position: relative;
  background: #182553;
  padding: 30px 0 30px;
  overflow: hidden;
  z-index: 1;
}

/* Background Pattern */

.footer-pattern {
  position: absolute;
  inset: 0;
  /* background:url("assets/home2_image/footer_pattern.webp") center center/cover no-repeat; */
  opacity: 0.08;
  z-index: -1;
}

/*=========================================
        CONTAINER
=========================================*/

.footer-container {
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/*=========================================
        TOP
=========================================*/

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  max-width: 190px;
  margin-bottom: 25px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 35px;
}

.footer-about h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

/*=========================================
        SOCIAL
=========================================*/

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.35s;
}

.footer-social a:hover {
  background: #ff6d2c;
  border-color: #ff6d2c;
  transform: translateY(-5px);
}

/*=========================================
        WIDGET
=========================================*/

.footer-widget h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  position: relative;
}

.footer-widget h3::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #ff6d2c;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 15px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-widget ul li a:hover {
  color: #ff6d2c;
  padding-left: 8px;
}

/*=========================================
        NEWSLETTER
=========================================*/

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.newsletter-box {
  position: relative;
  margin-bottom: 18px;
}

.newsletter-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6d2c;
}

.newsletter-box input {
  width: 100%;
  height: 58px;
  border: none;
  outline: none;
  border-radius: 12px;
  padding: 0 18px 0 48px;
  font-size: 15px;
}

.newsletter-btn {
  border: none;
  background: #ff6d2c;
  color: #fff;
  padding: 15px 28px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.newsletter-btn:hover {
  background: #fff;
  color: #2d43a6;
}

/*=========================================
        CONTACT BAR
=========================================*/

.footer-contact-bar {
  margin: 30px auto 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-contact-logo img {
  max-width: 180px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start; /* Changed from center */
  gap: 18px;
  flex: 1;
}

.footer-contact-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background: #ff6d2c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 28px;

  margin-top: 3px; /* Slight top alignment */
}

.footer-contact-item h5 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 18px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

/*=========================================
        COPYRIGHT
=========================================*/

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 15px;
}

.footer-bottom span {
  color: #ff6d2c;
  font-weight: 700;
}

/*=========================================
        FOOTER RESPONSIVE
=========================================*/

/* Tablet */

@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 25px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-about {
    grid-column: 1/-1;
  }

  .footer-contact-bar {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-contact-logo {
    text-align: center;
  }

  .footer-contact-logo img {
    margin: auto;
  }

  .footer-contact-item {
    justify-content: center;
    align-items: center;
    text-align: left;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .footer-section {
    padding: 50px 0 20px;
  }

  .footer-container {
    width: 94%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-widget h3::after {
    left: 20%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-contact-bar {
    padding: 25px 18px;
    border-radius: 18px;
  }

  .footer-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    font-size: 22px;
    margin-top: 0;
  }

  .footer-contact-item h5 {
    font-size: 18px;
  }

  .footer-contact-item span {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .footer-container {
    width: 95%;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-widget h3 {
    text-align: left;
    font-size: 22px;
  }

  .footer-about p,
  .footer-newsletter p {
    text-align: left;
    font-size: 14px;
  }

  .newsletter-box input {
    height: 52px;
    font-size: 14px;
  }

  .newsletter-btn {
    padding: 14px;
    font-size: 14px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-contact-logo img {
    max-width: 150px;
  }

  .footer-contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    font-size: 20px;
  }

  .footer-contact-item h5 {
    font-size: 17px;
  }

  .footer-contact-item span {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.8;
  }
  .footer-widget ul li {
    text-align: left;
  }
}
