p/* Reset and base */
html {
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

a:hover,
.quick-links ul li a:hover,
.contact-card a:hover {
  color: #d32f2f; /* red color on hover */
}
ul {
  list-style: none;
}

/* Top bar with gradient background, full width */
.top-bar {
  width: 100%;
  background: linear-gradient(90deg, #003366, #0059b3);
  border-bottom: none;
  color: white;
  padding: 0.5rem 1rem;
}

/* Inner container for centering content */
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-name-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}

.logo-name-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  width: 100%;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  height: 180px;
  width: auto;
  max-width: 250px;
  display: block;
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.bank-name-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
  min-width: 280px;
  padding-right: 1rem;
}

.bank-name-main {
  font-family: "Yatra One", system-ui;
  font-size: clamp(2.2rem, 4vw, 2.5rem);
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  word-wrap: break-word;
}

.bank-name-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-top: 0.2rem;
  word-wrap: break-word;
}

.bank-name-regd {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  margin-top: 0.3rem;
  word-wrap: break-word;
}

.bank-name-slogan {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  margin-top: 0.5rem;
  color: #ffd700;
  font-style: italic;
  display: block;
  word-wrap: break-word;
}

/* Navbar */
nav {
  background: #002952;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0 1rem;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
  position: relative;
  z-index: 1100;
}

.hamburger:focus {
  outline-offset: 4px;
  outline: 2px solid #fff;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
  position: relative;
}

.hamburger.open div:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  position: absolute;
}

.hamburger.open div:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
  position: absolute;
}

/* Navbar main menu */
.navbar {
  display: flex;
  flex-wrap: nowrap;
  flex-grow: 1;
  justify-content: flex-start;
  position: static;
  background: none;
  width: auto;
  transition: max-height 0.3s ease;
}

.navbar > li {
  position: relative;
}

