/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f7fb;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 100px 8%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1,
h2,
h3 {
  font-weight: 600;
}

h2 {
  font-size: 34px;
  color: #162e5c;
  margin-bottom: 40px;
  text-align: center;
}

/* =========================
   NAVBAR - FULLY RESPONSIVE
========================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(22, 46, 92, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 8%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  transition: transform 0.3s ease;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  color: white;
  font-weight: 500;
}

.nav-links li {
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.nav-links li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00b4d8;
  transition: width 0.3s ease;
}

.nav-links li:hover {
  color: #00b4d8;
}

.nav-links li:hover:after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
}

/* Desktop view: Hide mobile contact button */
.mobile-only-contact {
  display: none;
}

/* Mobile view: Show mobile contact button with blue color */
@media (max-width: 768px) {
  .mobile-only-contact {
    display: block !important;
    color: white !important;
    font-weight: 600;

    text-align: center;
    padding: 12px 20px !important;
  }

  .mobile-only-contact:hover {
    color: white !important;
  }

  /* Optional: Add border for better visibility */
  .mobile-only-contact {
    margin: 10px 20px !important;
  }
}

/* Desktop: Keep the original nav-right button visible */
@media (min-width: 769px) {
  .nav-right {
    display: flex;
  }
}

.appointment-btn {
  background: linear-gradient(90deg, #00b4d8, #0096c7);
  border: none;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.appointment-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 180, 216, 0.3);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Responsive Navbar */
/* Responsive Navbar */
@media screen and (max-width: 992px) {
  .menu-toggle {
    display: flex;
    order: 2; /* Push to right */
  }

  .nav-left {
    order: 1; /* Keep logo left */
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #162e5c 0%, #1e3a6e 100%);
    flex-direction: column;
    justify-content: center; /* Changed from space-between to center */
    align-items: center;
    gap: 25px; /* Reduced gap for better spacing */
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    padding: 0 20px; /* Added padding */
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    font-size: 18px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    padding: 10px 0; /* Added padding for better touch targets */
    margin: 0; /* Reset margins */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Optional: adds separator */
  }

  .nav-links li:last-child {
    border-bottom: none; /* Remove border from last item */
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links.active li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .nav-right {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    height: 40px;
  }

  .menu-toggle {
    order: 2;
  }

  .nav-left {
    order: 1;
  }

  .nav-links {
    width: 85%;
    max-width: 320px;
    gap: 20px; /* Reduced gap for smaller screens */
  }

  .nav-links li {
    font-size: 16px;
    padding: 8px 0; /* Adjusted padding for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 12px 4%;
  }

  .nav-logo {
    height: 35px;
  }

  .menu-toggle {
    width: 28px;
    height: 19px;
  }

  .menu-toggle span {
    height: 2.5px;
  }

  .nav-links {
    width: 100%;
    max-width: none;
    padding: 0 15px;
    gap: 15px; /* Even smaller gap for mobile */
  }

  .nav-links li {
    font-size: 16px;
    padding: 8px 0;
  }
}
/* =========================
   HERO PREMIUM STYLE
========================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 0 !important;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  animation: zoomBg 20s ease infinite alternate;
}

@keyframes zoomBg {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(22, 46, 92, 0.7) 0%,
    rgba(0, 180, 216, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 8%;
  display: flex;
  align-items: end;
  justify-content: center;
  color: white;
  padding-bottom: 100px;
}

.hero-left {
  max-width: 600px;
  animation: slideInLeft 1.2s ease;
}

.hero-left h1 {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-left p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature span {
  font-size: 24px;
}

.hero-feature p {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.hero-right {
  text-align: right;
  animation: slideInRight 1.2s ease;
}

.hero-right h2 {
  font-size: 90px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.hero-right h2 span {
  color: white;
  display: block;
  font-size: 48px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin: 40px 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 36px;
  font-weight: 700;
  color: #00b4d8;
  margin-bottom: 5px;
}

.hero-stat p {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn {
  background: linear-gradient(90deg, #00b4d8, #0096c7);
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  justify-items: center;
}

.hero-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.4);
}

.hero-btn:hover:before {
  left: 100%;
}

.hero-trust {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.hero-trust i {
  font-size: 20px;
  color: #00b4d8;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-left h1 {
    font-size: 70px;
  }

  .hero-right h2 {
    font-size: 48px;
  }

  .hero-right h2 span {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 50px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 60px;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-right {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 48px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-feature {
    width: 100%;
    max-width: 300px;
  }

  .hero-right h2 {
    font-size: 40px;
  }

  .hero-right h2 span {
    font-size: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat {
    flex: 1;
    min-width: 100px;
  }

  .hero-stat h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right h2 {
    font-size: 32px;
  }

  .hero-right h2 span {
    font-size: 28px;
  }

  .hero-stat h3 {
    font-size: 24px;
  }

  .hero-stat p {
    font-size: 12px;
  }

  .hero-btn {
    padding: 14px 25px;
    font-size: 16px;
  }
}

/* Hero Responsive Fixes */
@media (max-width: 1200px) {
  .hero-content {
    padding: 0 5%;
  }

  .hero-left h1 {
    font-size: 70px;
  }

  .hero-right h2 {
    font-size: 70px;
  }

  .hero-right h2 span {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
  }

  .hero-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-left h1 {
    font-size: 60px;
  }

  .hero-left p {
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-right {
    text-align: center;
    width: 100%;
  }

  .hero-right h2 {
    font-size: 60px;
  }

  .hero-right h2 span {
    font-size: 36px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-trust {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    padding-bottom: 40px;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-left p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-right h2 {
    font-size: 48px;
  }

  .hero-right h2 span {
    font-size: 30px;
  }

  .hero-stats {
    gap: 20px;
    margin: 30px 0;
  }

  .hero-stat {
    min-width: 100px;
  }

  .hero-stat h3 {
    font-size: 28px;
  }

  .hero-stat p {
    font-size: 12px;
  }

  .hero-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 15px;
    padding-bottom: 30px;
  }

  .hero-left h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hero-left p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-feature {
    max-width: 240px;
    padding: 8px 15px;
  }

  .hero-feature span {
    font-size: 20px;
  }

  .hero-feature p {
    font-size: 12px;
  }

  .hero-right h2 {
    font-size: 36px;
  }

  .hero-right h2 span {
    font-size: 24px;
  }

  .hero-stats {
    gap: 15px;
    margin: 25px 0;
  }

  .hero-stat {
    min-width: 80px;
  }

  .hero-stat h3 {
    font-size: 22px;
  }

  .hero-stat p {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-trust {
    font-size: 12px;
    margin-top: 20px;
  }
}

@media (max-width: 360px) {
  .hero-left h1 {
    font-size: 30px;
  }

  .hero-right h2 {
    font-size: 30px;
  }

  .hero-right h2 span {
    font-size: 22px;
  }

  .hero-stat {
    min-width: 70px;
  }

  .hero-stat h3 {
    font-size: 18px;
  }
}

/* Fix for landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 100px 20px 50px;
  }
}

/* =========================
   SERVICES MODERN V2
========================= */
.services-modern-v2 {
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f5ff 100%);
  padding: 30px 8% 60px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
  font-size: 36px;
}

.section-header h2 {
  font-size: 36px;
  color: #162e5c;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00b4d8;
  border-radius: 2px;
}

.section-header p {
  color: #666;
  font-size: 18px;
}

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card-modern {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  animation: fadeIn 0.8s ease;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 180, 216, 0.15);
}

.service-icon-modern {
  font-size: 32px;
  background: linear-gradient(135deg, #eef0ff 0%, #e0e7ff 100%);
  color: #6c63ff;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  transform: rotate(360deg);
  background: #6c63ff;
  color: white;
}

/* =========================
   SPECIAL SERVICES SECTION - CBCT & V-SCAN
========================= */
.special-services-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.special-services-section:before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 180, 216, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatSlow 15s ease infinite;
}

.special-services-section:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatSlow 20s ease infinite reverse;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.special-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.special-header .section-subtitle {
  color: #00b4d8;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.special-header h2 {
  font-size: 42px;
  color: #162e5c;
  margin-bottom: 20px;
  font-weight: 700;
}

.special-header p {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Special Services Container */
.special-services-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* Individual Service Row */
.special-service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  background: white;
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.special-service-row:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 180, 216, 0.15);
}

/* Row variants */
.special-service-row:nth-child(even) {
  flex-direction: row-reverse;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.special-service-image {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.special-service-image .service-stats {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

.special-service-image .stat-item {
    text-align: center;
    flex: 1;
}

.special-service-image .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #00b4d8;
    display: block;
    line-height: 1.2;
}

.special-service-image .stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Remove old stats from content side */
.special-service-content .service-stats {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .special-service-image .service-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .special-service-image .stat-item {
        min-width: 80px;
    }
}

@media (max-width: 460px) {
    .special-service-image .service-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .special-service-image .stat-item {
        min-width: 80px;
    }
}

.special-service-row:hover .image-wrapper img {
  transform: scale(1.05);
}   

/* Image overlay with icon */
.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b4d8, #6c63ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;

  animation: pulse 2s ease infinite;
  z-index: 3;
}

/* Content side */
.special-service-content {
  flex: 1;
  padding: 20px;
}

.service-badge {
  display: inline-block;
  background: linear-gradient(90deg, #00b4d8, #6c63ff);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.2);
}

.special-service-content h3 {
  font-size: 32px;
  color: #162e5c;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.special-service-content h3 span {
  color: #00b4d8;
  display: block;
  font-size: 24px;
  margin-top: 5px;
  font-weight: 500;
}

.special-service-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Features list */
.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b4d8;
  font-size: 14px;
  font-weight: bold;
}

/* Stats for each service */
.service-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px dashed #e0e0e0;
  border-bottom: 1px dashed #e0e0e0;
}

.service-stat {
  text-align: center;
}

.service-stat .stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #00b4d8;
  display: block;
  line-height: 1.2;
}

.service-stat .stat-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Learn more button */
.service-btn {
  background: transparent;
  border: 2px solid #00b4d8;
  color: #00b4d8;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-btn:hover {
  background: #00b4d8;
  color: white;
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* Floating badge for technology */
.tech-badge {
  position: absolute;
  bottom: -15px;
  left: 30px;
  background: white;
  padding: 12px 25px;
  border-radius: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 4;
  border: 2px solid #f0f0f0;
}

.tech-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00b4d8, #6c63ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.tech-badge-text {
  font-weight: 600;
  color: #162e5c;
}

.tech-badge-text small {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .special-service-row {
    gap: 40px;
    padding: 40px;
  }

  .special-service-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .special-service-row,
  .special-service-row:nth-child(even) {
    flex-direction: column;
    gap: 30px;
    padding: 35px;
  }

  .special-service-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .special-service-content {
    text-align: center;
  }

  .service-features li {
    justify-content: center;
  }

  .service-stats {
    justify-content: center;
  }

  .tech-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .special-services-section {
    padding: 80px 5%;
  }

  .special-header h2 {
    font-size: 32px;
  }

  .special-header p {
    font-size: 16px;
  }

  .special-service-row {
    padding: 25px;
  }

  .special-service-content h3 {
    font-size: 24px;
  }

  .special-service-content h3 span {
    font-size: 20px;
  }

  .service-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .tech-badge {
    padding: 10px 20px;
  }

  .tech-badge-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .special-service-row {
    padding: 20px;
  }

  .image-overlay {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .service-features li {
    font-size: 14px;
  }

  .service-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .tech-badge {
    display: none;
  }
}

/* =========================
   ABOUT MODERN V2 - FIXED
========================= */

.about-modern-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 100px 8%;
  background: #ffffff;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-left img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  display: block;
  object-fit: contain;
}

.about-left:hover img {
  transform: scale(1.02);
}

.about-right {
  flex: 1;
}

.about-right h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #162e5c;
  font-weight: 700;
  position: relative;
  text-align: left;
}

