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

body {
  margin:0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height:1.6;
  color:#2d3748;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
  background-attachment: fixed;
}
header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow:0 4px 20px rgba(102, 126, 234, 0.1);
  border-bottom:2px solid rgba(102, 126, 234, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
header .logo { display:flex; align-items:center; }
header .logo img {
  height:45px;
  width:auto;
  margin-right:12px;
  transition: transform 0.3s ease;
}
header .logo img:hover {
  transform: scale(1.05);
}
/* Style the company name to use a dark accent colour. */
/* Remove default styling for the old single-line logo text. The new logo uses nested elements. */
header .logo span {
  font-size:inherit;
  font-weight:inherit;
  color:inherit;
}

/* New logo text styling */
header .logo .logo-text {
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1;
}
header .logo .logo-text .main {
  font-size:1.6rem;
  font-weight:700;
  font-family: 'Poppins', sans-serif;
  letter-spacing:0.05rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position:relative;
  padding-bottom:3px;
}
header .logo .logo-text .main::after {
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:2.5rem;
  height:3px;
  background: linear-gradient(90deg, #00D4FF 0%, #667eea 100%);
  border-radius: 2px;
}
header .logo .logo-text .sub {
  font-size:0.65rem;
  font-weight:500;
  color:#718096;
  font-variant:small-caps;
  letter-spacing:0.1rem;
  margin-top:3px;
}
header nav ul { list-style:none; margin:0; padding:0; display:flex; gap: 10px; }
header nav li { margin-left:0; }
header nav a {
  text-decoration:none;
  color:#4a5568;
  font-weight:500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
header nav a:hover {
  color:#667eea;
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}
header nav a.active {
  color:#667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  font-weight: 600;
}
.breadcrumb {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  padding:12px 40px;
  font-size:0.85rem;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}
.breadcrumb a {
  color:#667eea;
  text-decoration:none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color:#764ba2;
}
.breadcrumb span {
  margin:0 8px;
  color:#a0aec0;
}
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:#fff;
  padding:100px 40px;
  text-align:center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.hero h1 {
  font-size:3rem;
  font-family: 'Poppins', sans-serif;
  margin:0 0 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero p {
  font-size:1.3rem;
  max-width:700px;
  margin:0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  font-weight: 300;
}
.cta-btn {
  display:inline-block;
  margin-top:30px;
  padding:14px 40px;
  background:#FF6B6B;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.cta-btn:hover {
  background:#ff5252;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}
.section {
  max-width:1100px;
  margin:60px auto;
  padding:70px 50px;
  background:rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border:1px solid rgba(102, 126, 234, 0.1);
  border-radius:20px;
  box-shadow:0 10px 40px rgba(102, 126, 234, 0.15);
  transition: transform 0.3s ease;
}
.section:hover {
  transform: translateY(-5px);
  box-shadow:0 15px 50px rgba(102, 126, 234, 0.2);
}
.section h2 {
  text-align:center;
  font-size:2.5rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom:30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.services-list { display:flex; flex-wrap:wrap; gap:25px; margin-top: 40px; }
.service-item {
  flex:1 1 calc(50% - 25px);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding:30px;
  border-radius:15px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  box-shadow:0 5px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow:0 10px 30px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}
.service-item:hover::before {
  opacity: 1;
}
.service-item h3 {
  margin-top:0;
  color:#2d3748;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-content { display:flex; flex-wrap:wrap; gap:30px; align-items:center; margin-top: 30px; }
.about-text {
  flex:1 1 50%;
  line-height: 1.8;
  color: #4a5568;
}
.about-text p {
  margin-bottom: 20px;
}
.about-text strong {
  color: #667eea;
  font-weight: 600;
}
.about-text a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.about-text a:hover {
  color: #764ba2;
}
.about-image { flex:1 1 50%; }
.about-image img {
  width:100%;
  border-radius:15px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.03);
}
.benefits-list { display:flex; flex-wrap:wrap; gap:25px; margin-top: 40px; }
.benefit-item {
  flex:1 1 calc(33.333% - 25px);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
  padding:30px;
  border-radius:15px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  box-shadow:0 5px 20px rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}
.benefit-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
}
.benefit-item h3 {
  color:#2d3748;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top:0;
  margin-bottom: 12px;
}
.contact-section {
  text-align:center;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color:#fff;
  padding:80px 40px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.contact-section h2 {
  margin-top:0;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.contact-section p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}
.contact-section a {
  background: linear-gradient(135deg, #00D4FF 0%, #667eea 100%);
  color:#fff;
  padding:14px 40px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.contact-section a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}
footer {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding:40px 20px;
  text-align:center;
  font-size:0.9rem;
  color:#718096;
  border-top: 2px solid rgba(102, 126, 234, 0.1);
}
footer p {
  margin: 10px 0;
}
.footer-logo {
  display:block;
  margin:10px auto 20px;
  height:120px;
  width:auto;
  opacity: 0.85;
  transition: all 0.3s ease;
}
.footer-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-logo {
  display:block;
  margin:0 auto 30px auto;
  height:100px;
  width:auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 5px 20px rgba(0,0,0,0.15));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
/* Form Styling */
.contact-form {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.form-input {
  flex: 1 1 calc(50% - 10px);
  padding: 14px 18px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}
.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: #fff;
}
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.8);
}
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: #fff;
}
.form-submit {
  margin-top: 20px;
  padding: 14px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .form-input {
    flex: 1 1 100%;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: #667eea;
  color: #fff;
}

/* Tablet styles */
@media (max-width: 1024px) {
  .section {
    margin: 40px 30px;
    padding: 50px 35px;
  }
  .benefit-item {
    flex: 1 1 calc(50% - 25px);
  }
}

/* Mobile and small tablet styles */
@media (max-width: 768px) {
  header {
    padding: 12px 15px;
    flex-wrap: wrap;
  }
  header .logo img {
    height: 35px;
    margin-right: 8px;
  }
  header .logo .logo-text .main {
    font-size: 1.2rem;
  }
  header .logo .logo-text .sub {
    font-size: 0.55rem;
  }
  header nav {
    width: 100%;
    margin-top: 10px;
  }
  header nav ul {
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
  }
  header nav a {
    padding: 8px 14px;
    font-size: 0.85rem;
    /* Larger touch targets for mobile */
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .breadcrumb {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  .hero {
    padding: 50px 20px;
  }
  .hero-logo {
    height: 70px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .cta-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
    /* Larger touch target */
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .section {
    margin: 20px 15px;
    padding: 30px 20px;
  }
  .section h2 {
    font-size: 1.6rem;
  }
  .section p {
    font-size: 0.95rem;
  }
  .services-list, .benefits-list {
    gap: 20px;
  }
  .services-list .service-item, .benefits-list .benefit-item {
    flex: 1 1 100%;
  }
  .service-item, .benefit-item {
    padding: 25px 20px;
  }
  .about-content {
    flex-direction: column;
    gap: 20px;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
  .contact-section {
    padding: 50px 20px;
  }
  .contact-section h2 {
    font-size: 1.8rem;
  }
  .contact-section p {
    font-size: 1rem;
  }
  .contact-section a {
    padding: 12px 30px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-logo {
    height: 80px;
  }
  footer {
    padding: 30px 15px;
  }
}

/* Small phone styles */
@media (max-width: 480px) {
  header {
    padding: 10px 12px;
  }
  header .logo img {
    height: 30px;
    margin-right: 6px;
  }
  header .logo .logo-text .main {
    font-size: 1rem;
  }
  header .logo .logo-text .sub {
    font-size: 0.5rem;
  }
  header .logo .logo-text .main::after {
    width: 2rem;
    height: 2px;
  }
  header nav a {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .breadcrumb {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .hero {
    padding: 40px 15px;
  }
  .hero-logo {
    height: 60px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .section {
    margin: 15px 10px;
    padding: 25px 15px;
    border-radius: 15px;
  }
  .section h2 {
    font-size: 1.4rem;
  }
  .section p {
    font-size: 0.9rem;
  }
  .service-item h3, .benefit-item h3 {
    font-size: 1.1rem;
  }
  .service-item, .benefit-item {
    padding: 20px 15px;
  }
  .contact-section {
    padding: 40px 15px;
  }
  .contact-section h2 {
    font-size: 1.5rem;
  }
  .contact-section p {
    font-size: 0.9rem;
  }
  .footer-logo {
    height: 70px;
  }
}
