/* ========================================
   COMMON STYLES - SHARED ACROSS ALL PAGES
======================================== */

/* ===== ENHANCED LAYOUT AND TYPOGRAPHY ===== */
.layout_padding {
  padding: 120px 0;
}

.layout_padding2 {
  padding: 100px 0;
}

.layout_padding2-top {
  padding-top: 100px;
}

.layout_padding2-bottom {
  padding-bottom: 100px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

/* Import Inter font for better readability */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Modern typography improvements */
body {
  font-family: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

/* Enhanced heading styles */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: #6a7280;
  max-width: 600px;
}

/* Better button styles */
a,
a:hover,
a:focus {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.025em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero area styling */
.hero_area {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
}

.sub_page .hero_area {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.hero_bg_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 32, 74, 0.1);
  z-index: 1;
}

.sub_page .hero_bg_box::before {
  background: rgba(26, 32, 44, 0.1);
}

.bg_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Navigation styles */
.header_section {
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 45px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00bbf0 !important;
  background: rgba(0, 187, 240, 0.1);
  transform: translateY(-1px);
}

/* Footer styles */
.footer_section {
  background: linear-gradient(135deg, #00204a 0%, #001a38 100%);
  color: white;
  padding: 60px 0 20px;
  position: relative;
}

.footer_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00bbf0, transparent);
}

/* Common animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Common card styles */
.modern_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.modern_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.1), transparent);
  transition: left 0.5s ease;
}

.modern_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.modern_card:hover::before {
  left: 100%;
}

.modern_card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.modern_card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.modern_card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.modern_card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Common responsive design */
@media (max-width: 768px) {
  .layout_padding {
    padding: 80px 0;
  }
  
  .layout_padding2 {
    padding: 60px 0;
  }
  
  .modern_card {
    padding: 30px 20px;
  }
  
  .heading_container h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .layout_padding {
    padding: 60px 0;
  }
  
  .layout_padding2 {
    padding: 40px 0;
  }
}
/* ========================================
   HOMEPAGE STYLES (index.html)
======================================== */

/* Hero/Slider Section */
.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.hero_bg_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 32, 74, 0.1);
  z-index: 1;
}

.hero_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Slider section enhancements */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.slider_number {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 10rem;
  font-weight: 900;
  z-index: -1;
  font-family: 'Inter', sans-serif;
}

.detail-box h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sub_page .detail-box h1 {
  color: #f7fafc;
}

.detail-box h1 span {
  color: #00bbf0;
  text-shadow: 0 0 20px rgba(0, 187, 240, 0.5);
}

.detail-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
}

.sub_page .detail-box p {
  color: #cbd5e0;
}

.btn-box a {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

/* Carousel indicators */
.carousel-indicators {
  bottom: 30px;
  margin-bottom: 0;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.sub_page .carousel-indicators li {
  border-color: rgba(247, 250, 252, 0.5);
}

.carousel-indicators li.active {
  background: #00bbf0;
  border-color: #00bbf0;
  box-shadow: 0 0 15px rgba(0, 187, 240, 0.6);
}

/* Modern Statistics Section */
.stats_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
}

.stats_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,187,240,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
}

.stats_container {
  position: relative;
  z-index: 1;
}

.stats_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stats_box {
  background: white;
  padding: 50px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  animation: statsSlideUp 0.8s ease-out forwards;
}

.stats_box:nth-child(1) { animation-delay: 0.1s; }
.stats_box:nth-child(2) { animation-delay: 0.2s; }
.stats_box:nth-child(3) { animation-delay: 0.3s; }
.stats_box:nth-child(4) { animation-delay: 0.4s; }

.stats_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
}

.stats_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 187, 240, 0.2);
}

.counter {
  font-size: 3.5rem;
  font-weight: 900;
  color: #00bbf0;
  margin-bottom: 15px;
  display: block;
  line-height: 1;
}

.counter_text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Section on Homepage */
.service_section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.service_section .container-fluid {
  padding: 0 50px;
}

.service_section .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service_section .box {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.service_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.service_section .img-box {
  margin-bottom: 25px;
}

.service_section .img-box img {
  width: 80px;
  height: 80px;
  filter: hue-rotate(200deg) saturate(1.2);
  transition: all 0.3s ease;
}

.service_section .box:hover .img-box img {
  transform: scale(1.1) rotate(5deg);
}

.service_section .detail-box h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.service_section .detail-box p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* About Section on Homepage */
.about_section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  position: relative;
  height: 450px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about_section .img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-dots)"/></svg>');
}

.about_section .img-box .placeholder {
  font-size: 4rem;
  color: #00bbf0;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

.about_section .detail-box h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about_section .detail-box p {
  color: #718096;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.feature_list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature_list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #4a5568;
  font-weight: 500;
  font-size: 1.05rem;
}

.feature_list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Track Section */
.track_section {
  background: linear-gradient(135deg, #00204a 0%, #001a38 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.track_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="track-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23track-pattern)"/></svg>');
}

/* Client Section */
.client_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.client_section .carousel-item {
  padding: 50px;
  background: white;
  border-radius: 20px;
  margin: 0 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section on Homepage */
.contact_section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.contact_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-dots)"/></svg>');
  opacity: 0.5;
}

.contact_section .container {
  position: relative;
  z-index: 1;
}

/* Homepage specific animations */
@keyframes statsSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Homepage responsive design */
@media (max-width: 768px) {
  .detail-box h1 {
    font-size: 2.5rem;
  }
  
  .slider_number {
    display: none;
  }
  
  .stats_content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service_section .container-fluid {
    padding: 0 20px;
  }
  
  .service_section .row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .detail-box h1 {
    font-size: 2rem;
  }
  
  .detail-box p {
    font-size: 1.1rem;
  }
  
  .stats_box {
    padding: 30px 20px;
  }
  
  .counter {
    font-size: 2.5rem;
  }
}
/* ========================================
   SERVICES PAGE STYLES (service.html)
======================================== */

/* Featured service card */
.featured_service {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 25px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

.featured_service::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured_service:hover::before {
  opacity: 1;
}

.featured_service h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.featured_service p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services grid */
.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.service_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.service_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.1), transparent);
  transition: left 0.5s ease;
}

.service_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.service_card:hover::before {
  left: 100%;
}

.service_card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.service_card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.service_card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.service_card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Detailed services section */
.detailed_services {
  margin-top: 120px;
}

.detailed_services .section_title {
  text-align: center;
  margin-bottom: 80px;
}

.detailed_services h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.detailed_services .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.service_detail {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  gap: 60px;
}

.service_detail:nth-child(even) {
  flex-direction: row-reverse;
}

.service_content {
  flex: 1;
}

.service_content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.service_content p {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.service_features {
  list-style: none;
  padding: 0;
}

.service_features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #4a5568;
  font-weight: 500;
}

.service_features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
  font-size: 1.2rem;
}

.service_image {
  flex: 1;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service_image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23service-dots)"/></svg>');
}

