/* Font Display Swap for Accessibility */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-display: swap;
}

@font-face {
  font-family: "bootstrap-icons";
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:root {
  --primary-color: #2d8659;
  --primary-dark: #1f5d3f;
  --secondary-color: #4a90e2;
  --text-dark: #2c3e50;
  --text-light: #5c636a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: var(--bg-light);
}



/* Enhanced Reset for Common Elements */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0.75rem;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.navbar .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  max-height: 90px;
  flex-shrink: 0;
}

.logo-img {
  height: auto;
  max-height: 90px;
  width: auto;
  max-width: 200px;
  min-width: 120px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  font-size: 16.5px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* Dropdown */
.dropdown>a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown>a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow);
  border-radius: 6px;
  padding: 0.75rem 0;
  min-width: 220px;
  display: none;
  list-style: none;
  z-index: 1200;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
}

/* Show dropdown on hover (desktop) */
@media (hover: hover) {
  .dropdown:hover>.dropdown-menu {
    display: block;
  }
}

.login-btn {
  background: none;
  border: 1px solid var(--primary-color);
  color: black !important;
  padding: 0.4rem 1.5rem;
  border-radius: 16px;
  transition: background 0.3s;
}

.login-btn:hover {
  background: var(--primary-color);
  color: white !important;
  transition: background 0.5s ease-in-out;
}

/* Universal Cart Icon - Premium Enhancements */
.cart-nav {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 15px;
  padding: 5px;
}

