* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--navbar-height, 70px);
}

.container {
  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: 80px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.navbar-logo {
  margin-right: 70px;
}

.navbar-logo img {
  height: 50px;
  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;
}

.services-page-hero {
  background: linear-gradient(135deg, #151557 0%, #2e3788 50%, #409cff 100%);
  padding: 100px 20px 70px;
  text-align: center;
  color: #fff;
}

.services-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.services-page-hero p {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.services-page-hero .cta-button {
  background: #fcc92f;
  color: #222;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-placeholder {
  width: 100%;
  max-width: 500px;
  height: auto;
  min-height: 280px;
  aspect-ratio: 1;
}

.image-placeholder::before,
.image-placeholder::after {
  display: none;
}

/* Section */
.content-section {
  padding: 80px 0;
  transition: all 0.3s ease;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.content-section:nth-child(even) {
  background: linear-gradient(
    -45deg,
    #8f9091,
    #f3cdff,
    #beeeff,
    #c7fff2,
    #faff99
  );
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
}

.content-section:nth-child(odd) {
  background: linear-gradient(
    -45deg,
    #95b2c7,
    #ccfff7,
    #fddaf9,
    #ddd6ff,
    #ffc690
  );
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.content-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-wrapper.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
  padding: 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 35px;
  color: #204b77;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #424040;
  font-weight: 400;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 500px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.image-placeholder:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder::after {
  content: attr(data-image);
  text-transform: capitalize;
  position: relative;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Banner */

.business-banner {
  font-family: "Montserrat", "Arial", sans-serif;
  background: linear-gradient(135deg, #1e3656 0%, #2e3788 100%);
  background-size: cover;
  background-position: center;
  width: 100%;
  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;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile navbar (services page uses shared header) */
.menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 20px;
    height: var(--navbar-height, 70px);
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: var(--navbar-height, 70px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 12px 16px;
    z-index: 9999;
    max-height: calc(100vh - var(--navbar-height, 70px));
    overflow-y: auto;
  }

  .navbar-menu.active {
    display: flex;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .content-wrapper.reverse {
    flex-direction: column;
  }

  .header-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-placeholder {
    max-width: 100%;
    min-height: 220px;
    aspect-ratio: auto;
  }

  .content-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 2rem;
  }

  .header-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .content-section {
    padding: 60px 0;
  }
}