.service_image .placeholder {
  font-size: 3rem;
  color: #00bbf0;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

/* Service page specific animations */
.service_card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.service_card:nth-child(1) { animation-delay: 0.1s; }
.service_card:nth-child(2) { animation-delay: 0.2s; }
.service_card:nth-child(3) { animation-delay: 0.3s; }
.service_card:nth-child(4) { animation-delay: 0.4s; }
.service_card:nth-child(5) { animation-delay: 0.5s; }
.service_card:nth-child(6) { animation-delay: 0.6s; }

.service_detail {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* CTA Section for Services */
.services_cta {
  background: linear-gradient(135deg, #00204a 0%, #001a38 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.services_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.services_cta .container {
  position: relative;
  z-index: 1;
}

.services_cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.services_cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services_cta .btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.services_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

/* Responsive design for services page */
@media (max-width: 768px) {
  .services_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service_detail {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
  
  .service_detail:nth-child(even) {
    flex-direction: column !important;
  }
  
  .featured_service {
    padding: 40px 20px;
  }
  
  .featured_service h2 {
    font-size: 2rem;
  }
  
  .services_cta h2 {
    font-size: 2rem;
  }
  
  .services_cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .service_card {
    padding: 30px 20px;
  }
  
  .service_content h3 {
    font-size: 1.5rem;
  }
  
  .service_content p {
    font-size: 1rem;
  }
  
  .service_image {
    height: 250px;
  }
}
/* ========================================
   ABOUT PAGE STYLES (about.html)
======================================== */

.about_section {
  position: relative;
  overflow: hidden;
}

.about_main_content {
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.about_image_box {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.about_image_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
}

.about_image_box .placeholder {
  font-size: 4rem;
  color: #00bbf0;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

/* Mission and Vision Cards */
.mission_vision_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.mission_card, .vision_card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission_card::before {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vision_card::before {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.mission_card::before,
.vision_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.mission_card:hover,
.vision_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission_card h3,
.vision_card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 25px;
}

.mission_card p,
.vision_card p {
  color: #718096;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Values Grid */
.values_section {
  margin-bottom: 80px;
}

.values_section .section_title {
  text-align: center;
  margin-bottom: 60px;
}

.values_section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.values_section .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.value_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.value_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.value_card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.value_card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.value_card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Statistics section for about page */
.about_stats {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  border-radius: 25px;
  margin: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about_stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
}

.about_stats .container {
  position: relative;
  z-index: 1;
}

.about_stats h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: white;
}

.about_stats_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat_item {
  padding: 20px;
}

.stat_number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.stat_label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Preview Section */
.team_preview {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  margin-top: 80px;
}

.team_preview .section_title {
  text-align: center;
  margin-bottom: 60px;
}

.team_preview h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.team_preview .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.team_members_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.team_member {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team_member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.team_member .avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: white;
}

.team_member h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.team_member .role {
  color: #00bbf0;
  font-weight: 500;
  margin-bottom: 15px;
}

.team_member p {
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Call to Action */
.about_cta {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.about_cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.about_cta p {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about_cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.about_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

/* About page animations */
.mission_card,
.vision_card {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mission_card {
  animation-delay: 0.2s;
}

.vision_card {
  animation-delay: 0.4s;
}

.value_card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.value_card:nth-child(1) { animation-delay: 0.1s; }
.value_card:nth-child(2) { animation-delay: 0.2s; }
.value_card:nth-child(3) { animation-delay: 0.3s; }
.value_card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive design for about page */
@media (max-width: 768px) {
  .mission_vision_cards,
  .values_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission_vision_cards {
    gap: 30px;
  }
  
  .mission_card,
  .vision_card {
    padding: 40px 30px;
  }
  
  .about_stats h2 {
    font-size: 2rem;
  }
  
  .about_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .team_members_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .mission_card,
  .vision_card {
    padding: 30px 20px;
  }
  
  .mission_card h3,
  .vision_card h3 {
    font-size: 1.5rem;
  }
  
  .about_stats_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat_number {
    font-size: 2.5rem;
  }
  
  .about_cta {
    padding: 40px 20px;
  }
}
/* ========================================
   CONTACT PAGE STYLES (contact.html)
======================================== */

/* Modern contact form */
.modern_contact_form {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.modern_contact_form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
}

.modern_contact_form h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 30px;
  text-align: center;
}

.form_group {
  margin-bottom: 25px;
}

.form_group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: inherit;
}

.form_group input:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #00bbf0;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 187, 240, 0.1);
}

.form_group input.error,
.form_group textarea.error {
  border-color: #e53e3e;
  background: #fed7d7;
}

.form_group input.success,
.form_group textarea.success {
  border-color: #38a169;
  background: #f0fff4;
}

.form_group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit_btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

.submit_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact info cards */
.contact_info_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact_info_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.contact_info_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.contact_info_card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.contact_info_card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.contact_info_card p {
  color: #718096;
  line-height: 1.6;
}

.contact_info_card a {
  color: #00bbf0;
  text-decoration: none;
  font-weight: 500;
}

.contact_info_card a:hover {
  text-decoration: underline;
}

/* Business hours section */
.business_hours {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.business_hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hours-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hours-pattern)"/></svg>');
}

.business_hours .content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.business_hours h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
}

.hours_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.hour_item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hour_item .day {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.hour_item .time {
  color: #00bbf0;
  font-weight: 500;
}

/* Map section */
.map_section {
  margin-bottom: 50px;
}

.map_container {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23map-dots)"/></svg>');
}

.map_placeholder {
  text-align: center;
  z-index: 1;
  position: relative;
}

.map_placeholder i {
  font-size: 4rem;
  color: #00bbf0;
  margin-bottom: 20px;
  opacity: 0.7;
}

.map_placeholder h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.map_placeholder p {
  color: #718096;
  font-size: 1.1rem;
}

/* Contact CTA section */
.contact_cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.contact_cta .content {
  position: relative;
  z-index: 1;
}

.contact_cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.contact_cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact_cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: white;
  color: #667eea;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.contact_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #667eea;
}

/* Contact page animations */
.contact_info_card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.contact_info_card:nth-child(1) { animation-delay: 0.1s; }
.contact_info_card:nth-child(2) { animation-delay: 0.2s; }
.contact_info_card:nth-child(3) { animation-delay: 0.3s; }

.modern_contact_form {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Form loading state */
.modern_contact_form.loading {
  pointer-events: none;
}

.modern_contact_form.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Alert styles */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}

.alert-error {
  background: #fed7d7;
  border: 1px solid #feb2b2;
  color: #742a2a;
}

/* Responsive design for contact page */
@media (max-width: 768px) {
  .contact_info_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .modern_contact_form {
    padding: 30px 20px;
  }
  
  .modern_contact_form h2 {
    font-size: 2rem;
  }
  
  .business_hours {
    padding: 40px 20px;
  }
  
  .hours_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact_cta {
    padding: 40px 20px;
  }
  
  .contact_cta h3 {
    font-size: 1.5rem;
  }
  
  .map_container {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .form_group input,
  .form_group textarea {
    padding: 12px 16px;
  }
  
  .submit_btn {
    padding: 12px 30px;
  }
  
  .contact_info_card {
    padding: 30px 20px;
  }
  
  .contact_info_card .icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
/* ========================================
   WHY US PAGE STYLES (why.html)
======================================== */

/* Featured transparency card */
.featured_transparency {
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
  color: white;
  padding: 80px 60px;
  border-radius: 25px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 32, 74, 0.3);
}

.featured_transparency::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured_transparency:hover::before {
  opacity: 1;
}

.featured_transparency .icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.featured_transparency h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured_transparency p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.featured_transparency .highlight {
  color: #00bbf0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 187, 240, 0.5);
}

/* Why us grid */
.why_us_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.why_us_card {
  background: white;
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

.why_us_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.05), transparent);
  transition: left 0.6s ease;
}

.why_us_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 187, 240, 0.25);
}

.why_us_card:hover::before {
  left: 100%;
}

.why_us_card .icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.2rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 187, 240, 0.3);
}

.why_us_card:hover .icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(0, 187, 240, 0.4);
}

.why_us_card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why_us_card p {
  color: #718096;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 25px;
}

.why_us_card .features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.why_us_card .features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.95rem;
}

.why_us_card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Staggered animation for cards */
.why_us_card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.why_us_card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.why_us_card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.why_us_card:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.why_us_card:nth-child(5) {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.why_us_card:nth-child(6) {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Enhanced fadeInUp animation for Why Us page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Statistics showcase */
.why_us_stats {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  margin: 100px 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.why_us_stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="why-stats-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23why-stats-pattern)"/></svg>');
}

.why_us_stats .container {
  position: relative;
  z-index: 1;
}

.why_us_stats h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  text-align: center;
  margin-bottom: 50px;
}

.stats_showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat_showcase_item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat_showcase_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.stat_showcase_item .number {
  font-size: 3rem;
  font-weight: 900;
  color: #00bbf0;
  margin-bottom: 10px;
  display: block;
}

.stat_showcase_item .label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Call to action section */
.why_us_cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 60px;
  border-radius: 25px;
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.why_us_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.why_us_cta .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.why_us_cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: white;
}

.why_us_cta p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
}

.why_us_cta .btn {
  display: inline-block;
  padding: 18px 45px;
  background: white;
  color: #667eea;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-size: 1.1rem;
}

.why_us_cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #667eea;
}

