/* Mobile-first base styles */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: #2956ff; /* Ensure a strong blue background */
}

header {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: none !important;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#animated-logo {
  margin: 0 auto;
  display: block;
}

/* Navbar styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-title {
  font-weight: bold;
  font-size: 1.2rem;
  color: #0078d7;
  letter-spacing: 1px;
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #0078d7;
  border-radius: 2px;
  transition: 0.3s;
}

.navbar-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100vw;
  margin: 0;
  padding: 1rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.navbar-links li {
  text-align: center;
}

.navbar-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #0078d7;
}

@media (min-width: 700px) {
  .navbar {
    flex-wrap: nowrap;
  }
  .navbar-toggle {
    display: none;
  }
  .navbar-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    width: auto;
    padding: 0;
    gap: 2rem;
  }
  .navbar-links li {
    text-align: left;
  }
}

/* Show menu when active (mobile) */
.navbar-links.active {
  display: flex;
}

/* Sidebar styles */
.sidebar-navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 220px;
  background: #fff;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.07);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
}

.sidebar-navbar.active {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sidebar-header svg {
  display: block;
  margin-bottom: 0.2rem;
}

.sidebar-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0078d7;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.1;
}

.sidebar-title span {
  display: block;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-links li {
  width: 100%;
}

.sidebar-links a {
  display: block;
  width: 100%;
  padding: 0.7rem 1.5rem;
  color: #222;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 20px 0 0 20px;
  transition: background 0.2s, color 0.2s;
}

.sidebar-links a:hover,
.sidebar-links a:focus {
  background: #0078d7;
  color: #fff;
}

.sidebar-fab {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 300;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  padding: 0;
  transition: box-shadow 0.2s;
}

.sidebar-fab:active {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

@media (min-width: 900px) {
  .sidebar-navbar {
    position: static;
    height: auto;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: none !important;
    padding: 0.5rem 2rem;
  }
  .sidebar-header {
    flex-direction: row;
    margin-bottom: 0;
    gap: 1rem;
  }
  .sidebar-title {
    writing-mode: initial;
    text-orientation: initial;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    margin-left: 0.5rem;
  }
  .sidebar-links {
    flex-direction: row;
    gap: 2rem;
    margin-left: 2rem;
    width: auto;
  }
  .sidebar-links a {
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
  }
  .sidebar-fab {
    display: none;
  }
}

/* Hide sidebar by default on mobile */
@media (max-width: 899px) {
  .sidebar-navbar {
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.07);
  }
}

.center-logo {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: 2rem;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.logo-pill {
  background: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
}

.logo-pill svg {
  width: 220px;
  height: 44px;
  display: block;
}
@media (max-width: 700px) {
  .logo-pill svg {
    width: 150px;
    height: 32px;
  }
}

/* Floating navigation pills */
.floating-nav {
  position: fixed;
  top: 3.5rem;
  right: 2vw;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-pill {
  display: block;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 1.35rem;
  border-radius: 2.5rem;
  padding: 0.7rem 2.5rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
  border: none;
  outline: none;
  cursor: pointer;
}

.nav-pill.orange {
  background: #ff6f5b;
  color: #fff;
}

.nav-pill.yellow {
  background: #ffd600;
  color: #111;
}

.nav-pill:hover,
.nav-pill:focus {
  filter: brightness(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .floating-nav {
    top: 1.5rem;
    right: 1vw;
    gap: 0.9rem;
  }
  .nav-pill {
    font-size: 1.05rem;
    padding: 0.5rem 1.3rem;
  }
}

/* Hero section styles */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
}

.hero h1,
.hero-text h2,
.hero-text p {
  color: #fff; /* Force white text for visibility */
}

.hero-content {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-anim-svg {
  width: 96px;
  height: 96px;
  display: block;
  /* Remove or override white fill if present in SVGs */
}

.hero-text {
  text-align: center;
  color: #fff;
}

.hero-text h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.hero-text .highlight {
  color: #ffd600;
  font-weight: 600;
}

.redesigned-hero {
  min-height: 100vh;
  background: linear-gradient(120deg, #2956ff 0%, #0078d7 60%, #ffd600 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.hero-info {
  flex: 1 1 340px;
  text-align: left;
  color: #fff;
}

.hero-info h1 {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 0.5rem 0;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-info h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  color: #ffd600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-info p {
  font-size: 1.15rem;
  margin: 0 0 2rem 0;
  line-height: 1.6;
  color: #fff;
}

.hero-info .highlight {
  color: #ffd600;
  font-weight: 600;
}

.hero-cta {
  display: inline-block;
  background: #ffd600;
  color: #222;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover,
.hero-cta:focus {
  background: #ff6f5b;
  color: #fff;
}

.hero-svg {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .hero-info {
    text-align: center;
  }
  .hero-svg {
    margin-top: 1.5rem;
  }
  .hero-info h1 {
    font-size: 2.1rem;
  }
  .hero-info h2 {
    font-size: 1.1rem;
  }
}

/* Hide old nav/sidebar/header if present */
.sidebar-navbar,
.sidebar-fab,
header {
  display: none !important;
}

/* About Us section styles */
.about-section {
  width: 100%;
  background: linear-gradient(120deg, #fff 60%, #f5f8ff 100%);
  color: #222;
  padding: 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.unique-about {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding: 4rem 2rem 3rem 2rem;
  position: relative;
}

.about-svg-left {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  z-index: 1;
  animation: floatAbout 3.5s ease-in-out infinite alternate;
}

@keyframes floatAbout {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(18px);
  }
}

.unique-about-content {
  flex: 2 1 380px;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 6px 32px rgba(41, 86, 255, 0.07),
    0 1.5px 8px rgba(255, 214, 0, 0.07);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  position: relative;
  z-index: 2;
}

.unique-about-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #0078d7;
  letter-spacing: -1px;
}

.about-highlight {
  background: linear-gradient(90deg, #ffd600 30%, #ff6f5b 100%);
  color: #fff;
  padding: 0.2em 0.8em;
  border-radius: 1em;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(255, 214, 0, 0.08);
}

.unique-about-content p {
  font-size: 1.18rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.about-mission {
  display: block;
  margin-top: 0.7rem;
  font-size: 1.08rem;
  color: #444;
}

.about-keyword {
  color: #0078d7;
  font-weight: 700;
  background: #f5f8ff;
  border-radius: 0.5em;
  padding: 0.1em 0.4em;
  margin: 0 0.1em;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
}

.about-list li {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.about-list li span {
  color: #ffd600;
  font-size: 1.2em;
}

@media (max-width: 900px) {
  .unique-about {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .unique-about-content {
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
  }
  .about-svg-left {
    min-width: 120px;
  }
}

/* Services section styles */
.services-section {
  width: 100%;
  background: linear-gradient(120deg, #f5f8ff 60%, #fff 100%);
  color: #222;
  padding: 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #0078d7;
  letter-spacing: -1px;
  text-align: center;
}

.services-highlight {
  background: linear-gradient(90deg, #ffd600 30%, #ff6f5b 100%);
  color: #fff;
  padding: 0.2em 0.8em;
  border-radius: 1em;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(255, 214, 0, 0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 2rem;
  width: 100%;
  margin-top: 0.5rem;
}

.service-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(41, 86, 255, 0.07),
    0 1.5px 8px rgba(255, 214, 0, 0.07);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(41, 86, 255, 0.13),
    0 2px 12px rgba(255, 214, 0, 0.13);
}

.service-svg {
  margin-bottom: 1.2rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0078d7;
  margin: 0 0 0.7rem 0;
  letter-spacing: -0.5px;
  text-align: center;
}

.service-card p {
  font-size: 1.05rem;
  color: #444;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-inner {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .services-title {
    font-size: 1.5rem;
  }
  .services-grid {
    gap: 1.5rem 1rem;
  }
  .service-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

/* Contact Us section styles */
.contact-section {
  width: 100%;
  background: linear-gradient(120deg, #fff 60%, #f5f8ff 100%);
  color: #222;
  padding: 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding: 4rem 2rem 3rem 2rem;
  position: relative;
}

.contact-svg-left {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  z-index: 1;
  animation: floatAbout 3.5s ease-in-out infinite alternate;
}

.redesigned-contact-info {
  flex: 2 1 380px;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 6px 32px rgba(41, 86, 255, 0.07),
    0 1.5px 8px rgba(255, 214, 0, 0.07);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #0078d7;
  letter-spacing: -1px;
}

.contact-highlight {
  background: linear-gradient(90deg, #ffd600 30%, #ff6f5b 100%);
  color: #fff;
  padding: 0.2em 0.8em;
  border-radius: 1em;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(255, 214, 0, 0.08);
}

.contact-info p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  color: #444;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 1.2rem;
  border: 1.5px solid #e0e7ff;
  font-size: 1rem;
  font-family: inherit;
  background: #f5f8ff;
  color: #222;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0078d7;
  box-shadow: 0 2px 12px rgba(0, 120, 215, 0.08);
}

.contact-btn {
  background: linear-gradient(90deg, #ffd600 30%, #ff6f5b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px rgba(255, 214, 0, 0.08);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.contact-btn:hover,
.contact-btn:focus {
  background: #0078d7;
  color: #fff;
  transform: scale(1.04);
}

.contact-theme {
  width: 100%;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffd60010 0%, #ff6f5b10 100%);
  border-radius: 1.2rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(255, 214, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.08rem;
  color: #222;
  word-break: break-word;
}

.contact-detail a {
  color: #0078d7;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
}

.contact-detail a:hover,
.contact-detail a:focus {
  color: #ff6f5b;
}

.contact-icon {
  font-size: 1.3em;
  color: #ffd600;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .redesigned-contact-info {
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    align-items: center;
  }
  .contact-svg-left {
    min-width: 120px;
  }
  .contact-form {
    align-items: center;
  }
}

/* Footer styles */
.site-footer {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.footer-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo svg {
  display: block;
}

.footer-title {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #ffd600;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin: 0.5rem 0 0.5rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
  opacity: 0.85;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffd600;
  opacity: 1;
}

.footer-copy {
  font-size: 0.98rem;
  color: #bbb;
  margin-top: 0.5rem;
  text-align: center;
}

@media (max-width: 700px) {
  .footer-inner {
    gap: 0.7rem;
    padding: 0 1rem;
  }
  .footer-links {
    gap: 1.1rem;
    font-size: 0.98rem;
  }
  .footer-title {
    font-size: 1rem;
  }
}
