.hero-section {
  background: linear-gradient(rgba(4, 9, 48, 0.827), rgba(0, 0, 1, 0.7)),
    url("../assets/new_photo_serinica.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.category-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.features-grid {
  margin-top: 2rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #c4c4c4;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-icon.star {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.feature-icon.lightbulb {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-icon.gear {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.feature-icon.car {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 1199.98px) {
  .main-heading {
    font-size: 3rem;
  }

  .content-text {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .netsol-section {
    padding: 60px 0;
  }

  .main-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .netsol-section {
    padding: 40px 0;
  }

  .main-heading {
    font-size: 2rem;
    text-align: center;
  }

  .why-netsol-badge {
    display: block;
    text-align: center;
    margin: 0 auto 2rem;
    width: fit-content;
  }

  .content-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .feature-card {
    padding: 1.5rem;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .content-text {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}

.fade-in:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.netsol-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(6, 182, 212, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.netsol-section {
  position: relative;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
  color: white !important;
}

.talk-business {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  transform-origin: center;
}

.talk-business:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .talk-business {
    position: static;
    transform: none;
    margin-top: 2rem;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .category-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-section {
    padding: 1rem 0;
  }
}

.hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #1b3896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.connect-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(0, 212, 170, 0.5);
  }

  100% {
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  }
}

.netsol-section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.why-netsol-badge {
  background-color: #1e3a8a;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 2rem;
  border: none;
  transition: all 0.3s ease;
}

.why-netsol-badge:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.highlight-text {
  color: #06b6d4;
}

.content-text {
  font-size: 1.1rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-icon.star {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.feature-icon.lightbulb {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-icon.gear {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.feature-icon.car {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 1199.98px) {
  .main-heading {
    font-size: 3rem;
  }

  .content-text {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .netsol-section {
    padding: 60px 0;
  }

  .main-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .netsol-section {
    padding: 40px 0;
  }

  .main-heading {
    font-size: 2rem;
    text-align: center;
  }

  .why-netsol-badge {
    display: block;
    text-align: center;
    margin: 0 auto 2rem;
    width: fit-content;
  }

  .content-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .feature-card {
    padding: 1.5rem;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .content-text {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}

.fade-in:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.netsol-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(6, 182, 212, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.netsol-section {
  position: relative;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.category-badge {
  animation: fadeInUp 1s ease-out 0.1s both;
}
:root {
  --teal-color: #20d4c7;
  --dark-bg: #0a0a0a;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.perks_product-section {
  background-color: var(--dark-bg);
  min-height: 100vh;
  padding: 60px 0;
}

.perks_product-title {
  color: var(--primary-teal);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.perks_product-main-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.perks_product-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.perks_product-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.perks_product-icon {
  color: var(--teal-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.perks_product-item-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.perks_product-item-desc {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.perks_product-content {
  flex: 1;
}

@media (max-width: 768px) {
  .perks_product-main-heading {
    font-size: 2rem;
  }

  .perks_product-section {
    padding: 40px 0;
  }

  .perks_product-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .perks_product-main-heading {
    font-size: 1.75rem;
  }

  .perks_product-title {
    font-size: 0.8rem;
  }

  .perks_product-item-title {
    font-size: 1rem;
  }

  .perks_product-item-desc {
    font-size: 0.95rem;
  }
}
:root {
  --primary-teal: #2243b9fb;
  --secondary-teal: #18339f;
  --bg-dark: #0a0a0a;
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
  --card-bg: #1a1a1a;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.healthcare-section {
  min-height: 100vh;
  padding: 80px 0;
}

.main-heading {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.highlight-text {
  color: rgb(26, 70, 163);
  font-size: 6.5rem !important;
  font-weight: 600;
}
@media (max-width: 768px) {
  .highlight-text {
    font-size: 4.5rem !important;
  }
}

@media (max-width: 480px) {
  .highlight-text {
    font-size: 3rem !important;
  }
}

.description-text {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.app-mockup {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-bottom: 2rem;
}

.mockup-header {
  background: #f5f5f5;
  padding: 12px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background-color: #ff5f57;
}
.dot-yellow {
  background-color: #ffbd2e;
}
.dot-green {
  background-color: #28ca42;
}

.mockup-content {
  padding: 30px;
  background: #ffffff;
  color: #333;
  min-height: 400px;
}

.form-section {
  margin-bottom: 25px;
}

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
}

.form-select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: white;
}

.submit-btn {
  background: var(--primary-teal);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

.feature-card {
  background: rgb(0, 0, 0);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(32, 212, 199, 0.2);
  border-radius: 15px;
  padding: 1.5rem;

  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal);
  box-shadow: 0 15px 40px rgba(32, 212, 199, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--secondary-teal)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.feature-description {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.learn-more-btn {
  background: var(--primary-teal);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: var(--secondary-teal);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .main-heading {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .main-heading {
    font-size: 2.5rem;
    text-align: center;
  }

  .description-text {
    text-align: center;
    font-size: 1.1rem;
  }

  .healthcare-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .description-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .mockup-content {
    padding: 20px;
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .feature-description {
    font-size: 1rem;
  }
}
.category-badge {
  display: inline-block !important;
  background-color: #294cab !important;
  color: #fff !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  padding: 0.4rem 1rem !important;
  border-radius: 999px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  transition: background-color 0.3s ease !important;
}

.category-badge:hover {
  background-color: #092d8c !important;
  text-decoration: none !important;
}
-button {
  display: inline-block !important;
  background-color: #23439b !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 10px 10px!important;
  border-radius: 8px !important;
  text-align: center !important;
  transition: background-color 0.3s ease !important;
  cursor: pointer !important;
}

.cta-button:hover {
  background-color: #092d8c !important;
  text-decoration: none !important;
}
.cta-button_explore{
  font-size: 20px;
  color: white !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cta-button {
    font-size: 1.5rem !important;
    padding: 0.8rem 2rem !important;
  }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 1.3rem !important;
    padding: 0.6rem 1.5rem !important;
  }
}