* {
  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;
  }
}



/*==========================================
        PORTFOLIO SECTION
==========================================*/

.portfolio-section {
  position: relative;
  padding: 40px 0 30px;
  overflow: hidden;
  background: #ffffff;
}

/* Background Image */

.portfolio-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 530px;
  z-index: 1;
}

.portfolio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1.9px;
}

/* Blue Overlay */

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 530px;
  /* background: rgba(13, 64, 143, 0.9); */
  z-index: 2;
}

/* Content */

.portfolio-container {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1320px;
  margin: auto;
}

/* .portfolio-section .portfolio-container{
    width:90%;
    max-width:1320px;
    margin:auto;
    position:relative;
    overflow:visible;
    z-index:5;
} */

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

.portfolio-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

/* Tag */

.portfolio-tag {
  margin-top: -26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 26px;
  font-weight: 600;
  color: #ff6d1f;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-tag span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff6d1f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

/* Heading */

.portfolio-heading h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #2d43a6;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
}

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

.portfolioSwiper {
  position: relative;
  overflow: visible;
  margin-top: 50px;
  z-index: 10;
}

.portfolioSwiper .swiper-track {
  overflow: hidden;
  width: 100%;
}

.portfolioSwiper .swiper-wrapper {
  display: flex;
  gap: 28px;
  transition: transform 0.55s ease;
}

.portfolioSwiper .swiper-slide {
  flex: 0 0 calc(25% - 21px);
}

/*==========================================
        NAVIGATION BUTTONS
==========================================*/

.portfolio-prev,
.portfolio-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ff6d1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: 0.35s;
  z-index: 50;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.portfolio-prev {
  left: -18px;
}

.portfolio-next {
  right: -18px;
}

.portfolio-prev:hover,
.portfolio-next:hover {
  background: #ffffff;
  color: #ff6d1f;
  transform: translateY(-50%) scale(1.08);
}

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

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
}

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

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

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 380px;
  border-radius: 28px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

/* Dark Hover Overlay */

.portfolio-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.35s;
  z-index: 1;
}

.portfolio-card:hover .portfolio-image::before {
  background: rgba(0, 0, 0, 0.35);
}

/* ===========================
   Plus Button
=========================== */

.portfolio-plus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 90px;
  height: 90px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #ff6d1f;
  font-size: 34px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 20;
}

.portfolio-card:hover .portfolio-plus {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-plus:hover {
  background: #ff6d1f;
  color: #fff;
}

/* ===========================
   Lightbox
=========================== */

.portfolio-lightbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999999;
}

.portfolio-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.portfolio-lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #ff6d1f;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
}

/*==========================================
        PORTFOLIO ARROW
==========================================*/

.portfolio-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #ff6d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  z-index: 20;
  transition: 0.35s ease;
}

.portfolio-arrow i {
  font-size: 22px;
  transition: all 0.35s ease;
}

/* Default */
.portfolio-arrow i {
  transform: translate(0, 0);
}

/* Card Hover */
.portfolio-card:hover .portfolio-arrow {
  background: #ff6d1f;
  color: #fff;
}

/* Arrow Animation */
.portfolio-card:hover .portfolio-arrow i {
  transform: translate(4px, -4px);
}

/* Direct Hover */
.portfolio-arrow:hover {
  background: #ff6d1f;
  color: #fff;
}

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

/* .portfolio-content{
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: #fff;
    border-radius: 22px;
    padding: 15px 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
    transition: .35s;
    z-index: 10;

} */

/* .portfolio-card:hover .portfolio-content{
    transform: translateY(-8px);
} */

/* Default */
.portfolio-content {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  background: #fff;
  border-radius: 22px;
  padding: 12px 30px;
  transition: 0.35s;
}

.portfolio-category {
  color: #ff6d1f;
}

.portfolio-content h3 a {
  color: #0e3584;
}