/* Accessibility support for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .why_us_card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .why_us_card:hover {
    transform: translateY(-5px);
  }
  
  .why_us_card:hover .icon {
    transform: scale(1.05);
  }
}

/* Responsive design for why us page */
@media (max-width: 768px) {
  .why_us_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .featured_transparency {
    padding: 60px 30px;
  }
  
  .featured_transparency h2 {
    font-size: 2.5rem;
  }
  
  .featured_transparency p {
    font-size: 1.2rem;
  }
  
  .featured_transparency .icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .why_us_card {
    padding: 35px 25px;
  }
  
  .why_us_card .icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .why_us_stats {
    padding: 60px 0;
    margin: 60px 0;
  }
  
  .stats_showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .why_us_cta {
    padding: 60px 30px;
  }
  
  .why_us_cta h3 {
    font-size: 2rem;
  }
  
  .why_us_cta p {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .featured_transparency {
    padding: 40px 20px;
  }
  
  .featured_transparency h2 {
    font-size: 2rem;
  }
  
  .featured_transparency p {
    font-size: 1.1rem;
  }
  
  .why_us_card {
    padding: 30px 20px;
  }
  
  .why_us_card h4 {
    font-size: 1.3rem;
  }
  
  .stats_showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat_showcase_item .number {
    font-size: 2.5rem;
  }
  
  .why_us_cta {
    padding: 40px 20px;
  }
  
  .why_us_cta h3 {
    font-size: 1.8rem;
  }
  
  .why_us_cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

/* ========================================
   CONSOLIDATED MODERN STYLES
   Ensures consistent design between home and about pages
======================================== */

/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Unified body styling */
body {
  font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

/* Dark theme for sub_page class (home and about pages) */
.sub_page {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #f7fafc;
}

.sub_page body {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #f7fafc;
}

/* Hero area unified styling */
.hero_area {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
}

.sub_page .hero_area {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.hero_bg_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 32, 74, 0.1);
  z-index: 1;
}

.sub_page .hero_bg_box::before {
  background: rgba(26, 32, 44, 0.1);
}

.bg_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Unified heading styles */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sub_page .heading_container h2 {
  color: #f7fafc;
  -webkit-text-fill-color: #f7fafc;
}

.heading_container h2 span {
  color: #00bbf0;
}

.sub_page .heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.sub_page .heading_container p {
  color: #cbd5e0;
}

/* Unified stats section styling */
.stats_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .stats_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  margin: 0px;
}

.stats_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .stats_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.stats_section .container {
  position: relative;
  z-index: 2;
}

.stat_item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
}

.sub_page .stat_item {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat_item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .stat_item:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.stat_number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .stat_number {
  color: #00bbf0;
}

.stat_label {
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
}

.sub_page .stat_label {
  color: #cbd5e0;
}

/* Unified services section styling */
.service_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .service_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.service_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .service_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.service_section .container {
  position: relative;
  z-index: 2;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
}

.sub_page .service-card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .service-card:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .service-content h5 {
  color: #f7fafc;
}

.service-content p {
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 0;
}

.sub_page .service-content p {
  color: #cbd5e0;
}

/* Unified why section styling */
.why_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .why_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.why_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .why_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.why_section .container {
  position: relative;
  z-index: 2;
}

/* Featured Value Section */
.featured_value_section {
  margin-bottom: 80px;
}

.featured_value_card {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 30px rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.sub_page .featured_value_card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 30px rgba(102, 126, 234, 0.2);
}

.featured_value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.value_badge i {
  font-size: 0.8rem;
}

.featured_value_content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.sub_page .featured_value_content h3 {
  color: #f7fafc;
}

.featured_description {
  font-size: 1.2rem;
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 30px;
}

.sub_page .featured_description {
  color: #cbd5e0;
}

.transparency_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.transparency_features .feature_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.sub_page .transparency_features .feature_item {
  background: rgba(0, 187, 240, 0.1);
}

.transparency_features .feature_item:hover {
  transform: translateY(-2px);
  background: rgba(102, 126, 234, 0.15);
}

.sub_page .transparency_features .feature_item:hover {
  background: rgba(0, 187, 240, 0.15);
}

.transparency_features .feature_item i {
  color: #667eea;
  font-size: 1.2rem;
  min-width: 20px;
}

.sub_page .transparency_features .feature_item i {
  color: #00bbf0;
}

.transparency_features .feature_item span {
  color: #4a5568;
  font-weight: 500;
}

.sub_page .transparency_features .feature_item span {
  color: #e2e8f0;
}

/* Featured Value Image */
.featured_value_image {
  position: relative;
  text-align: center;
}

.featured_value_image .main_image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating_stats {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat_bubble {
  background: white;
  border-radius: 20px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #667eea;
  animation: float 3s ease-in-out infinite;
}

.sub_page .stat_bubble {
  background: #2d3748;
  border-color: #00bbf0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat_bubble:nth-child(2) {
  animation-delay: 1.5s;
}

.stat_bubble .stat_number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 5px;
}

.sub_page .stat_bubble .stat_number {
  color: #00bbf0;
}

.stat_bubble .stat_label {
  font-size: 0.9rem;
  color: #6a7280;
  font-weight: 500;
}

.sub_page .stat_bubble .stat_label {
  color: #cbd5e0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Enhanced Values Grid */
.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
  position: relative;
  overflow: hidden;
}

.sub_page .value_card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value_card:hover::before {
  transform: scaleX(1);
}

.value_card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .value_card:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.value_icon_wrapper {
  position: relative;
  margin-bottom: 25px;
}

.value_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sub_page .value_icon {
  background: #fff;
}

.value_card:hover .value_icon {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

.sub_page .value_card:hover .value_icon {
  background: rgba(0, 187, 240, 0.2);
}

.value_icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.icon_badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.value_content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .value_content h5 {
  color: #f7fafc;
}

.value_content p {
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sub_page .value_content p {
  color: #cbd5e0;
}

.value_benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.benefit_tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.sub_page .benefit_tag {
  background: rgba(0, 187, 240, 0.1);
  color: #00bbf0;
  border-color: rgba(0, 187, 240, 0.2);
}

/* Call to Action Section */
.why_cta_section {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 30px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.1),
    0 5px 20px rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.sub_page .why_cta_section {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.3),
    0 5px 20px rgba(102, 126, 234, 0.2);
}

.cta_content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .cta_content h3 {
  color: #f7fafc;
}

.cta_content p {
  font-size: 1.1rem;
  color: #6a7280;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sub_page .cta_content p {
  color: #cbd5e0;
}

.cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta_primary,
.cta_secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta_primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

.cta_secondary {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.sub_page .cta_secondary {
  color: #00bbf0;
  border-color: #00bbf0;
}

.cta_secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.sub_page .cta_secondary:hover {
  background: #00bbf0;
  color: white;
}

/* Responsive adjustments for enhanced why section */
@media (max-width: 768px) {
  .featured_value_card {
    padding: 40px 30px;
  }
  
  .featured_value_content h3 {
    font-size: 2rem;
  }
  
  .transparency_features {
    grid-template-columns: 1fr;
  }
  
  .floating_stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta_primary,
  .cta_secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Unified contact section styling */
.contact_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .contact_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.contact_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .contact_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.contact_section .container {
  position: relative;
  z-index: 2;
}

.contact_info_summary {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 40px;
}

.sub_page .contact_info_summary {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact_info_item {
  text-align: center;
  padding: 20px;
}

.contact_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_icon i {
  font-size: 1.5rem;
  color: white;
}

.contact_detail h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .contact_detail h4 {
  color: #f7fafc;
}

.contact_detail p {
  color: #6a7280;
  margin-bottom: 0;
}

.sub_page .contact_detail p {
  color: #cbd5e0;
}

.contact_detail a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sub_page .contact_detail a {
  color: #00bbf0;
}

.contact_detail a:hover {
  color: #764ba2;
}

.sub_page .contact_detail a:hover {
  color: #00bbf0;
}

/* Button styling */
.button-container {
  text-align: center;
  margin-top: 40px;
}

.more-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

/* Info section styling */
.info_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0 100px;
}

.sub_page .info_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.info_contact h4,
.info_link_box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .info_contact h4,
.sub_page .info_link_box h4 {
  color: #f7fafc;
}

.contact_link_box a,
.info_links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a7280;
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.sub_page .contact_link_box a,
.sub_page .info_links a {
  color: #cbd5e0;
}

.contact_link_box a:hover,
.info_links a:hover {
  color: #667eea;
}

.sub_page .contact_link_box a:hover,
.sub_page .info_links a:hover {
  color: #00bbf0;
}

.contact_link_box i,
.info_links i {
  color: #667eea;
  min-width: 20px;
}

.sub_page .contact_link_box i,
.sub_page .info_links i {
  color: #00bbf0;
}

/* Footer section styling */
.footer_section {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 30px 0;
  text-align: center;
}

.footer_section p {
  color: #cbd5e0;
  margin-bottom: 0;
}

.footer_section a {
  color: #00bbf0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_section a:hover {
  color: #00bbf0;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .heading_container h2 {
    font-size: 2.5rem;
  }
  
  .services_grid,
  .values_grid {
    grid-template-columns: 1fr;
  }
  
  .stats_section .row > div {
    margin-bottom: 20px;
  }
}

/* Set animation delays for staggered animations */
[data-animation-delay="0.1s"] { --animation-delay: 0.1s; }
[data-animation-delay="0.2s"] { --animation-delay: 0.2s; }
[data-animation-delay="0.3s"] { --animation-delay: 0.3s; }
[data-animation-delay="0.4s"] { --animation-delay: 0.4s; }
[data-animation-delay="0.5s"] { --animation-delay: 0.5s; }
[data-animation-delay="0.6s"] { --animation-delay: 0.6s; }

/* ========================================
   SERVICES PAGE STYLES (service.html)
======================================== */

/* Featured service card */
.featured_service {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 25px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

.featured_service::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured_service:hover::before {
  opacity: 1;
}

.featured_service h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.featured_service p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services grid */
.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.service_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.service_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.1), transparent);
  transition: left 0.5s ease;
}

.service_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.service_card:hover::before {
  left: 100%;
}

.service_card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.service_card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.service_card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.service_card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Detailed services section */
.detailed_services {
  margin-top: 120px;
}

.detailed_services .section_title {
  text-align: center;
  margin-bottom: 80px;
}

.detailed_services h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.detailed_services .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.service_detail {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  gap: 60px;
}

.service_detail:nth-child(even) {
  flex-direction: row-reverse;
}

.service_content {
  flex: 1;
}

.service_content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.service_content p {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.service_features {
  list-style: none;
  padding: 0;
}

.service_features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #4a5568;
  font-weight: 500;
}

.service_features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
  font-size: 1.2rem;
}

