/*========================== PAGE HERO ==========================*/
.contact-section-2 {
  position: relative;
  padding-top: 60px !important;
  padding-bottom: 30px;
  overflow: hidden;
}
.page-banner {
  position: relative;
  padding: 100px 0 140px;
  background: linear-gradient(135deg, #1a1a4d 0%, #242470 100%);
  overflow: hidden;
  color: #fff;
}
/* GRID */
.banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
/* Glow Circles */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  animation: floatShape 8s linear infinite;
}
.shape-one {
  width: 220px;
  height: 220px;
  background: rgba(251, 2, 34, 0.18);
  top: -60px;
  left: -80px;
}
.shape-two {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  right: -100px;
  top: 20%;
  animation-duration: 12s;
}
/* Badge */
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 25px;
}
/* Heading */
.page-banner h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-banner h1 span {
  color: #fb0222;
}
/* Paragraph */
.page-banner p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}
/*==========================
        BREADCRUMB
===========================*/

.navbarportfolio {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.navbarportfolio .breadcrumb {
  margin: 18px 0 0;
  padding: 0;
  background: transparent;
}

.navbarportfolio .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.35s;
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.navbarportfolio .breadcrumb-item a:hover {
  color: #fb0222;
}

.navbarportfolio .breadcrumb-item.active {
  color: #fb0222;
  font-weight: 600;
}

.navbarportfolio .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

/* Image */
.banner-img {
  max-width: 520px;
  animation: bannerFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.25));
}
/* Wave */
.wave-bottom {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
}
/* Hover animation */
@keyframes bannerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
/* Circle animation */
@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
/* Responsive */

/*========================= Office Section =========================*/
.office-card {
  position: relative;
  overflow: hidden;
  padding: 60px;
  background: linear-gradient(135deg, #1a1a4d, #262673);
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}
/* Background */
.office-card::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  background: rgba(251, 2, 34, 0.12);
  border-radius: 50%;
}
.office-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.office-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.office-card h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.office-text {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 35px;
}
.office-address {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.address-icon {
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 20px;
  background: #fb0222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  animation: officePulse 2s infinite;
}
.office-address h5 {
  margin-bottom: 8px;
  font-weight: 700;
}
.office-address p {
  margin: 0;
  color: #f2f2f2;
  line-height: 1.8;
}
.office-img {
  max-width: 380px;
  animation: officeFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
}
@keyframes officeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes officePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 2, 34, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(251, 2, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 2, 34, 0);
  }
}

.map-box {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.map-box iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

/*========================= Contact Cards ==========================*/
.contact-info-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(30, 35, 92, 0.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}
/* Background Circle */
.contact-info-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.05);
  transition: 0.5s;
}
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.contact-info-card:hover::before {
  transform: scale(1.4);
}
/* ICON */
.info-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  position: relative;
  animation: iconFloat 3s ease infinite;
}
.phone-bg {
  background: linear-gradient(135deg, #1e235c, #3846c7);
}
.mail-bg {
  background: linear-gradient(135deg, #f60525, #ff5b72);
}
/* ICON GLOW */
.info-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 25px;
  border: 2px solid rgba(246, 5, 37, 0.2);
  animation: pulse 2s infinite;
}
/* TEXT */
.info-content span {
  color: #f60525;
  font-weight: 600;
  font-size: 15px;
}
.info-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #1e235c;
  margin: 6px 0 18px;
}
.info-content a {
  display: block;
  text-decoration: none;
  color: #444;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
}
.info-content a:hover {
  color: #f60525;
  padding-left: 8px;
}
/* Floating Icon */
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* Pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
/* Mobile */
@media (max-width: 992px) {
  .page-banner {
    padding: 140px 0 110px;
    text-align: center;
  }
  .page-banner h1 {
    font-size: 42px;
  }
  .page-banner p {
    margin: auto;
  }
  .banner-img {
    margin-top: 45px;
    max-width: 360px;
  }
}
@media (max-width: 576px) {
  .page-banner h1 {
    font-size: 34px;
  }
  .banner-badge {
    font-size: 14px;
    padding: 8px 18px;
  }
  .page-banner {
    padding: 120px 0 90px;
  }
  .banner-img {
    max-width: 280px;
  }
}
@media (max-width: 991px) {
  .office-card {
    padding: 35px;
    text-align: center;
  }
  .office-address {
    flex-direction: column;
  }
  .office-img {
    margin-top: 40px;
    max-width: 260px;
  }
  .office-card h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    text-align: center;
    padding: 110px 0 80px;
  }
  .page-banner h1 {
    font-size: 38px;
  }
  .office-card {
    padding: 30px;
    text-align: center;
  }
  .map-box iframe {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }
  .info-icon {
    width: 80px;
    height: 80px;
    font-size: 34px;
  }
  .info-content h3 {
    font-size: 24px;
  }
  .info-content a {
    font-size: 16px;
  }
}