.about-right h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #00b4d8;
}

.about-right p {
  margin-bottom: 35px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* Desktop Large */
@media (max-width: 1200px) {
  .about-modern-v2 {
    gap: 50px;
    padding: 80px 6%;
  }
  
  .about-left img {
    max-width: 400px;
  }
  
  .about-right h2 {
    font-size: 38px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .about-modern-v2 {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 70px 6%;
  }
  
  .about-left {
    width: 100%;
    max-width: 400px;
  }
  
  .about-left img {
    max-width: 100%;
    height: auto;
  }
  
  .about-right h2 {
    text-align: center;
    font-size: 36px;
  }
  
  .about-right h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-right p {
    font-size: 16px;
    text-align: center;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .about-modern-v2 {
    padding: 50px 5%;
    gap: 30px;
  }
  
  .about-left {
    max-width: 320px;
  }
  
  .about-right h2 {
    font-size: 32px;
  }
  
  .about-right p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .about-modern-v2 {
    padding: 40px 4%;
    gap: 25px;
  }
  
  .about-left {
    max-width: 260px;
  }
  
  .about-right h2 {
    font-size: 28px;
  }
  
  .about-right p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .about-modern-v2 {
    padding: 30px 4%;
  }
  
  .about-left {
    max-width: 220px;
  }
  
  .about-right h2 {
    font-size: 24px;
  }
  
  .about-right p {
    font-size: 13px;
  }
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box-modern {
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f5ff 100%);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(108, 99, 255, 0.15);
}

.stat-box-modern h3 {
  color: #6c63ff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-box-modern p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* =========================
   WHO NEEDS SECTION - CLEAN PROFESSIONAL
========================= */
#who-needs-section {
  padding: 100px 8%;
  background: #ffffff;
  position: relative;
}

.who-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== LEFT CONTENT ===== */
.who-left {
  flex: 1;
}

.who-left h2 {
  font-size: 42px;
  margin-bottom: 15px;
  text-align: left;
  color: #162e5c;
  position: relative;
  font-weight: 700;
  padding-bottom: 15px;
}

.who-left h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #00b4d8;
  border-radius: 2px;
}

.who-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
}

/* ===== CARDS - CLEAN & PROFESSIONAL ===== */
.who-cards-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.who-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 25px;
  border-radius: 12px;
  background: #f8faff;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.who-card:hover {
  background: #ffffff;
  border-color: #00b4d8;
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.1);
  transform: translateX(8px);
}

