body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #e8f0fe;
  color: #222;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  overflow-y: overlay;
}

header {
  background: #ffffffdd;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 20px 0 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeinDown 1s;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 15px;
}

.header-info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.location, .contact {
  font-size: 0.9em;
  color: #555;
}

.contact a {
  color: #ff4e50;
  text-decoration: none;
  font-weight: 600;
}

nav {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

@keyframes fadeinDown {
  from { opacity: 0; transform: translateY(-60px);}
  to { opacity: 1; transform: none;}
}

.logo {
  font-size: 2.3em;
  font-weight: 900;
  color: #3a86ff;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
/* Logo image sizing */
.logo-img {
  height: 80px;
  width: auto;
  display: block;
}
.location {
  color: #555;
  font-size: 1em;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.contact {
  color: #777;
  font-size: 0.99em;
  margin-bottom: 6px;
}

/* Tab-style navigation */
nav a {
  display: inline-block;
  margin: 6px 8px;
  padding: 10px 16px;
  color: #3a86ff;
  background: #f6faff;
  border: 2px solid #e6f0ff;
  border-bottom-width: 3px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(58,134,255,0.12);
}
nav a:hover {
  background: #ffffff;
  color: #ff497c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(58,134,255,0.18);
}
nav a.active,
nav a[aria-current="page"] {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  border-color: #3a86ff33;
  color: #3a86ff;
  box-shadow: 0 8px 24px rgba(58,134,255,0.20);
}

section.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 20px;
  animation: fadeinUp 1.2s;
  z-index: 5;
}

.hero-content {
  max-width: 1000px;
  text-align: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 800;
  color: #3a86ff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1em;
  color: #666;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

@keyframes fadeinUp {
  from { opacity: 0; transform: translateY(60px);}
  to { opacity: 1; transform: none;}
}

.hero-title {
  font-size: 2.5em;
  font-weight: 800;
  text-align: center;
  margin: 0 8px 10px 8px;
  letter-spacing: 0.5px;
  color: #124caa;
}
.highlight {
  color: #ff497c;
  background: #ffd8e5bb;
  padding: 0 8px;
  border-radius: 6px;
  animation: pop 0.8s;
}
@keyframes pop {
  from { transform: scale(0.9);}
  to   { transform: scale(1);}
}

.hero-desc {
  font-size: 1.2em;
  text-align: center;
  margin: 8px 0 23px 0;
  color: #47698a;
  letter-spacing: 0.4px;
}

.animated-btn {
  padding: 16px 38px;
  font-size: 1.19em;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #3a86ff 60%, #ff497c 100%);
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 24px #0003;
  position: relative;
  transition: transform 0.14s, box-shadow 0.18s, background 0.2s;
  overflow: hidden;
  animation: pulse 1.7s infinite;
}

.animated-btn.primary {
  animation: pulse 1.7s infinite;
}

.animated-btn.secondary {
  background: transparent;
  color: #3a86ff;
  border: 2px solid #3a86ff;
  animation: none;
  box-shadow: none;
}

.animated-btn.secondary:hover {
  background: #3a86ff;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 36px #3a86ff60;
}

.animated-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 36px #ff497c60;
  background: linear-gradient(90deg, #ff497c 60%, #3a86ff 100%);
}
@keyframes pulse {
  0%   { box-shadow: 0 4px 24px #3a86ff90;}
  50%  { box-shadow: 0 4px 32px #ffafcc90;}
  100% { box-shadow: 0 4px 24px #ff497c90;}
}

.services {
  padding: 55px 0 35px 0;
  background: #fff;
  animation: fadeinUp 1s 0.7s both;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-title {
  font-size: 2em;
  color: #3a86ff;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-subtitle {
  font-size: 1.1em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  padding: 0 24px;
}
.service-card {
  background: #f6faff;
  border-radius: 11px;
  padding: 32px 26px;
  box-shadow: 0 6px 36px #3a86ff18;
  width: 308px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.16s, box-shadow 0.18s;
  margin-bottom: 14px;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px #ff497c14;
}
.service-icon {
  font-size: 2.1em;
  margin-bottom: 13px;
  color: #ff497c;
  filter: drop-shadow(0 2px 8px #3a86ff30);
}
.service-title {
  color: #3a86ff;
  font-weight: 700;
  font-size: 1.14em;
  margin-bottom: 9px;
  letter-spacing: 0.15em;
}
.service-desc {
  color: #4a5a6a;
  font-size: 1.05em;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.service-features li {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3a86ff;
  font-weight: bold;
}

.service-link {
  color: #ff497c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: color 0.3s;
}

.service-link:hover {
  color: #3a86ff;
}

#about {
  background: #fff; 
  padding: 62px 0 40px 0; 
  animation: fadeinUp 1s 0.85s both;
}

.about-box {
  max-width: 1000px; 
  margin: 0 auto; 
  text-align: center;
  padding: 0 20px;
}

.about-box h2 {
  color: #3a86ff; 
  font-size: 2em; 
  margin: 0 0 20px 0;
}

.about-box p {
  color: #4a5a6a; 
  font-size: 1.15em;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 300px;
  text-align: left;
}

.feature-icon {
  font-size: 2em;
  flex-shrink: 0;
}

.feature-text h3 {
  color: #3a86ff;
  font-size: 1.2em;
  margin: 0 0 5px 0;
}

.feature-text p {
  color: #666;
  font-size: 0.95em;
  margin: 0;
}

#testimonials {
  background: #f9faff;
  padding: 60px 0;
  animation: fadeinUp 1s 1.1s both;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  color: #3a86ff;
  font-size: 2em;
  margin: 0 0 10px 0;
}

.testimonials-header p {
  color: #666;
  font-size: 1.1em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-content {
  color: #444;
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.author-name {
  color: #3a86ff;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.author-title {
  color: #666;
  font-size: 0.9em;
}

#contact {
  padding: 60px 0 40px 0; 
  background: #f9faff; 
  animation: fadeinUp 1s 1.2s both;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 20px;
}

.contact-info h2 {
  color: #3a86ff; 
  font-size: 2em; 
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1.1em; 
  color: #47698a;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5em;
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-text h3 {
  color: #3a86ff;
  font-size: 1.2em;
  margin: 0 0 8px 0;
}

.contact-text p, .contact-text a {
  color: #666;
  font-size: 1em;
  margin: 0;
  text-decoration: none;
}

.contact-text a:hover {
  color: #ff497c;
}

.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  color: #3a86ff;
  font-size: 1.5em;
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3a86ff;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #3a86ff 60%, #ff497c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 134, 255, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

footer {
  background: #3a86ff;
  color: #fff;
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1em;
  letter-spacing: 0.3px;
  margin-top: 12px;
}

/* Moving floating circles background */
.floating-circles {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  background: rgba(58, 134, 255, 0.15);
  border-radius: 50%;
  animation-timing-function: ease-in-out;
  opacity: 0.8;
  mix-blend-mode: lighten;
}

/* Responsive Adjustments */
@media (max-width: 920px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .header-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2em;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-list{
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 97vw;
    max-width: 350px;
  }
  
  .about-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature {
    text-align: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2em;
  }
  
  .hero-desc {
    font-size: 1.1em;
  }
  
  .services-title {
    font-size: 1.8em;
  }
  
  .testimonials-header h2 {
    font-size: 1.8em;
  }
  
  .contact-info h2 {
    font-size: 1.8em;
  }
}
.motivation-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left: 5px solid #124caa;
}

.motivation-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #47698a;
  margin-bottom: 25px;
}

.motivation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.motivation-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #2c3e50;
}

.motivation-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #124caa;
  font-weight: bold;
}

.cta-wrapper {
  margin-top: 20px;
}
