:root {
    /* Colors */
    --primary-color: #0A1A3F;
    --accent-color: #1BC9A4;
    --light-color: #F8FAFB;
    --dark-color: #2D3748;
    --text-color: #333333;
    --light-gray: #E2E8F0;
    --border-color: #CBD5E0;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --border-radius: 4px;
    
    /* Spacing */
    --spacing-unit: 8px;
    --container-width: 1200px;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

p {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sticky-header .site-title a,
.sticky-header .site-description,
.sticky-header .main-navigation a {
    color: white;
}

/* Site Branding */
.site-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-logo {
    max-height: 60px;
    line-height: 1;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.2;
}

.site-title a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.site-description {
    font-size: 0.9rem;
    margin: 5px 0 0;
    opacity: 0.9;
    font-weight: 300;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-navigation {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1003;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.close-icon {
    display: block;
    width: 25px;
    height: 25px;
    position: relative;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    top: 11px;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.mobile-menu {
    list-style: none;
    padding: 60px 0 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

/* Header Layout */
#site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Navigation */
.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
}

.main-navigation li {
    margin-left: calc(var(--spacing-unit) * 4);
}

.main-navigation a {
    color: white;
    font-weight: 500;
    position: relative;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}



/* Hero Section with Globe */
/* Hero Section with Split Layout */

/* --- Hero Section (adjusted for nav height) --- */
.hero-section {
  min-height: calc(100vh - 70px); /* subtract nav height */
  padding-top: 20px;              /* small breathing space */
  display: flex;
  align-items: center;            /* keep globe + text aligned */
  background: radial-gradient(circle at 30% 50%, #0d1b4c 0%, #060a16 80%);
  color: #fff;
  overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(100vh - 80px); /* same subtraction */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


.hero-globe-wrapper {
  flex: 0 0 50%;
  min-height: 520px;
  max-height: 80vh;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Add this to ensure it maintains its aspect ratio */
  aspect-ratio: 1/1;
}

#globe-container {
  width: 100%;
  aspect-ratio: 1 / 1;          /* stays square */
  height: clamp(280px, 60vw, 80vh); /* 280 phone → 80vh desktop */
  max-width: 600px;             /* optional cap for huge monitors */
  margin: 0 auto;               /* centre it */
}


.hero-globe canvas {
  width: 100% !important;
  height: 100% !important;
  /* Remove object-fit as it can cause issues with Three.js */
  /* object-fit: contain; */
}

/* Remove the duplicate rule */
/* #globe-container{min-height:360px;} */




/* Ensure globe container has height for canvas */
#globe-container{min-height:360px;}


.hero-globe {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-globe canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}




/* --- Hero Content --- */
.hero-content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-text {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 1s ease both;
}

/* --- Headline --- */
.hero-headline {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(90deg, #1BC9A4, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.hero-cta {
    margin-top: 10px;
}


/* --- CTA Button --- */
.btn-large {
  display: inline-block;
  padding: 16px 48px;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  /* neon gradient */
  background: linear-gradient(135deg, #1BC9A4 0%, #00EFFF 100%);
  color: #0a0f24;
  
  /* glow */
  box-shadow:
    0 0 15px rgba(27, 201, 164, 0.6),
    0 0 25px rgba(0, 239, 255, 0.5),
    inset 0 0 8px rgba(255, 255, 255, 0.2);

  transition: all 0.35s ease;
}

/* Hover effect */
.btn-large:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 0 25px rgba(27, 201, 164, 0.8),
    0 0 40px rgba(0, 239, 255, 0.7),
    inset 0 0 12px rgba(255, 255, 255, 0.25);
}

/* Add subtle pulse animation (optional) */
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(27, 201, 164, 0.6),
      0 0 25px rgba(0, 239, 255, 0.5),
      inset 0 0 8px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 0 25px rgba(27, 201, 164, 0.9),
      0 0 50px rgba(0, 239, 255, 0.9),
      inset 0 0 12px rgba(255, 255, 255, 0.3);
  }
}

.btn-large.glow {
  animation: neonPulse 2s infinite;
}



/* Location Info Popup */
.location-info-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--text-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 300px;
    display: none;
}

.popup-content {
    position: relative;
}

.popup-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.popup-content p {
    margin-bottom: 10px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}

/* Responsive adjustments for hero section */
@media screen and (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .hero-globe-wrapper {
        flex: 0 0 auto;
        height: 50vh;
        width: 100%;
    }
    
    .hero-content {
        flex: 0 0 auto;
        width: 100%;
        padding: 20px;
    }
    
    .hero-text {
        padding: 30px;
        
    }
}



@media screen and (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-container {
        min-height: auto;
    }
    
    .hero-globe-wrapper {
        height: 40vh;
    }
    
    .hero-content {
        padding: 10px;
    }
    
    .hero-text {
        padding: 20px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-globe-wrapper {
        height: 35vh;
    }
    
    .hero-text {
        padding: 15px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}




/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}



/* --- animation --- */
.services-section {
  animation: fadeInSlide 1.2s ease both;
}

@keyframes fadeInSlide {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-color);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 360px;   /* 🔒 lock height for desktop */
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}


.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}





/* Featured GIS Projects Section */

.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 360px;   /* 🔒 lock height for desktop */
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.project-thumb {
  height: 200px;
  overflow: hidden;
 flex-shrink: 0;          /* 🚫 prevents shrinking */
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.05);
}


.project-content {
  flex-grow: 1;
  padding: 20px;  /* ✅ extra bottom padding */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden; /* ✅ prevents content from spilling outside */
}


.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0A1A3F; /* your primary */
  margin-bottom: 15px;
  line-height: 1.4;
}

.project-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-title a:hover {
  color: #1BC9A4; /* accent */
}

.project-readmore:hover {
  color: #0A1A3F;
  border-bottom: 1px solid #0A1A3F;
}


.project-excerpt {
  margin-bottom: 15px;      /* ✅ ensures spacing above read more */
  color: #555;
  line-height: 1.6;
  flex-grow: 1;             /* ✅ pushes read more link to bottom */
}

.project-readmore {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1BC9A4;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  margin-top: auto;        /* ✅ stays at bottom even if text is long */
}



.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start;   /* prevent equal-stretching tall cards */
}



