/* --- Redesigned Team Section Styles --- */
.team-section {
  background: linear-gradient(120deg, #f7faff 0%, #eaf6f0 100%);
}
.team-heading-bg {
  display: inline-block;
  background: #dbeafe;
  color: #1b5e20;
  font-weight: 800;
  font-size: 2.2rem;
  border-radius: 1.5em;
  padding: 0.4em 1.7em;
  letter-spacing: 0.04em;
  margin-bottom: 0.7em;
  box-shadow: 0 2px 8px rgba(27,94,32,0.07);
}
.team-card {
  background: #f0f4f8;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(27,94,32,0.08);
  padding: 38px 28px 30px 28px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1.5px solid #b2dfdb;
}
.team-card:hover {
  box-shadow: 0 10px 36px rgba(27,94,32,0.15);
  transform: translateY(-6px) scale(1.03);
  border-color: #26a69a;
}
.team-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #b2dfdb;
  box-shadow: 0 3px 12px rgba(27,94,32,0.10);
  margin-bottom: 18px;
}
.team-quote {
  font-size: 1.08rem;
  color: #4e5d6c;
  font-style: italic;
  margin: 20px 0 16px 0;
  min-height: 48px;
  text-align: center;
}
.team-name {
  font-weight: 800;
  color: #1b5e20;
  font-size: 1.18rem;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}
.team-role {
  color: #00897b;
  font-size: 1.01rem;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
@media (max-width: 991px) {
  .team-card {
    padding: 30px 12px 20px 12px;
  }
  .team-img {
    width: 78px;
    height: 78px;
  }
}
@media (max-width: 767px) {
  .team-heading-bg {
    font-size: 1.2rem;
    padding: 0.25em 0.7em;
  }
  .team-card {
    padding: 18px 4px 12px 4px;
  }
}
/* --- Redesigned Highlight for Team nav link --- */
.navmenu .nav-link.team-link.active, .navmenu .nav-link.team-link:focus {
  background: linear-gradient(90deg, #26a69a 0%, #43e97b 100%);
  color: #fff !important;
  box-shadow: 0 6px 0 0 #b2dfdb;
  position: relative;
  border-radius: 10px;
}
.navmenu .nav-link.team-link.active::after, .navmenu .nav-link.team-link:focus::after {
  content: '';
  display: block;
  width: 70%;
  height: 4px;
  background: #43e97b;
  border-radius: 2px;
  margin: 7px auto 0 auto;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Raleway", sans-serif;

  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --light-background-color: #f8f9fa;

  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;

  --primary-color: #28a745; /* Green theme */
  --primary-color-rgb: 40, 167, 69;

  --secondary-color: #6c757d;
  --secondary-color-rgb: 108, 117, 125;

  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}


body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
  scroll-behavior: smooth;
}


a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 0 0 var(--primary-color);
}
a:hover {
  color: #38d65a;
  text-decoration: none;
  box-shadow: 0 2px 0 0 #38d65a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}

.sitename {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/


.section {
  padding: 90px 0 80px 0;
  overflow: hidden;
  background: linear-gradient(90deg, #f8f9fa 0%, #f3f7f4 100%);
}


.light-background {
  background-color: #f6faf7;
}



.section-title {
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.section-title p {
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: var(--default-color);
}

.section-title h2 .description-title {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/


.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(0,0,0,0.09);
  min-height: 72px;
  padding: 0 0 0 0;
  border-bottom: 1px solid #e9ecef;
}


.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.navmenu .nav-link {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
}
.navmenu .nav-link:hover,
.navmenu .nav-link.active {
  color: var(--primary-color);
  background: rgba(40,167,69,0.08);
  box-shadow: 0 2px 8px rgba(40,167,69,0.07);
}



.mobile-nav-toggle {
  color: var(--default-color);
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-left: 18px;
}


@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navmenu ul {
    display: none;
    flex-direction: column;
    gap: 0;
  }
}


.mobile-nav-active .navmenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 9997;
  padding-top: 70px;
}
.mobile-nav-active .navmenu ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  gap: 0;
}
.mobile-nav-active .nav-link {
  padding: 12px 20px;
  font-size: 16px;
  color: var(--secondary-color);
  border-radius: 6px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero {
  padding: 120px 0 100px 0;
  background: linear-gradient(120deg, #e8f5e9 0%, #f8f9fa 100%);
}
#hero .container {
  align-items: center;
}
#hero h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 20px;
  color: var(--primary-color);
}
#hero p {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 34px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 18px;
}
.about .content h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}
.about .content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 8px;
}
.about .content ul i {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 10px;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# GIS Hub Coverage Section
--------------------------------------------------------------*/

.coverage-item {
  padding: 28px 22px 22px 22px;
  border-radius: 12px;
  background: var(--light-background-color);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.coverage-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 5px 20px rgba(0,0,0,0.09);
}
.coverage-item h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.coverage-item h3 i {
  font-size: 25px;
  margin-right: 8px;
  color: var(--primary-color);
}
.coverage-item p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 15px;
}