/* Active card */
.portfolio-card.active .portfolio-content {
  background: #ff6d1f;
}

.portfolio-card.active .portfolio-category {
  color: #fff;
}

.portfolio-card.active .portfolio-content h3 a {
  color: #fff;
}

/*==========================================
            CATEGORY
==========================================*/

.portfolio-category {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ff6d1f;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/*==========================================
            TITLE
==========================================*/

.portfolio-content h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.portfolio-content h3 a {
  color: #0e3584; /* brand blue, matches your reference image */
  text-decoration: none;
  transition: 0.3s;
}

.portfolio-content h3 a:hover {
  color: #ff6d1f;
}

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

.portfolio-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -18px;
  height: 25px;
  background: rgba(0, 0, 0, 0.08);
  filter: blur(22px);
  border-radius: 50%;
  z-index: -1;
}

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

.portfolio-card:hover img {
  filter: brightness(1.05);
}

/*==========================================
        SMOOTH TRANSITIONS
==========================================*/

.portfolio-card,
.portfolio-image,
.portfolio-image img,
.portfolio-arrow,
.portfolio-content {
  transition: all 0.4s ease;
}

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

/*==========================================
            TABLET (992px)
==========================================*/

/* Tablet */
@media (max-width: 991px) {
  .portfolio-section {
    padding: 90px 0 30px;
  }

  .portfolio-bg,
  .portfolio-overlay {
    height: 450px;
  }

  .portfolio-heading {
    margin-bottom: 40px;
  }

  .portfolio-heading h2 {
    font-size: 36px;
    line-height: 1.3;
  }

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

  .portfolio-tag span {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .portfolioSwiper {
    margin-top: 40px;
  }

  .portfolioSwiper .swiper-slide {
    flex: 0 0 calc(50% - 14px);
  }

  .portfolio-image {
    height: 340px;
  }

  .portfolio-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 22px;
  }

  .portfolio-content h3 {
    font-size: 20px;
  }

  .portfolio-prev,
  .portfolio-next {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .portfolio-prev {
    left: -8px;
  }

  .portfolio-next {
    right: -8px;
  }
}

/*==========================================
        MOBILE (768px and below)
==========================================*/
@media (max-width: 768px) {
  .portfolio-section {
    padding: 20px 0 30px;
  }

  .portfolio-bg,
  .portfolio-overlay {
    height: 320px;
  }

  .portfolio-container {
    width: 100%;
    padding: 0 15px;
  }

  .portfolioSwiper {
    margin-top: 30px;
    overflow: hidden;
  }

  .portfolioSwiper .swiper-track {
    overflow: hidden;
  }

  .portfolioSwiper .swiper-wrapper {
    gap: 0;
  }

  .portfolioSwiper .swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 8px;
  }

  .portfolio-card {
    width: 100%;
  }

  .portfolio-image {
    height: 330px;
  }

  .portfolio-content {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px 18px;
    border-radius: 18px;
  }

  .portfolio-category {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .portfolio-content h3 {
    font-size: 22px;
  }

  .portfolio-arrow {
    width: 48px;
    height: 48px;
    top: 15px;
    right: 15px;
  }

  .portfolio-arrow i {
    font-size: 18px;
  }

  .portfolio-plus {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .portfolio-prev,
  .portfolio-next {
    width: 45px;
    height: 45px;
    font-size: 18px;
    z-index: 100;
  }

  .portfolio-prev {
    left: 10px;
  }

  .portfolio-next {
    right: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .portfolio-heading h2 {
    font-size: 20px;
  }

  .portfolio-image {
    height: 280px;
  }

  .portfolio-content {
    padding: 10px 16px;
  }

  .portfolio-content h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .portfolio-category {
    font-size: 11px;
  }

  .portfolio-arrow {
    width: 42px;
    height: 42px;
  }

  .portfolio-arrow i {
    font-size: 16px;
  }

  .portfolio-plus {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}




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