body {
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  background: rgb(248, 254, 255);
  margin: 0;
  padding: 0;
  color: #21304c;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 24px;
}


.navbar {
  position: sticky;
  top: 0;
  background: White;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  width: 100%;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 15px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: MidnightBlue;
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
}

.navbar-logo {
  height: 60px;
  margin-right: 2px;
}

.gstin-bar {
  background: AliceBlue;
  color: SlateGray;
  padding: 4px 20px;
  border-radius: 12px;
  margin-left: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}

.menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.menu li {
  position: relative;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #223556;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.20s;
  display: flex;
  align-items: center;
  gap: 8px;
}


@media (min-width: 901px) {

  .has-dropdown:hover>.dropdown,
  .has-dropdown:focus-within>.dropdown {
    display: block;
  }
}

.dropdown {
  display: none;
  position: absolute;
  background: White;
  box-shadow: 0 6px 16px rgba(30, 64, 128, 0.08);
  border-radius: 0 0 12px 12px;
  top: 42px;
  left: 0;
  min-width: 220px;
  z-index: 10;
  padding: 8px 0;
  list-style: none;
}

.dropdown li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.dropdown a {
  color: #223556;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 0;
  transition: background 0.17s;
  display: block;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4;
}

.dropdown a:hover {
  background: AliceBlue;
  color: DodgerBlue;
}

.navbar {
  position: relative;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  margin-left: 24px;
  color: DodgerBlue;
}



.hero {
  background: linear-gradient(90deg, White 60%, AliceBlue 100%);
  padding: 52px 0 36px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-copy {
  max-width: 530px;
}

.hero-copy h1 {
  font-size: 2.25rem;
  color: MidnightBlue;
  margin-bottom: 24px;
}

.kpis {
  display: flex;
  gap: 26px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.kpis li strong {
  font-size: 1.7rem;
  color: DodgerBlue;
}

.kpis li span {
  display: block;
  font-size: 1.06rem;
  color: SlateGray;
}

.hero .btn.primary {
  background: DodgerBlue;
  color: White;
  padding: 12px 32px;
  border-radius: 9px;
  font-size: 1.06rem;
  border: none;
  text-decoration: none;
  box-shadow: 0 3px 9px rgba(30, 144, 255, 0.09);
  font-weight: 600;
  margin-top: 18px;
}

.hero-visual img {
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  background: AliceBlue;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.split>div:first-child {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.split>div:last-child {
  flex: 1 1 0;
  min-width: 250px;
}

.about-visual {
  width: 350px;
  height: 250px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44, 58, 120, 0.08);
  background: AliceBlue;
}



@media (max-width: 700px) {
  .split {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .about-visual {
    margin: auto;
  }
}


section h2 {
  font-size: 2rem;
  margin: 18px 0 10px 0;
  color: DodgerBlue;
}

.why-choose .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 27px;
}

.card {
  background: White;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(30, 64, 128, 0.06);
  padding: 22px;
  transition: transform 0.12s;
}

.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 18px rgba(30, 144, 255, 0.08);
}


.products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 26px;
  padding: 0;
}

.product-item {
  background: White;
  box-shadow: 0 4px 16px rgba(30, 64, 128, 0.07);
  border-radius: 20px;
  padding: 32px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  min-height: 220px;
  position: relative;
}

.product-item:hover {
  box-shadow: 0 8px 32px rgba(30, 144, 255, 0.11);
  transform: translateY(-4px) scale(1.02);
}

.product-icon {
  font-size: 2.2rem;
  color: DodgerBlue;
  margin-bottom: 14px;
}

.product-item h3 {
  color: MidnightBlue;
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-weight: bold;
}

.product-item p {
  color: #274472;
  font-size: 1.06rem;
  margin-bottom: 0;
  line-height: 1.6;
}


#services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.service-icon {
  font-size: 2.2rem;
  color: DodgerBlue;
  margin-bottom: 10px;
  display: block;
}


.site-footer {
  background: linear-gradient(90deg, AliceBlue 90%, White 100%);
  padding: 48px 0 0 0;
  color: SlateGray;
  border-top: 2px solid #efefef;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 18px;
}

.about-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 38px;
  margin-bottom: 11px;
}

.footer-col h4 {
  color: DodgerBlue;
  font-size: 1.13rem;
  margin-bottom: 12px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: SlateGray;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.16s;
}

.footer-col ul a:hover {
  color: DodgerBlue;
}

.footer-map iframe {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.12);
  width: 100%;
  height: 220px;
}


.footer-social {
  text-align: center;
  margin-bottom: 10px;
}

.footer-social a {
  color: DodgerBlue;
  margin: 0 10px;
  font-size: 1.6rem;
  transition: color 0.14s;
  text-decoration: none;
}

.footer-social a:hover {
  color: RoyalBlue;
}


.footer-bottom {
  background: WhiteSmoke;
  border-top: 1px solid #eaeaea;
  text-align: center;
  padding: 12px 0;
  color: #507ea5;
  font-size: 1rem;
}

.mobile-nav-toggle {
  display: none;
}



@media (max-width: 900px) {


  .navbar-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .brand {
    flex: 1 0 auto;
  }


  .gstin-bar {
    order: 2;
    margin-left: auto;
  }


  .mobile-nav-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }


  .main-nav {
    display: none;
    width: 100%;
    background: white;
    padding: 10px 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    order: 4;
  }


  .main-nav.open {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .menu a {
    width: 100%;
    padding: 10px 16px;
  }


  .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    padding-left: 20px;
    border-left: 3px solid DodgerBlue;
    border-radius: 0;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

}



@media (max-width: 768px) {
  .hero-copy {
    text-align: center;
  }

  .kpis {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .btn.primary {
    margin: auto;
  }

  .about-visual {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-footer,
  .footer-col {
    align-items: center;
  }
}