/*--------------------------------------------------------------
# Features Section (Services)
--------------------------------------------------------------*/


.service-item {
  padding: 40px 30px 36px 30px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(40,167,69,0.07);
  border-radius: 16px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-item .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--contrast-color);
  font-size: 34px;
  margin-bottom: 22px;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(40,167,69,0.10);
}
.service-item h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 13px;
}
.service-item p {
  font-size: 15.5px;
  color: var(--secondary-color);
}
.service-item:hover {
  box-shadow: 0 10px 32px rgba(40,167,69,0.13);
  transform: translateY(-4px) scale(1.025);
}
.service-item:hover .icon {
  background-color: var(--default-color);
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Technology Stack Section
--------------------------------------------------------------*/

.tech-stack-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1593941707882-6e0b8a53f4e8?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0 70px 0;
}
.tech-stack-section .section-title h2 {
  color: var(--contrast-color);
}
.tech-card {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.tech-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.22);
}
.tech-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--contrast-color);
}
.tech-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.tech-card p {
  font-size: 0.97rem;
  font-weight: 300;
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
}

/*--------------------------------------------------------------
# Dashboard CTA Section
--------------------------------------------------------------*/


.dashboard-cta {
  background: linear-gradient(90deg, #f8f9fa 0%, #e8f5e9 100%);
  padding: 90px 0 80px 0;
  border-top: 1px solid #e9ecef;
}
.dashboard-cta i {
  font-size: 60px;
  color: var(--primary-color);
  margin-bottom: 22px;
  filter: drop-shadow(0 2px 8px rgba(40,167,69,0.10));
}
.dashboard-cta h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 22px;
}
.dashboard-cta .cta-btn {
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 24px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
  box-shadow: 0 2px 8px rgba(40,167,69,0.07);
}
.dashboard-cta .cta-btn:hover {
  background: var(--primary-color);
  color: var(--contrast-color);
  box-shadow: 0 6px 24px rgba(40,167,69,0.13);
}

/*--------------------------------------------------------------
# Modern Footer
--------------------------------------------------------------*/

.modern-footer {
  position: relative;
  background: linear-gradient(135deg, #1a2e1a 0%, #0d4d0d 50%, #1a2e1a 100%);
  color: #e8f5e8;
  overflow: hidden;
}

/* Animated Wave Effect */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.footer-wave .shape-fill {
  fill: #f8f9fa;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 40px 0;
}

/* Brand Section */
.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

.footer-brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #28a745;
  letter-spacing: 0.02em;
}

.footer-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b8d4b8;
  margin-bottom: 30px;
}

/* Social Media Section */
.social-media-section {
  margin-top: 25px;
}