/* ======================
   Testimonials Section
====================== */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.testimonials-swiper {
  padding: 0 20px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 30px;
  position: relative;
  flex-grow: 1;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

/* ======================
   Swiper Core Fixes
====================== */
.testimonials-swiper .swiper-wrapper {
  display: flex !important;
}

.testimonials-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  display: flex;
}

/* Force equal widths per breakpoint */
@media (min-width: 1024px) {
  .testimonials-swiper .swiper-slide {
    width: calc((100% - 60px) / 3) !important; /* 3 per view */
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-swiper .swiper-slide {
    width: calc((100% - 30px) / 2) !important; /* 2 per view */
  }
}
@media (max-width: 767px) {
  .testimonials-swiper .swiper-slide {
    width: 100% !important; /* 1 per view */
  }
}

/* ======================
   Swiper UI Styling
====================== */
.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--border-color);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next {
  right: -10px;
}
.swiper-button-prev {
  left: -10px;
}

/* ======================
   No Testimonials Fallback
====================== */
.no-testimonials {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}









/* Footer Styles */
#site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 0;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-logo {
    margin-top: 20px;
}

.site-title-footer {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.2;
}

.site-title-footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-color);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--accent-color);
    margin-top: 3px;
}

.social-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.1rem;
}

.copyright-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

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