.cart-icon-wrapper {
  position: relative;
  color: var(--text-dark);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-wrapper:hover {
  color: var(--primary-color);
  transform: scale(1.15) rotate(-10deg);
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  background: linear-gradient(135deg, #c9184a 0%, #a4161a 100%);
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 800;
  line-height: 1.2;
  min-width: 20px;
  height: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(164, 22, 26, 0.4);
  border: 2px solid #fff;
}

.navbar.sticky-top .cart-icon-wrapper {
  color: #333;
}

/* Ensure white icon on hero sections if needed */
.hero-nav .cart-icon-wrapper {
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero {

  background-image:
    linear-gradient(120deg,
      rgba(38, 190, 73, 0.8) 0%,
      rgba(34, 40, 49, 0.75) 100%),
    url("../images/banner_image.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 8px 40px rgba(38, 190, 73, 0.11);
  color: white;
  padding: 6rem 0 5rem;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 540px;
}

.main-headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.subheadline {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-form-card {
  flex: 0 1 450px;
  max-width: 530px;
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-hover);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  transform: translateX(50px);
  animation: heroFormSlideIn 0.9s ease-out 0.2s forwards;
}

.hero-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.hero-form-card p {
  font-size: 0.98rem;
  color: var(--text-light);
}

.hero-form .form-group {
  margin-bottom: 0.9rem;
}

.hero-form .form-group input,
.hero-form .form-group textarea,
.hero-form .form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
}

.hero-form .form-group input:focus,
.hero-form .form-group textarea:focus,
.hero-form .form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.hero-submit-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
}

.hero-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

@keyframes heroFormSlideIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

/* Section Styles */
section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;


  max-width: 700px;
  margin: 0 auto;
}

/* About Hero Section */
.about-hero {
  background-image:
    linear-gradient(120deg,
      rgba(38, 190, 73, 0.8) 0%,
      rgba(31, 93, 63, 0.85) 100%),
    url("../images/banner_image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.about-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}


.itstaffing-hero1 {
  background-image:
    linear-gradient(rgba(0, 255, 98, 0.5), rgba(0, 97, 3, 0.5)),
    url("../images/services.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}


.itstaffing-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.itstaffing-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}


.nonitstaffing-hero {

  background-image:
    linear-gradient(rgba(0, 255, 98, 0.5), rgba(0, 97, 3, 0.5)),
    url("../images/nonitstaffingbanner.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.nonitstaffing-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.nonitstaffing-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}


.healthcare-hero {
  background-image:
    linear-gradient(rgba(0, 255, 98, 0.5), rgba(0, 97, 3, 0.5)),
    url("../images/healthcare.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.healthcare-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.healthcare-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}

/* ADI */
/* accounting and finance hero section */
.accountfinance-hero {
  background-image:
    linear-gradient(rgba(0, 255, 98, 0.5), rgba(0, 97, 3, 0.5)),
    url("../images/accountingfinance.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.accountfinance-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.accountfinance-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}

/* ADI */
/* career development hero section */
.careerdevelopment-hero {
  background-image:
    linear-gradient(rgba(0, 255, 98, 0.5), rgba(0, 97, 3, 0.5)),
    url("../images/careerdevelopment.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.careerdevelopment-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.careerdevelopment-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}

/* ADI */
/* login hero section */
.login-hero {
  background-image:
    linear-gradient(rgba(0, 255, 98, 0.5), rgba(0, 97, 3, 0.5)),
    url("../images/login.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.login-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.login-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}

/* ADI */
/* contact hero section */
.contact-hero {
  background-image:
    linear-gradient(rgba(0, 255, 98, 0.5), rgba(0, 97, 3, 0.5)),
    url("../images/contact.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  padding: 5rem 0 2rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.contact-hero-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}

/* What We Do Section */
.what-we-do {
  background: var(--bg-white);
  padding: 2.5rem 0;
}

.what-we-do-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.what-we-do-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.what-we-do-subtitle {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.what-we-do-description {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* About Main Content */
.about-main {
  background: var(--bg-light);
  padding: 2.5rem 0;
}

.about-main-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-tagline-box {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%);
  color: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.2);
}

.about-tagline-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.about-main-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
}

.about-main-text p {
  margin-bottom: 1.5rem;
}

.about-main-text p:last-child {
  margin-bottom: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
  background: var(--bg-white);
  padding: 2.5rem 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-box,
.vision-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary-color);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 134, 89, 0.15);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.mission-box h3,
.vision-box h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.mission-box p,
.vision-box p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--bg-light);
  padding: 2.5rem 0;
}

.why-choose-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.why-choose-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-choose-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ADI */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.why-choose-item {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border-left: 4px solid var(--primary-color);
}

.why-choose-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(45, 134, 89, 0.15);
}

.why-choose-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
  min-width: 24px;
}

.why-choose-item span {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 500;
}

.why-choose-tagline {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(45, 134, 89, 0.2);
}

.why-choose-tagline p {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  font-style: italic;
}

/* Approach Section */
.approach-section {
  background: var(--bg-white);
  padding: 2.5rem 0;
}

.approach-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.approach-icon-header {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(45, 134, 89, 0.3);
}

.approach-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}


/* ADI */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.approach-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.2);
  border-color: var(--primary-color);
}

.approach-card-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.approach-card:hover .approach-card-icon {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.approach-card h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* How We Help */
.how-we-help {
  background: var(--bg-light);
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.help-card {
  background: white;
  padding: 1.8rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.help-card .icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.help-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.help-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Why Choose Us */
.why-choose {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: background 0.3s;
}

.feature-item:hover {
  background: #e8f5e9;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Services Section */

.services {
  background: var(--bg-light);
  padding-top: 2rem;

}

.service-section {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.service-header {
  margin-bottom: 1.5rem;
}

.service-header h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.service-details h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-details ul {
  list-style: none;
  padding-left: 0;
}

.service-details li {
  padding: 0.5rem 0;
  padding-left: 0rem;
  position: relative;
  color: var(--text-dark);
}



/* Career Services Grid */
.career-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.career-service-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s;
}

.career-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.career-service-card h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.career-service-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Approach Section */
.approach {
  background: white;
}

.approach-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.approach-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.approach-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: transform 0.3s;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.approach-item h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  background: var(--bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.3rem;
}

.contact-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary-color) 100%);
  color: white;
  padding: 2rem 0 0;
  position: relative;
  margin-top: 0;
}

.footer-top-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 100%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo-wrapper {
  margin-bottom: 1.5rem;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-section ul li a i {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: all 0.3s;
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-section ul li a:hover i {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-item i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
    gap: 1rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem;
    min-width: 0;
  }

  .dropdown-menu a {
    padding: 0.35rem 1.5rem;
    font-size: 0.95rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .navbar {
    min-height: 70px;
    padding: 0.5rem 0.75rem;
  }

  .logo {
    max-height: 70px;
  }

  .logo-img {
    max-height: 70px;
    width: auto;
  }

  .main-headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .what-we-do-content h2 {
    font-size: 2rem;
  }

  .what-we-do-subtitle {
    font-size: 1.4rem;
  }

  .about-tagline-box {
    padding: 1.5rem 2rem;
  }

  .about-tagline-box h2 {
    font-size: 1.5rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-box,
  .vision-box {
    padding: 2rem;
  }

  .why-choose-header h2 {
    font-size: 2rem;
  }

  .why-choose-grid {
    grid-template-columns: 2fr;
  }

  .approach-header h2 {
    font-size: 2rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .help-cards {
    grid-template-columns: 1fr;
  }

  .career-services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-form-card {
    margin-top: 2rem;
    max-width: 100%;
  }

  section {
    padding: 2rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .main-headline {
    font-size: 1.6rem;
  }

  .subheadline {
    font-size: 1rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .service-section {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .what-we-do-content h2 {
    font-size: 1.6rem;
  }

  .what-we-do-subtitle {
    font-size: 1.2rem;
  }

  .what-we-do-description {
    font-size: 1rem;
  }

  .about-tagline-box {
    padding: 1.25rem 1.5rem;
  }

  .about-tagline-box h2 {
    font-size: 1.3rem;
  }

  .about-main-text {
    font-size: 1rem;
  }

  .mission-vision-grid {
    gap: 1.5rem;
  }

  .mission-box,
  .vision-box {
    padding: 1.5rem;
  }

  .why-choose-header h2 {
    font-size: 1.6rem;
  }

  .why-choose-item {
    padding: 1.25rem 1.5rem;
  }

  .why-choose-tagline p {
    font-size: 1.1rem;
  }

  .approach-header h2 {
    font-size: 1.6rem;
  }

  .approach-card {
    padding: 2rem 1.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}



/* --- Achievements Section --- */
.achievements-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
  text-align: center;
}

.achievements-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #145e58;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.achievements-section .section-header p {
  font-size: 1.15rem;
  color: #5a7c78;
  font-weight: 400;
  margin-bottom: 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.achievement-card {
  padding: 15px 15px;
  border-radius: 20px;
  background: #ffffff;
  border: 2px solid #e8f5f3;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2dd2c4 0%, #145e58 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.achievement-card:hover::before {
  transform: scaleX(1);
}

.achievement-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(20, 94, 88, 0.15);
  border-color: #2dd2c4;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.achievement-icon {
  font-size: 3rem;
  color: #2dd2c4;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1);
  color: #145e58;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #145e58 0%, #2dd2c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: -1px;
}

.achievement-label {
  font-size: 1.1rem;
  color: #4a6662;
  font-weight: 600;
  line-height: 1.5;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .achievements-section .section-header h2 {
    font-size: 2rem;
  }

  .achievement-number {
    font-size: 2.5rem;
  }

  .achievement-label {
    font-size: 1rem;
  }
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 40px 0 20px;
  background: #f0f7f7;
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(45, 210, 196, 0.1);
  font-family: serif;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
  /* Placeholder */
}

.author-info h5 {
  font-weight: 700;
  color: #145e58;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.9rem;
  color: #4a4a4a;
}

/* --- CTA Card Section --- */
.cta-section {
  padding: 40px 0 60px;
  background: #fff;
}

.cta-card {
  background: linear-gradient(120deg,
      rgba(38, 190, 73, 0.8) 0%,
      rgba(0, 89, 27, 0.75) 100%);
  /* Purple Gradient */
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 89, 27, 0.75);
  position: relative;
  overflow: hidden;
}

/* Optional: minimal pattern overlay */
.cta-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=");
  opacity: 0.3;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  z-index: 2;
  position: relative;
}

.cta-btn {
  background: #fff;
  color: rgba(0, 89, 27, 0.75);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #f5f5f5;
  color: #7b1fa2;
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

/* GG Toast Notification System */
.gg-toast-container {
  position: fixed !important;
  top: 100px !important;
  right: 30px !important;
  z-index: 999999 !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none;
  /* Allow interaction with underlying elements */
}

.gg-toast-container .toast {
  pointer-events: auto;
  /* Enable interaction for the toast itself (e.g. close button if added later) */
  background: white !important;
  color: var(--text-dark) !important;
  padding: 16px 28px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  align-items: center;
  gap: 15px;
  min-width: 320px;
  max-width: 450px;
  transform: translateX(120%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  border: none !important;
  border-left: 5px solid var(--primary-color) !important;
  opacity: 0;
  visibility: visible !important;
}

.gg-toast-container .toast.show {
  transform: translateX(0);
  opacity: 1 !important;
}

.gg-toast-container .toast-error {
  border-left-color: #e74c3c !important;
}

.gg-toast-container .toast-error i {
  color: #e74c3c !important;
  font-size: 1.2rem;
}

.gg-toast-container .toast-success {
  border-left-color: var(--primary-color) !important;
}

.gg-toast-container .toast-success i {
  color: var(--primary-color) !important;
  font-size: 1.2rem;
}

/* --- PREMIUM SHOP CARD STYLES --- */
.premium-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(45, 134, 89, 0.1);
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, rgba(0, 191, 255, 0.05) 100%);
  z-index: -1;
  transition: opacity 0.5s;
}

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(45, 134, 89, 0.3);
}

.premium-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
}

.premium-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.price-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2d8659 0%, #00BFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.view-btn {
  background: linear-gradient(135deg, #2d8659 0%, #2ecc71 100%);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(45, 134, 89, 0.2);
}

.premium-card:hover .view-btn {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(45, 134, 89, 0.3);
}

.card-icon-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.03;
  transform: rotate(-15deg);
}

/* Extracted Inline Styles */
.shop-section {
  padding: 60px 0 !important;
  background: var(--bg-light) !important;
}

.premium-card h3.fw-bold {
  color: #1a1a1a !important;
  font-size: 1.6rem !important;
  letter-spacing: -0.5px !important;
}

.premium-card p.text-muted {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  flex-grow: 1;
}

.premium-card .text-dark.fw-bold {
  font-size: 0.9rem !important;
}

/* Dynamic Badge Styles (using data-category hook) */

.premium-badge[data-category*="Career Progression Plans"] {
  background: var(--primary-color) !important;
  color: #ffffff !important;
}

.premium-badge[data-category*="Supreme Career Upgrade"] {
  background: var(--primary-dark) !important;
  color: #ffffff !important;
}

.premium-badge[data-category*="Premium Upgrade Modules"] {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  color: #269749;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card .btn-link {
  color: #269749;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* --- INDEX PAGE REDESIGNED ABOUT SECTION --- */
.redesigned-about-section {
  background: #f9fcfa;
}

.redesigned-about-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.redesigned-about-section .section-header h2 {
  color: #269749;
  font-weight: 800;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.redesigned-about-section .section-header h2 span {
  color: #222;
}

.redesigned-about-section .section-header hr {
  width: 80px;
  border: 2px solid #269749;
  margin: 20px auto;
}

.redesigned-about-section .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.redesigned-about-section .about-text {
  flex: 1 1 330px;
  min-width: 280px;
}

.redesigned-about-section .lead-text {
  font-size: 1.18rem;
  color: #424242;
  margin-bottom: 24px;
  line-height: 1.7;
}

.redesigned-about-section .lead-text strong {
  font-weight: bold;
}

.redesigned-about-section .lead-text span.highlight {
  color: #269749;
  font-weight: 500;
}

.redesigned-about-section .about-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.redesigned-about-section .about-bullets li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.redesigned-about-section .about-bullets li i {
  color: #269749;
  font-size: 1.3em;
  margin-right: 15px;
  margin-top: 4px;
}

.redesigned-about-section .about-bullets li span {
  font-size: 18px;
}

.redesigned-about-section .about-bullets li span span.green {
  color: #269749;
}

.redesigned-about-section .about-text p:not(.lead-text) {
  font-size: 1.07rem;
  color: #666;
}

.redesigned-about-section .about-text p span.business-types {
  color: #269749;
  font-weight: 600;
}

.redesigned-about-section .about-services {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(38, 151, 73, 0.07);
  padding: 32px 26px 32px 28px;
}

.redesigned-about-section .about-services h3 {
  color: #269749;
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.redesigned-about-section .about-services h3 i {
  margin-right: 7px;
}

.redesigned-about-section .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.redesigned-about-section .services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.redesigned-about-section .services-list li:last-child {
  margin-bottom: 0;
}

.redesigned-about-section .services-list li i {
  color: #269749;
  margin-right: 11px;
}

.redesigned-about-section .about-extra {
  margin-top: 40px;
  text-align: center;
}

.redesigned-about-section .about-extra p {
  font-size: 1.04rem;
  color: #444;
  max-width: 700px;
  display: inline-block;
}

.redesigned-about-section .about-extra p em {
  font-style: italic;
}

.redesigned-about-section .about-extra p span.highlight {
  color: #269749;
}

/* --- ADMIN PAGE STYLES --- */
.admin-bg {
  background: #f4f7f6;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: #fff;
  width: 100%;
  max-width: 450px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.login-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  width: 100%;
}

.login-box .logo-img {
  max-width: 180px;
  height: auto;
}

.return-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

.return-link:hover {
  text-decoration: underline;
}

.login-box h2.text-center {
  color: #299d4b !important;
  font-weight: 700 !important;
}

/* --- CAREER PLANS PAGE STYLES --- */
.plan-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 40px;
  border-top: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 134, 89, 0.1);
}

.plan-header {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.plan-header h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

.plan-overview {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  display: block;
}

.plan-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.plan-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.plan-features .feature-item i {
  color: var(--primary-color);
  margin-top: 5px;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.upgrade-section {
  background: var(--bg-light);
  padding: 60px 0;
  border-radius: 20px;
  margin: 40px 0;
}

.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.upgrade-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.upgrade-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.validity-tag {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 20px;
}

.cta-container {
  text-align: center;
  margin-top: 30px;
}

.enroll-btn {
  background: var(--primary-color);
  color: white !important;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.enroll-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(45, 134, 89, 0.3);
}

.career-plans-section p.text-center {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

/* --- CAREER DEVELOPMENT PAGE STYLES --- */
.service-section a.btn-success {
  padding: 12px 35px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
}

/* --- CHECKOUT PAGE STYLES --- */

.checkout-container .card {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #4a4a4a;
}

.summary-total {
  border-top: 2px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

.btn-pay {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.btn-pay:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.item-row {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.item-row:last-child {
  border-bottom: none;
}

.service-badge {
  background: rgba(45, 134, 89, 0.1);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
}

.item-row .service-badge {
  width: fit-content;
}

.order-summary .alert-info {
  background: #e8f3f5 !important;
  color: #0f3da1 !important;
  border: 1px solid rgba(45, 134, 89, 0.2) !important;
}

/* --- LOGIN PAGE STYLES --- */
.superduper-login {
  padding: 0;
  margin: 0;
}

.superduper-login>.container {
  max-width: 540px;
}

.superduper-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 36px 0 rgba(60, 150, 86, .12);
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  margin-top: -90px;
  margin-bottom: 38px;
  position: relative;
  overflow: hidden;
}

.superduper-card>div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.7rem;
}

.superduper-card>div:first-child>div {
  width: 68px;
  height: 68px;
  background: linear-gradient(120deg, #39b54a 49%, #299d4b 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.superduper-card>div:first-child>div i {
  color: #fff;
  font-size: 2.45rem;
}

.superduper-card h2 {
  font-size: 2.24rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--primary-color, #299d4b);
  letter-spacing: -1px;
}

.superduper-card p:nth-of-type(1) {
  text-align: center;
  color: #8bc2a4;
  font-size: 1.01rem;
  margin-bottom: 2.1rem;
}

.superduper-card .alert a.btn-primary {
  border-radius: 9px !important;
  background: var(--primary-color) !important;
}

.superduper-login-form .form-group {
  margin-bottom: 1.65rem;
  position: relative;
}

.superduper-login-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #103824;
}

.superduper-login-form .form-group input {
  width: 100%;
  padding: 0.92rem 1rem 0.92rem 2.4rem;
  border: 1.8px solid #dbeee1;
  border-radius: 9px;
  font-size: 1.07rem;
  background: #f7fcf8;
  outline: none;
  transition: border 0.18s;
}

.superduper-login-form .form-group span {
  position: absolute;
  left: 10px;
  top: 48px;
  color: #299d4b;
}

.superduper-login-form .form-group button#togglePasswordBtn {
  position: absolute;
  right: 10px;
  top: 53px;
  background: none;
  border: none;
  outline: none;
  color: #96bfa9;
  font-size: 1.13em;
  cursor: pointer;
}

.superduper-login-form>div:nth-of-type(3) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.superduper-login-form>div:nth-of-type(3) label {
  font-size: 0.98rem;
  color: #8fafa1;
}

.superduper-login-form>div:nth-of-type(3) input {
  margin-right: 0.55em;
}

.superduper-login-form>div:nth-of-type(3) a {
  font-size: 0.96rem;
  color: #299d4b;
  text-decoration: none;
  font-weight: 500;
}

.superduper-login-form button[type="submit"] {
  width: 100%;
  margin-bottom: 1.1rem;
  background: linear-gradient(120deg, #39b54a 65%, #299d4b 100%);
  color: #100f0f;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 0.92rem;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 18px 0 rgba(60, 181, 74, .07);
  transition: box-shadow .21s ease-in-out;
}

.superduper-card>div:nth-last-child(3) {
  text-align: center;
  margin-top: 1.1rem;
}

.superduper-card>div:nth-last-child(3) span {
  color: #9fa8a6;
  font-size: 1em;
}

.superduper-card>div:nth-last-child(3) a {
  color: #39b54a;
  font-weight: 650;
  text-decoration: none;
}

.superduper-card>div:nth-last-child(2) {
  margin: 1.9rem 0 0.5rem 0;
  text-align: center;
}

.superduper-card>div:nth-last-child(2) span {
  color: #94ab9c;
  font-size: 0.93em;
  letter-spacing: 0.01em;
}

.superduper-card>div:nth-last-child(1) {
  display: flex;
  justify-content: center;
  gap: 0.75em;
}

.superduper-card .social-btn {
  background: #e8f3ec;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(41, 157, 75, .05);
  transition: box-shadow .19s;
}

/* --- SIGNUP PAGE STYLES --- */
.superduper-login-form select {
  width: 100%;
  padding: 0.92rem 1rem 0.92rem 2.4rem;
  border: 1.8px solid #dbeee1;
  border-radius: 9px;
  font-size: 1.07rem;
  background: #f7fcf8;
  outline: none;
  transition: border 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.superduper-login-form .form-group span:nth-of-type(2) {
  position: absolute;
  right: 15px;
  top: 48px;
  color: #299d4b !important;
  pointer-events: none !important;
}

.superduper-login-form .form-group button#togglePasswordBtn1 {
  position: absolute;
  right: 10px;
  top: 53px;
  background: none;
  border: none;
  outline: none;
  color: #96bfa9;
  font-size: 1.13em;
  cursor: pointer;
}

.superduper-login-form>div:nth-of-type(8) {
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: 1.4rem;
  color: #8fafa1;
}

.superduper-login-form>div:nth-of-type(8) input {
  margin-right: 0.35em;
}

/* --- PAYMENT PAGE STYLES --- */
.payment-card {
  width: 100%;
  max-width: 500px !important;
  margin: 50px auto !important;
  display: block;
  border: none;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.payment-header {
  background: var(--primary-color);
  color: white;
  border-radius: 20px 20px 0 0;
  padding: 30px;
  text-align: center;
}

.method-card {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  font-family: inherit;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 15px;
}

.method-card:hover {
  border-color: var(--primary-color);
  background: rgba(45, 134, 89, 0.05);
}

.method-card.active {
  border-color: var(--primary-color);
  background: rgba(45, 134, 89, 0.05);
}

.btn-confirm {
  background: var(--primary-color);
  color: white;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  margin-top: 20px;
}

.payment-card .form-control {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* --- PRODUCT DETAILS PAGE STYLES --- */
.product-details-body {
  background: #fff;
  color: #333;
  font-family: 'Inter', sans-serif;
}

.product-nav {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.back-link:hover {
  color: var(--primary-color);
  transform: translateX(-5px);
}

.detail-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.detail-gallery {
  flex: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.detail-info {
  flex: 1.5;
}

.detail-sidebar {
  flex: 0.8;
}

.product-badge {
  background: rgba(45, 134, 89, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.section-card {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: var(--primary-color);
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #444;
}

.feature-list .feature-item i {
  color: var(--primary-color);
  margin-top: 4px;
}

.outcome-box {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
}

.advantage-box {
  background: ivory;
  border-radius: 15px;
  padding: 25px;
  border-left: 5px solid var(--accent-color);
}

.purchase-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stock-status {
  color: #2d8659;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}



.btn-add-cart {
  background: #f39c12;
  color: #ffffff !important;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
}

.btn-add-cart:hover {
  background: #e67e22;

  transform: translateY(-2px);
}

.btn-buy-now {
  background: #e67e22;
  color: #121111 !important;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}



@media (max-width: 992px) {
  .detail-wrapper {
    flex-direction: column;
  }

  .detail-gallery,
  .purchase-card {
    position: static;
  }
}

/* --- INDEX PAGE ABOUT SECTION STYLES (Extracted from index.php) --- */
#about.redesigned-about-section {
  background: #f9fcfa;
}

#about.redesigned-about-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

#about.redesigned-about-section .section-header h2 {
  color: #1b7a3a;
  font-weight: 800;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

#about.redesigned-about-section .section-header h2 span {
  color: #222;
}

#about.redesigned-about-section .section-header hr {
  width: 80px;
  border: 2px solid #1b7a3a;
  margin: 20px auto;
}

#about.redesigned-about-section .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

#about.redesigned-about-section .about-text {
  flex: 1 1 330px;
  min-width: 280px;
}

#about.redesigned-about-section .about-text .lead-text {
  font-size: 1.18rem;
  color: #424242;
  margin-bottom: 24px;
  line-height: 1.7;
}

#about.redesigned-about-section .about-text .lead-text span {
  color: #1b7a3a;
  font-weight: 500;
}

#about.redesigned-about-section .about-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

#about.redesigned-about-section .about-bullets li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

#about.redesigned-about-section .about-bullets li i {
  color: #1b7a3a;
  font-size: 1.3em;
  margin-right: 15px;
  margin-top: 4px;
}

#about.redesigned-about-section .about-bullets li span {
  font-size: 18px;
}

#about.redesigned-about-section .about-bullets li span span {
  color: #1b7a3a;
}

#about.redesigned-about-section .about-text p {
  font-size: 1.07rem;
  color: #4a4a4a;
}

#about.redesigned-about-section .about-text p span {
  color: #1b7a3a;
  font-weight: 600;
}

#about.redesigned-about-section .about-services {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(38, 151, 73, 0.07);
  padding: 32px 26px 32px 28px;
}

#about.redesigned-about-section .about-services h3 {
  color: #1b7a3a;
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

#about.redesigned-about-section .about-services h3 i {
  margin-right: 7px;
}

#about.redesigned-about-section .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#about.redesigned-about-section .services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

#about.redesigned-about-section .services-list li:last-child {
  margin-bottom: 0;
}

#about.redesigned-about-section .services-list li i {
  color: #1b7a3a;
  margin-right: 11px;
}

#about.redesigned-about-section .about-extra {
  margin-top: 40px;
  text-align: center;
}

#about.redesigned-about-section .about-extra p {
  font-size: 1.04rem;
  color: #444;
  max-width: 700px;
  display: inline-block;
}

#about.redesigned-about-section .about-extra p span {
  color: #269749;
}

/* --- SERVICES LIST SECTION STYLES --- */


.signup-terms-label {
  font-size: 0.98rem;
}

/* --- PRODUCT DETAILS GALLERY CARD STYLES --- */
.detail-gallery-card {
  height: 400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.detail-gallery-icon {
  color: var(--primary-color);
  opacity: 0.2;
}


/* Admin Page Styles */


/* Converted inline style from admin.php h2 */
.login-box h2.text-center.mb-1 {
  color: #299d4b;
  font-weight: 700;
}


/* --- CHECKOUT PAGE STYLES (Extracted from checkout.php) --- */
.checkout-container {
  --primary-color: #2d8659;
  --secondary-color: #1a5c3d;
  --bg-light: #f8f9fa;
  max-width: 1000px;
  margin: 80px auto;
}



.card {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.order-summary {
  background: #fff;
  padding: 30px;
}








.alert.alert-info.mt-4.small.border-0 {
  background: rgba(224, 229, 235, 0.5);
  color: #0c5460;
}

/* --- PAYMENT PAGE STYLES (Extracted from payment.php) --- */

/* Scoped to avoid leaking to other pages using style.css */
body:has(.payment-card) {
  background: #f0f2f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

body:has(.payment-card) .container {
  display: flex;
  justify-content: center;
  width: 100%;
}






/* --- PRODUCT DETAILS PAGE STYLES (Extracted from product_details.php) --- */
/* Scoped to avoid leaking to other pages using style.css */
body:has(.detail-wrapper) {
  --primary-color: #2d8659;
  --accent-color: #f39c12;
  --bg-light: #f8f9fa;
  background: #fff;
  color: #333;
  font-family: 'Inter', sans-serif;
}



.btn-buy-now:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.secure-transaction {
  font-size: 0.85rem;
  color: #4a4a4a;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .detail-wrapper {
    flex-direction: column;
  }

  .detail-gallery,
  .purchase-card {
    position: static;
  }
}

/* Converted Inline Styles from product_details.php */
.detail-gallery .card.bg-light {
  height: 400px;
  border-radius: 20px;
}

.detail-gallery .card.bg-light i.fa-rocket {
  color: #2d8659;
  opacity: 0.2;
}

/* --- SERVICES PAGE STYLES (Extracted from services.php) --- */
.services-list-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-list-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.services-list-section .service-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.services-list-section .service-card:hover {
  transform: translateY(-5px);
}

.services-list-section .service-card .icon {
  color: #269749;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-list-section .service-card .btn-link {
  color: #269749;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* --- SIGNUP PAGE STYLES (Extracted from signup.php) --- */

.superduper-login .container {
  max-width: 540px;
}


.superduper-card>div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.7rem;
}

.superduper-card>div:nth-child(1)>div {
  width: 68px;
  height: 68px;
  background: linear-gradient(120deg, #39b54a 49%, #299d4b 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.superduper-card>div:nth-child(1)>div i {
  color: #fff;
  font-size: 2.45rem;
}



.superduper-card>p {
  text-align: center;
  color: #8bc2a4;
  font-size: 1.01rem;
  margin-bottom: 2.1rem;
}

.superduper-card .alert {
  border-radius: 12px;
  margin-bottom: 1.5rem;
}



.superduper-login-form .form-group input,
.superduper-login-form .form-group select {
  width: 100%;
  padding: 0.92rem 1rem 0.92rem 2.4rem;
  border: 1.8px solid #dbeee1;
  border-radius: 9px;
  font-size: 1.07rem;
  background: #f7fcf8;
  outline: none;
  transition: border 0.18s;
}

.superduper-login-form .form-group select {
  -webkit-appearance: none;
  appearance: none;
}

.superduper-login-form .form-group>span {
  position: absolute;
  left: 10px;
  top: 48px;
  color: #299d4b;
}

.superduper-login-form .form-group select~span:last-of-type {
  position: absolute;
  right: 15px;
  top: 48px;
  color: #299d4b;
  pointer-events: none;
}

.superduper-login-form .form-group button {
  position: absolute;
  right: 10px;
  top: 53px;
  background: none;
  border: none;
  outline: none;
  color: #96bfa9;
  font-size: 1.13em;
  cursor: pointer;
}



.superduper-card>div:last-child {
  display: flex;
  justify-content: center;
  gap: 0.75em;
}

.social-btn {
  background: #e8f3ec;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(41, 157, 75, .05);
  transition: box-shadow .19s;
}

.social-btn .fa-google {
  color: #ea4335;
  font-size: 1.36rem;
}

.social-btn .fa-linkedin-in {
  color: #0a66c2;
  font-size: 1.36rem;
}

.social-btn .fa-facebook-f {
  color: #3b5998;
  font-size: 1.36rem;
}

/* Internal Styles from signup.php */
/* login.php specific styles */
.login-hero-section {
  padding: 0;
  margin: 0;
}

.login-container-small {
  max-width: 540px;
}

.login-form-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 36px 0 rgba(60, 150, 86, .12);
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  margin-top: -90px;
  margin-bottom: 38px;
  position: relative;
  overflow: hidden;
}

.login-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.7rem;
}

.login-icon-circle {
  width: 68px;
  height: 68px;
  background: linear-gradient(120deg, #39b54a 49%, #299d4b 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-icon-main {
  color: #fff;
  font-size: 2.45rem;
}

.login-title {
  font-size: 2.24rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--primary-color, #299d4b);
  letter-spacing: -1px;
}

.login-subtitle {
  text-align: center;
  color: #8bc2a4;
  font-size: 1.01rem;
  margin-bottom: 2.1rem;
}

.login-dashboard-btn {
  border-radius: 9px;
  background: var(--primary-color);
}

.login-field-group-email {
  margin-bottom: 1.65rem;
  position: relative;
}

.login-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #103824;
}

.login-input-field {
  width: 100%;
  padding: 0.92rem 1rem 0.92rem 2.4rem;
  border: 1.8px solid #dbeee1;
  border-radius: 9px;
  font-size: 1.07rem;
  background: #f7fcf8;
  outline: none;
  transition: border 0.18s;
}

.login-field-icon {
  position: absolute;
  left: 10px;
  top: 48px;
  color: #299d4b;
}

.login-field-group-pass {
  margin-bottom: 1.23rem;
  position: relative;
}

.login-toggle-visible {
  position: absolute;
  right: 10px;
  top: 53px;
  background: none;
  border: none;
  outline: none;
  color: #96bfa9;
  font-size: 1.13em;
  cursor: pointer;
}

.login-options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.login-checkbox {
  margin-right: 0.55em;
}

.login-remember-label {
  font-size: 0.98rem;
  color: #8fafa1;
}

.login-forgot-link {
  font-size: 0.96rem;
  color: #299d4b;
  text-decoration: none;
  font-weight: 500;
}

.login-submit-btn {
  width: 100%;
  margin-bottom: 1.1rem;
  background: linear-gradient(120deg, #39b54a 65%, #299d4b 100%);
  color: #0d0c0c;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 0.92rem;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 18px 0 rgba(60, 181, 74, .07);
  transition: box-shadow .21s ease-in-out;
}

.login-submit-icon {
  margin-right: 0.7em;
}

.login-footer {
  text-align: center;
  margin-top: 1.1rem;
}

.login-footer-text {
  color: #9fa8a6;
  font-size: 1em;
}

.login-signup-link {
  color: #39b54a;
  font-weight: 650;
  text-decoration: none;
}

.login-social-divider {
  margin: 1.9rem 0 0.5rem 0;
  text-align: center;
}

.login-social-label {
  color: #94ab9c;
  font-size: 0.93em;
  letter-spacing: 0.01em;
}

.login-social-row {
  display: flex;
  justify-content: center;
  gap: 0.75em;
}

.login-social-btn {
  background: #e8f3ec;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(41, 157, 75, .05);
  transition: box-shadow .19s;
}

.login-google-icon {
  color: #ea4335;
  font-size: 1.36rem;
}

.login-linkedin-icon {
  color: #0a66c2;
  font-size: 1.36rem;
}

.login-facebook-icon {
  color: #3b5998;
  font-size: 1.36rem;
}

/* Utility classes for heading hierarchy fixes */
.h3-style {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.h4-style {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
  font-weight: 700;
}

.h4-style::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

.h5-style {
  font-weight: 700;
  color: #145e58 !important;
  /* Force override for author name color */
  margin-bottom: 2px;
  font-size: 1.25rem;
}