.who-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b4d8;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.who-card:hover .who-icon {
  background: #00b4d8;
  color: white;
  transform: scale(1.05);
}

.who-card-content {
  flex: 1;
}

.who-card-content h4 {
  font-size: 18px;
  color: #162e5c;
  margin-bottom: 4px;
  font-weight: 600;
}

.who-card-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ===== RIGHT CONTENT ===== */
.who-right {
  flex: 1;
  position: relative;
}

.who-main-img {
  position: relative;
  z-index: 2;
  text-align: center;
}

.who-main-img img {
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 6px solid white;
  transition: all 0.4s ease;
}

.who-main-img:hover img {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 180, 216, 0.2);
}

.who-badge {
  position: absolute;
  bottom: 40px;
  left: 20px;
  background: #162e5c;
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
  border: 2px solid #00b4d8;
}

.who-small-img {
  position: absolute;
  bottom: -20px;
  right: 40px;
  z-index: 4;
}

.who-small-img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.who-small-img:hover img {
  transform: scale(1.05);
  border-color: #00b4d8;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.who-left {
  animation: slideInFromLeft 0.8s ease;
}

.who-right {
  animation: slideInFromRight 0.8s ease;
}

.who-card:nth-child(1) {
  animation: slideInFromLeft 0.8s ease 0.1s both;
}
.who-card:nth-child(2) {
  animation: slideInFromLeft 0.8s ease 0.2s both;
}
.who-card:nth-child(3) {
  animation: slideInFromLeft 0.8s ease 0.3s both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .who-container {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .who-left h2 {
    text-align: center;
    font-size: 36px;
  }

  .who-left h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .who-subtitle {
    text-align: center;
  }

  .who-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .who-main-img img {
    max-width: 350px;
    height: 350px;
  }

  .who-small-img {
    right: 20px;
  }

  .who-small-img img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .who-left h2 {
    font-size: 32px;
  }

  .who-card {
    padding: 15px 20px;
  }

  .who-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .who-card-content h4 {
    font-size: 16px;
  }

  .who-card-content p {
    font-size: 13px;
  }

  .who-main-img img {
    max-width: 300px;
    height: 300px;
  }

  .who-small-img img {
    width: 100px;
    height: 100px;
  }

  .who-badge {
    padding: 10px 20px;
    font-size: 13px;
    left: 10px;
  }
}

@media (max-width: 480px) {
  .who-left h2 {
    font-size: 28px;
  }

  .who-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .who-icon {
    margin-bottom: 5px;
  }

  .who-main-img img {
    max-width: 250px;
    height: 250px;
  }

  .who-small-img {
    display: none;
  }

  .who-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}
/* =========================
   LOCATIONS
========================= */
.locations {
  background: linear-gradient(135deg, #f4f7fb 0%, #eef2f8 100%);
  padding: 100px 8%;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.location-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(22, 46, 92, 0.15);
}

.location-card h3 {
  color: #162e5c;
  margin-bottom: 15px;
  font-size: 24px;
}

.location-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   GLOBAL ANIMATIONS
========================= */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 180, 216, 0.6);
  }
}