.service_image {
  flex: 1;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service_image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23service-dots)"/></svg>');
}

.service_image .placeholder {
  font-size: 3rem;
  color: #00bbf0;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

/* Service page specific animations */
.service_card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.service_card:nth-child(1) { animation-delay: 0.1s; }
.service_card:nth-child(2) { animation-delay: 0.2s; }
.service_card:nth-child(3) { animation-delay: 0.3s; }
.service_card:nth-child(4) { animation-delay: 0.4s; }
.service_card:nth-child(5) { animation-delay: 0.5s; }
.service_card:nth-child(6) { animation-delay: 0.6s; }

.service_detail {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* CTA Section for Services */
.services_cta {
  background: linear-gradient(135deg, #00204a 0%, #001a38 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.services_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.services_cta .container {
  position: relative;
  z-index: 1;
}

.services_cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.services_cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services_cta .btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.services_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

/* Responsive design for services page */
@media (max-width: 768px) {
  .services_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service_detail {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
  
  .service_detail:nth-child(even) {
    flex-direction: column !important;
  }
  
  .featured_service {
    padding: 40px 20px;
  }
  
  .featured_service h2 {
    font-size: 2rem;
  }
  
  .services_cta h2 {
    font-size: 2rem;
  }
  
  .services_cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .service_card {
    padding: 30px 20px;
  }
  
  .service_content h3 {
    font-size: 1.5rem;
  }
  
  .service_content p {
    font-size: 1rem;
  }
  
  .service_image {
    height: 250px;
  }
}
/* ========================================
   ABOUT PAGE STYLES (about.html)
======================================== */

.about_section {
  position: relative;
  overflow: hidden;
}

.about_main_content {
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.about_image_box {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.about_image_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
}

.about_image_box .placeholder {
  font-size: 4rem;
  color: #00bbf0;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

/* Mission and Vision Cards */
.mission_vision_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.mission_card, .vision_card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission_card::before {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vision_card::before {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.mission_card::before,
.vision_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.mission_card:hover,
.vision_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission_card h3,
.vision_card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 25px;
}

.mission_card p,
.vision_card p {
  color: #718096;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Values Grid */
.values_section {
  margin-bottom: 80px;
}

.values_section .section_title {
  text-align: center;
  margin-bottom: 60px;
}

.values_section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.values_section .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.value_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.value_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.value_card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.value_card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.value_card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Statistics section for about page */
.about_stats {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  border-radius: 25px;
  margin: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about_stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
}

.about_stats .container {
  position: relative;
  z-index: 1;
}

.about_stats h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: white;
}

.about_stats_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat_item {
  padding: 20px;
}

.stat_number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.stat_label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Preview Section */
.team_preview {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  margin-top: 80px;
}

.team_preview .section_title {
  text-align: center;
  margin-bottom: 60px;
}

.team_preview h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.team_preview .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.team_members_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.team_member {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team_member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.team_member .avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: white;
}

.team_member h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.team_member .role {
  color: #00bbf0;
  font-weight: 500;
  margin-bottom: 15px;
}

.team_member p {
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Call to Action */
.about_cta {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.about_cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.about_cta p {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about_cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.about_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

/* About page animations */
.mission_card,
.vision_card {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mission_card {
  animation-delay: 0.2s;
}

.vision_card {
  animation-delay: 0.4s;
}

.value_card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.value_card:nth-child(1) { animation-delay: 0.1s; }
.value_card:nth-child(2) { animation-delay: 0.2s; }
.value_card:nth-child(3) { animation-delay: 0.3s; }
.value_card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive design for about page */
@media (max-width: 768px) {
  .mission_vision_cards,
  .values_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission_vision_cards {
    gap: 30px;
  }
  
  .mission_card,
  .vision_card {
    padding: 40px 30px;
  }
  
  .about_stats h2 {
    font-size: 2rem;
  }
  
  .about_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .team_members_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .mission_card,
  .vision_card {
    padding: 30px 20px;
  }
  
  .mission_card h3,
  .vision_card h3 {
    font-size: 1.5rem;
  }
  
  .about_stats_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat_number {
    font-size: 2.5rem;
  }
  
  .about_cta {
    padding: 40px 20px;
  }
}
/* ========================================
   CONTACT PAGE STYLES (contact.html)
======================================== */

/* Modern contact form */
.modern_contact_form {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.modern_contact_form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
}

.modern_contact_form h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 30px;
  text-align: center;
}

.form_group {
  margin-bottom: 25px;
}

.form_group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: inherit;
}

.form_group input:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #00bbf0;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 187, 240, 0.1);
}

.form_group input.error,
.form_group textarea.error {
  border-color: #e53e3e;
  background: #fed7d7;
}

.form_group input.success,
.form_group textarea.success {
  border-color: #38a169;
  background: #f0fff4;
}

.form_group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit_btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

.submit_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact info cards */
.contact_info_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact_info_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.contact_info_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.contact_info_card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.contact_info_card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.contact_info_card p {
  color: #718096;
  line-height: 1.6;
}

.contact_info_card a {
  color: #00bbf0;
  text-decoration: none;
  font-weight: 500;
}

.contact_info_card a:hover {
  text-decoration: underline;
}

/* Business hours section */
.business_hours {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.business_hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hours-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hours-pattern)"/></svg>');
}

.business_hours .content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.business_hours h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
}

.hours_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.hour_item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hour_item .day {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.hour_item .time {
  color: #00bbf0;
  font-weight: 500;
}

/* Map section */
.map_section {
  margin-bottom: 50px;
}

.map_container {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23map-dots)"/></svg>');
}

.map_placeholder {
  text-align: center;
  z-index: 1;
  position: relative;
}

.map_placeholder i {
  font-size: 4rem;
  color: #00bbf0;
  margin-bottom: 20px;
  opacity: 0.7;
}

.map_placeholder h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.map_placeholder p {
  color: #718096;
  font-size: 1.1rem;
}

/* Contact CTA section */
.contact_cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.contact_cta .content {
  position: relative;
  z-index: 1;
}

.contact_cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.contact_cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact_cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: white;
  color: #667eea;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.contact_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #667eea;
}

/* Contact page animations */
.contact_info_card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.contact_info_card:nth-child(1) { animation-delay: 0.1s; }
.contact_info_card:nth-child(2) { animation-delay: 0.2s; }
.contact_info_card:nth-child(3) { animation-delay: 0.3s; }

.modern_contact_form {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Form loading state */
.modern_contact_form.loading {
  pointer-events: none;
}

.modern_contact_form.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Alert styles */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}

.alert-error {
  background: #fed7d7;
  border: 1px solid #feb2b2;
  color: #742a2a;
}

/* Responsive design for contact page */
@media (max-width: 768px) {
  .contact_info_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .modern_contact_form {
    padding: 30px 20px;
  }
  
  .modern_contact_form h2 {
    font-size: 2rem;
  }
  
  .business_hours {
    padding: 40px 20px;
  }
  
  .hours_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact_cta {
    padding: 40px 20px;
  }
  
  .contact_cta h3 {
    font-size: 1.5rem;
  }
  
  .map_container {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .form_group input,
  .form_group textarea {
    padding: 12px 16px;
  }
  
  .submit_btn {
    padding: 12px 30px;
  }
  
  .contact_info_card {
    padding: 30px 20px;
  }
  
  .contact_info_card .icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
/* ========================================
   WHY US PAGE STYLES (why.html)
======================================== */

/* Featured transparency card */
.featured_transparency {
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
  color: white;
  padding: 80px 60px;
  border-radius: 25px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 32, 74, 0.3);
}

.featured_transparency::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured_transparency:hover::before {
  opacity: 1;
}

.featured_transparency .icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.featured_transparency h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured_transparency p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.featured_transparency .highlight {
  color: #00bbf0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 187, 240, 0.5);
}

/* Why us grid */
.why_us_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.why_us_card {
  background: white;
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

.why_us_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.05), transparent);
  transition: left 0.6s ease;
}

.why_us_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 187, 240, 0.25);
}

.why_us_card:hover::before {
  left: 100%;
}

.why_us_card .icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.2rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 187, 240, 0.3);
}

