/* Reset link styles */
a {
  text-decoration: none;
}

body {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
}

/* Header Styles */
.header {
  background-color: #c6e6ff;
  padding: 10px 120px;
  position: relative;
  overflow: hidden;
  z-index: 999;
}

.logo img {
  width: 115px;
}

.nav-link {
  font-weight: 600;
  color: #000;
  margin-left: 25px;
  position: relative;
  transition: color 0.3s, transform 0.3s;
  width: max-content;
}

.nav-link:hover {
  color: #253140;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  display: block;
  height: 2px;
  background: #253140;
  transition: width 0.3s;
  width: 0;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.nav-link:hover::after {
  width: 100%;
}
.nav-link.active::after {
  width: 100%;
}
/* Animated background */
.header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(44, 124, 229, 0.1), transparent);
  transform: rotate(25deg);
  animation: rotateGradient 30s linear infinite;
  z-index: 0;
}

/* @keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

.content-layer {
  position: relative;
  z-index: 1;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .header {
    padding: 15px 20px;
  }

  .navbar-collapse {
    background-color: #c6e6ff;
    padding: 1rem;
    border-radius: 10px;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 10px;
  }
}
:root {
  --primary-color: #c6e6ff;
  --secondary-color: #c6e6ff;
  --tertiary-color: #003042;
  --dark-color: #1a2a3a;
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black overlay */
  pointer-events: none; /* allows clicks to pass through if needed */
}
.teramax-swiper {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0;
}
.teramax-premium-swiper {
  height: 100%;
}
.slide-content {
  position: relative;
  z-index: 2;
  /* max-width: 1200px; */
  padding: 2rem;
  text-align: center;
}

.service-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  /* border-radius: 30px; */
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.slide-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.btn-teramax {
  background: var(--secondary-color);
  color: #000;
  border: none;
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-teramax:hover {
  background: white;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  width: 60px !important;
  height: 60px !important;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.stats-counter {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
  }

  .slide-description {
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
}
:root {
  --primary-blue: #003366;
  --accent-orange: #ff6b35;
  --light-gray: #f8f9fa;
  --dark-gray: #2d3748;
}

.about-section {
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
  padding: 6rem 0;
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-shape {
  position: absolute;
  width: 800px;
  height: 800px;
  background: linear-gradient(
    135deg,
    rgba(45, 255, 227, 0.1) 0%,
    rgba(4, 0, 252, 0.05) 100%
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -300px;
  right: -300px;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.about-shape-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(45, 255, 227, 0.1) 0%,
    rgba(4, 0, 252, 0.05) 100%
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: -200px;
  left: -200px;
  z-index: 1;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.section-tag {
  display: inline-block;
  color: var(--accent-orange);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--tertiary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title span {
  color: var(--tertiary-color);
}

.about-content {
  position: relative;
  z-index: 3;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-box {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--accent-orange) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.about-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  height: 100%;
  min-height: 400px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  color: var(--primary-blue);
}

.image-badge span {
  color: var(--tertiary-color);
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}

.btn-about {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--accent-orange) 100%
  );
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

@media (max-width: 992px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-top: 3rem;
    transform: rotate(0);
  }

  .section-title {
    font-size: 2.2rem;
  }
}

.services-showcase {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-orange);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--accent-orange);
}

.section-subtitle {
  color: var(--dark-gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  z-index: 2;
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--accent-orange) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--accent-orange);
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.shape-decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.03) 0%,
    rgba(255, 125, 0, 0.02) 100%
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}

:root {
  --primary-color: #0056b3; /* Deep blue */
  --accent-color: #ff6b35; /* Vibrant orange */
  --light-bg: #f8f9fa;
  --text-dark: #2d3748;
  --text-light: #4a5568;
}

.why-us-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.reason-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 86, 179, 0.1);
}

.reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.1) 0%,
    rgba(255, 107, 53, 0.1) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.accent-icon {
  color: var(--accent-color);
}

.reason-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.reason-desc {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 1.5rem auto;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .reason-card {
    padding: 1.5rem;
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6),
      0 0 20px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
      0 0 30px rgba(255, 107, 53, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6),
      0 0 20px rgba(255, 107, 53, 0.4);
  }
}

#backToTop:hover {
  transform: scale(1.2);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.6);
}

.service-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.service-section {
  padding: 5rem 0;
}

.service-section .service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  transition: transform 0.3s ease;
  background: white;
}

.service-section .service-card:hover {
  transform: translateY(-10px);
}

.service-header {
  background: var(--primary-blue);
  color: white;
  padding: 1.5rem;
  position: relative;
}

.service-icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  opacity: 0.2;
}

.service-body {
  padding: 2rem;
}

.service-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.feature-icon {
  color: var(--accent-orange);
  margin-right: 1rem;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.service-image {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.benefits-list {
  list-style-type: none;
  padding-left: 0;
}

.benefits-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefit-icon {
  color: var(--accent-orange);
  margin-right: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background-color: var(--light-gray);
}

.service-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003366 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .service-icon {
    display: none;
  }
}

.about-hero {
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  text-align: center;
}

.about-section {
  padding: 2rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dark-gray);
}

.highlight-block {
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.05) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
  border-left: 4px solid var(--accent-orange);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.vision-mission {
  background-color: var(--light-gray);
  /* padding: 5rem 0; */
}

.vm-item {
  padding: 2rem;
  position: relative;
}

.vm-item h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.vm-item h3 i {
  margin-right: 1rem;
  color: var(--accent-orange);
}

.vm-item p {
  line-height: 1.8;
  padding-left: 2.5rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.value-item h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.value-item h4 i {
  margin-right: 0.8rem;
  color: var(--accent-orange);
}

.presence-image {
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.presence-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

 .contact-hero {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), 
                        url('https://images.unsplash.com/photo-1518455027359-f3f8164ba6bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
        }
        
        .contact-section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-orange);
            border-radius: 2px;
        }
        
        .contact-methods {
            background-color: var(--light-gray);
            padding: 3rem;
            border-radius: 10px;
            height: 100%;
        }
        
        .contact-card {
            margin-bottom: 2.5rem;
        }
        
        .contact-card h3 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .contact-card h3 i {
            margin-right: 1rem;
            color: var(--accent-orange);
            font-size: 1.5rem;
        }
        
        .contact-info {
            padding-left: 2.5rem;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
        }
        
        .contact-info a {
            color: var(--dark-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-info a:hover {
            color: var(--accent-orange);
        }
        
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-control {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
        }
        
        textarea.form-control {
            height: auto;
            min-height: 150px;
        }
        
        .btn-submit {
            background: var(--accent-orange);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .office-map {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }
        
        .office-map iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        @media (max-width: 768px) {
            .contact-methods {
                margin-bottom: 3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }