* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* background: #f4f7fb; */
}


/* ===========================
   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;
  }
}


/*=========================================
        SERVICE BANNER
=========================================*/

.service-banner {
  position: relative;
  height: 430px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.service-banner-content h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

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

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

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

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

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

.service-breadcrumb .active {
  color: #ff6d2c;
}

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

/* Tablet */

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

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

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

/* Mobile */

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

  .service-banner-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .service-breadcrumb {
    gap: 10px;
  }

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

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

/* Small Mobile */

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

  .service-banner-content h1 {
    font-size: 30px;
  }

  .service-breadcrumb li {
    font-size: 14px;
  }

  .service-breadcrumb {
    gap: 8px;
  }
}

/*=========================================
        BLOG SECTION
=========================================*/

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

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

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

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

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

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

.blog-heading h2 {
  color: #2d43a6;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.blog-card {
  background: #fff;
  border: 1px solid #f1d6ca;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.35s;
}

.blog-card.active,
.blog-card:hover {
  border-color: #ff6d2c;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.blog-image {
  position: relative;
  overflow: hidden;
  padding: 14px;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.45s;
}

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

.blog-date {
  position: absolute;
  top: 20px;
  right: 25px;
  background: #ff6d2c;
  color: #fff;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

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

.blog-content {
  padding: 0 20px 25px;
}

.blog-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 20px;
}

.blog-meta span {
  font-size: 13px;
  color: #2d43a6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: #ff6d2c;
}

.blog-content h3 {
  margin: 0 0 15px;
  line-height: 1.35;
}

.blog-content h3 a {
  text-decoration: none;
  color: #2d43a6;
  font-size: 19px;
  font-weight: 700;
  transition: 0.3s;
}

.blog-content h3 a:hover {
  color: #ff6d2c;
}

.blog-content p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6d2c;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

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

.blog-btn:hover {
  background: #2d43a6;
}

.blog-btn:hover i {
  transform: translateX(4px) rotate(45deg);
}

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

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

  .blog-container {
    width: 94%;
  }

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

  .blog-heading h2 {
    font-size: 32px;
    line-height: 1.3;
  }

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

  .blog-tag i {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

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

  .blog-image img {
    height: 220px;
  }

  .blog-content h3 a {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 14px;
  }
}

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

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

  .blog-container {
    width: 95%;
  }

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

  .blog-heading h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .blog-tag {
    font-size: 14px;
    padding: 7px 15px;
  }

  .blog-tag i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

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

  .blog-card {
    border-radius: 20px;
  }

  .blog-image {
    padding: 12px;
  }

  .blog-image img {
    height: 230px;
    border-radius: 15px;
  }

  .blog-date {
    top: 18px;
    right: 18px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .blog-content {
    padding: 0 18px 20px;
  }

  .blog-meta {
    gap: 12px;
    margin-bottom: 15px;
  }

  .blog-meta span {
    font-size: 12px;
  }

  .blog-content h3 a {
    font-size: 18px;
    line-height: 1.4;
  }

  .blog-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .blog-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }
}

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

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

  .blog-container {
    width: 94%;
  }

  .blog-heading h2 {
    font-size: 24px;
  }

  .blog-tag {
    font-size: 13px;
    padding: 6px 14px;
  }

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

  .blog-image img {
    height: 200px;
  }

  .blog-content {
    padding: 0 15px 18px;
  }

  .blog-content h3 a {
    font-size: 16px;
  }

  .blog-content p {
    font-size: 13px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }

  .blog-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px;
  }
}

/*=========================================
        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;
  }
}
