:root {
  --navbar-height: 70px;
  --primary-color: #4361ee;
  --secondary-color: #3a0ca3;
  --accent-color: #4cc9f0;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --success-color: #4bb543;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.navbar {
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  height: 70px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.navbar-logo {
  margin-right: 70px;
}

.navbar-logo img {
  height: 40px;
  margin-right: 10px;
}

@media (min-width: 993px) {
  .navbar-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
}

.navbar-menu li {
  margin: 0 16px;
  position: relative;
}

.navbar-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s;
  padding: 8px 6px;
}

.navbar-menu a:hover {
  color: #409cff;
}

.demo-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 9px 23px;
  border-radius: 11px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.demo-btn:hover {
  background: #2179c4;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 1;
  border-radius: 7px;
  top: 38px;
  left: 0;
  padding: 0;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  color: #fff;
  padding: 11px 18px;
  display: block;
  font-size: 16px;
  border-radius: 6px;
}

.dropdown-content a:hover {
  background: #2179c4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.custom-solutions-dropdown {
  display: none;
  flex-direction: row;
  width: 1040px;
  height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: -150px;
  top: 40px;
  align-items: stretch;
  padding: 0;
}

.dropdown.solutions-dropdown:hover .custom-solutions-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.solutions-list {
  list-style: none;
  margin: 0;
  padding: 24px 0 24px 30px;
  width: 400px;
  background: #fff;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  border-right: 1px solid #e4e9f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.solutions-list li {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-size: 17px;
  border-radius: 10px;
  cursor: pointer;
  color: #223762;
  font-weight: 500;
  margin-bottom: 2px;
  margin-right: 30px;
  border: 1.5px solid transparent;
  box-sizing: border-box;
  line-height: 1.3;
  background: #fff;
  white-space: normal;
}

.solutions-list li.active,
.solutions-list li:hover {
  background: #eaf4fc;
  border: 1.5px solid #409cff;
}

.solutions-list .icon img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.solutions-list .option-chevron {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
}

.solutions-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solutions-list .option-chevron svg {
  width: 18px;
  height: 18px;
  stroke: #7b869a;
}

.solutions-detail {
  flex: 1;
  padding: 22px 36px 22px 8px;
  background: #fff;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  box-sizing: border-box;
}

.solutions-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  height: 32px;
}

.solutions-header h3 {
  font-size: 21px;
  color: #0d2242;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.features-btn {
  background: #409cff;
  color: #fff;
  border: none;
  font-size: 17px;
  border-radius: 9px;
  padding: 10px 28px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(64, 156, 255, 0.07);
  white-space: nowrap;
  margin-left: 16px;
}

.features-btn:hover {
  background: #246db9;
}

.details-panel {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 6px;
}

.details-panel.active {
  display: block;
}

.details-panel .row {
  display: flex;
  gap: 38px;
  margin-bottom: 20px;
}

.feature-block {
  flex: 1;
  min-width: 0;
  padding: 18px 12px 20px 14px;
  background: #fff;
  border-radius: 7px;
  transition: background 0.18s;
  box-sizing: border-box;
}

.feature-block:hover {
  background: #f3f4f6;
}

.details-panel h4 {
  font-size: 17px;
  color: #163666;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 600;
}

.details-panel p {
  color: #3a4d6b;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.feature-block h4:hover {
  color: #409cff;
}