/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-column {
        grid-column: 1 / -1;
    }
    
    .project-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .project-sidebar {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .site-description {
        display: none;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    /* Mobile menu active states */
    body.mobile-menu-active {
        overflow: hidden;
    }
    
    body.mobile-menu-active .mobile-menu-overlay {
        display: block;
        opacity: 1;
    }
    
    body.mobile-menu-active .mobile-navigation {
        right: 0;
    }
    
    body.mobile-menu-active .mobile-menu-toggle .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    body.mobile-menu-active .mobile-menu-toggle .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    body.mobile-menu-active .mobile-menu-toggle .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        min-height: 90vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .project-hero-image {
        height: 300px;
    }
    
    .project-hero .project-title {
        font-size: 2rem;
    }
    
    .project-hero .project-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .project-main-content {
        padding: 25px;
    }
    
    .related-projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .contact-column {
        grid-column: 1;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .author-photo {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-hero-image {
        height: 250px;
    }
    
    .project-hero .project-title {
        font-size: 1.8rem;
    }
    
    .project-main-content {
        padding: 20px;
    }
    
    .related-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-heading {
        font-size: 1.3rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}




/* Subscription Banner */
.kuretech-subscribe-banner {
  background-color: var(--primary-color);
  padding: 60px 20px;
  color: #fff;
}

.kuretech-subscribe-banner .subscribe-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.kuretech-subscribe-banner .subscribe-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.kuretech-subscribe-banner .subscribe-text p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 0;
  max-width: 500px;
}

.kuretech-subscribe-banner .subscribe-form {
  display: flex;
  flex-wrap: nowrap;
}

.kuretech-subscribe-banner .subscribe-form input[type="email"] {
  padding: 14px 18px;
  border: none;
  border-radius: 8px 0 0 8px;
  outline: none;
  font-size: 1rem;
  width: 280px;
  max-width: 100%;
}

.kuretech-subscribe-banner .subscribe-form button {
  background: #1BC9A4;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.kuretech-subscribe-banner .subscribe-form button:hover {
  background: #095e91;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15,124,193,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .kuretech-subscribe-banner .subscribe-container {
    flex-direction: column;
    text-align: center;
  }

  .kuretech-subscribe-banner .subscribe-form {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .kuretech-subscribe-banner .subscribe-form input[type="email"],
  .kuretech-subscribe-banner .subscribe-form button {
    border-radius: 8px;
    width: 100%;
  }

  .kuretech-subscribe-banner .subscribe-form button {
    margin-top: 10px;
  }
}

.subscribe-success {
  color: #1bc9a4;
  margin-top: 10px;
  font-weight: 600;
}

.subscribe-error {
  color: #ff4d4f;
  margin-top: 10px;
  font-weight: 600;
}




#satellite-container {
  position: fixed;
  top: 20%;
  left: -150px; /* offscreen start */
  z-index: 9999;
  pointer-events: none; /* don’t block clicks */
  display: flex;
  align-items: center;
}

#satellite-icon {
  width: 80px;
  height: 80px;
  z-index: 2;
}

/* Tail glow */
#satellite-tail {
  width: 120px;
  height: 10px;
  margin-left: -20px;
  background: linear-gradient(to left, rgba(13,178,178,0.7), rgba(13,178,178,0));
  filter: blur(6px);
  border-radius: 50%;
  z-index: 1;
}


.site-branding {
    display: flex !important;       /* force flexbox */
    flex-direction: row !important; /* force side-by-side */
    align-items: center;            /* vertical align */
    gap: 15px;                      /* space between logo and text */
}

.site-logo {
    flex-shrink: 0; /* stop logo from shrinking weirdly */
}

.site-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}















/* Form Status Message Styles */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    display: block !important; /* Override any display:none */
    visibility: visible !important; /* Override any visibility:hidden */
    opacity: 1 !important; /* Override any opacity:0 */
    z-index: 100;
    min-height: 50px;
    line-height: 1.5;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Add icons to status messages */
.form-status.success::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #28a745;
}

.form-status.error::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #dc3545;
}

/* Animation for status messages */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status {
    animation: fadeIn 0.5s ease;
}

/* Make sure status message is visible in modals */
.modal .form-status {
    position: relative;
    z-index: 1001;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-status {
        padding: 12px;
        font-size: 14px;
    }
}













/* Sticky Sidebar Quick Facts */
.project-sidebar {
  flex: 0 0 300px;
  max-width: 300px;
  padding-left: 2rem;
}

.quick-facts {
  position: sticky;
  top: 100px; /* adjust depending on your header height */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: fadeSlideUp 0.8s ease forwards;
}

.facts-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fact-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.fact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #1bc9a4; /* your brand teal */
  margin-bottom: 0.25rem;
}

.fact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a1a3f; /* your brand dark */
}

/* entrance animation */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile fallback */
@media (max-width: 768px) {
  .project-sidebar {
    max-width: 100%;
    padding-left: 0;
    margin-top: 2rem;
  }
  .quick-facts {
    position: relative;
    top: auto;
  }
}