.navbar > li > a {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 600;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.navbar > li > a:hover,
.navbar > li:hover > a {
  background: #003d7a;
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #003d7a;
  min-width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar > li:hover .dropdown {
  visibility: visible;
  opacity: 1;
}

.dropdown li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: white;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: #004c94;
}

/* Slider */
.slider-container {
  max-width: 1300px;
  margin: 1rem auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  position: relative;
  background: #fff;
}

.slider {
  display: flex;
  width: 100%;
  transition: transform 0.7s ease-in-out;
}

.slide {
  min-width: 100%;
  overflow: hidden;
  position: relative;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Content sections */
.content-sections {
  max-width: 1300px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
  text-align: justify;
}

.section-box {
  flex: 1;
  background: linear-gradient(135deg, #fce4ec, #ffffff); /* subtle pinkish-red gradient */
  min-height: 250px;
  border-radius: 8px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1300px;
}

.cover-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (max-width: 1000px) {
  .cover-image {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .cover-image {
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .cover-image {
    height: auto !important;
  }
}

/* Remove grey background from Vision and Mission, Testimonials, and Statistics sections */
.vision-mission.section-box,
.testimonials.section-box,
.statistics.section-box {
  background: transparent;
  box-shadow: none;
  min-height: auto;
}

/* Footer */
footer {
  position: relative;
  background: linear-gradient(135deg, #002952 0%, #004080 100%);
  color: #eee;
  margin-top: auto;
  padding: 3rem 1rem 2rem 1rem;
  font-size: 14px;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)); */
  z-index: 0;
}

footer * {
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  justify-content: flex-start;
  border-bottom: 1px solid #444;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #0080ff;
}

.contact-info p,
.branches ul,
.quick-links ul {
  margin-bottom: 0.75rem;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info p i {
  color: #0080ff;
  width: 20px;
  text-align: center;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-info a {
  color: #ccc;
}

.map-container iframe {
  border: 0;
}

/* Responsive image adjustments for about pages */
@media (max-width: 768px) {
  .rightimg, .leftimg {
    float: none !important;
    margin: 0 auto 1rem auto !important;
    display: block;
    max-width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 768px) {
  .download-card {
    flex-direction: column;
    align-items: stretch;
  }
  .download-card .content {
    flex: none;
    padding-right: 0;
  }
  .download-card .preview {
    flex: none;
    margin-top: 15px;
    width: 100%;
    align-items: center;
  }
  .download-card iframe {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 10px;
  }
  .download-card iframe {
    height: 150px;
  }
  .download-button {
    padding: 6px 10px;
    font-size: 14px;
  }
}

.our-branches {
  margin-top: 2rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* Responsive styles for Our Branches section */
@media (max-width: 768px) {
  .our-branches .contact-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .our-branches .contact-row {
    flex-direction: column;
    gap: 1rem;
  }
  .our-branches .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* Loans Section Styles */
.loans-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, #fce4ec, #ffffff);
  padding: 1.5rem;
  border-radius: 12px;
  justify-content: space-between;
}

.loan-card {
  flex: 1 1 calc(33.333% - 20px);
  background: white;
  color: #b71c1c; /* dark red text */
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(183, 28, 28, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: default;
}

.loan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(183, 28, 28, 0.25);
}

.loan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.loan-card p {
  font-size: 1rem;
  font-style: normal;
  color: #003366;
  margin: 0.25rem 0;
}

/* Invest In Your Future Section */
.invest-future {
  background: linear-gradient(135deg, #fce4ec, #ffffff); /* subtle pinkish-red gradient */
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.15);
  text-align: center;
}

.invest-future .section-title {
  color: #b71c1c; /* dark red */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.invest-future .section-title i {
  font-size: 1.5rem; /* Adjust icon size to be smaller */
  vertical-align: middle;
}

.invest-future .invest-panel img {
  max-width: 150px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 89, 179, 0.15);
}

.invest-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.invest-tab {
  background: #0059b3;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.invest-tab:hover {
  background: #003d7a;
}

.invest-tab.active {
  background: #003366;
}

.invest-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.invest-panel {
  flex: 1 1 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 89, 179, 0.1);
  padding: 1.5rem;
  max-width: 400px;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.invest-panel.active {
  display: flex;
}

.invest-panel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 89, 179, 0.15);
}

.invest-panel h3 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.invest-panel p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.learn-more {
  color: #0059b3;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #003366;
}

/* New Sections Styles */

/* Section Titles */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #d32f2f; /* red color for section titles */
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Noto Sans', sans-serif;
}

/* Title below hexagon for all hexagons */
.title-below, .title-top {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  text-align: center;
  box-shadow: none;
  padding: 0;
}

/* Vision and Mission */
.vision-mission-content {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fce4ec, #ffffff); /* Changed to single color background similar to get-in-touch */
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: none; /* Removed box shadow from container */
}

.vision-text, .mission-text {
  flex: 1 1 300px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 153, 255, 0.1); /* Adjusted to match get-in-touch */
  transition: transform 0.3s ease;
  text-align: center;
}

.vision-text:hover, .mission-text:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 153, 255, 0.25); /* Adjusted to match get-in-touch */
}

.vision-text h3, .mission-text h3 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.vision-text p, .mission-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #222;
}

/* Statistics */
.infographic-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2rem 2rem;
  overflow-x: hidden;
  background-image: url('/images/worldmap.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-attachment: fixed;
  background-blend-mode: lighten;
  background-color: rgba(255, 255, 255, 0.85);
}


/* Adjust infographic item width to fit 5 in one line */
.infographic-item {
  position: relative;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Offset every even item vertically for flow effect */
.infographic-item:nth-child(even) {
  margin-top: 30px;
}

/* Hex layers for 3D effect */
.hex-layer {
  position: absolute;
  width: 180px;
  height: 156px; /* height = width * sqrt(3)/2 */
  clip-path: polygon(
    25% 0%, 75% 0%, 
    100% 50%, 75% 100%, 
    25% 100%, 0% 50%
  );
  background-color: #ccc;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

/* Layer offsets for depth */
.hex-bg1 {
  top: 0;
  left: 0;
  z-index: 1;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,0.15));
}

.hex-bg2 {
  top: 6px;
  left: 6px;
  z-index: 0;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

.hex-bg3 {
  top: 12px;
  left: 12px;
  z-index: -1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}

/* Hex content */
.hex-content {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 156px;
  background: white;
  clip-path: polygon(
    25% 0%, 75% 0%, 
    100% 50%, 75% 100%, 
    25% 100%, 0% 50%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
  cursor: default;
  border-radius: 12px;
}

.hex-content:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* Icon inside hex */
.hex-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.75rem;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.1));
}

