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


:root {

  --primary: Teal;
  --primary-dark: DarkSlateGray;
  --secondary: MediumSeaGreen;
  --accent: Tomato;

  --dark: DarkSlateGray;
  --text-main: DimGray;
  --text-light: Gray;

  --bg-body: MintCream;
  --bg-card: White;
  --bg-gradient: linear-gradient(135deg, MintCream 0%, White 100%);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-body);
  margin: 0;
  padding: 0;
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  margin-top: 0;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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


.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid LightGray;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  width: 100%;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}


.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.navbar-logo {
  height: 75px;
  width: auto;

  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}


.gstin-bar {
  background: Honeydew;
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid DarkSeaGreen;
  white-space: nowrap;
}


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

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;

  padding: 0;
  margin: 0;
  white-space: nowrap;
}

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

}

.menu a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  color: var(--text-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.menu a:hover,
.menu a.active {
  color: var(--primary);
  background: Honeydew;
}

.menu a i {
  color: var(--secondary);
  font-size: 1.1em;
}


.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: White;
  border: 1px solid LightGray;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  min-width: 260px;
  z-index: 100;
  padding: 8px;
  margin-top: 10px;
  transition: all 0.2s ease;
  list-style: none;

}

@media (min-width: 901px) {

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

.dropdown li {
  width: 100%;
  list-style: none;

}

.dropdown a {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  border-radius: 8px;
  justify-content: flex-start;
}

.dropdown a:hover {
  background: MintCream;
  color: var(--primary);
}


.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}


.hero {
  background: linear-gradient(120deg, MintCream 0%, White 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

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

.hero-copy h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, DarkSlateGray 0%, Teal 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: DarkSlateGray;
}

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

.kpis li strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.kpis li span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.btn.primary {
  display: inline-block;
  background: linear-gradient(135deg, Teal 0%, DarkSlateGray 100%);
  color: White;
  padding: 16px 36px;
  border-radius: 50px;

  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 128, 128, 0.3);

  transition: var(--transition);
  border: none;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 128, 128, 0.4);
}

.hero-visual img {
  width: 100%;
  max-width: 550px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 4px solid White;
}


section {
  padding: 60px 0;
}

section h2 {
  font-size: 2.25rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  color: var(--dark);
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  width: 70%;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: White;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid MintCream;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}


.service-icon,
.product-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, MediumSeaGreen 0%, Teal 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: inline-block;
  color: Teal;

}

.card h4,
.product-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.card p,
.product-item p {
  font-size: 1rem;
  color: var(--text-light);
}


.products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-item {
  background: White;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid MintCream;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}




.site-footer {
  background: linear-gradient(90deg, #f0fdfa 90%, #ffffff 100%);

  padding: 48px 0 0 0;
  color: var(--text-main);
  border-top: 2px solid #e0e7ff;
  margin-top: 60px;
}

.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: 80px;

  width: auto;
  margin-bottom: 11px;
}

.footer-col h4 {
  color: var(--primary);

  font-size: 1.13rem;
  margin-bottom: 12px;
  white-space: nowrap;
}

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

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

.footer-col ul a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.16s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-col ul a i {
  width: 20px;
  text-align: center;
  color: var(--secondary);
}

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

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

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

.footer-social a:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

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


@media (max-width: 900px) {
  .hero h1 {
    font-size: 2rem;
  }

  .navbar-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
    gap: 10px;
    justify-content: center;

  }

  .brand {
    flex: 0 1 auto;
  }

  .gstin-bar {
    order: 2;
    margin-left: auto;
    font-size: 0.8rem;
    padding: 4px 12px;
  }

  .mobile-nav-toggle {
    display: block;
    order: 3;
    margin-left: 10px;
    padding: 4px;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 4;
    background: White;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 16px 16px;
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
    position: static;
  }

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

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

  .menu a {
    padding: 14px 20px;
    border-bottom: 1px solid MintCream;
    width: auto;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 32px;
    display: none;
    border-left: 3px solid var(--primary);
    border-radius: 0;
    margin-top: 0;
  }

  .dropdown a {
    padding: 10px 16px;
  }

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

  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-copy {
    margin: auto;
  }

  .kpis {
    justify-content: center;
  }

  .hero-visual img {
    max-width: 100%;
  }
}