.why_us_card:hover .icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(0, 187, 240, 0.4);
}

.why_us_card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why_us_card p {
  color: #718096;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 25px;
}

.why_us_card .features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.why_us_card .features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.95rem;
}

.why_us_card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Staggered animation for cards */
.why_us_card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.why_us_card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.why_us_card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.why_us_card:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.why_us_card:nth-child(5) {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.why_us_card:nth-child(6) {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Enhanced fadeInUp animation for Why Us page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Statistics showcase */
.why_us_stats {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  margin: 100px 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.why_us_stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="why-stats-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23why-stats-pattern)"/></svg>');
}

.why_us_stats .container {
  position: relative;
  z-index: 1;
}

.why_us_stats h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  text-align: center;
  margin-bottom: 50px;
}

.stats_showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat_showcase_item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat_showcase_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.stat_showcase_item .number {
  font-size: 3rem;
  font-weight: 900;
  color: #00bbf0;
  margin-bottom: 10px;
  display: block;
}

.stat_showcase_item .label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Call to action section */
.why_us_cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 60px;
  border-radius: 25px;
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.why_us_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.why_us_cta .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.why_us_cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: white;
}

.why_us_cta p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
}

.why_us_cta .btn {
  display: inline-block;
  padding: 18px 45px;
  background: white;
  color: #667eea;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-size: 1.1rem;
}

.why_us_cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #667eea;
}

/* Accessibility support for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .why_us_card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .why_us_card:hover {
    transform: translateY(-5px);
  }
  
  .why_us_card:hover .icon {
    transform: scale(1.05);
  }
}

/* Responsive design for why us page */
@media (max-width: 768px) {
  .why_us_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .featured_transparency {
    padding: 60px 30px;
  }
  
  .featured_transparency h2 {
    font-size: 2.5rem;
  }
  
  .featured_transparency p {
    font-size: 1.2rem;
  }
  
  .featured_transparency .icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .why_us_card {
    padding: 35px 25px;
  }
  
  .why_us_card .icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .why_us_stats {
    padding: 60px 0;
    margin: 60px 0;
  }
  
  .stats_showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .why_us_cta {
    padding: 60px 30px;
  }
  
  .why_us_cta h3 {
    font-size: 2rem;
  }
  
  .why_us_cta p {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .featured_transparency {
    padding: 40px 20px;
  }
  
  .featured_transparency h2 {
    font-size: 2rem;
  }
  
  .featured_transparency p {
    font-size: 1.1rem;
  }
  
  .why_us_card {
    padding: 30px 20px;
  }
  
  .why_us_card h4 {
    font-size: 1.3rem;
  }
  
  .stats_showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat_showcase_item .number {
    font-size: 2.5rem;
  }
  
  .why_us_cta {
    padding: 40px 20px;
  }
  
  .why_us_cta h3 {
    font-size: 1.8rem;
  }
  
  .why_us_cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

/* ========================================
   CONSOLIDATED MODERN STYLES
   Ensures consistent design between home and about pages
======================================== */

/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Unified body styling */
body {
  font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

/* Dark theme for sub_page class (home and about pages) */
.sub_page {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #f7fafc;
}

.sub_page body {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #f7fafc;
}

/* Hero area unified styling */
.hero_area {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
}

.sub_page .hero_area {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.hero_bg_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 32, 74, 0.1);
  z-index: 1;
}

.sub_page .hero_bg_box::before {
  background: rgba(26, 32, 44, 0.1);
}

.bg_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Unified heading styles */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sub_page .heading_container h2 {
  color: #f7fafc;
  -webkit-text-fill-color: #f7fafc;
}

.heading_container h2 span {
  color: #00bbf0;
}

.sub_page .heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.sub_page .heading_container p {
  color: #cbd5e0;
}

/* Unified stats section styling */
.stats_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .stats_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.stats_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .stats_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.stats_section .container {
  position: relative;
  z-index: 2;
}

.stat_item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
}

.sub_page .stat_item {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat_item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .stat_item:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.stat_number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .stat_number {
  color: #00bbf0;
}

.stat_label {
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
}

.sub_page .stat_label {
  color: #cbd5e0;
}

/* Unified services section styling */
.service_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .service_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.service_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .service_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.service_section .container {
  position: relative;
  z-index: 2;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
}

.sub_page .service-card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .service-card:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .service-content h5 {
  color: #f7fafc;
}

.service-content p {
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 0;
}

.sub_page .service-content p {
  color: #cbd5e0;
}

/* Unified why section styling */
.why_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .why_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.why_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .why_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.why_section .container {
  position: relative;
  z-index: 2;
}

/* Featured Value Section */
.featured_value_section {
  margin-bottom: 80px;
}

.featured_value_card {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 30px rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.sub_page .featured_value_card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 30px rgba(102, 126, 234, 0.2);
}

.featured_value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.value_badge i {
  font-size: 0.8rem;
}

.featured_value_content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.sub_page .featured_value_content h3 {
  color: #f7fafc;
}

.featured_description {
  font-size: 1.2rem;
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 30px;
}

.sub_page .featured_description {
  color: #cbd5e0;
}

.transparency_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.transparency_features .feature_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.sub_page .transparency_features .feature_item {
  background: rgba(0, 187, 240, 0.1);
}

.transparency_features .feature_item:hover {
  transform: translateY(-2px);
  background: rgba(102, 126, 234, 0.15);
}

.sub_page .transparency_features .feature_item:hover {
  background: rgba(0, 187, 240, 0.15);
}

.transparency_features .feature_item i {
  color: #667eea;
  font-size: 1.2rem;
  min-width: 20px;
}

.sub_page .transparency_features .feature_item i {
  color: #00bbf0;
}

.transparency_features .feature_item span {
  color: #4a5568;
  font-weight: 500;
}

.sub_page .transparency_features .feature_item span {
  color: #e2e8f0;
}

/* Featured Value Image */
.featured_value_image {
  position: relative;
  text-align: center;
}

.featured_value_image .main_image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating_stats {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat_bubble {
  background: white;
  border-radius: 20px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #667eea;
  animation: float 3s ease-in-out infinite;
}

.sub_page .stat_bubble {
  background: #2d3748;
  border-color: #00bbf0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat_bubble:nth-child(2) {
  animation-delay: 1.5s;
}

.stat_bubble .stat_number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 5px;
}

.sub_page .stat_bubble .stat_number {
  color: #00bbf0;
}

.stat_bubble .stat_label {
  font-size: 0.9rem;
  color: #6a7280;
  font-weight: 500;
}

.sub_page .stat_bubble .stat_label {
  color: #cbd5e0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Enhanced Values Grid */
.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
  position: relative;
  overflow: hidden;
}

.sub_page .value_card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value_card:hover::before {
  transform: scaleX(1);
}

.value_card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .value_card:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.value_icon_wrapper {
  position: relative;
  margin-bottom: 25px;
}

.value_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sub_page .value_icon {
  background: #fff;
}

.value_card:hover .value_icon {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

.sub_page .value_card:hover .value_icon {
  background: rgba(0, 187, 240, 0.2);
}

.value_icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.icon_badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.value_content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .value_content h5 {
  color: #f7fafc;
}

.value_content p {
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sub_page .value_content p {
  color: #cbd5e0;
}

.value_benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.benefit_tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.sub_page .benefit_tag {
  background: rgba(0, 187, 240, 0.1);
  color: #00bbf0;
  border-color: rgba(0, 187, 240, 0.2);
}

/* Call to Action Section */
.why_cta_section {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 30px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.1),
    0 5px 20px rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.sub_page .why_cta_section {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.3),
    0 5px 20px rgba(102, 126, 234, 0.2);
}

.cta_content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .cta_content h3 {
  color: #f7fafc;
}

.cta_content p {
  font-size: 1.1rem;
  color: #6a7280;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sub_page .cta_content p {
  color: #cbd5e0;
}

.cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta_primary,
.cta_secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta_primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

.cta_secondary {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.sub_page .cta_secondary {
  color: #00bbf0;
  border-color: #00bbf0;
}

.cta_secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.sub_page .cta_secondary:hover {
  background: #00bbf0;
  color: white;
}

/* Responsive adjustments for enhanced why section */
@media (max-width: 768px) {
  .featured_value_card {
    padding: 40px 30px;
  }
  
  .featured_value_content h3 {
    font-size: 2rem;
  }
  
  .transparency_features {
    grid-template-columns: 1fr;
  }
  
  .floating_stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta_primary,
  .cta_secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Unified contact section styling */
.contact_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .contact_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.contact_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .contact_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.contact_section .container {
  position: relative;
  z-index: 2;
}

.contact_info_summary {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 40px;
}

.sub_page .contact_info_summary {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact_info_item {
  text-align: center;
  padding: 20px;
}

.contact_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_icon i {
  font-size: 1.5rem;
  color: white;
}

.contact_detail h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .contact_detail h4 {
  color: #f7fafc;
}

.contact_detail p {
  color: #6a7280;
  margin-bottom: 0;
}

.sub_page .contact_detail p {
  color: #cbd5e0;
}

.contact_detail a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sub_page .contact_detail a {
  color: #00bbf0;
}

.contact_detail a:hover {
  color: #764ba2;
}

.sub_page .contact_detail a:hover {
  color: #00bbf0;
}

/* Button styling */
.button-container {
  text-align: center;
  margin-top: 40px;
}

.more-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

/* Info section styling */
.info_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0 100px;
}

.sub_page .info_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.info_contact h4,
.info_link_box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .info_contact h4,
.sub_page .info_link_box h4 {
  color: #f7fafc;
}

.contact_link_box a,
.info_links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a7280;
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.sub_page .contact_link_box a,
.sub_page .info_links a {
  color: #cbd5e0;
}

.contact_link_box a:hover,
.info_links a:hover {
  color: #667eea;
}

.sub_page .contact_link_box a:hover,
.sub_page .info_links a:hover {
  color: #00bbf0;
}

.contact_link_box i,
.info_links i {
  color: #667eea;
  min-width: 20px;
}

.sub_page .contact_link_box i,
.sub_page .info_links i {
  color: #00bbf0;
}

/* Footer section styling */
.footer_section {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 30px 0;
  text-align: center;
}

.footer_section p {
  color: #cbd5e0;
  margin-bottom: 0;
}

.footer_section a {
  color: #00bbf0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_section a:hover {
  color: #00bbf0;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .heading_container h2 {
    font-size: 2.5rem;
  }
  
  .services_grid,
  .values_grid {
    grid-template-columns: 1fr;
  }
  
  .stats_section .row > div {
    margin-bottom: 20px;
  }
}

/* Set animation delays for staggered animations */
[data-animation-delay="0.1s"] { --animation-delay: 0.1s; }
[data-animation-delay="0.2s"] { --animation-delay: 0.2s; }
[data-animation-delay="0.3s"] { --animation-delay: 0.3s; }
[data-animation-delay="0.4s"] { --animation-delay: 0.4s; }
[data-animation-delay="0.5s"] { --animation-delay: 0.5s; }
[data-animation-delay="0.6s"] { --animation-delay: 0.6s; }

/* ========================================
   SERVICES PAGE STYLES (service.html)
======================================== */

/* Featured service card */
.featured_service {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 25px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

.featured_service::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured_service:hover::before {
  opacity: 1;
}

.featured_service h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.featured_service p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services grid */
.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.service_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.service_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.1), transparent);
  transition: left 0.5s ease;
}

.service_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.service_card:hover::before {
  left: 100%;
}

.service_card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.service_card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.service_card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.service_card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Detailed services section */
.detailed_services {
  margin-top: 120px;
}

.detailed_services .section_title {
  text-align: center;
  margin-bottom: 80px;
}

.detailed_services h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.detailed_services .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.service_detail {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  gap: 60px;
}

.service_detail:nth-child(even) {
  flex-direction: row-reverse;
}

.service_content {
  flex: 1;
}

.service_content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.service_content p {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.service_features {
  list-style: none;
  padding: 0;
}

.service_features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #4a5568;
  font-weight: 500;
}

.service_features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
  font-size: 1.2rem;
}

.service_image {
  flex: 1;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service_image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23service-dots)"/></svg>');
}