/* Title below hex */
.title-below {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #222;
  text-align: center;
}

/* Number below title */
.number-below {
  font-size: 1.5rem;
  font-weight: 900;
  color: #b71c1c;
  margin-top: 0 rem;
  text-align: center;
  font-family: 'Segoe UI Black', Tahoma, Geneva, Verdana, sans-serif;
}

/* Colors for hex layers and hex content */
.item1 .hex-bg1 { background-color: #1e3a5f; }
.item1 .hex-bg2 { background-color: #2a4a7a; }
.item1 .hex-bg3 { background-color: #3a5a9a; }
.item1 .hex-content { background-color: #f0f4f8; }

.item2 .hex-bg1 { background-color: #b0a9a0; }
.item2 .hex-bg2 { background-color: #c0b9b0; }
.item2 .hex-bg3 { background-color: #d0c9c0; }
.item2 .hex-content { background-color: #f9f8f7; }

.item3 .hex-bg1 { background-color: #2f7f7f; }
.item3 .hex-bg2 { background-color: #3f8f8f; }
.item3 .hex-bg3 { background-color: #4fafaf; }
.item3 .hex-content { background-color: #f0f9f9; }

.item4 .hex-bg1 { background-color: #3a3a3a; }
.item4 .hex-bg2 { background-color: #4a4a4a; }
.item4 .hex-bg3 { background-color: #5a5a5a; }
.item4 .hex-content { background-color: #f7f7f7; }

.item5 .hex-bg1 { background-color: #6a8f3a; }
.item5 .hex-bg2 { background-color: #7a9f4a; }
.item5 .hex-bg3 { background-color: #8faf5a; }
.item5 .hex-content { background-color: #f7faf0; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .infographic-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }
  .infographic-item {
    width: 220px;
    margin-bottom: 3rem;
  }
}

@media (max-width: 450px) {
  .infographic-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }
  .infographic-item {
    width: 150px;
    margin-bottom: 3rem;
  }
}


/* Statistics 
.statistics-cards {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
  background: #003366;
  padding: 2rem 1rem;
  border-radius: 12px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
}

.stat-card {
  flex: 1 1 150px;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0059b3, #003366);
  box-shadow: 0 4px 12px rgba(0, 89, 179, 0.4);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(161, 0, 179, 0.6);
}

.stat-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-family: 'Segoe UI Black', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-desc {
  font-size: 0.9rem;
  font-style: italic;
  color: #cce0ff;
} */

/* Testimonials */
.testimonial-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
  background: #e0f7ff; /* Changed to single color background similar to get-in-touch */
  border-radius: 12px;
  box-shadow: none; /* Removed box shadow from container */
}

.testimonial-card {
  flex: 1 1 300px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 153, 255, 0.1); /* Adjusted to match get-in-touch */
  font-style: italic;
  color: #003366;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 153, 255, 0.25); /* Adjusted to match get-in-touch */
}

.testimonial-cards .testimonial-card footer {
  background-color: #003366 !important;
  margin-top: 1rem;
  font-weight: 700;
  font-style: normal;
  color: #fff !important;
  text-align: right;
}

/* Get In Touch */
.get-in-touch {
  background: linear-gradient(135deg, #fce4ec, #ffffff); /* subtle pinkish-red gradient */
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 153, 255, 0.15);
}

.contact-cards {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}

.contact-card {
  flex: 1 1 250px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.25);
}

.contact-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
  color: #0056b3;
}

.contact-card h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #004080;
}

.contact-card p {
  font-size: 1rem;
  color: #222;
}

.contact-card a {
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vision-mission-content,
  .statistics-cards,
  .testimonial-cards,
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .vision-text,
  .mission-text,
  .stat-card,
  .testimonial-card,
  .contact-card {
    flex: 1 1 100%;
    max-width: 400px;
  }
}

@media (max-width: 450px) {
  .vision-mission-content,
  .statistics-cards,
  .testimonial-cards,
  .contact-cards {
    flex-direction: column;
    align-items: center;
    width: auto !important;
  }

  .vision-text,
  .mission-text,
  .stat-card,
  .testimonial-card,
  .contact-card {
    flex: 1 1 100%;
    max-width: auto !important;
  }
}

/* Responsive styles for service.html on small screens */
@media (max-width: 768px) {
  .scheme-container {
    flex-direction: column !important;
    align-items: center !important;
  }
  .scheme-container .illustration {
    display: none !important;
  }
  .scheme-container table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    margin: 0 auto !important;
    overflow-x: auto;
    table-layout: fixed !important;
    font-size: 0.75rem !important;
    justify-items: center !important;
  }
  .scheme-container table th,
  .scheme-container table td {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    white-space: normal !important;
    padding: 0.25rem 0.5rem !important;
  }
}

@media (max-width: 380px) {
  .scheme-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .scheme-container .illustration {
    display: none !important;
  }
  .scheme-container table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    margin: 0 auto !important;
    overflow-x: auto;
    table-layout: fixed !important;
    font-size: 0.75rem !important;
    justify-items: center !important;
  }
  .scheme-container table th,
  .scheme-container table td {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    white-space: normal !important;
    padding: 0.25rem 0.5rem !important;
    justify-content: center !important;
  }
}

/* Contact Us page enhancements */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.contact-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  order: 2;
}

.contact-illustration svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(26, 115, 232, 0.3));
}

.contact-form {
  flex: 1;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  order: 1;
}

.contact-form:hover {
  box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
}

.contact-form form {
  display: block;
}

.contact-form .form-group {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  text-align: left;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  box-sizing: border-box;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #ddd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 8px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 8px rgba(26, 115, 232, 0.4);
  outline: none;
}

input.touched:invalid,
textarea.touched:invalid {
  border: none;
  outline: none;
}

input.touched:valid,
textarea.touched:valid {
  border: none;
  outline: none;
}

.submit-btn {
  background-color: #d32f2f; /* red background */
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.6);
}

.submit-btn:hover {
  background-color: #b71c1c;
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.7);
}

@media (min-width: 769px) {
  .contact-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

.branches ul,
.quick-links ul {
  padding-left: 0;
  margin-top: 0.25rem;
}

.branches ul li,
.quick-links ul li {
  margin-bottom: 0.4rem;
  transition: transform 0.2s ease, color 0.2s ease;
  padding: 0.2rem 0;
}

.branches ul li:hover {
  transform: translateX(5px);
  color: #0080ff;
}

.quick-links ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: #0080ff;
  text-decoration: underline;
}

.footer-bottom-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

.map-container {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  height: 180px;
  width: 100%;
  margin-top: 0.5rem;
}

/* Social media icons */
.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0080ff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.social-icons a:hover {
  border-color: #0080ff;
  transform: translateY(-3px);
}

.social-icons a:hover::before {
  transform: translateY(0);
}

.social-icons i {
  font-size: 22px;
  position: relative;
  z-index: 1;
}

/* Copyright */
.copyright {
  margin-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* EMI Calculator Styles */
.emi-calculator-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.emi-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input[type="range"] {
  padding: 0;
  margin: 10px 0;
}

.tenure-display {
  text-align: center;
  font-weight: bold;
  color: #007bff;
  margin-top: 10px;
}

.calculate-btn {
  width: 100%;
  padding: 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.calculate-btn:hover {
  background: #0056b3;
}

.emi-result {
  margin-top: 30px;
  padding: 30px;
  background: #e8f4f8;
  border-radius: 10px;
  text-align: center;
}

.emi-amount {
  font-size: 36px;
  font-weight: bold;
  color: #007bff;
  margin: 20px 0;
}

.loan-details {
  text-align: left;
  margin-top: 20px;
}

.loan-details p {
  margin: 10px 0;
  font-size: 16px;
}

.loan-details strong {
  color: #333;
}

/* Board of Directors Section Styles */
.board-of-directors-section {
  position: relative;
  padding: 2rem 1rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  display: block;
  min-height: 400px;
  background: linear-gradient(135deg, #fce4ec, #ffffff);
  background-size: 150% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  background-blend-mode: lighten;
  background-attachment: fixed;
}

.bod-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  background-color: linear-gradient(135deg, #f42f6a, #ffffff);
  align-items: center;
  gap: 2rem;
  z-index: 1;
}

.bod-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: linear-gradient(135deg, #f42f6a, #ffffff);
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 8px 8px 0;
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.bod-table {
  position: relative;
  width: 50%;
  min-width: 600px;
  max-width: 100%;
  border-collapse: collapse;
  background-color: rgba(253, 244, 244, 0.925);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
  white-space: nowrap;
}

.bod-table th {
  border: none;
  padding: 0.5rem 1rem;
  text-align: left;
  color: #1e2021;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.934);
  -webkit-backdrop-filter: brightness(90%);
  backdrop-filter: brightness(90%);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bod-table td {
  border: none;
  padding: 0.5rem 1rem;
  text-align: left;
  color: #111;
  background-color: transparent;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bod-table th {
  background: transparent;
}

@media (max-width: 768px) {
  .board-of-directors-section {
    flex-direction: column;
    padding: 1rem;
    min-height: auto;
  }
  .bod-container {
    width: 100%;
    flex-direction: column;
  }
  .bod-background {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    opacity: 0.2;
  }
  .bod-table {
    width: 100%;
  }
}

.bod-table th {
  background-color: rgba(0, 0, 0, 0.2)
}

* {
  font-family: Nunito, sans-serif;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}

.responsive-cell-block {
  min-height: 75px;
}

.container {
  max-width: 1380px;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 30px;
  padding-bottom: 0px;
  padding-left: 30px;
}

.team-head-text {
  font-size: 48px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 70px;
  margin-left: 0px;
}

.name {
  font-size: 18px;
  margin-top: 11px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-weight: 700;
  text-align: center;
}

.position {
  margin-top: 5px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  text-align: center;
}

.team-card-container {
  width: calc(25% - 30px);
  margin-top: 0px;
  margin-right: 15px;
  margin-bottom: 30px;
  margin-left: 15px;
  max-width: 280px;
}

.teamcard-container {
  justify-content: space-evenly;
}

.team-img {
  max-width: 100%;
  max-height: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

@media (max-width: 500px) {
  .team-card-container {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    width: 100%;
  }

  .team-img {
    width: 100%;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/* Desktop styles */
@media (min-width: 769px) {
  .logo-name-container {
    gap: 10rem;
  }
  
  .hamburger {
    display: none !important;
  }
  
  .home-link {
    display: none !important;
  }
  
  .navbar-container {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .navbar {
    width: auto !important;
    max-width: none !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    background: none !important;
  }
  
  .navbar > li.home {
    display: list-item;
  }
  
  .navbar > li:hover .dropdown {
    visibility: visible;
    opacity: 1;
  }
  
  .dropdown {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 100%;
    left: 0;
    background: #003d7a;
    min-width: 180px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: opacity 0.3s ease;
    z-index: 1000;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .logo-name-container {
    gap: 1rem;
    justify-content: center;
  }
  
  .logo-name-link {
    justify-content: center;
  }
  
  .logo {
    height: 120px;
    padding: 8px;
    margin: 0 auto;
  }
  
  .bank-name-text {
    text-align: center;
    padding: 0.5rem;
    min-width: 200px;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .slider-container {
    margin: 0.5rem auto;
    border-radius: 8px;
  }
  
  .slide img {
    height: 250px;
  }
  
  .content-sections {
    flex-direction: column;
    padding: 1rem;
  }
  
  .section-box {
    min-height: 200px;
    margin-bottom: 1rem;
  }
  
  .footer-section {
    min-width: 100%;
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer-section h4 {
    margin-bottom: 1rem;
    font-size: 18px;
  }
  
  .footer-top-row {
    gap: 1rem;
  }
  
  .map-container {
    height: 200px;
    margin: 1rem 0;
  }
  
  .social-icons {
    gap: 1rem;
    justify-content: center;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
  }
  
  .social-icons i {
    font-size: 18px;
  }
  
  .navbar-container {
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-wrap: nowrap;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    background: #002952;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    border-radius: 0 0 8px 8px;
  }
  
  .navbar.open {
    max-height: 1000px;
  }
  
  .navbar > li > a {
    padding: 0.75rem 1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
  }
  
  .navbar > li.home {
    display: none !important;
  }
  
  .home-link {
    display: inline-block;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    white-space: nowrap;
  }
  
  .dropdown-toggle {
    cursor: pointer;
    padding-right: 1rem;
    position: relative;
  }
  
  .dropdown-toggle::after {
    content: "▼";
    position: absolute;
    right: 1rem;
    font-size: 0.6rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  
  .dropdown-toggle.open::after {
    transform: rotate(-180deg);
  }
  
  .dropdown {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    background: #003d7a;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0;
    box-shadow: none;
  }
  
  .dropdown.open {
    max-height: 1000px;
  }
  
  .dropdown li a {
    padding-left: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
  }
}

/* Responsive styles for screen widths below 380px */
@media (max-width: 480px) {
  /* Top bar adjustments */
  .top-bar {
    padding: 0.5rem 0.5rem;
  }
  .logo {
    height: 90px;
    padding: 6px;
    margin: 0 auto; 
  }
  .bank-name-text {
    min-width: auto;
    padding: 0.25rem;
    font-size: 0.85rem;
    text-align: left;
  }
  .bank-name-main {
    font-size: 1.5rem;
  }
  .bank-name-sub,
  .bank-name-regd,
  .bank-name-slogan {
    font-size: 0.75rem;
  }

  /* Navbar adjustments */
  .navbar-container {
    padding: 0 0.5rem;
  }
  .navbar > li > a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  .hamburger {
    width: 24px;
    height: 18px;
  }
  .hamburger div {
    height: 2.5px;
  }

  /* Slider adjustments */
  .slide img {
    height: 180px;
  }
  .slider-container {
    margin: 0.25rem auto;
  }

  /* Content sections adjustments */
  .content-sections {
    padding: 0.5rem 0.5rem;
  }
  .section-box {
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 150px;
  }

  /* Vision and Mission */
  .vision-mission-content {
    flex-direction: column;
    padding: 1rem 0.5rem;
  }
  .vision-text,
  .mission-text {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .vision-text h3,
  .mission-text h3 {
    font-size: 1.2rem;
  }
  .vision-text p,
  .mission-text p {
    font-size: 0.9rem;
  }

  /* Statistics infographic */
  .infographic-container {
    padding: 1rem 0.5rem;
  }
  .infographic-item {
    width: 120px;
    margin-bottom: 2rem;
  }
  .hex-layer {
    width: 140px;
    height: 120px;
  }
  .hex-content {
    width: 140px;
    height: 120px;
    padding: 0.5rem;
  }
  .hex-icon {
    width: 45px;
    height: 45px;
  }
  .title-below {
    font-size: 1rem;
  }
  .number-below {
    font-size: 1.2rem;
  }

  /* Invest In Your Future */
  .invest-future {
    padding: 1rem 0.5rem;
  }
  .invest-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  .invest-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .invest-content {
    flex-direction: column;
    gap: 1rem;
  }
  .invest-panel {
    max-width: 100%;
    padding: 1rem;
  }
  .invest-panel img {
    max-width: 120px;
    margin-bottom: 0.5rem;
  }
  .invest-panel h3 {
    font-size: 1.2rem;
  }
  .invest-panel p {
    font-size: 0.9rem;
  }
  .learn-more {
    font-size: 0.85rem;
  }

  /* Get In Touch */
  .get-in-touch {
    padding: 1rem 0.5rem;
  }
  .contact-cards {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .contact-icon {
    font-size: 2.5rem;
  }
  .contact-card h3 {
    font-size: 1.2rem;
  }
  .contact-card p,
  .contact-card a {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer-top-row {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-section {
    min-width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .footer-section h4 {
    font-size: 1.2rem;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  .map-container {
    height: 150px;
    margin: 0.5rem 0;
  }
  .social-icons {
    gap: 0.5rem;
  }
  .social-icons a {
    width: 35px;
    height: 35px;
  }
  .social-icons i {
    font-size: 16px;
  }
}