body {
  margin: 0;
  /* font-family: 'Inter', Arial, sans-serif; */
  font-family: 'Inter', (woff2);
  background: #fff;
  color: #222;
}
main {
  min-height: 100vh;
  margin-top: 0 !important;
}
.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(120deg, #f8fafc 0%, #e0e7ef 100%);
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  color: #1a202c;
  padding-top: 8vh;
  padding-bottom: 8vh;
}

#hero-main-headline {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -1px;
  margin-bottom: 0.3em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-subheadline {
  font-family: 'Poppins', sans-serif;
  font-style: light; 
  text-align: center;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff !important;
  margin-bottom: 3em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  #hero-main-headline, .hero-subheadline {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  #hero-main-headline, .hero-subheadline {
    font-size: 1.2rem;
  }
}

.hero-line1 .highlight {
  color: #1de9b6;
  background: linear-gradient(90deg, #1de9b6 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheadline .highlight {
  color: #1de9b6;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .hero-subheadline {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 900px) {
  #hero-main-headline {
    font-size: 2.5rem;
  }
  .hero-subheadline {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  #hero-main-headline {
    font-size: 1.3rem;
  }
  .hero-subheadline {
    font-size: 1rem;
  }
}

/* Remove any old hero animation backgrounds if present */
.animated-gradient-bg, .hero-overlay, .hero-text-overlay {
  display: none !important;
}

.hero-bg-shapes {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 0;
  width: 60%;
  height: 80%;
  pointer-events: none;
}
.shape {
  position: absolute;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}
.shape1 { left: 0; bottom: 0; width: 200px; animation-delay: 0s; }
.shape2 { left: 120px; bottom: 60px; width: 100px; animation-delay: 2s; }
.shape3 { left: 300px; bottom: 40px; width: 80px; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
  max-width: 1200px;
  animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.hero-image-wrapper {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
}
.testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #181c2a;
  margin-bottom: 2.5rem;
}
.testimonials-title .highlight {
  color: #14b8a6;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border-radius: 1.1rem;
  border: 1.5px solid #e5e7eb;
  box-shadow: none;
  padding: 1.7rem 1.3rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  transition: box-shadow 0.22s, border 0.22s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(20,184,166,0.10), 0 2px 8px rgba(24,28,42,0.06);
  border: 1.5px solid #0ea5e9;
  transform: translateY(-6px) scale(1.03);
}
.testimonial-quote {
  font-size: 1.13rem;
  font-weight: 700;
  color: #181c2a;
  margin-bottom: 1.1rem;
}
.testimonial-client {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #14b8a6;
  margin-right: 0.8rem;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
}
.testimonial-role {
  font-size: 1rem;
  font-weight: 600;
  color: #0ea5e9;
}
.testimonial-desc {
  font-size: 0.97rem;
  color: #a0aec0;
  font-weight: 400;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testimonials-title {
    font-size: 1.5rem;
  }
}