.social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-title::before {
  content: '';
  width: 3px;
  height: 20px;
  background: linear-gradient(135deg, #28a745, #43e97b);
  border-radius: 2px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 12px;
  color: #e8f5e8;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(40, 167, 69, 0.2);
  border-color: #28a745;
  color: #28a745;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.social-link.twitter:hover { background: rgba(29, 161, 242, 0.2); border-color: #1da1f2; color: #1da1f2; }
.social-link.facebook:hover { background: rgba(24, 119, 242, 0.2); border-color: #1877f2; color: #1877f2; }
.social-link.linkedin:hover { background: rgba(0, 119, 181, 0.2); border-color: #0077b5; color: #0077b5; }

/* Footer Sections */
.footer-section {
  padding-left: 15px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #43e97b);
  border-radius: 2px;
}

.footer-title i {
  color: #28a745;
  font-size: 1.2em;
}

/* Footer Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #b8d4b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 6px;
  padding-left: 0;
}

.footer-menu a:hover {
  color: #28a745;
  padding-left: 10px;
  transform: translateX(5px);
}

.footer-menu a i {
  font-size: 0.8em;
  color: #28a745;
  transition: transform 0.3s ease;
}

.footer-menu a:hover i {
  transform: translateX(3px);
}

/* Contact Section */
.contact-intro {
  color: #b8d4b8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(40, 167, 69, 0.2);
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 1.1em;
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-details strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1em;
}

.contact-details span {
  color: #b8d4b8;
  font-size: 0.95em;
}

.contact-details a {
  color: #28a745;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-details a:hover {
  color: #43e97b;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(40, 167, 69, 0.2);
  padding: 25px 0;
  backdrop-filter: blur(10px);
}

.copyright-text,
.developer-credit {
  text-align: center;
}

.copyright-text p,
.developer-credit p {
  margin: 0;
  color: #b8d4b8;
  font-size: 0.95rem;
}

.copyright-text strong,
.developer-credit strong {
  color: #28a745;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-content {
    padding: 60px 0 30px 0;
  }
  
  .footer-wave svg {
    height: 60px;
  }
  
  .footer-brand {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .footer-section {
    padding-left: 0;
    margin-bottom: 35px;
  }
  
  .contact-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .footer-content {
    padding: 40px 0 20px 0;
  }
  
  .footer-wave svg {
    height: 40px;
  }
  
  .footer-logo {
    justify-content: center;
    text-align: center;
  }
  
  .footer-brand-name {
    font-size: 1.5rem;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .social-media-section {
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    justify-content: center;
    text-align: center;
  }
  
  .footer-menu {
    text-align: center;
  }
  
  .contact-intro {
    text-align: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-details {
    align-items: center;
  }
  
  .copyright-text,
  .developer-credit {
    margin-bottom: 10px;
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .footer-bottom .col-md-6 {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/


.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  background: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(40,167,69,0.13);
  transition: all 0.4s;
  padding: 0;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
}
.scroll-top #scroll-top-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top i {
  font-size: 26px;
  color: var(--primary-color);
  line-height: 0;
  transition: color 0.3s;
}
.scroll-top:hover i {
  color: #38d65a;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.scroll-top #scroll-progress-bar {
  transition: stroke-dashoffset 0.3s linear;
}

/* Preloader */

/* Modern Loader Styles */
#modern-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #e8f5e9 0%, #f8f9fa 100%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
#modern-loader.hide {
  opacity: 0;
  pointer-events: none;
}
#modern-loader .loader-icon {
  width: 60px;
  height: 60px;
  border: 6px solid #e0f2f1;
  border-top: 6px solid #28a745;
  border-radius: 50%;
  animation: modern-spin 1s linear infinite;
  margin-bottom: 28px;
}
@keyframes modern-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#modern-loader .loader-bar-bg {
  width: 220px;
  height: 10px;
  background: #e0f2f1;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
}
#modern-loader .loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #28a745 0%, #43e97b 100%);
  border-radius: 6px;
  transition: width 0.2s;
}
#modern-loader .loader-text {
  font-size: 1.18rem;
  color: #28a745;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}
#preloader:before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 6px solid var(--primary-color);
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  background: transparent;
  animation: modern-preloader-spin 0.8s linear infinite;
  box-shadow: 0 2px 16px rgba(40,167,69,0.08);
}

@keyframes modern-preloader-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Tweaks */

@media (max-width: 991px) {
  .section {
    padding: 60px 0 50px 0;
    background: #f8f9fa;
  }
  #hero {
    padding: 80px 0 60px 0;
  }
  .service-item, .coverage-item, .tech-card {
    min-height: unset;
    padding: 28px 12px 22px 12px;
  }
}


@media (max-width: 767px) {
  .section {
    padding: 40px 0 30px 0;
    background: #f8f9fa;
  }
  #hero {
    padding: 50px 0 30px 0;
  }
  .site-footer {
    padding: 40px 0 10px 0;
    font-size: 0.95rem;
  }
  .footer-heading {
    font-size: 1.05rem;
  }
  .footer-contact-info li {
    font-size: 0.97rem;
  }
}