.service_image .placeholder {
  font-size: 3rem;
  color: #00bbf0;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

/* Service page specific animations */
.service_card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.service_card:nth-child(1) { animation-delay: 0.1s; }
.service_card:nth-child(2) { animation-delay: 0.2s; }
.service_card:nth-child(3) { animation-delay: 0.3s; }
.service_card:nth-child(4) { animation-delay: 0.4s; }
.service_card:nth-child(5) { animation-delay: 0.5s; }
.service_card:nth-child(6) { animation-delay: 0.6s; }

.service_detail {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* CTA Section for Services */
.services_cta {
  background: linear-gradient(135deg, #00204a 0%, #001a38 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.services_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.services_cta .container {
  position: relative;
  z-index: 1;
}

.services_cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.services_cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services_cta .btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.services_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

/* Responsive design for services page */
@media (max-width: 768px) {
  .services_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service_detail {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
  
  .service_detail:nth-child(even) {
    flex-direction: column !important;
  }
  
  .featured_service {
    padding: 40px 20px;
  }
  
  .featured_service h2 {
    font-size: 2rem;
  }
  
  .services_cta h2 {
    font-size: 2rem;
  }
  
  .services_cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .service_card {
    padding: 30px 20px;
  }
  
  .service_content h3 {
    font-size: 1.5rem;
  }
  
  .service_content p {
    font-size: 1rem;
  }
  
  .service_image {
    height: 250px;
  }
}
/* ========================================
   ABOUT PAGE STYLES (about.html)
======================================== */

.about_section {
  position: relative;
  overflow: hidden;
}

.about_main_content {
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.about_image_box {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.about_image_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
}

.about_image_box .placeholder {
  font-size: 4rem;
  color: #00bbf0;
  opacity: 0.7;
  z-index: 1;
  position: relative;
}

/* Mission and Vision Cards */
.mission_vision_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.mission_card, .vision_card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission_card::before {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vision_card::before {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.mission_card::before,
.vision_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.mission_card:hover,
.vision_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission_card h3,
.vision_card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 25px;
}

.mission_card p,
.vision_card p {
  color: #718096;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Values Grid */
.values_section {
  margin-bottom: 80px;
}

.values_section .section_title {
  text-align: center;
  margin-bottom: 60px;
}

.values_section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.values_section .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.value_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.value_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.2);
}

.value_card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.value_card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.value_card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Statistics section for about page */
.about_stats {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  border-radius: 25px;
  margin: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about_stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
}

.about_stats .container {
  position: relative;
  z-index: 1;
}

.about_stats h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: white;
}

.about_stats_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat_item {
  padding: 20px;
}

.stat_number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.stat_label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Preview Section */
.team_preview {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  margin-top: 80px;
}

.team_preview .section_title {
  text-align: center;
  margin-bottom: 60px;
}

.team_preview h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
}

.team_preview .subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.team_members_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.team_member {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team_member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.team_member .avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: white;
}

.team_member h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.team_member .role {
  color: #00bbf0;
  font-weight: 500;
  margin-bottom: 15px;
}

.team_member p {
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Call to Action */
.about_cta {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.about_cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.about_cta p {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about_cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.about_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

/* About page animations */
.mission_card,
.vision_card {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.mission_card {
  animation-delay: 0.2s;
}

.vision_card {
  animation-delay: 0.4s;
}

.value_card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.value_card:nth-child(1) { animation-delay: 0.1s; }
.value_card:nth-child(2) { animation-delay: 0.2s; }
.value_card:nth-child(3) { animation-delay: 0.3s; }
.value_card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive design for about page */
@media (max-width: 768px) {
  .mission_vision_cards,
  .values_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission_vision_cards {
    gap: 30px;
  }
  
  .mission_card,
  .vision_card {
    padding: 40px 30px;
  }
  
  .about_stats h2 {
    font-size: 2rem;
  }
  
  .about_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .team_members_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .mission_card,
  .vision_card {
    padding: 30px 20px;
  }
  
  .mission_card h3,
  .vision_card h3 {
    font-size: 1.5rem;
  }
  
  .about_stats_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat_number {
    font-size: 2.5rem;
  }
  
  .about_cta {
    padding: 40px 20px;
  }
}
/* ========================================
   CONTACT PAGE STYLES (contact.html)
======================================== */

/* Modern contact form */
.modern_contact_form {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.modern_contact_form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
}

.modern_contact_form h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 30px;
  text-align: center;
}

.form_group {
  margin-bottom: 25px;
}

.form_group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: inherit;
}

.form_group input:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #00bbf0;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 187, 240, 0.1);
}

.form_group input.error,
.form_group textarea.error {
  border-color: #e53e3e;
  background: #fed7d7;
}

.form_group input.success,
.form_group textarea.success {
  border-color: #38a169;
  background: #f0fff4;
}

.form_group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit_btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 187, 240, 0.4);
  color: white;
}

.submit_btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact info cards */
.contact_info_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact_info_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 187, 240, 0.1);
}