.h-icon {
  margin-right: 16px;
  padding: 9px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: rgb(18 39 80 / 5%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.custom-resources-dropdown {
  display: none;
  flex-direction: row;
  width: 850px;
  min-height: 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -400px;
  top: 42px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.resources-dropdown:hover .custom-resources-dropdown {
  display: flex !important;
}

.resources-left-panel {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resources-label {
  font-size: 18px;
  font-weight: 650;
  color: #7b869a;
  margin-bottom: 22px;
  margin-left: 5px;
  letter-spacing: 0.02em;
}

.resources-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resources-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #223762;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.15s, color 0.15s;
}

.resources-list li:hover {
  color: #409cff;
}

.resources-list .h-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.resources-detail {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.resources-detail .resource-item,
.resources-detail .resource-item:hover {
  background: #fff;
}

.resources-detail .resource-item img {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 240px;
  border-radius: 12px;
  margin-bottom: 38px;
}

.resource-item {
  display: flex;
  text-decoration: none;
  color: #223762;
  width: 100%;
  align-items: center;
  font-weight: 600;
}

.resource-item img {
  height: 100px;
  width: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.resource-text {
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}

.resource-label {
  color: #409cff;
  font-weight: 649;
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

.resource-text p {
  color: #000000;
  font-size: 25px;
  font-weight: 530;
}

.resource-text p:hover {
  color: #409cff;
}

.custom-company-dropdown {
  display: none;
  flex-direction: row;
  width: 1200px;
  min-height: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(51, 78, 123, 0.14);
  border: none;
  left: auto;
  right: -320px;
  top: 40px;
  align-items: stretch;
  padding: 32px 32px 32px 32px;
}

.dropdown.company-dropdown:hover .custom-company-dropdown {
  display: flex !important;
}

.dropdown-panels {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 44px;
}

.company-left-panel {
  width: 270px;
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.company-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d2242;
  margin-bottom: 18px;
}

.company-description {
  font-size: 15px;
  color: #223762;
  line-height: 1.6;
  margin: 0;
}

.company-right-panel {
  flex: 1;
  display: flex;
  font-size: 15px;
  margin-right: 200px;
}

.company-section {
  display: flex;
  flex-direction: column;
  margin-right: 70px;
}

.section-title {
  font-weight: 700;
  font-size: 15px;
  color: #7b869a;
  margin-bottom: 16px;
}

.company-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-links li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: nowrap;
}

.company-links li:last-child {
  margin-bottom: 0;
}

.company-links .icon {
  width: 36px;
  height: 36px;
  background-color: rgba(18, 39, 80, 0.05);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.company-links .icon img {
  width: 18px;
  height: 18px;
}

.company-links .link-text strong {
  color: #223762;
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.company-links .link-text p {
  margin: 0;
  color: #223762;
  line-height: 1.5;
}

.link-text strong:hover {
  color: #409cff;
}

.navbar-menu .dropdown {
  z-index: 10;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #151557 0%, #2e3788 50%, #4361ee 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: rgb(255, 223, 181);
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  color: rgb(255, 255, 255);
}

.cta-button {
  background-color: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.products-section {
  padding: 80px 20px;
  background: #f8f9fc;
  position: relative;
}

.products-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
  text-shadow: 3px 3px 8px rgba(255, 255, 255, 0.744);
}

.filter-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.product-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.product-tag {
  background-color: #e9ecef;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-color);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #b8c6ffd6 100%);
  position: relative;
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.feature-card p {
  color: var(--gray-color);
}

/* Banner */
.business-banner {
  font-family: "Montserrat", "Arial", sans-serif;
  background-image: url("../businessbg.png");
  background-size: cover;
  background-position: center;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.business-banner-overlay {
  width: 100%;
  padding: 60px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(30, 54, 86, 0.55);
}

.business-title {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 18px 0;
  text-align: center;
  line-height: 120%;
  letter-spacing: -0.98px;
  margin-bottom: 24px;
}

.business-subtitle {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 35px 0;
  text-align: center;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  font-size: 42px;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp {
  color: #25d366;
}

.call {
  color: #9eabb7;
}

.business-btn {
  background: #fcc92f;
  color: #222;
  padding: 15px 36px;
  font-size: 1.25rem;
  border-radius: 32px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  border: none;
  cursor: pointer;
}

.business-btn:hover {
  background: #ffb500;
}

/*Footer*/
.footer {
  padding: 50px 0 20px;
  background: #fff;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo-section {
  flex: 1 1 22%;
  min-width: 250px;
}

.footer-logo-section img {
  margin: 25px 0;
  height: 40px;
}

.footer-description {
  font-family: "Inter", sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 30px 0 0;
  color: #555;
}

.footer-help {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-help img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.help-text {
  font-family: "Spartan", sans-serif !important;
  color: #007b7f;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0;
}

.consultation {
  font-family: "Spartan", sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
}

.footer-column {
  flex: 1 1 15%;
  min-width: 180px;
}

.footer-column h3 {
  font-family: "Spartan", sans-serif !important;
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 3px solid #0045a6;
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  font-family: "Inter", sans-serif !important;
  font-size: 15px;
  color: #555;
  margin: 20px 0;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #00a6a6;
}

.footer-column p {
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.footer-bottom {
  font-family: "Inter", sans-serif !important;
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
  }
}