/* =========================
   SECTION HEADERS ENHANCED
========================= */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
}

.section-subtitle {
  color: #00b4d8;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.section-header h2 {
  font-size: 48px;
  color: #162e5c;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8, #6c63ff);
  border-radius: 2px;
}

.section-header p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   TEAM SECTION
========================= */
.team-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.team-section:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 180, 216, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.team-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  position: relative;
  animation: fadeInUp 0.8s ease;
}

.team-card:nth-child(1) {
  animation-delay: 0.1s;
}
.team-card:nth-child(2) {
  animation-delay: 0.2s;
}
.team-card:nth-child(3) {
  animation-delay: 0.3s;
}
.team-card:nth-child(4) {
  animation-delay: 0.4s;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 60px rgba(0, 180, 216, 0.2);
}

.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(22, 46, 92, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #162e5c;
  font-size: 20px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #00b4d8;
  color: white;
  transform: rotate(360deg);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  color: #162e5c;
  margin-bottom: 5px;
}

.team-info p {
  color: #00b4d8;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-experience {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #f0f5ff, #e6f0ff);
  border-radius: 30px;
  font-size: 14px;
  color: #666;
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
  background: linear-gradient(135deg, #162e5c 0%, #1a3a6e 100%);
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.testimonials-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30L30 0Z" fill="rgba(255,255,255,0.02)"/></svg>');
  opacity: 0.1;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0) translateY(0);
  }
  to {
    transform: translateX(60px) translateY(60px);
  }
}

.testimonials-section .section-header h2 {
  color: white;
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  animation: fadeIn 0.8s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 180, 216, 0.3);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(0, 180, 216, 0.3);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  color: white;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00b4d8;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  color: #ffd700;
}

/* =========================
   TECHNOLOGY SECTION
========================= */
.technology-section {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 100px 8%;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tech-card {
  background: white;
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.tech-card:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 180, 216, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.8s ease;
}

.tech-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 60px rgba(0, 180, 216, 0.2);
}

.tech-card:hover:before {
  animation: shimmer 2s infinite;
}

.tech-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #e0f0ff, #c0e0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: all 0.4s ease;
  position: relative;
}

.tech-card:hover .tech-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #00b4d8, #6c63ff);
  color: white;
}

.tech-icon:after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed #00b4d8;
  animation: rotate 10s linear infinite;
}

.tech-card h3 {
  font-size: 20px;
  color: #162e5c;
  margin-bottom: 15px;
}

.tech-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   PRICING SECTION
========================= */
.pricing-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
  padding: 100px 8%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.pricing-card {
  background: white;
  border-radius: 40px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.pricing-card:nth-child(2) {
  transform: scale(1.05);
  background: linear-gradient(135deg, #162e5c 0%, #1e3a6e 100%);
  border: 3px solid #00b4d8;
}

.pricing-card:nth-child(2) .pricing-title,
.pricing-card:nth-child(2) .pricing-price,
.pricing-card:nth-child(2) .pricing-feature {
  color: white;
}

.pricing-card:nth-child(2) .pricing-feature:before {
  color: #00b4d8;
}

.popular-badge {
  position: absolute;
  top: 30px;
  right: -30px;
  background: linear-gradient(90deg, #00b4d8, #6c63ff);
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 60px rgba(0, 180, 216, 0.2);
}

.pricing-card:nth-child(2):hover {
  transform: scale(1.05) translateY(-15px);
}

.pricing-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #f0f5ff, #e0f0ff);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: all 0.4s ease;
}

.pricing-card:nth-child(2) .pricing-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(10deg);
}

.pricing-title {
  font-size: 24px;
  color: #162e5c;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 48px;
  color: #00b4d8;
  font-weight: 700;
  margin-bottom: 30px;
}

.pricing-price span {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 35px;
}

.pricing-feature {
  padding: 12px 0;
  color: #555;
  border-bottom: 1px dashed #eee;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature:before {
  content: "✓";
  margin-right: 10px;
  color: #00b4d8;
  font-weight: 700;
}

.pricing-btn {
  background: linear-gradient(90deg, #00b4d8, #6c63ff);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(0, 180, 216, 0.3);
}

.pricing-btn:hover:before {
  left: 100%;
}

/* =========================
   BLOG SECTION
========================= */
.blog-section {
  background: white;
  padding: 100px 8%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.blog-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  animation: fadeInUp 0.8s ease;
}

.blog-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 60px rgba(0, 180, 216, 0.15);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #00b4d8, #6c63ff);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
  z-index: 2;
}

.blog-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  color: #162e5c;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 20px;
  color: #162e5c;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: #00b4d8;
}

.blog-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  color: #00b4d8;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 15px;
}

/* =========================
   CONTACT SECTION
========================= */
/* Address Phone and Hours Styles */
.address-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 180, 216, 0.2);
  font-size: 11px;
}

.address-phone i {
  color: #00b4d8;
  font-size: 11px;
  width: 14px;
}

.address-phone a {
  color: #00b4d8;
  text-decoration: none;
  font-weight: 600;
}

.address-phone a:hover {
  color: #162e5c;
  text-decoration: underline;
}

.address-hours {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
  font-size: 10px;
  color: #666;
}

.address-hours i {
  color: #00b4d8;
  font-size: 10px;
  width: 14px;
  margin-top: 2px;
}

.address-hours span {
  line-height: 1.4;
}