.contact_info_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.contact_info_card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.contact_info_card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.contact_info_card p {
  color: #718096;
  line-height: 1.6;
}

.contact_info_card a {
  color: #00bbf0;
  text-decoration: none;
  font-weight: 500;
}

.contact_info_card a:hover {
  text-decoration: underline;
}

/* Business hours section */
.business_hours {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.business_hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hours-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hours-pattern)"/></svg>');
}

.business_hours .content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.business_hours h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
}

.hours_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.hour_item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hour_item .day {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 5px;
}

.hour_item .time {
  color: #00bbf0;
  font-weight: 500;
}

/* Map section */
.map_section {
  margin-bottom: 50px;
}

.map_container {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23map-dots)"/></svg>');
}

.map_placeholder {
  text-align: center;
  z-index: 1;
  position: relative;
}

.map_placeholder i {
  font-size: 4rem;
  color: #00bbf0;
  margin-bottom: 20px;
  opacity: 0.7;
}

.map_placeholder h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.map_placeholder p {
  color: #718096;
  font-size: 1.1rem;
}

/* Contact CTA section */
.contact_cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.contact_cta .content {
  position: relative;
  z-index: 1;
}

.contact_cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.contact_cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact_cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: white;
  color: #667eea;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.contact_cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #667eea;
}

/* Contact page animations */
.contact_info_card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.contact_info_card:nth-child(1) { animation-delay: 0.1s; }
.contact_info_card:nth-child(2) { animation-delay: 0.2s; }
.contact_info_card:nth-child(3) { animation-delay: 0.3s; }

.modern_contact_form {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Form loading state */
.modern_contact_form.loading {
  pointer-events: none;
}

.modern_contact_form.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Alert styles */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}

.alert-error {
  background: #fed7d7;
  border: 1px solid #feb2b2;
  color: #742a2a;
}

/* Responsive design for contact page */
@media (max-width: 768px) {
  .contact_info_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .modern_contact_form {
    padding: 30px 20px;
  }
  
  .modern_contact_form h2 {
    font-size: 2rem;
  }
  
  .business_hours {
    padding: 40px 20px;
  }
  
  .hours_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact_cta {
    padding: 40px 20px;
  }
  
  .contact_cta h3 {
    font-size: 1.5rem;
  }
  
  .map_container {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .form_group input,
  .form_group textarea {
    padding: 12px 16px;
  }
  
  .submit_btn {
    padding: 12px 30px;
  }
  
  .contact_info_card {
    padding: 30px 20px;
  }
  
  .contact_info_card .icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
/* ========================================
   WHY US PAGE STYLES (why.html)
======================================== */

/* Featured transparency card */
.featured_transparency {
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
  color: white;
  padding: 80px 60px;
  border-radius: 25px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 32, 74, 0.3);
}

.featured_transparency::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured_transparency:hover::before {
  opacity: 1;
}

.featured_transparency .icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.featured_transparency h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured_transparency p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.featured_transparency .highlight {
  color: #00bbf0;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 187, 240, 0.5);
}

/* Why us grid */
.why_us_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.why_us_card {
  background: white;
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 187, 240, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

.why_us_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.05), transparent);
  transition: left 0.6s ease;
}

.why_us_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 187, 240, 0.25);
}

.why_us_card:hover::before {
  left: 100%;
}

.why_us_card .icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.2rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 187, 240, 0.3);
}

.why_us_card:hover .icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(0, 187, 240, 0.4);
}

.why_us_card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why_us_card p {
  color: #718096;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 25px;
}

.why_us_card .features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.why_us_card .features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.95rem;
}

.why_us_card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Staggered animation for cards */
.why_us_card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.why_us_card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.why_us_card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.why_us_card:nth-child(4) {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.why_us_card:nth-child(5) {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.why_us_card:nth-child(6) {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Enhanced fadeInUp animation for Why Us page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Statistics showcase */
.why_us_stats {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  margin: 100px 0;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.why_us_stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="why-stats-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(0,187,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23why-stats-pattern)"/></svg>');
}

.why_us_stats .container {
  position: relative;
  z-index: 1;
}

.why_us_stats h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  text-align: center;
  margin-bottom: 50px;
}

.stats_showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat_showcase_item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat_showcase_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.stat_showcase_item .number {
  font-size: 3rem;
  font-weight: 900;
  color: #00bbf0;
  margin-bottom: 10px;
  display: block;
}

.stat_showcase_item .label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Call to action section */
.why_us_cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 60px;
  border-radius: 25px;
  text-align: center;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.why_us_cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.why_us_cta .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.why_us_cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: white;
}

.why_us_cta p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
}

.why_us_cta .btn {
  display: inline-block;
  padding: 18px 45px;
  background: white;
  color: #667eea;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  font-size: 1.1rem;
}

.why_us_cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #667eea;
}