.hero-main-img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(20,184,166,0.13), 0 0 0 0 #14b8a6;
  background: #e0f7f4;
  animation: heroFloat 4s ease-in-out infinite, heroImgFadeIn 1.5s 0.2s both, heroPulse 2.5s 1.2s infinite alternate;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes heroImgFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.hero-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 0.5rem;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #222;
  animation: heroTextUp 1.2s 0.3s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.hero-bold {
  font-weight: 900;
  color: #222;
}
.hero-content .highlight {
  color: #14b8a6;
  font-weight: 900;
  background: linear-gradient(90deg, #14b8a6 30%, #0ea5e9 70%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientText 2.5s ease-in-out infinite alternate;
}
@keyframes gradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hero-content p {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 0;
}
.hero-form {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 2rem;
  min-width: 320px;
  max-width: 400px;
  z-index: 1;
  display: none;
}
.form-placeholder {
  color: #aaa;
  text-align: center;
  padding: 2rem 0;
}


.footer {
  background-color: #1a2332;
  padding: 4rem 0;
  color: #ffffff;
  width: 100%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: auto;
}

.footer-tagline {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0.5rem 0;
}

.footer-description {
  color: #ffffff;
  font-size: 1rem;
  opacity: 0.9;
}

.footer-services {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-heading {
  color: #6dbba4;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-heading span {
  color: #6dbba4;
}

.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-services-list li {
  color: #ffffff;
  font-size: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-heading span {
  color: #47B5B1;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.footer-locations {
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #47B5B1;
}

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Company name styling */
.company-name {
  font-size: 2rem;
  font-weight: 700;
  color: #6dbba4;
  margin: 0.5rem 0;
}
.spline-logo-cover-left {
  position: absolute;
  right: 30px;
  bottom: -54px;
  width: 130px;
  height: 38px;
  background: #111;
  border-radius: 16px;
  z-index: 9999;
  pointer-events: none;
}

.company-subtitle {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footer-list {
  font-size: 0.95rem;
  color: #e2e8f0;
}
.footer-socials {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.7rem;
  font-size: 1.2rem;
}
.footer-socials img {
  width: 28px;
  height: 28px;
  filter: grayscale(1) brightness(1.5);
  transition: filter 0.3s, transform 0.3s;
  cursor: pointer;
}

.footer-socials img:hover {
  filter: none;
  transform: scale(1.15) rotate(-8deg);
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.7rem;
  font-size: 1.7rem;
  color: #14b8a6;
  transition: color 0.2s, transform 0.2s;
}
.footer-social-link:last-child {
  margin-right: 0;
}
.footer-social-link:hover, .footer-social-link:focus {
  color: #0ea5e9;
  transform: scale(1.18) rotate(-8deg);
}
/* Animations */
.animate-fade-in {
  animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.animate-fade-in-up {
  animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.animate-slide-in-right {
  animation: slideInRight 1.1s cubic-bezier(.4,0,.2,1) both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .hero, .services, .industries, .footer-content {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-content, .hero-form {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .hero-bg-shapes {
    width: 100%;
    height: 200px;
    left: 0;
    bottom: -40px;
  }
  .industries-grid-fa {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .btn, .btn-primary, .btn-outline {
    width: 90%;
    font-size: 1.1rem;
    padding: 0.9rem 0;
    border-radius: 0.7rem;
    margin: 0 auto;
  }
  .hero {
    padding: 2rem 0 1.5rem 0;
    min-height: 320px;
  }
  .hero-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .hero-image-wrapper {
    flex: 0 0 180px;
  }
  .hero-main-img {
    width: 180px;
    height: 120px;
  }
  .hero-content {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.05rem;
  }
  .hero.hero-full-bg {
    min-height: 70vh;
    padding: 0 0 2rem 0;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    align-items: flex-start;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  
}


/* Navbar Styles */
  .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

  .navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  width: 50%;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
    gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* --- Full-Page Hero Section --- */
.hero.hero-full-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(20,184,166,0.18) 0%, rgba(24,28,42,0.55) 100%);
  z-index: 2;
}
.hero-content-overlay {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 7vw;
  color: #fff;
  display: flex;
    flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  animation: heroTextFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-line {
  opacity: 0;
  transform: translateY(40px);
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-line1 { font-size: 3.2rem; font-weight: 900; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line2 { font-size: 2.1rem; font-weight: 600; margin-top: 0.2em; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line3 { font-weight: 800; margin-top: 0.2em; }
.hero-line .highlight, .hero-line3 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line.visible {
  opacity: 1;
  transform: none;
}
.hero-subheadline {
  font-size: 1.45rem;
  font-weight: 500;
  color: #e0f7f4;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
  margin-bottom: 0;
}
.hero-content-overlay .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
@keyframes blueGradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 900px) {
  .hero.hero-full-bg {
    min-height: 70vh;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}
/* --- Typing Animation Cursor --- */
.typed-cursor::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #0ea5e9;
  font-weight: 900;
  font-size: 1.1em;
  animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* --- Hero Text Pop-in Animation --- */
.pop-in {
  animation: popInScale 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* --- Highlight Glow Effect --- */
.highlight-glow {
  box-shadow: 0 0 18px 4px #0ea5e9cc, 0 0 8px 2px #14b8a6aa;
  filter: brightness(1.15) drop-shadow(0 0 8px #0ea5e9cc);
  transition: box-shadow 0.4s, filter 0.4s;
}

/* --- Mobile Sidebar Styles --- */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.navbar-hamburger .bar {
  width: 28px;
  height: 4px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,28,42,0.32);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  background: #fff;
  box-shadow: 2px 0 32px 0 #0ea5e933;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
}
.mobile-sidebar.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}
.sidebar-header {
  display: flex;
    align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,184,166,0.13), 0 0 0 3px #e0f7f4;
  border: 2.5px solid #14b8a6;
  object-fit: contain;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0ea5e9;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #14b8a6; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
    gap: 1.2rem;
  }
.sidebar-links a {
  font-size: 1.25rem;
  color: #181c2a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #0ea5e9; }
.sidebar-actions {
    display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-links, .navbar-actions { display: none !important; }
  .navbar-logo-img { width: 70px; height: 70px; }
  .mobile-sidebar { display: flex; flex-direction: column; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Vibrant Mobile Navbar Enhancements --- */
@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
    backdrop-filter: blur(8px);
    animation: navbarFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  }
  .navbar-logo-img {
    animation: logoFloat 2.8s ease-in-out infinite alternate, logoPopIn 0.9s cubic-bezier(.4,0,.2,1) both;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .navbar-logo-img:active {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 24px 6px #0ea5e9cc;
  }
  .navbar-links a {
    color: #181c2a;
    background: none;
    position: relative;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
    border-radius: 2px;
    box-shadow: 0 0 12px 2px #0ea5e9aa;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
    margin: 0.2rem auto 0 auto;
  }
  .navbar-links a:hover, .navbar-links a:focus {
    color: #0ea5e9;
    background: #e0f7f4;
  }
  .navbar-links a:hover::after, .navbar-links a:focus::after {
    width: 80%;
    box-shadow: 0 0 18px 4px #0ea5e9cc;
  }
  .navbar-actions {
    animation: popInScale 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
  }
  .btn, .btn-primary, .btn-outline {
    animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn:active::after, .btn-primary:active::after, .btn-outline:active::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(20,184,166,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.5s linear;
    z-index: 2;
  }
}
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* Center hero content */
.hero-content.hero-content-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
  width: 100vw;
  text-align: center;
  padding: 0;
}
.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
    justify-content: center;
    width: 100%;
  max-width: 700px;
  margin: 0 auto;
  gap: 1.5rem;
}
.hero-headline {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
  margin-bottom: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: popInScale 1.1s cubic-bezier(.4,0,.2,1) both;
}
.hero-line1 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line1 .whats-next {
  font-weight: 900;
  color: #fff;
  margin-left: 0.4rem;
  display: inline-block;
  animation: popInScale 1.2s 0.2s cubic-bezier(.4,0,.2,1) both;
  text-shadow: 0 2px 16px #0ea5e999, 0 1px 0 #222;
}
.hero-subheadline {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  margin-bottom: 0.5em;
  animation: fadeInUpHero 1.2s 0.5s cubic-bezier(.4,0,.2,1) both;
}
@media (max-width: 900px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-subheadline { font-size: 1.2rem; }
  .hero-content.hero-content-overlay { min-height: 320px; height: 70vh; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 1.3rem; }
  .hero-subheadline { font-size: 1rem; }
  .hero-content.hero-content-overlay { min-height: 220px; height: 60vh; }
}

/* --- Service Project Pages --- */
.service-hero {
  background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 4px 32px 0 rgba(20,184,166,0.13);
  margin-bottom: 2.5rem;
}
.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #181c2a;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 1.2rem;
  color: #0ea5e9;
  font-weight: 600;
}
.service-projects {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .service-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .service-projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
    display: flex;
    flex-direction: column;
  justify-content: flex-end;
}
.service-project-card:hover, .service-project-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.service-project-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.service-project-card:hover img {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.service-project-info {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(24,28,42,0.68) 0%, rgba(20,184,166,0.28) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1.2rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  text-align: left;
  box-shadow: 0 -2px 16px rgba(20,184,166,0.10);
}
.service-project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.service-project-info p {
  font-size: 1rem;
  color: #e0f7f4;
  margin: 0;
}
/* Contact Section at End */
  .contact-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://res.cloudinary.com/dxqmakjxj/image/upload/v1752099390/Group_z4dpuu.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.contact-content {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title span {
  color: #47B5B1;
}

.contact-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #47B5B1;
}

.form-control::placeholder {
  color: #94a3b8;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
    align-items: center;
}

.country-code {
  min-width: 120px;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  font-size: 1rem;
  cursor: pointer;
}

.budget-input {
  position: relative;
    width: 100%;
  }

.budget-select {
    width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.budget-select:focus {
  outline: none;
  border-color: #47B5B1;
}

.budget-custom {
  margin-top: 0.5rem;
  display: none;
}

.budget-custom.show {
  display: block;
}

/* Style for select dropdowns */
select.form-control,
select.country-code,
select.budget-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #47B5B1;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #3a9691;
}

.file-upload {
  position: relative;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-upload span {
  color: #94a3b8;
}

.file-upload button {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: none;
  border-radius: 0.25rem;
  color: #47B5B1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-content, .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.8rem;
  }

  .contact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 2rem 0;
  }
}

.form-file-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form input[type="file"] {
  font-size: 0.95rem;
  border: none;
  background: none;
  padding: 0;
}
.submit-btn {
  background: linear-gradient(90deg, #14b8a6 60%, #0ea5e9 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover, .submit-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary, .btn-outline {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, background 0.18s;
}
.btn-primary:hover, .btn-outline:hover, .btn-primary:focus, .btn-outline:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 16px #0ea5e955;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
    gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* --- Full-Page Hero Section --- */
.hero.hero-full-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(20,184,166,0.18) 0%, rgba(24,28,42,0.55) 100%);
  z-index: 2;
}
.hero-content-overlay {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 7vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  animation: heroTextFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-line {
  opacity: 0;
  transform: translateY(40px);
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-line1 { font-size: 3.2rem; font-weight: 900; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line2 { font-size: 2.1rem; font-weight: 600; margin-top: 0.2em; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line3 { font-weight: 800; margin-top: 0.2em; }
.hero-line .highlight, .hero-line3 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line.visible {
  opacity: 1;
  transform: none;
}
.hero-subheadline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content-overlay .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
@keyframes blueGradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 1200px) {
.hero-subheadline {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 900px) {
  .hero.hero-full-bg {
    min-height: 70vh;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.12;
  }
}
/* --- Typing Animation Cursor --- */
.typed-cursor::after {
  content: '|';
    display: inline-block;
  margin-left: 2px;
  color: #0ea5e9;
  font-weight: 900;
  font-size: 1.1em;
  animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* --- Hero Text Pop-in Animation --- */
.pop-in {
  animation: popInScale 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* --- Highlight Glow Effect --- */
.highlight-glow {
  box-shadow: 0 0 18px 4px #0ea5e9cc, 0 0 8px 2px #14b8a6aa;
  filter: brightness(1.15) drop-shadow(0 0 8px #0ea5e9cc);
  transition: box-shadow 0.4s, filter 0.4s;
}

/* --- Mobile Sidebar Styles --- */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.navbar-hamburger .bar {
  width: 28px;
  height: 4px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,28,42,0.32);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  background: #fff;
  box-shadow: 2px 0 32px 0 #0ea5e933;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
}
.mobile-sidebar.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,184,166,0.13), 0 0 0 3px #e0f7f4;
  border: 2.5px solid #14b8a6;
  object-fit: contain;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0ea5e9;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #14b8a6; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar-links a {
    font-size: 1.25rem;
    color: #181c2a;
  font-weight: 700;
  text-decoration: none;
    transition: color 0.2s;
}
.sidebar-links a:hover { color: #0ea5e9; }
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-links, .navbar-actions { display: none !important; }
  .navbar-logo-img { width: 70px; height: 70px; }
  .mobile-sidebar { display: flex; flex-direction: column; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Vibrant Mobile Navbar Enhancements --- */
@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
    backdrop-filter: blur(8px);
    animation: navbarFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  }
  .navbar-logo-img {
    animation: logoFloat 2.8s ease-in-out infinite alternate, logoPopIn 0.9s cubic-bezier(.4,0,.2,1) both;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .navbar-logo-img:active {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 24px 6px #0ea5e9cc;
  }
  .navbar-links a {
    color: #181c2a;
    background: none;
    position: relative;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
    border-radius: 2px;
    box-shadow: 0 0 12px 2px #0ea5e9aa;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
    margin: 0.2rem auto 0 auto;
  }
  .navbar-links a:hover, .navbar-links a:focus {
    color: #0ea5e9;
    background: #e0f7f4;
  }
  .navbar-links a:hover::after, .navbar-links a:focus::after {
    width: 80%;
    box-shadow: 0 0 18px 4px #0ea5e9cc;
  }
  .navbar-actions {
    animation: popInScale 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
  }
  .btn, .btn-primary, .btn-outline {
    animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn:active::after, .btn-primary:active::after, .btn-outline:active::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(20,184,166,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.5s linear;
    z-index: 2;
  }
}
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* --- Service Project Pages --- */
.service-hero {
  background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 4px 32px 0 rgba(20,184,166,0.13);
  margin-bottom: 2.5rem;
}
.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #181c2a;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 1.2rem;
  color: #0ea5e9;
  font-weight: 600;
}
.service-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .service-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .service-projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
    display: flex;
    flex-direction: column;
  justify-content: flex-end;
}
.service-project-card:hover, .service-project-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.service-project-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.service-project-card:hover img {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.service-project-info {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(24,28,42,0.68) 0%, rgba(20,184,166,0.28) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1.2rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  text-align: left;
  box-shadow: 0 -2px 16px rgba(20,184,166,0.10);
}
.service-project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.service-project-info p {
    font-size: 1rem;
  color: #e0f7f4;
  margin: 0;
}
/* Contact Section at End */
.contact-section {
  position: relative;
    width: 100%;
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://res.cloudinary.com/dxqmakjxj/image/upload/v1752099390/Group_z4dpuu.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
    margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.contact-content {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title span {
  color: #47B5B1;
}

.contact-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #47B5B1;
}

.form-control::placeholder {
  color: #94a3b8;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-code {
  min-width: 120px;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  font-size: 1rem;
  cursor: pointer;
}

.budget-input {
  position: relative;
  width: 100%;
}

.budget-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.budget-select:focus {
  outline: none;
  border-color: #47B5B1;
}

.budget-custom {
  margin-top: 0.5rem;
  display: none;
}

.budget-custom.show {
  display: block;
}

/* Style for select dropdowns */
select.form-control,
select.country-code,
select.budget-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #47B5B1;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #3a9691;
}

.file-upload {
  position: relative;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-upload span {
  color: #94a3b8;
}

.file-upload button {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: none;
  border-radius: 0.25rem;
  color: #47B5B1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-content, .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.8rem;
  }

  .contact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 2rem 0;
  }
}

.form-file-row {
  display: flex;
    align-items: center;
  gap: 0.5rem;
}
.contact-form input[type="file"] {
  font-size: 0.95rem;
  border: none;
  background: none;
  padding: 0;
}
.submit-btn {
  background: linear-gradient(90deg, #14b8a6 60%, #0ea5e9 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover, .submit-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary, .btn-outline {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, background 0.18s;
}
.btn-primary:hover, .btn-outline:hover, .btn-primary:focus, .btn-outline:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 16px #0ea5e955;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

.navbar-container {
  display: flex;
    align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
    gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* --- Full-Page Hero Section --- */
.hero.hero-full-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(20,184,166,0.18) 0%, rgba(24,28,42,0.55) 100%);
  z-index: 2;
  }
  .hero-content-overlay {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 7vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  animation: heroTextFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
  }
  .hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-line {
  opacity: 0;
  transform: translateY(40px);
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-line1 { font-size: 3.2rem; font-weight: 900; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line2 { font-size: 2.1rem; font-weight: 600; margin-top: 0.2em; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line3 { font-weight: 800; margin-top: 0.2em; }
.hero-line .highlight, .hero-line3 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line.visible {
  opacity: 1;
  transform: none;
}
.hero-subheadline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content-overlay .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
@keyframes blueGradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 1200px) {
.hero-subheadline {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 900px) {
  .hero.hero-full-bg {
    min-height: 70vh;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.12;
  }
}
/* --- Typing Animation Cursor --- */
.typed-cursor::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #0ea5e9;
  font-weight: 900;
  font-size: 1.1em;
  animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* --- Hero Text Pop-in Animation --- */
.pop-in {
  animation: popInScale 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* --- Highlight Glow Effect --- */
.highlight-glow {
  box-shadow: 0 0 18px 4px #0ea5e9cc, 0 0 8px 2px #14b8a6aa;
  filter: brightness(1.15) drop-shadow(0 0 8px #0ea5e9cc);
  transition: box-shadow 0.4s, filter 0.4s;
}

/* --- Mobile Sidebar Styles --- */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.navbar-hamburger .bar {
  width: 28px;
  height: 4px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,28,42,0.32);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  background: #fff;
  box-shadow: 2px 0 32px 0 #0ea5e933;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
}
.mobile-sidebar.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,184,166,0.13), 0 0 0 3px #e0f7f4;
  border: 2.5px solid #14b8a6;
  object-fit: contain;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0ea5e9;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #14b8a6; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
    gap: 1.2rem;
  }
.sidebar-links a {
  font-size: 1.25rem;
  color: #181c2a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #0ea5e9; }
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-links, .navbar-actions { display: none !important; }
  .navbar-logo-img { width: 70px; height: 70px; }
  .mobile-sidebar { display: flex; flex-direction: column; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Vibrant Mobile Navbar Enhancements --- */
@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
    backdrop-filter: blur(8px);
    animation: navbarFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  }
  .navbar-logo-img {
    animation: logoFloat 2.8s ease-in-out infinite alternate, logoPopIn 0.9s cubic-bezier(.4,0,.2,1) both;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .navbar-logo-img:active {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 24px 6px #0ea5e9cc;
  }
  .navbar-links a {
    color: #181c2a;
    background: none;
    position: relative;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
    border-radius: 2px;
    box-shadow: 0 0 12px 2px #0ea5e9aa;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
    margin: 0.2rem auto 0 auto;
  }
  .navbar-links a:hover, .navbar-links a:focus {
    color: #0ea5e9;
    background: #e0f7f4;
  }
  .navbar-links a:hover::after, .navbar-links a:focus::after {
    width: 80%;
    box-shadow: 0 0 18px 4px #0ea5e9cc;
  }
  .navbar-actions {
    animation: popInScale 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
  }
  .btn, .btn-primary, .btn-outline {
    animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn:active::after, .btn-primary:active::after, .btn-outline:active::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(20,184,166,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.5s linear;
    z-index: 2;
  }
}
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* --- Service Project Pages --- */
.service-hero {
  background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 4px 32px 0 rgba(20,184,166,0.13);
  margin-bottom: 2.5rem;
}
.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #181c2a;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 1.2rem;
  color: #0ea5e9;
  font-weight: 600;
}
.service-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .service-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .service-projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-project-card:hover, .service-project-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.service-project-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.service-project-card:hover img {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.service-project-info {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(24,28,42,0.68) 0%, rgba(20,184,166,0.28) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1.2rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  text-align: left;
  box-shadow: 0 -2px 16px rgba(20,184,166,0.10);
}
.service-project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.service-project-info p {
    font-size: 1rem;
  color: #e0f7f4;
  margin: 0;
}
/* Contact Section at End */
.contact-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://res.cloudinary.com/dxqmakjxj/image/upload/v1752099390/Group_z4dpuu.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.contact-content {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title span {
  color: #47B5B1;
}

.contact-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #47B5B1;
}

.form-control::placeholder {
  color: #94a3b8;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-code {
  min-width: 120px;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  font-size: 1rem;
  cursor: pointer;
}

.budget-input {
  position: relative;
  width: 100%;
}

.budget-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.budget-select:focus {
  outline: none;
  border-color: #47B5B1;
}

.budget-custom {
  margin-top: 0.5rem;
  display: none;
}

.budget-custom.show {
  display: block;
}

/* Style for select dropdowns */
select.form-control,
select.country-code,
select.budget-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #47B5B1;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #3a9691;
}

.file-upload {
  position: relative;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-upload span {
  color: #94a3b8;
}

.file-upload button {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: none;
  border-radius: 0.25rem;
  color: #47B5B1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-container {
  flex-direction: column;
    gap: 3rem;
  }

  .contact-content, .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.8rem;
  }

  .contact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 2rem 0;
  }
}

.form-file-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form input[type="file"] {
  font-size: 0.95rem;
  border: none;
  background: none;
  padding: 0;
}
.submit-btn {
  background: linear-gradient(90deg, #14b8a6 60%, #0ea5e9 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover, .submit-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary, .btn-outline {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, background 0.18s;
}
.btn-primary:hover, .btn-outline:hover, .btn-primary:focus, .btn-outline:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 16px #0ea5e955;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
  gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* --- Full-Page Hero Section --- */
.hero.hero-full-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(20,184,166,0.18) 0%, rgba(24,28,42,0.55) 100%);
  z-index: 2;
  }
  .hero-content-overlay {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 7vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  animation: heroTextFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
  }
  .hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-line {
  opacity: 0;
  transform: translateY(40px);
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-line1 { font-size: 3.2rem; font-weight: 900; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line2 { font-size: 2.1rem; font-weight: 600; margin-top: 0.2em; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line3 { font-weight: 800; margin-top: 0.2em; }
.hero-line .highlight, .hero-line3 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line.visible {
  opacity: 1;
  transform: none;
}
.hero-subheadline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content-overlay .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
@keyframes blueGradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 1200px) {
.hero-subheadline {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 900px) {
  .hero.hero-full-bg {
    min-height: 70vh;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.12;
  }
}
/* --- Typing Animation Cursor --- */
.typed-cursor::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #0ea5e9;
  font-weight: 900;
  font-size: 1.1em;
  animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* --- Hero Text Pop-in Animation --- */
.pop-in {
  animation: popInScale 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* --- Highlight Glow Effect --- */
.highlight-glow {
  box-shadow: 0 0 18px 4px #0ea5e9cc, 0 0 8px 2px #14b8a6aa;
  filter: brightness(1.15) drop-shadow(0 0 8px #0ea5e9cc);
  transition: box-shadow 0.4s, filter 0.4s;
}

/* --- Mobile Sidebar Styles --- */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.navbar-hamburger .bar {
  width: 28px;
  height: 4px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,28,42,0.32);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  background: #fff;
  box-shadow: 2px 0 32px 0 #0ea5e933;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
}
.mobile-sidebar.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,184,166,0.13), 0 0 0 3px #e0f7f4;
  border: 2.5px solid #14b8a6;
  object-fit: contain;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0ea5e9;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #14b8a6; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar-links a {
  font-size: 1.25rem;
  color: #181c2a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #0ea5e9; }
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-links, .navbar-actions { display: none !important; }
  .navbar-logo-img { width: 70px; height: 70px; }
  .mobile-sidebar { display: flex; flex-direction: column; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Enhanced Navbar Links --- */
.navbar-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.2rem 0.5rem;
  transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
.navbar-links li a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(.4,0,.2,1);
  margin: 0.2rem auto 0 auto;
}
.navbar-links li a:hover,
.navbar-links li a.active {
  color: #14b8a6;
}
.navbar-links li a:hover::after,
.navbar-links li a.active::after {
  width: 80%;
}

/* --- Enhanced Navbar Buttons --- */
.btn-get-started, .btn-lets-connect {
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.8rem 2.1rem;
  margin-left: 0.7rem;
  box-shadow: 0 2px 12px #14b8a622;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.18s;
  width: auto;
  min-width: 120px;
}
.btn-get-started {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  color: #fff;
  border: none;
}
.btn-get-started:hover {
  background: linear-gradient(90deg, #14b8a6 10%, #0ea5e9 90%);
  color: #fff;
  box-shadow: 0 4px 16px #0ea5e955;
  transform: scale(1.06) translateY(-2px);
}
.btn-lets-connect {
  background: #fff;
  color: #14b8a6;
  border: 2px solid #14b8a6;
  width: auto;
}
.btn-lets-connect:hover {
  background: #14b8a6;
  color: #fff;
  border-color: #0ea5e9;
  box-shadow: 0 4px 16px #0ea5e955;
  transform: scale(1.06) translateY(-2px);
}
@media (max-width: 900px) {
  .navbar-links {
    gap: 1.5rem;
  }
  .btn-get-started, .btn-lets-connect {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    margin-left: 0.3rem;
    min-width: 90px;
  }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Vibrant Mobile Navbar Enhancements --- */
@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
    backdrop-filter: blur(8px);
    animation: navbarFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  }
  .navbar-logo-img {
    animation: logoFloat 2.8s ease-in-out infinite alternate, logoPopIn 0.9s cubic-bezier(.4,0,.2,1) both;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .navbar-logo-img:active {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 24px 6px #0ea5e9cc;
  }
  .navbar-links a {
    color: #181c2a;
    background: none;
    position: relative;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
    border-radius: 2px;
    box-shadow: 0 0 12px 2px #0ea5e9aa;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
    margin: 0.2rem auto 0 auto;
  }
  .navbar-links a:hover, .navbar-links a:focus {
    color: #0ea5e9;
    background: #e0f7f4;
  }
  .navbar-links a:hover::after, .navbar-links a:focus::after {
    width: 80%;
    box-shadow: 0 0 18px 4px #0ea5e9cc;
  }
  .navbar-actions {
    animation: popInScale 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
  }
  .btn, .btn-primary, .btn-outline {
    animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn:active::after, .btn-primary:active::after, .btn-outline:active::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(20,184,166,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.5s linear;
    z-index: 2;
  }
}
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* --- Service Project Pages --- */
.service-hero {
  background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 4px 32px 0 rgba(20,184,166,0.13);
  margin-bottom: 2.5rem;
}
.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #181c2a;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 1.2rem;
  color: #0ea5e9;
  font-weight: 600;
}
.service-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .service-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .service-projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-project-card:hover, .service-project-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.service-project-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.service-project-card:hover img {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.service-project-info {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(24,28,42,0.68) 0%, rgba(20,184,166,0.28) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1.2rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  text-align: left;
  box-shadow: 0 -2px 16px rgba(20,184,166,0.10);
}
.service-project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.service-project-info p {
  font-size: 1rem;
  color: #e0f7f4;
  margin: 0;
}
/* Contact Section at End */
.contact-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://res.cloudinary.com/dxqmakjxj/image/upload/v1752099390/Group_z4dpuu.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.contact-content {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title span {
  color: #47B5B1;
}

.contact-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #47B5B1;
}

.form-control::placeholder {
  color: #94a3b8;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-code {
  min-width: 120px;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  font-size: 1rem;
  cursor: pointer;
}

.budget-input {
  position: relative;
  width: 100%;
}

.budget-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.budget-select:focus {
  outline: none;
  border-color: #47B5B1;
}

.budget-custom {
  margin-top: 0.5rem;
  display: none;
}

.budget-custom.show {
  display: block;
}

/* Style for select dropdowns */
select.form-control,
select.country-code,
select.budget-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #47B5B1;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #3a9691;
}

.file-upload {
  position: relative;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-upload span {
  color: #94a3b8;
}

.file-upload button {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: none;
  border-radius: 0.25rem;
  color: #47B5B1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-content, .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.8rem;
  }

  .contact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 2rem 0;
  }
}

.form-file-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form input[type="file"] {
  font-size: 0.95rem;
  border: none;
  background: none;
  padding: 0;
}
.submit-btn {
  background: linear-gradient(90deg, #14b8a6 60%, #0ea5e9 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover, .submit-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary, .btn-outline {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, background 0.18s;
}
.btn-primary:hover, .btn-outline:hover, .btn-primary:focus, .btn-outline:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 16px #0ea5e955;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
    gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* --- Full-Page Hero Section --- */
.hero.hero-full-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(20,184,166,0.18) 0%, rgba(24,28,42,0.55) 100%);
  z-index: 2;
}
.hero-content-overlay {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 7vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  animation: heroTextFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-line {
  opacity: 0;
  transform: translateY(40px);
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-line1 { font-size: 3.2rem; font-weight: 900; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line2 { font-size: 2.1rem; font-weight: 600; margin-top: 0.2em; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line3 { font-weight: 800; margin-top: 0.2em; }
.hero-line .highlight, .hero-line3 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line.visible {
  opacity: 1;
  transform: none;
}
.hero-subheadline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content-overlay .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
@keyframes blueGradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 1200px) {
.hero-subheadline {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 900px) {
  .hero.hero-full-bg {
    min-height: 70vh;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.12;
  }
}
/* --- Typing Animation Cursor --- */
.typed-cursor::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #0ea5e9;
  font-weight: 900;
  font-size: 1.1em;
  animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* --- Hero Text Pop-in Animation --- */
.pop-in {
  animation: popInScale 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* --- Highlight Glow Effect --- */
.highlight-glow {
  box-shadow: 0 0 18px 4px #0ea5e9cc, 0 0 8px 2px #14b8a6aa;
  filter: brightness(1.15) drop-shadow(0 0 8px #0ea5e9cc);
  transition: box-shadow 0.4s, filter 0.4s;
}

/* --- Mobile Sidebar Styles --- */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.navbar-hamburger .bar {
  width: 28px;
  height: 4px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,28,42,0.32);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  background: #fff;
  box-shadow: 2px 0 32px 0 #0ea5e933;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
}
.mobile-sidebar.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,184,166,0.13), 0 0 0 3px #e0f7f4;
  border: 2.5px solid #14b8a6;
  object-fit: contain;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0ea5e9;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #14b8a6; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar-links a {
  font-size: 1.25rem;
  color: #181c2a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #0ea5e9; }
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-links, .navbar-actions { display: none !important; }
  .navbar-logo-img { width: 70px; height: 70px; }
  .mobile-sidebar { display: flex; flex-direction: column; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Vibrant Mobile Navbar Enhancements --- */
@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
    backdrop-filter: blur(8px);
    animation: navbarFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  }
  .navbar-logo-img {
    animation: logoFloat 2.8s ease-in-out infinite alternate, logoPopIn 0.9s cubic-bezier(.4,0,.2,1) both;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .navbar-logo-img:active {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 24px 6px #0ea5e9cc;
  }
  .navbar-links a {
    color: #181c2a;
    background: none;
    position: relative;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
    border-radius: 2px;
    box-shadow: 0 0 12px 2px #0ea5e9aa;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
    margin: 0.2rem auto 0 auto;
  }
  .navbar-links a:hover, .navbar-links a:focus {
    color: #0ea5e9;
    background: #e0f7f4;
  }
  .navbar-links a:hover::after, .navbar-links a:focus::after {
    width: 80%;
    box-shadow: 0 0 18px 4px #0ea5e9cc;
  }
  .navbar-actions {
    animation: popInScale 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
  }
  .btn, .btn-primary, .btn-outline {
    animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn:active::after, .btn-primary:active::after, .btn-outline:active::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(20,184,166,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.5s linear;
    z-index: 2;
  }
}
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* --- Service Project Pages --- */
.service-hero {
  background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 4px 32px 0 rgba(20,184,166,0.13);
  margin-bottom: 2.5rem;
}
.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #181c2a;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 1.2rem;
  color: #0ea5e9;
  font-weight: 600;
}
.service-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .service-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .service-projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-project-card:hover, .service-project-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.service-project-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.service-project-card:hover img {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.service-project-info {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(24,28,42,0.68) 0%, rgba(20,184,166,0.28) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1.2rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  text-align: left;
  box-shadow: 0 -2px 16px rgba(20,184,166,0.10);
}
.service-project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.service-project-info p {
  font-size: 1rem;
  color: #e0f7f4;
  margin: 0;
}
/* Contact Section at End */
.contact-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://res.cloudinary.com/dxqmakjxj/image/upload/v1752099390/Group_z4dpuu.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.contact-content {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title span {
  color: #47B5B1;
}

.contact-description {
    font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #47B5B1;
}

.form-control::placeholder {
  color: #94a3b8;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-code {
  min-width: 120px;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  font-size: 1rem;
  cursor: pointer;
}

.budget-input {
  position: relative;
  width: 100%;
}

.budget-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.budget-select:focus {
  outline: none;
  border-color: #47B5B1;
}

.budget-custom {
  margin-top: 0.5rem;
  display: none;
}

.budget-custom.show {
  display: block;
}

/* Style for select dropdowns */
select.form-control,
select.country-code,
select.budget-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #47B5B1;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #3a9691;
}

.file-upload {
  position: relative;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-upload span {
  color: #94a3b8;
}

.file-upload button {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: none;
  border-radius: 0.25rem;
  color: #47B5B1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-content, .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.8rem;
  }

  .contact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 2rem 0;
  }
}

.form-file-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form input[type="file"] {
  font-size: 0.95rem;
  border: none;
  background: none;
  padding: 0;
}
.submit-btn {
  background: linear-gradient(90deg, #14b8a6 60%, #0ea5e9 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover, .submit-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary, .btn-outline {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, background 0.18s;
}
.btn-primary:hover, .btn-outline:hover, .btn-primary:focus, .btn-outline:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 16px #0ea5e955;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
    gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* --- Full-Page Hero Section --- */
.hero.hero-full-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(20,184,166,0.18) 0%, rgba(24,28,42,0.55) 100%);
  z-index: 2;
}
.hero-content-overlay {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 7vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  animation: heroTextFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-line {
  opacity: 0;
  transform: translateY(40px);
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-line1 { font-size: 3.2rem; font-weight: 900; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line2 { font-size: 2.1rem; font-weight: 600; margin-top: 0.2em; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line3 { font-weight: 800; margin-top: 0.2em; }
.hero-line .highlight, .hero-line3 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line.visible {
  opacity: 1;
  transform: none;
}
.hero-subheadline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content-overlay .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
@keyframes blueGradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 1200px) {
  .hero-subheadline {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 900px) {
  .hero.hero-full-bg {
    min-height: 70vh;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.12;
  }
}
/* --- Typing Animation Cursor --- */
.typed-cursor::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #0ea5e9;
  font-weight: 900;
  font-size: 1.1em;
  animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* --- Hero Text Pop-in Animation --- */
.pop-in {
  animation: popInScale 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* --- Highlight Glow Effect --- */
.highlight-glow {
  box-shadow: 0 0 18px 4px #0ea5e9cc, 0 0 8px 2px #14b8a6aa;
  filter: brightness(1.15) drop-shadow(0 0 8px #0ea5e9cc);
  transition: box-shadow 0.4s, filter 0.4s;
}

/* --- Mobile Sidebar Styles --- */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.navbar-hamburger .bar {
  width: 28px;
  height: 4px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,28,42,0.32);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  background: #fff;
  box-shadow: 2px 0 32px 0 #0ea5e933;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
}
.mobile-sidebar.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,184,166,0.13), 0 0 0 3px #e0f7f4;
  border: 2.5px solid #14b8a6;
  object-fit: contain;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0ea5e9;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #14b8a6; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar-links a {
  font-size: 1.25rem;
  color: #181c2a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #0ea5e9; }
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-links, .navbar-actions { display: none !important; }
  .navbar-logo-img { width: 70px; height: 70px; }
  .mobile-sidebar { display: flex; flex-direction: column; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Vibrant Mobile Navbar Enhancements --- */
@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
    backdrop-filter: blur(8px);
    animation: navbarFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  }
  .navbar-logo-img {
    animation: logoFloat 2.8s ease-in-out infinite alternate, logoPopIn 0.9s cubic-bezier(.4,0,.2,1) both;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .navbar-logo-img:active {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 24px 6px #0ea5e9cc;
  }
  .navbar-links a {
    color: #181c2a;
    background: none;
    position: relative;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
    border-radius: 2px;
    box-shadow: 0 0 12px 2px #0ea5e9aa;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
    margin: 0.2rem auto 0 auto;
  }
  .navbar-links a:hover, .navbar-links a:focus {
    color: #0ea5e9;
    background: #e0f7f4;
  }
  .navbar-links a:hover::after, .navbar-links a:focus::after {
    width: 80%;
    box-shadow: 0 0 18px 4px #0ea5e9cc;
  }
  .navbar-actions {
    animation: popInScale 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
  }
  .btn, .btn-primary, .btn-outline {
    animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn:active::after, .btn-primary:active::after, .btn-outline:active::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(20,184,166,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.5s linear;
    z-index: 2;
  }
}
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* --- Service Project Pages --- */
.service-hero {
  background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 4px 32px 0 rgba(20,184,166,0.13);
  margin-bottom: 2.5rem;
}
.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #181c2a;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 1.2rem;
  color: #0ea5e9;
  font-weight: 600;
}
.service-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .service-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .service-projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-project-card:hover, .service-project-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.service-project-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.service-project-card:hover img {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.service-project-info {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(24,28,42,0.68) 0%, rgba(20,184,166,0.28) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1.2rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  text-align: left;
  box-shadow: 0 -2px 16px rgba(20,184,166,0.10);
}
.service-project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.service-project-info p {
  font-size: 1rem;
  color: #e0f7f4;
  margin: 0;
}
/* Contact Section at End */
.contact-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://res.cloudinary.com/dxqmakjxj/image/upload/v1752099390/Group_z4dpuu.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.contact-content {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-title span {
  color: #47B5B1;
}

.contact-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  max-width: 500px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #47B5B1;
}

.form-control::placeholder {
  color: #94a3b8;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-code {
  min-width: 120px;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
  font-size: 1rem;
  cursor: pointer;
}

.budget-input {
  position: relative;
  width: 100%;
}

.budget-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
}

.budget-select:focus {
  outline: none;
  border-color: #47B5B1;
}

.budget-custom {
  margin-top: 0.5rem;
  display: none;
}

.budget-custom.show {
  display: block;
}

/* Style for select dropdowns */
select.form-control,
select.country-code,
select.budget-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #47B5B1;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #3a9691;
}

.file-upload {
  position: relative;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.file-upload span {
  color: #94a3b8;
}

.file-upload button {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: none;
  border-radius: 0.25rem;
  color: #47B5B1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-content, .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.8rem;
  }

  .contact-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 2rem 0;
  }
}

.form-file-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form input[type="file"] {
  font-size: 0.95rem;
  border: none;
  background: none;
  padding: 0;
}
.submit-btn {
  background: linear-gradient(90deg, #14b8a6 60%, #0ea5e9 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.submit-btn:hover, .submit-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary, .btn-outline {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, background 0.18s;
}
.btn-primary:hover, .btn-outline:hover, .btn-primary:focus, .btn-outline:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 16px #0ea5e955;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
    gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

/* --- Full-Page Hero Section --- */
.hero.hero-full-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(120deg, rgba(20,184,166,0.18) 0%, rgba(24,28,42,0.55) 100%);
  z-index: 2;
}
.hero-content-overlay {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-left: 7vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  animation: heroTextFadeIn 1.2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroTextFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-line {
  opacity: 0;
  transform: translateY(40px);
  display: block;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-line1 { font-size: 3.2rem; font-weight: 900; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line2 { font-size: 2.1rem; font-weight: 600; margin-top: 0.2em; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.hero-line3 { font-weight: 800; margin-top: 0.2em; }
.hero-line .highlight, .hero-line3 .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
.hero-line.visible {
  opacity: 1;
  transform: none;
}
.hero-subheadline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-content-overlay .highlight {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: blueGradientText 2.5s ease-in-out infinite alternate;
  transition: background 0.5s;
}
@keyframes blueGradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (max-width: 1200px) {
  .hero-subheadline {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 900px) {
  .hero.hero-full-bg {
    min-height: 70vh;
  }
  .hero-content-overlay {
    margin-left: 4vw;
    max-width: 95vw;
    min-height: 40vh;
  }
  .hero-headline {
    font-size: 1.5rem;
    gap: 0.2rem;
  }
  .hero-line1 { font-size: 1.5rem; }
  .hero-line2 { font-size: 1.1rem; }
  .hero-line3 { font-size: 1.3rem; }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.12;
  }
}
/* --- Typing Animation Cursor --- */
.typed-cursor::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #0ea5e9;
  font-weight: 900;
  font-size: 1.1em;
  animation: blinkCursor 0.8s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* --- Hero Text Pop-in Animation --- */
.pop-in {
  animation: popInScale 0.42s cubic-bezier(.4,0,.2,1) both;
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* --- Highlight Glow Effect --- */
.highlight-glow {
  box-shadow: 0 0 18px 4px #0ea5e9cc, 0 0 8px 2px #14b8a6aa;
  filter: brightness(1.15) drop-shadow(0 0 8px #0ea5e9cc);
  transition: box-shadow 0.4s, filter 0.4s;
}

/* --- Mobile Sidebar Styles --- */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 120;
  margin-left: 1rem;
}
.navbar-hamburger .bar {
  width: 28px;
  height: 4px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,28,42,0.32);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 82vw; max-width: 340px;
  background: #fff;
  box-shadow: 2px 0 32px 0 #0ea5e933;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
}
.mobile-sidebar.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-overlay.open {
  display: block;
  opacity: 1;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(20,184,166,0.13), 0 0 0 3px #e0f7f4;
  border: 2.5px solid #14b8a6;
  object-fit: contain;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0ea5e9;
  cursor: pointer;
  margin-left: 1rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #14b8a6; }
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar-links a {
  font-size: 1.25rem;
  color: #181c2a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #0ea5e9; }
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-links, .navbar-actions { display: none !important; }
  .navbar-logo-img { width: 70px; height: 70px; }
  .mobile-sidebar { display: flex; flex-direction: column; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

/* --- Vibrant Mobile Navbar Enhancements --- */
@media (max-width: 900px) {
  .navbar {
    background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
    backdrop-filter: blur(8px);
    animation: navbarFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  }
  .navbar-logo-img {
    animation: logoFloat 2.8s ease-in-out infinite alternate, logoPopIn 0.9s cubic-bezier(.4,0,.2,1) both;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .navbar-logo-img:active {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 0 24px 6px #0ea5e9cc;
  }
  .navbar-links a {
    color: #181c2a;
    background: none;
    position: relative;
    transition: color 0.25s, background 0.25s;
    z-index: 1;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
    border-radius: 2px;
    box-shadow: 0 0 12px 2px #0ea5e9aa;
    transition: width 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
    margin: 0.2rem auto 0 auto;
  }
  .navbar-links a:hover, .navbar-links a:focus {
    color: #0ea5e9;
    background: #e0f7f4;
  }
  .navbar-links a:hover::after, .navbar-links a:focus::after {
    width: 80%;
    box-shadow: 0 0 18px 4px #0ea5e9cc;
  }
  .navbar-actions {
    animation: popInScale 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
  }
  .btn, .btn-primary, .btn-outline {
    animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  }
  .btn:active::after, .btn-primary:active::after, .btn-outline:active::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(20,184,166,0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.5s linear;
    z-index: 2;
  }
}
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
@keyframes logoPopIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popInScale {
  0% { opacity: 0.2; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ripple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 220%; height: 220%; opacity: 0; }
}

/* --- Service Project Pages --- */
.service-hero {
  background: linear-gradient(120deg, #e0f7f4 0%, #0ea5e9 100%);
  padding: 3.5rem 1.5rem 2.2rem 1.5rem;
  text-align: center;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 4px 32px 0 rgba(20,184,166,0.13);
  margin-bottom: 2.5rem;
}
.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #181c2a;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}
.service-hero p {
  font-size: 1.2rem;
  color: #0ea5e9;
  font-weight: 600;
}
.service-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.service-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .service-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .service-projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-project-card:hover, .service-project-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.service-project-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.service-project-card:hover img {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.service-project-info {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(24,28,42,0.68) 0%, rgba(20,184,166,0.28) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1.2rem 1rem;
  border-radius: 0 0 1.2rem 1.2rem;
  text-align: left;
  box-shadow: 0 -2px 16px rgba(20,184,166,0.10);
}
.service-project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.service-project-info p {
  font-size: 1rem;
  color: #e0f7f4;
  margin: 0;
}
/* Contact Section at End */
.contact-section {
  padding: 3rem 2rem 2rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .portfolio {
    padding: 2rem 1rem 1rem 1rem;
  }
  .portfolio-grid {
    gap: 1.2rem;
  }
  .contact-section {
    padding: 2rem 1rem 1rem 1rem;
  }
}
/* Section Spacing & Transitions */
section {
  margin-bottom: 3.5rem;
  transition: background 0.5s, box-shadow 0.5s;
}
/* Section Fade-in Animation */
.section-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.section-fade.visible {
  opacity: 1;
  transform: none;
}
/* Interactive Elements */
.portfolio-card, .service-card, .industry-card {
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}
.portfolio-card:hover, .service-card:hover, .industry-card:hover {
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  background: #e0f7f4;
  transform: translateY(-8px) scale(1.03);
}
.btn, .submit-btn {
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.btn:focus, .submit-btn:focus {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}
/* Remove redundant hero form styles */
.hero-form { display: none; }

/* --- Generative AI Hero Section --- */
.hero-genai {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.hero-genai-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100vh;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.62) saturate(1.1) blur(0.5px);
  transition: filter 0.7s;
}
@media (max-width: 600px) {
  .hero-genai {
    min-height: 60vh;
  }
  .hero-genai-img {
    height: 60vh;
  }
}

@media (max-width: 600px) {
  .hero-overlay-card {
    padding: 1.1rem 0.7rem 1.1rem 0.7rem;
    min-width: 0;
    max-width: 98vw;
    border-radius: 1.2rem;
  }
}
.hero-overlay-content {
  width: 100%;
}
.hero-overlay-category {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.85;
}
.hero-overlay-title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: -1px;
  line-height: 1.15;
  min-height: 2.5rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.hero-overlay-btn {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.7rem;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 8px #14b8a633;
  animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
}
.hero-overlay-sub {
  color: #e0f7f4;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.92;
}
.center-btn-row {
  display: flex;
  justify-content: center;
  margin: 2.2rem 0 1.2rem 0;
}
.unlock-btn {
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.7rem;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 8px #14b8a633;
  animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
}
/* --- Solutions Grid --- */
.solutions-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
}
.solutions-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  color: #181c2a;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.solution-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 180px;
  height: 180px;
  box-shadow: 0 2px 16px rgba(20,184,166,0.10);
  background: #222;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, filter 0.35s;
  animation: cardFadeIn 1.1s cubic-bezier(.4,0,.2,1) both;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.solution-card:hover, .solution-card:focus {
  transform: scale(1.045) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(20,184,166,0.18);
  filter: brightness(1.08) saturate(1.1);
}
.solution-img-full {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: filter 0.35s;
}
.solution-card:hover .solution-img-full {
  filter: brightness(0.85) blur(1px) saturate(1.2);
}
.solution-overlay {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(24,28,42,0.38) 0%, rgba(20,184,166,0.18) 100%);
  z-index: 2;
  transition: background 0.35s;
}
.solution-card:hover .solution-overlay {
  background: linear-gradient(120deg, rgba(20,184,166,0.28) 0%, rgba(24,28,42,0.55) 100%);
}
.solution-title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: left;
  width: 100%;
  padding: 1.2rem 0.7rem 0.7rem 1.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.solution-btn {
  position: relative;
  z-index: 3;
  margin: 0.7rem 0 1.1rem 1.1rem;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 0.7rem;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 2px 8px #14b8a633;
  animation: popInScale 0.7s 0.3s cubic-bezier(.4,0,.2,1) both;
}

/* --- Enhanced Figma-Inspired Industries Section (with advanced hover/active effects) --- */
.industries-figma-grid {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 2.5rem;
}
.industry-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
}
.industry-card-figma {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2.5px solid #009688;
  border-radius: 22px;
  padding: 1.3rem 2.8rem 1.3rem 1.5rem;
  min-width: 520px;
  max-width: 650px;
  flex: 1 1 0;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, border-color 0.25s, background 0.25s, transform 0.22s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  gap: 1.5rem;
  animation: popInScale 0.7s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow, background;
}
.industry-card-figma:hover {
  box-shadow: 0 8px 32px 0 rgba(0,150,136,0.18), 0 0 0 6px #00bfae22;
  border-color: #00bfae;
  background: linear-gradient(90deg, #f8fffd 60%, #e0f7fa 100%);
  transform: scale(1.025) translateY(-2px);
}
.industry-card-figma:hover .industry-icon-figma {
  animation: floatIcon 0.8s cubic-bezier(.4,0,.2,1) infinite alternate;
  box-shadow: 0 4px 16px 0 #00bfae33;
}
.industry-card-figma:hover .industry-chevron-figma {
  transform: rotate(180deg) scale(1.15);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.industry-card-figma.active, .industry-card-figma:active {
  border-color: #00bfae;
  box-shadow: 0 0 0 6px #00bfae44, 0 8px 32px 0 rgba(0,150,136,0.13);
  z-index: 1;
  animation: pulseActive 0.5s cubic-bezier(.4,0,.2,1);
}
.industry-icon-figma {
  background: #009688;
  color: #fff;
  border-radius: 14px;
  font-size: 2.3rem;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.3rem;
  box-shadow: 0 2px 8px 0 rgba(0,150,136,0.10);
  transition: box-shadow 0.25s, transform 0.22s cubic-bezier(.4,0,.2,1);
}
.industry-label-figma {
  font-size: 1.55rem;
  font-weight: 700;
  color: #009688;
  flex: 1;
  letter-spacing: 0.01em;
  transition: color 0.22s cubic-bezier(.4,0,.2,1);
}
.industry-card-figma:hover .industry-label-figma {
  color: #00796b;
}
.industry-chevron-figma {
  color: #009688;
  font-size: 1.5rem;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
/* Pop-in animation */
@keyframes popInScale {
  0% { opacity: 0; transform: scale(0.85) translateY(40px); }
  60% { opacity: 1; transform: scale(1.05) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
/* Floating icon animation */
@keyframes floatIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px) scale(1.08); }
}
/* Pulse effect for active card */
@keyframes pulseActive {
  0% { box-shadow: 0 0 0 0 #00bfae44, 0 8px 32px 0 rgba(0,150,136,0.13); }
  60% { box-shadow: 0 0 0 12px #00bfae22, 0 8px 32px 0 rgba(0,150,136,0.13); }
  100% { box-shadow: 0 0 0 6px #00bfae44, 0 8px 32px 0 rgba(0,150,136,0.13); }
}
/* Ripple effect on click */
.industry-card-figma .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(0, 150, 136, 0.18);
  pointer-events: none;
  z-index: 2;
}
@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
@media (max-width: 1200px) {
  .industry-card-figma {
    min-width: 340px;
    max-width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 1.1rem;
  }
  .industry-label-figma {
    font-size: 1.15rem;
  }
  .industry-icon-figma {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    margin-right: 0.7rem;
  }
}
@media (max-width: 900px) {
  .industry-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .industries-figma-grid {
    gap: 1.2rem;
  }
  .industry-card-figma {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* --- Industry Info Popups --- */
.industry-info-popups {
  margin: 2.5rem auto 0 auto;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.industry-info-card {
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, #f8fffd 60%, #e0f7fa 100%);
  border: 2.5px solid #e0e0e0;
  border-radius: 26px;
  box-shadow: 0 8px 40px 0 rgba(0,150,136,0.13), 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2.5rem 2.5rem 2.1rem 2.5rem;
  max-width: 650px;
  min-width: 340px;
  width: 100%;
  position: relative;
  animation: fadeSlideScaleIn 0.7s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  margin: 0;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s, opacity 0.3s;
}
.industry-info-card.active {
  display: flex;
  border-color: #00bfae;
  box-shadow: 0 0 0 8px #00bfae22, 0 8px 40px 0 rgba(0,150,136,0.18);
  animation: fadeSlideScaleIn 0.7s cubic-bezier(.4,0,.2,1);
}
.industry-info-card.active::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  background: linear-gradient(120deg, #00bfae33 0%, #fff0 60%, #00bfae22 100%);
  opacity: 0.7;
  animation: borderSweep 2.2s linear infinite;
  z-index: 0;
}
@keyframes borderSweep {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}
.industry-info-header {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #009688 60%, #00bfae 100%);
  color: #fff;
  border-radius: 18px 18px 0 0;
  padding: 1.1rem 1.5rem 1.1rem 1.2rem;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  gap: 1.1rem;
  position: relative;
  box-shadow: 0 2px 12px 0 #00bfae22;
}
.industry-info-icon {
  font-size: 2.3rem;
  margin-right: 0.8rem;
  display: flex;
  align-items: center;
  animation: floatIcon 1.2s cubic-bezier(.4,0,.2,1) infinite alternate;
  filter: drop-shadow(0 2px 8px #00bfae66);
}
.industry-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  z-index: 1;
}
.industry-info-desc {
  color: #333;
  font-size: 1.13rem;
  margin-bottom: 1.7rem;
  line-height: 1.75;
  z-index: 1;
}
.industry-info-btn {
  align-self: flex-start;
  background: linear-gradient(90deg, #009688 60%, #00bfae 100%);
  color: #fff;
  border-radius: 10px;
  padding: 0.8rem 1.7rem;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 #00bfae22;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 1;
}
.industry-info-btn:hover {
  background: linear-gradient(90deg, #00bfae 60%, #009688 100%);
  box-shadow: 0 4px 16px 0 #00bfae33;
}
/* Close button */
.industry-info-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.5rem;
  color: #00bfae;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 #00bfae22;
  z-index: 2;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.industry-info-close:hover {
  background: #00bfae;
  color: #fff;
  box-shadow: 0 4px 16px 0 #00bfae33;
}
@keyframes fadeSlideScaleIn {
  0% { opacity: 0; transform: scale(0.92) translateY(60px); }
  60% { opacity: 1; transform: scale(1.04) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Active Industry Card (filled style) --- */
.industry-card-figma.active {
  background: #009688;
  border-color: #009688;
  color: #fff;
  box-shadow: 0 0 0 6px #00bfae44, 0 8px 32px 0 rgba(0,150,136,0.13);
}
.industry-card-figma.active .industry-label-figma,
.industry-card-figma.active .industry-icon-figma,
.industry-card-figma.active .industry-chevron-figma {
  color: #fff;
}
.industry-card-figma.active .industry-icon-figma {
  background: #fff;
  color: #009688;
  box-shadow: 0 4px 16px 0 #00bfae33;
}
.industry-card-figma.active .industry-chevron-figma {
  color: #fff;
}
.industry-card-figma.active .industry-chevron-figma i {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f054'; /* fa-chevron-right */
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.industry-card-figma.active .industry-chevron-figma i:before {
  content: '\f054';
}

/* --- Animated Gradient Background for Hero --- */
.animated-gradient-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, #0ea5e9, #14b8a6, #7f5af0, #00e3ae, #0ea5e9);
  background-size: 400% 400%;
  animation: gradientBGmove 16s ease-in-out infinite;
  opacity: 0.92;
}
@keyframes gradientBGmove {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
} 

/* --- Hero Text Overlay for Readability --- */
.hero-text-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 3;
  background: linear-gradient(120deg, rgba(10,20,40,0.38) 60%, rgba(20,40,60,0.22) 100%);
  pointer-events: none;
}

/* --- Hero Headline & Animation (Larger & More Animated) --- */
#hero-main-headline {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 0.3em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-subheadline {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff !important;
  margin-bottom: 3em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .hero-subheadline {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2em;
  }
}
@media (max-width: 600px) {
  .hero-subheadline {
    font-size: 1.2rem;
    line-height: 1.15;
    margin-bottom: 1.2em;
  }
}

.hero-line1 .highlight {
  color: #1de9b6;
  background: linear-gradient(90deg, #1de9b6 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheadline .highlight {
  color: #1de9b6;
  font-weight: 700;
}
@media (max-width: 900px) {
  #hero-main-headline {
    font-size: 2.5rem;
  }
  .hero-subheadline {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  #hero-main-headline {
    font-size: 1.3rem;
  }
  .hero-subheadline {
    font-size: 1rem;
  }
}

/* --- Spline Animation Styles --- */
.hero-spline-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}
@media (max-width: 900px) {
  .hero-spline-viewer {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-spline-viewer {
    min-height: 220px;
  }
}

/* --- Hide Spline Logo --- */
spline-viewer::part(branding) {
  display: none;
}

/* --- Spline Animation Positioning --- */
@media (min-width: 901px) {
  .hero-spline-viewer {
    width: 60%;
    left: 40%;
  }
}
.hero-line2, .hero-line3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 16px #0ea5e999, 0 1px 0 #222;
}

/* --- Animation for Headline/Subheadline --- */
.animate-hero-headline {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpHero 1.1s 0.2s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-hero-sub {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpHero 1.1s 0.5s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeInUpHero {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.footer-logo-img-footer {
  display: block;
  margin: 0 auto 0 auto;
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: none;
  padding: 0;
  position: relative;
  z-index: 1;
  box-shadow: none;
  filter: none;
  transition: none;
  animation: none;
}
/* Remove all hover effects */
.footer-logo-img-footer:hover {
  box-shadow: none;
  filter: none;
  transform: none;
  animation: none;
}


.footer-list-countries {
  margin-bottom: 1.5rem;
}

.footer-list-countries li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.8rem;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  width: fit-content;
}

.footer-list-countries li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-list-countries li:hover::before {
  left: 100%;
}

.footer-list-countries li:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
  min-width: 220px;
  width: fit-content;
}

.country-flag {
  font-size: 1.2rem;
  margin-right: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  transform: scale(1);
}

.footer-list-countries li:hover .country-flag {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-list-countries li::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
  transform: translateY(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer-list-countries li:hover::after {
  width: 20px;
}

/* --- Card & Popup Polish --- */
.industry-card-figma, .service-card, .portfolio-card, .solution-card {
  box-shadow: 0 4px 24px rgba(20,184,166,0.10), 0 1.5px 8px rgba(24,28,42,0.06);
  border-radius: 1.3rem;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  background: #fff;
  animation: fadeSlideScaleIn 0.7s cubic-bezier(.4,0,.2,1);
}
.industry-card-figma:hover, .service-card:hover, .portfolio-card:hover, .solution-card:hover {
  box-shadow: 0 12px 40px rgba(20,184,166,0.18), 0 0 0 8px #00bfae22;
  transform: scale(1.035) translateY(-4px);
  background: linear-gradient(90deg, #f8fffd 60%, #e0f7fa 100%);
}
.industry-info-card {
  box-shadow: 0 8px 40px 0 rgba(0,150,136,0.18), 0 2px 16px 0 rgba(0,0,0,0.10);
  border: 2.5px solid #00bfae;
  border-radius: 28px;
  animation: fadeSlideScaleIn 0.7s cubic-bezier(.4,0,.2,1);
  background: linear-gradient(135deg, #f8fffd 60%, #e0f7fa 100%);
}
.industry-info-card.active {
  animation: fadeSlideScaleIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeSlideScaleIn {
  0% { opacity: 0; transform: scale(0.92) translateY(60px); }
  60% { opacity: 1; transform: scale(1.04) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Button & CTA Enhancement --- */
.btn, .btn-primary, .btn-outline, .submit-btn {
  background: linear-gradient(90deg, #14b8a6 60%, #0ea5e9 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px #14b8a633;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  padding: 0.8rem 2.2rem;
}
.btn:hover, .btn-primary:hover, .btn-outline:hover, .submit-btn:hover {
  background: linear-gradient(90deg, #0ea5e9 60%, #14b8a6 100%);
  color: #fff;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 16px #0ea5e955;
}
.btn-outline {
  background: #fff;
  color: #14b8a6;
  border: 2px solid #14b8a6;
}
.btn-outline:hover, .btn-outline:focus {
  background: #e0f7f4;
  color: #0ea5e9;
  border-color: #0ea5e9;
}

/* --- Section Dividers & Spacing --- */
section {
  margin-bottom: 4.5rem;
  border-bottom: 1.5px solid #e0f7f4;
  padding-bottom: 2.5rem;
}
section:last-of-type {
  border-bottom: none;
}

/* --- Headings & Typography --- */
h2, .footer-heading-gradient {
  font-size: 2.4rem;
  font-weight: 900;
  /* background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%); */
  background: #6dbba4;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.5rem;
  font-weight: 800;
  /* color: #009688; */
  margin-bottom: 1rem;
}

/* --- Navbar & Footer --- */
.navbar {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px 0 rgba(20,184,166,0.18);
  backdrop-filter: blur(10px);
  min-height: 68px;
  padding: 0;
  border-radius: 1.5rem;
  transition: min-height 0.3s, padding 0.3s, box-shadow 0.3s, background 0.3s, backdrop-filter 0.3s;
}
.footer {
  background: #181c2a;
  color: #fff;
  padding: 3.5rem 2rem 2.5rem 2rem;
  border-radius: 1.2rem 1.2rem 0 0;
  box-shadow: 0 -4px 32px 0 rgba(20,184,166,0.13);
}
.footer-heading-gradient {
  background: linear-gradient(90deg, #0ea5e9 10%, #14b8a6 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.footer-contact-link, .footer-social-link {
  color: #14b8a6;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-contact-link:hover, .footer-social-link:hover {
  color: #0ea5e9;
}

/* --- Animations for Sections --- */
.section-fade, .animate-fade-in, .animate-fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.section-fade.visible, .animate-fade-in.visible, .animate-fade-in-up.visible {
  opacity: 1;
  transform: none;
}

/* --- Responsive Tweaks --- */
@media (max-width: 900px) {
  section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
  }
  h2, .footer-heading-gradient {
    font-size: 1.5rem;
  }
  .footer {
    padding: 2rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 600px) {
  h2, .footer-heading-gradient {
    font-size: 1.1rem;
  }
  .footer {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* --- Enhanced Navbar Styles --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
  border-radius: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #47B5B1;
}

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-get-started {
  background: #47B5B1;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-get-started:hover {
  background: #3da19d;
}

.btn-lets-connect {
  background: transparent;
  color: #47B5B1;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #47B5B1;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-lets-connect:hover {
  background: #47B5B1;
  color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .navbar-actions {
    gap: 0.8rem;
  }
  
  .btn-get-started,
  .btn-lets-connect {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}