.contact-section {
  background: linear-gradient(135deg, #162e5c 0%, #1e3a6e 100%);
  padding: 100px 2%;
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-info h3 {
  font-size: 32px;
  color: white;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  animation: slideInFromLeft 0.8s ease;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00b4d8;
  transition: all 0.4s ease;
}

.contact-detail:hover .contact-icon {
  background: #00b4d8;
  color: white;
  transform: rotate(360deg);
}

.contact-text h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-form {
  background: white;
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.2);
  animation: slideInFromRight 0.8s ease;
}

.form-group {
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #00b4d8;
  outline: none;
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.1);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #00b4d8, #6c63ff);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(0, 180, 216, 0.3);
}

/* =========================
   NEWSLETTER SECTION
========================= */
.newsletter-section {
  background: linear-gradient(135deg, #00b4d8, #6c63ff);
  padding: 80px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-btn {
  background: #162e5c;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation delays for cards */
.tech-card:nth-child(1) {
  animation-delay: 0.1s;
}
.tech-card:nth-child(2) {
  animation-delay: 0.2s;
}
.tech-card:nth-child(3) {
  animation-delay: 0.3s;
}
.tech-card:nth-child(4) {
  animation-delay: 0.4s;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.blog-card:nth-child(1) {
  animation-delay: 0.1s;
}
.blog-card:nth-child(2) {
  animation-delay: 0.2s;
}
.blog-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Hover animations */
.hover-glow:hover {
  animation: glow 2s infinite;
}

.hover-float:hover {
  animation: float 3s ease infinite;
}

.hover-pulse:hover {
  animation: pulse 2s ease infinite;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: linear-gradient(135deg, #162e5c 0%, #1a3a6e 100%);
  color: white;
  text-align: center;
  padding: 40px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6c63ff, #00b4d8);
}

.footer p {
  position: relative;
  z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .who-container {
    gap: 50px;
  }

  .who-badge {
    left: -20px;
    padding: 15px 25px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .hero-overlay h1 {
    font-size: 42px;
  }

  .about-modern-v2 {
    flex-direction: column;
    text-align: center;
  }

  .about-right h2 {
    text-align: center;
  }

  .about-right h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .stats-grid-modern {
    max-width: 500px;
    margin: 0 auto;
  }

  .who-container {
    flex-direction: column-reverse;
  }

  .who-left h2 {
    text-align: center;
  }

  .who-left h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .who-subtitle {
    text-align: center;
  }

  .who-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .who-main-img img {
    max-width: 400px;
    height: 400px;
  }

  .who-small-img {
    right: 10px;
  }

  .who-small-img img {
    width: 150px;
    height: 150px;
  }

  .who-badge {
    left: -10px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 5%;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .service-card-modern {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-icon-modern {
    margin-bottom: 10px;
  }

  .who-main-img img {
    max-width: 300px;
    height: 300px;
  }

  .who-small-img {
    bottom: -20px;
  }

  .who-small-img img {
    width: 120px;
    height: 120px;
  }

  .who-badge {
    padding: 12px 20px;
    font-size: 13px;
    left: 0;
  }

  .stats-grid-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-overlay h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .who-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .who-icon {
    margin-bottom: 10px;
  }

  .who-main-img img {
    max-width: 250px;
    height: 250px;
  }

  .who-small-img {
    display: none;
  }

  .who-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}

/* Animation for cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stagger animations for cards */
.service-card-modern:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card-modern:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card-modern:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card-modern:nth-child(4) {
  animation-delay: 0.4s;
}

.who-card:nth-child(1) {
  animation: slideInFromLeft 0.8s ease 0.1s both;
}
.who-card:nth-child(2) {
  animation: slideInFromLeft 0.8s ease 0.2s both;
}
.who-card:nth-child(3) {
  animation: slideInFromLeft 0.8s ease 0.3s both;
}

.location-card:nth-child(1) {
  animation: fadeIn 0.8s ease 0.1s both;
}
.location-card:nth-child(2) {
  animation: fadeIn 0.8s ease 0.2s both;
}
.location-card:nth-child(3) {
  animation: fadeIn 0.8s ease 0.3s both;
}

/* =========================
   CONTACT PAGE - CLEAN VERSION
========================= */
/* =========================
   CONTACT PAGE - FINAL (NO SCROLL, HORIZONTAL MAP & ADDRESS)
========================= */

.contact-page {
  padding: 140px 8% 80px;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 42px;
  color: #162e5c;
  margin-bottom: 15px;
}

.contact-header p {
  color: #666;
  font-size: 18px;
}

/* Contact Details Grid */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-detail-card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 180, 216, 0.15);
}

.contact-detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
  color: #00b4d8;
}

.contact-detail-card h3 {
  font-size: 18px;
  color: #162e5c;
  margin-bottom: 8px;
}

.contact-detail-card .phone-number {
  font-size: 18px;
  font-weight: 600;
  color: #00b4d8;
}

/* Main Contact Container */
.contact-main-container {
  display: flex;
  gap: 30px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Company Info Section */
.company-info-section {
  flex: 0.6;
  padding: 30px 25px;
  background: linear-gradient(135deg, #162e5c 0%, #1e3a6e 100%);
  color: white;
}

.company-info-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00b4d8;
  display: inline-block;
}

.company-description p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.business-hours {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
}

.business-hours h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.hours-time {
  color: #00b4d8;
  font-weight: 600;
}

.hours-note {
  font-size: 11px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

/* Map Section */
.map-section {
  flex: 1.4;
  padding: 20px 25px;
  overflow: visible;
}

.map-section h2 {
  font-size: 24px;
  color: #162e5c;
  margin-bottom: 20px;
}

/* Location Item */
.location-item {
  margin-bottom: 25px;
}

.location-item:last-child {
  margin-bottom: 0;
}

/* Location Badge */
.location-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-badge {
  background: #00b4d8;
  color: white;
}

.branch-badge {
  background: #6c63ff;
  color: white;
}

/* Horizontal layout for map and address */
.location-horizontal {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

/* Map Container */
.map-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 160px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Address Card */
.address-card {
  flex: 0.7;
  padding: 12px;
  background: #f8faff;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.address-icon {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #00b4d8;
  flex-shrink: 0;
}

.address-text h4 {
  font-size: 13px;
  color: #162e5c;
  margin-bottom: 4px;
}

.address-text p {
  color: #666;
  font-size: 10px;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-page {
    padding: 120px 5% 60px;
  }
  
  .location-horizontal {
    flex-direction: column;
  }
  
  .map-container {
    height: 180px;
  }
  
  .address-card {
    flex-direction: row;
  }
}

@media (max-width: 992px) {
  .contact-main-container {
    flex-direction: column;
  }
  
  .company-info-section {
    flex: auto;
  }
  
  .map-section {
    flex: auto;
  }
}

@media (max-width: 768px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
  
  .location-horizontal {
    flex-direction: column;
  }
  
  .address-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* =========================
   CONTACT PAGE - ADJUSTED WIDTH & NO SCROLL
========================= */

/* Main Contact Container - Adjusted widths */
.contact-main-container {
  display: flex;
  gap: 40px;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

/* Company Info Section - WIDTH REDUCED */
.company-info-section {
  flex: 0.8; /* Reduced from 1.2 to 0.8 */
  padding: 40px 35px;
  background: linear-gradient(135deg, #162e5c 0%, #1e3a6e 100%);
  color: white;
}

/* Map Section - Takes remaining space, NO SCROLL */
.map-section {
  flex: 1.2; /* Increased to balance */
  padding: 40px 35px;
  overflow: visible; /* No scroll */
  max-height: none;
}

.map-section h2 {
  font-size: 28px;
  color: #162e5c;
  margin-bottom: 25px;
  text-align: left;
  position: static;
  background: transparent;
  padding-bottom: 0;
}

/* Two Locations Grid - Side by side */
.locations-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Location Item */
.location-item {
  margin-bottom: 0;
  animation: fadeInUp 0.6s ease;
}

/* Map Container - Fixed height */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 220px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(0, 180, 216, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Location Badge */
.location-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-badge {
  background: linear-gradient(90deg, #00b4d8, #0096c7);
  color: white;
}

.branch-badge {
  background: linear-gradient(90deg, #6c63ff, #5848c7);
  color: white;
}

/* Address Card - Compact */
.address-card {
  padding: 15px;
  background: #f8faff;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(0, 180, 216, 0.1);
  transition: all 0.3s ease;
}

.address-card:hover {
  border-color: #00b4d8;
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.1);
}

.address-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #00b4d8;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.address-text h4 {
  font-size: 16px;
  color: #162e5c;
  margin-bottom: 5px;
  font-weight: 600;
}

.address-text p {
  color: #666;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

/* Company Info Section internal spacing reduced */
.company-info-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.company-description p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.business-hours {
  padding: 20px;
}

.business-hours h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.hours-row {
  padding: 6px 0;
  font-size: 13px;
}

.hours-note {
  font-size: 12px;
  margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .locations-two-grid {
    gap: 20px;
  }
  
  .map-container {
    height: 200px;
  }
  
  .company-info-section {
    flex: 0.9;
    padding: 35px 25px;
  }
  
  .map-section {
    flex: 1.1;
    padding: 35px 25px;
  }
}

@media (max-width: 992px) {
  .contact-main-container {
    flex-direction: column;
  }
  
  .company-info-section {
    flex: auto;
  }
  
  .map-section {
    flex: auto;
  }
  
  .locations-two-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .locations-two-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .map-container {
    height: 220px;
  }
  
  .company-info-section,
  .map-section {
    padding: 30px 25px;
  }
  
  .address-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .address-icon {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .company-info-section,
  .map-section {
    padding: 25px 20px;
  }
  
  .map-container {
    height: 200px;
  }
  
  .address-text h4 {
    font-size: 15px;
  }
  
  .address-text p {
    font-size: 11px;
  }
  
  .location-badge {
    font-size: 10px;
    padding: 3px 10px;
  }
}



/* =========================
   CONTACT PAGE - HORIZONTAL MAP & ADDRESS
========================= */

/* Main Contact Container */
.contact-main-container {
  display: flex;
  gap: 40px;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

/* Company Info Section - Width Reduced */
.company-info-section {
  flex: 0.8;
  padding: 40px 35px;
  background: linear-gradient(135deg, #162e5c 0%, #1e3a6e 100%);
  color: white;
}

/* Map Section */
.map-section {
  flex: 1.2;
  padding: 40px 35px;
  overflow: visible;
}

.map-section h2 {
  font-size: 28px;
  color: #162e5c;
  margin-bottom: 25px;
  text-align: left;
}

/* Locations Container - Vertical stacking of locations */
.locations-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Location Item */
.location-item {
  animation: fadeInUp 0.6s ease;
}

/* Location Badge */
.location-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-badge {
  background: linear-gradient(90deg, #00b4d8, #0096c7);
  color: white;
}

.branch-badge {
  background: linear-gradient(90deg, #6c63ff, #5848c7);
  color: white;
}

/* Horizontal layout for map and address */
.location-horizontal {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Map Container */
.map-container {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 220px;
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(0, 180, 216, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Address Card */
.address-card {
  flex: 0.8;
  padding: 18px;
  background: #f8faff;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid rgba(0, 180, 216, 0.1);
  transition: all 0.3s ease;
}

.address-card:hover {
  border-color: #00b4d8;
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.1);
}

.address-icon {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00b4d8;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.address-text h4 {
  font-size: 16px;
  color: #162e5c;
  margin-bottom: 8px;
  font-weight: 600;
}

.address-text p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Company Info Section internal styling */
.company-info-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.company-description p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.business-hours {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.business-hours h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.hours-day {
  color: rgba(255, 255, 255, 0.8);
}

.hours-time {
  color: #00b4d8;
  font-weight: 600;
}

.hours-note {
  font-size: 12px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .location-horizontal {
    gap: 15px;
  }
  
  .map-container {
    height: 200px;
  }
  
  .address-card {
    flex: 0.9;
    padding: 15px;
  }
}

@media (max-width: 992px) {
  .contact-main-container {
    flex-direction: column;
  }
  
  .company-info-section {
    flex: auto;
  }
  
  .map-section {
    flex: auto;
  }
  
  .location-horizontal {
    flex-direction: column;
  }
  
  .map-container {
    height: 250px;
  }
  
  .address-card {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .company-info-section,
  .map-section {
    padding: 30px 25px;
  }
  
  .map-container {
    height: 220px;
  }
  
  .address-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .address-icon {
    margin-bottom: 10px;
  }
  
  .location-horizontal {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .company-info-section,
  .map-section {
    padding: 25px 20px;
  }
  
  .map-container {
    height: 200px;
  }
  
  .address-text h4 {
    font-size: 15px;
  }
  
  .address-text p {
    font-size: 12px;
  }
  
  .location-badge {
    font-size: 10px;
    padding: 4px 12px;
  }
  
  .address-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}






.company-info-section h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 30px;
  text-align: left;
  position: relative;
  padding-bottom: 15px;
}

.company-info-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #00b4d8;
}

.company-description {
  margin-bottom: 40px;
}

.company-description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.company-features {
  list-style: none;
  margin-bottom: 40px;
}

.company-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.company-features li span {
  width: 28px;
  height: 28px;
  background: rgba(0, 180, 216, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b4d8;
  font-size: 14px;
}

.business-hours {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.business-hours h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-hours h3 i {
  color: #00b4d8;
}

.hours-grid {
  display: grid;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hours-time {
  color: #00b4d8;
  font-weight: 600;
}

.hours-note {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-style: italic;
}

/* Map Section */
.map-section {
  flex: 1.5;
  padding: 50px;
}

.map-section h2 {
  font-size: 28px;
  color: #162e5c;
  margin-bottom: 25px;
  text-align: left;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.address-card {
  margin-top: 25px;
  padding: 20px;
  background: #f8faff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.address-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00b4d8;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.address-text h4 {
  font-size: 18px;
  color: #162e5c;
  margin-bottom: 5px;
}

.address-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Branch Locations */
.branch-section {
  margin-top: 60px;
}

.branch-section h2 {
  font-size: 32px;
  color: #162e5c;
  margin-bottom: 40px;
  text-align: center;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.branch-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 180, 216, 0.15);
  border-color: #00b4d8;
}

.branch-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #00b4d8;
}

.branch-card h3 {
  font-size: 20px;
  color: #162e5c;
  margin-bottom: 15px;
}

.branch-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-card p i {
  color: #00b4d8;
  width: 20px;
}

.branch-phone {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e0e0e0;
}

.branch-phone a {
  color: #00b4d8;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.branch-phone a:hover {
  color: #162e5c;
}

/* Social Links */
.social-section {
  margin-top: 60px;
  text-align: center;
}

.social-section h3 {
  font-size: 24px;
  color: #162e5c;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #162e5c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.social-link:hover {
  background: #00b4d8;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 180, 216, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .contact-main-container {
    flex-direction: column;
  }

  .company-info-section,
  .map-section {
    padding: 20px;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 120px 5% 60px;
  }

  .contact-header h1 {
    font-size: 36px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-info-section,
  .map-section {
    padding: 20px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }

  .address-card {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .contact-header h1 {
    font-size: 30px;
  }

  .contact-detail-card {
    padding: 25px;
  }

  .company-info-section h2 {
    font-size: 28px;
  }

  .map-container {
    height: 250px;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* =========================
   COMPLETE MOBILE RESPONSIVE
========================= */

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
  section {
    padding: 80px 6%;
  }

  h2 {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .section-header p {
    font-size: 16px;
  }

  /* Hero Section */
  .hero-left h1 {
    font-size: 60px;
  }

  .hero-right h2 {
    font-size: 60px;
  }

  .hero-features {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Services */
  .services-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* About Section */
  .about-modern-v2 {
    gap: 50px;
  }

  .about-left img {
    max-width: 400px;
  }

  .about-right h2 {
    font-size: 36px;
  }

  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Team Section */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px;
  }

  /* Technology */
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .pricing-card:nth-child(2) {
    transform: scale(1);
  }

  .pricing-card:nth-child(2):hover {
    transform: translateY(-15px);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 40px;
  }

  /* Locations */
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }

  h2 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  /* Hero Section */
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right h2 {
    font-size: 48px;
  }

  .hero-right h2 span {
    font-size: 32px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: 120px;
  }

  .hero-stat h3 {
    font-size: 28px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .hero-feature {
    width: 100%;
    max-width: 280px;
  }

  .hero-trust {
    justify-content: center;
  }

  /* Services */
  .services-grid-v2 {
    grid-template-columns: 1fr;
  }

  .service-card-modern {
    padding: 25px;
  }

  .service-icon-modern {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  /* About Section */
  .about-modern-v2 {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-left img {
    max-width: 100%;
  }

  .about-right h2 {
    text-align: center;
    font-size: 32px;
  }

  .about-right h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-right p {
    font-size: 16px;
  }

  .stats-grid-modern {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Team Section */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-image {
    height: 280px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-quote {
    font-size: 60px;
    top: 10px;
    right: 20px;
  }

  /* Technology */
  .tech-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .tech-card {
    padding: 30px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 40px 25px;
  }

  .popular-badge {
    padding: 6px 30px;
    font-size: 12px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .blog-image {
    height: 220px;
  }

  .blog-content {
    padding: 25px;
  }

  .blog-title {
    font-size: 18px;
  }

  /* Contact */
  .contact-form {
    padding: 30px;
  }

  .contact-detail {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icon {
    margin-bottom: 10px;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }

  .newsletter-content h2 {
    font-size: 28px;
  }

  /* Locations */
  .location-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .location-card {
    padding: 30px;
  }

  /* Footer */
  .footer {
    padding: 30px;
    font-size: 14px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  section {
    padding: 50px 4%;
  }

  h2 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }

  /* Hero Section */
  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-right h2 {
    font-size: 36px;
  }

  .hero-right h2 span {
    font-size: 24px;
  }

  .hero-stat {
    min-width: 80px;
  }

  .hero-stat h3 {
    font-size: 22px;
  }

  .hero-stat p {
    font-size: 11px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    flex: content;
    justify-items: center;
  }

  .hero-feature {
    padding: 8px 15px;
  }

  .hero-feature span {
    font-size: 20px;
  }

  .hero-feature p {
    font-size: 12px;
  }

  /* Services */
  .service-card-modern {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .service-icon-modern {
    margin: 0 auto 15px;
  }

  .service-icon-modern {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  /* About Section */
  .about-right h2 {
    font-size: 28px;
  }

  .about-right p {
    font-size: 14px;
  }

  .stat-box-modern {
    padding: 15px;
  }

  .stat-box-modern h3 {
    font-size: 24px;
  }

  .stat-box-modern p {
    font-size: 12px;
  }

  /* Team Section */
  .team-info h3 {
    font-size: 18px;
  }

  .team-info p {
    font-size: 14px;
  }

  .team-experience {
    font-size: 12px;
    padding: 6px 15px;
  }

  /* Testimonials */
  .testimonial-content p {
    font-size: 14px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-info h4 {
    font-size: 16px;
  }

  .testimonial-info p {
    font-size: 12px;
  }

  /* Technology */
  .tech-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .tech-card h3 {
    font-size: 18px;
  }

  .tech-card p {
    font-size: 13px;
  }

  /* Pricing */
  .pricing-price {
    font-size: 36px;
  }

  .pricing-price span {
    font-size: 14px;
  }

  .pricing-feature {
    font-size: 14px;
  }

  .pricing-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  /* Blog */
  .blog-meta {
    flex-direction: column;
    gap: 5px;
  }

  .blog-date {
    padding: 6px 12px;
    font-size: 12px;
  }

  .blog-category {
    padding: 4px 12px;
    font-size: 11px;
  }

  .blog-excerpt {
    font-size: 14px;
  }

  /* Contact */
  .contact-info h3 {
    font-size: 24px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .contact-text h4 {
    font-size: 16px;
  }

  .contact-text p {
    font-size: 13px;
  }

  .form-input {
    padding: 12px 15px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 16px;
  }

  /* Newsletter */
  .newsletter-content h2 {
    font-size: 24px;
  }

  .newsletter-content p {
    font-size: 14px;
  }

  .newsletter-input,
  .newsletter-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Locations */
  .location-card h3 {
    font-size: 20px;
  }

  .location-card p {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 25px;
    font-size: 13px;
  }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
  .hero-left h1 {
    font-size: 30px;
  }

  .hero-stat {
    min-width: 70px;
  }

  .hero-stat h3 {
    font-size: 18px;
  }

  .hero-stat p {
    font-size: 10px;
  }

  .who-card {
    padding: 15px;
  }

  .who-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .who-card-content h4 {
    font-size: 16px;
  }

  .who-card-content p {
    font-size: 12px;
  }
}

/* Fix for very small devices */
@media (max-width: 320px) {
  .hero-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .appointment-btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .nav-links {
    padding: 50px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-btn,
  .appointment-btn,
  .footer {
    display: none;
  }
}




/* =========================
   FIND US HERE - 2 LOCATIONS STYLE
========================= */


.map-section h2 {
  font-size: 28px;
  color: #162e5c;
  margin-bottom: 30px;
  text-align: left;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
  padding-bottom: 15px;
}

/* Location Item Container */
.location-item {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease;
}

.location-item:last-child {
  margin-bottom: 0;
}

/* Location Badge */
.location-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-badge {
  background: linear-gradient(90deg, #00b4d8, #0096c7);
  color: white;
}

.branch-badge {
  background: linear-gradient(90deg, #6c63ff, #5848c7);
  color: white;
}

/* Map Container */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 280px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 180, 216, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Address Card */
.address-card {
  padding: 20px;
  background: #f8faff;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid rgba(0, 180, 216, 0.1);
  transition: all 0.3s ease;
}

.address-card:hover {
  border-color: #00b4d8;
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.1);
}

.address-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00b4d8;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.address-text h4 {
  font-size: 18px;
  color: #162e5c;
  margin-bottom: 8px;
  font-weight: 600;
}

.address-text p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}



/* Responsive Design */
@media (max-width: 992px) {
  .map-section {
    padding: 20px;
    max-height: none;
    overflow-y: visible;
  }
  
  .map-container {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 30px;
  }
  
  .map-container {
    height: 220px;
  }
  
  .address-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .address-icon {
    margin-bottom: 10px;
  }
  
  .location-badge {
    font-size: 11px;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 20px;
  }
  
  .map-container {
    height: 200px;
  }
  
  .address-text h4 {
    font-size: 16px;
  }
  
  .address-text p {
    font-size: 13px;
  }
}