/* Accessibility support for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .why_us_card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .why_us_card:hover {
    transform: translateY(-5px);
  }
  
  .why_us_card:hover .icon {
    transform: scale(1.05);
  }
}

/* Responsive design for why us page */
@media (max-width: 768px) {
  .why_us_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .featured_transparency {
    padding: 60px 30px;
  }
  
  .featured_transparency h2 {
    font-size: 2.5rem;
  }
  
  .featured_transparency p {
    font-size: 1.2rem;
  }
  
  .featured_transparency .icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .why_us_card {
    padding: 35px 25px;
  }
  
  .why_us_card .icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .why_us_stats {
    padding: 60px 0;
    margin: 60px 0;
  }
  
  .stats_showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .why_us_cta {
    padding: 60px 30px;
  }
  
  .why_us_cta h3 {
    font-size: 2rem;
  }
  
  .why_us_cta p {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .featured_transparency {
    padding: 40px 20px;
  }
  
  .featured_transparency h2 {
    font-size: 2rem;
  }
  
  .featured_transparency p {
    font-size: 1.1rem;
  }
  
  .why_us_card {
    padding: 30px 20px;
  }
  
  .why_us_card h4 {
    font-size: 1.3rem;
  }
  
  .stats_showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat_showcase_item .number {
    font-size: 2.5rem;
  }
  
  .why_us_cta {
    padding: 40px 20px;
  }
  
  .why_us_cta h3 {
    font-size: 1.8rem;
  }
  
  .why_us_cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

/* ========================================
   CONSOLIDATED MODERN STYLES
   Ensures consistent design between home and about pages
======================================== */

/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Unified body styling */
body {
  font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

/* Dark theme for sub_page class (home and about pages) */
.sub_page {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #f7fafc;
}

.sub_page body {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #f7fafc;
}

/* Hero area unified styling */
.hero_area {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #00204a 0%, #001a38 30%, #00366b 70%, #00bbf0 100%);
}

.sub_page .hero_area {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.hero_bg_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 32, 74, 0.1);
  z-index: 1;
}

.sub_page .hero_bg_box::before {
  background: rgba(26, 32, 44, 0.1);
}

.bg_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Unified heading styles */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sub_page .heading_container h2 {
  color: #f7fafc;
  -webkit-text-fill-color: #f7fafc;
}

.heading_container h2 span {
  color: #00bbf0;
}

.sub_page .heading_container h2 span {
  color: #00bbf0;
}

.heading_container p {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.sub_page .heading_container p {
  color: #cbd5e0;
}

/* Unified stats section styling */
.stats_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .stats_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.stats_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .stats_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.stats_section .container {
  position: relative;
  z-index: 2;
}

.stat_item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
}

.sub_page .stat_item {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat_item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .stat_item:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.stat_number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .stat_number {
  color: #00bbf0;
}

.stat_label {
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
}

.sub_page .stat_label {
  color: #cbd5e0;
}

/* Unified services section styling */
.service_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .service_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.service_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .service_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.service_section .container {
  position: relative;
  z-index: 2;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
}

.sub_page .service-card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .service-card:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .service-content h5 {
  color: #f7fafc;
}

.service-content p {
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 0;
}

.sub_page .service-content p {
  color: #cbd5e0;
}

/* Unified why section styling */
.why_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .why_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.why_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .why_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.why_section .container {
  position: relative;
  z-index: 2;
}

/* Featured Value Section */
.featured_value_section {
  margin-bottom: 80px;
}

.featured_value_card {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 30px rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.sub_page .featured_value_card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 30px rgba(102, 126, 234, 0.2);
}

.featured_value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.value_badge i {
  font-size: 0.8rem;
}

.featured_value_content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.sub_page .featured_value_content h3 {
  color: #f7fafc;
}

.featured_description {
  font-size: 1.2rem;
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 30px;
}

.sub_page .featured_description {
  color: #cbd5e0;
}

.transparency_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.transparency_features .feature_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.sub_page .transparency_features .feature_item {
  background: rgba(0, 187, 240, 0.1);
}

.transparency_features .feature_item:hover {
  transform: translateY(-2px);
  background: rgba(102, 126, 234, 0.15);
}

.sub_page .transparency_features .feature_item:hover {
  background: rgba(0, 187, 240, 0.15);
}

.transparency_features .feature_item i {
  color: #667eea;
  font-size: 1.2rem;
  min-width: 20px;
}

.sub_page .transparency_features .feature_item i {
  color: #00bbf0;
}

.transparency_features .feature_item span {
  color: #4a5568;
  font-weight: 500;
}

.sub_page .transparency_features .feature_item span {
  color: #e2e8f0;
}

/* Featured Value Image */
.featured_value_image {
  position: relative;
  text-align: center;
}

.featured_value_image .main_image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating_stats {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat_bubble {
  background: white;
  border-radius: 20px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #667eea;
  animation: float 3s ease-in-out infinite;
}

.sub_page .stat_bubble {
  background: #2d3748;
  border-color: #00bbf0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat_bubble:nth-child(2) {
  animation-delay: 1.5s;
}

.stat_bubble .stat_number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 5px;
}

.sub_page .stat_bubble .stat_number {
  color: #00bbf0;
}

.stat_bubble .stat_label {
  font-size: 0.9rem;
  color: #6a7280;
  font-weight: 500;
}

.sub_page .stat_bubble .stat_label {
  color: #cbd5e0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Enhanced Values Grid */
.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out var(--animation-delay) forwards;
  position: relative;
  overflow: hidden;
}

.sub_page .value_card {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value_card:hover::before {
  transform: scaleX(1);
}

.value_card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(102, 126, 234, 0.1);
}

.sub_page .value_card:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(102, 126, 234, 0.2);
}

.value_icon_wrapper {
  position: relative;
  margin-bottom: 25px;
}

.value_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sub_page .value_icon {
  background: #fff;
}

.value_card:hover .value_icon {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

.sub_page .value_card:hover .value_icon {
  background: rgba(0, 187, 240, 0.2);
}

.value_icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.icon_badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.value_content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .value_content h5 {
  color: #f7fafc;
}

.value_content p {
  color: #6a7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sub_page .value_content p {
  color: #cbd5e0;
}

.value_benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.benefit_tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.sub_page .benefit_tag {
  background: rgba(0, 187, 240, 0.1);
  color: #00bbf0;
  border-color: rgba(0, 187, 240, 0.2);
}

/* Call to Action Section */
.why_cta_section {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 30px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.1),
    0 5px 20px rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.sub_page .why_cta_section {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.3),
    0 5px 20px rgba(102, 126, 234, 0.2);
}

.cta_content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .cta_content h3 {
  color: #f7fafc;
}

.cta_content p {
  font-size: 1.1rem;
  color: #6a7280;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sub_page .cta_content p {
  color: #cbd5e0;
}

.cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta_primary,
.cta_secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta_primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

.cta_secondary {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.sub_page .cta_secondary {
  color: #00bbf0;
  border-color: #00bbf0;
}

.cta_secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.sub_page .cta_secondary:hover {
  background: #00bbf0;
  color: white;
}

/* Responsive adjustments for enhanced why section */
@media (max-width: 768px) {
  .featured_value_card {
    padding: 40px 30px;
  }
  
  .featured_value_content h3 {
    font-size: 2rem;
  }
  
  .transparency_features {
    grid-template-columns: 1fr;
  }
  
  .floating_stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta_primary,
  .cta_secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Unified contact section styling */
.contact_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sub_page .contact_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.contact_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.sub_page .contact_section::before {
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 187, 240, 0.1) 0%, transparent 50%);
}

.contact_section .container {
  position: relative;
  z-index: 2;
}

.contact_info_summary {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 40px;
}

.sub_page .contact_info_summary {
  background: #2d3748;
  border-color: #4a5568;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact_info_item {
  text-align: center;
  padding: 20px;
}

.contact_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_icon i {
  font-size: 1.5rem;
  color: white;
}

.contact_detail h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .contact_detail h4 {
  color: #f7fafc;
}

.contact_detail p {
  color: #6a7280;
  margin-bottom: 0;
}

.sub_page .contact_detail p {
  color: #cbd5e0;
}

.contact_detail a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sub_page .contact_detail a {
  color: #00bbf0;
}

.contact_detail a:hover {
  color: #764ba2;
}

.sub_page .contact_detail a:hover {
  color: #00bbf0;
}

/* Button styling */
.button-container {
  text-align: center;
  margin-top: 40px;
}

.more-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

/* Info section styling */
.info_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0 100px;
}

.sub_page .info_section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.info_contact h4,
.info_link_box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.sub_page .info_contact h4,
.sub_page .info_link_box h4 {
  color: #f7fafc;
}

.contact_link_box a,
.info_links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a7280;
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.sub_page .contact_link_box a,
.sub_page .info_links a {
  color: #cbd5e0;
}

.contact_link_box a:hover,
.info_links a:hover {
  color: #667eea;
}

.sub_page .contact_link_box a:hover,
.sub_page .info_links a:hover {
  color: #00bbf0;
}

.contact_link_box i,
.info_links i {
  color: #667eea;
  min-width: 20px;
}

.sub_page .contact_link_box i,
.sub_page .info_links i {
  color: #00bbf0;
}

/* Footer section styling */
.footer_section {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 30px 0;
  text-align: center;
}

.footer_section p {
  color: #cbd5e0;
  margin-bottom: 0;
}

.footer_section a {
  color: #00bbf0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_section a:hover {
  color: #00bbf0;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .heading_container h2 {
    font-size: 2.5rem;
  }
  
  .services_grid,
  .values_grid {
    grid-template-columns: 1fr;
  }
  
  .stats_section .row > div {
    margin-bottom: 20px;
  }
}

/* Set animation delays for staggered animations */
[data-animation-delay="0.1s"] { --animation-delay: 0.1s; }
[data-animation-delay="0.2s"] { --animation-delay: 0.2s; }
[data-animation-delay="0.3s"] { --animation-delay: 0.3s; }
[data-animation-delay="0.4s"] { --animation-delay: 0.4s; }
[data-animation-delay="0.5s"] { --animation-delay: 0.5s; }
[data-animation-delay="0.6s"] { --animation-delay: 0.6s; }
