/* ===========================
   Google Font
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #111827;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}
/* ===========================
   Reusable Container
=========================== */

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}
/* ===========================
   Navigation
=========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  padding: 20px 0;

  z-index: 1000;

  transition: 0.4s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #60a5fa;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;

  padding: 14px 28px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary:hover {
  background: #1d4ed8;
}
/* ===========================
   Hero Section
=========================== */

.hero {
  position: relative;

  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb);

  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;

  position: relative;
  z-index: 2;

  min-height: 100vh;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
}

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

  color: #ffffff;

  max-width: 650px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;

  margin-bottom: 25px;
}

.hero-content h1 span {
  color: #60a5fa;
}

.hero-content p {
  max-width: 760px;

  margin: 0 auto 45px;

  font-size: 22px;
  line-height: 1.8;

  color: #dbeafe;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary {
  padding: 14px 28px;

  border: 2px solid #ffffff;

  border-radius: 50px;

  color: #ffffff;

  transition: 0.3s;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #111827;
}
/* =====================================
   Hero Trust Badges
===================================== */

.hero-badge {
  display: inline-block;

  margin-bottom: 22px;

  padding: 10px 18px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 40px;

  color: #dbeafe;

  font-size: 14px;

  font-weight: 600;

  backdrop-filter: blur(12px);
}

.hero-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 35px;
}

.trust-item {
  color: #cbd5e1;

  font-size: 15px;

  font-weight: 500;
}
/* ===========================
   Hero Background Effects
=========================== */

.blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.blur-1 {
  width: 320px;
  height: 320px;

  background: #2563eb;

  top: 8%;
  left: 5%;
}

.blur-2 {
  width: 260px;
  height: 260px;

  background: #3b82f6;

  bottom: 10%;
  right: 8%;
}

.blur-3 {
  width: 180px;
  height: 180px;

  background: #60a5fa;

  top: 35%;
  right: 30%;
}
/* ===========================
   Scroll Indicator
=========================== */

.scroll-down {
  position: absolute;

  bottom: 40px;
  left: 50%;

  transform: translateX(-50%);

  width: 28px;
  height: 48px;

  border: 2px solid rgba(255, 255, 255, 0.7);

  border-radius: 30px;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 8px;

  z-index: 5;
}

.scroll-down span {
  width: 5px;
  height: 10px;

  background: #ffffff;

  border-radius: 10px;

  animation: scrollDown 1.8s infinite;
}
/* ===========================
   Hero Card
=========================== */

.hero-card {
  width: 380px;
  min-height: 460px;

  margin: auto;

  padding: 30px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(20px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: floatCard 6s ease-in-out infinite;
  cursor: pointer;
  transition: 0.35s ease;
}
.hero-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.hero-card h3 {
  color: #ffffff;

  font-size: 24px;

  font-weight: 600;

  margin-bottom: 30px;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 30px;
}

.card-header h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

.window-buttons {
  display: flex;
  gap: 8px;
}

.window-buttons span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.5);
}
/* ===========================
   Dashboard Item
=========================== */

.dashboard-item {
  padding: 20px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);

  transition: 0.3s ease;
}

.dashboard-item:hover {
  transform: translateX(6px);

  background: rgba(255, 255, 255, 0.12);
}

.item-left {
  color: #ffffff;
  font-weight: 500;
}

.status {
  padding: 6px 12px;

  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;
}

.status.active {
  background: #22c55e;

  color: #ffffff;
}
/* ===========================
   Card Divider
=========================== */

.card-divider {
  height: 1px;

  background: rgba(255, 255, 255, 0.12);

  margin-bottom: 25px;
}
.dashboard-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 18px;
}

.dashboard-description {
  margin-top: 18px;

  color: #cbd5e1;

  line-height: 1.7;

  font-size: 15px;
}
/* =====================================
   Hero Dashboard Meta
===================================== */

.dashboard-meta {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 18px;
}

.dashboard-meta span {
  padding: 6px 12px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);

  color: #e2e8f0;

  font-size: 12px;

  border: 1px solid rgba(255, 255, 255, 0.1);
}
/* ===========================
   Feature Tags
=========================== */

.feature-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 18px;
}

.feature-tags span {
  padding: 8px 14px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #e2e8f0;

  font-size: 13px;

  font-weight: 500;
}
/* ===========================
   Dashboard Button
=========================== */

.dashboard-btn {
  display: inline-flex;

  margin-top: 25px;

  color: #60a5fa;

  font-weight: 600;

  transition: 0.3s ease;
}

.dashboard-btn:hover {
  color: #93c5fd;

  transform: translateX(5px);
}
/* ===========================
   Fade Animation
=========================== */

.fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.35s ease;
}
/* ===========================
   Service Icon
=========================== */

.item-left {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  font-weight: 600;
}

.item-left svg {
  width: 22px;
  height: 22px;

  color: #60a5fa;

  stroke-width: 2;

  flex-shrink: 0;
}
/* ===========================
   Service Icon
=========================== */

.item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

#service-icon {
  width: 22px;
  height: 22px;

  object-fit: contain;

  filter: brightness(0) saturate(100%) invert(62%) sepia(88%) saturate(1378%)
    hue-rotate(191deg) brightness(100%) contrast(97%);
}
/* ===========================
   About Section
=========================== */

.about {
  padding: 120px 0;

  background: #ffffff;
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 80px;
}

.about-image {
  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 500px;

  border-radius: 30px;

  background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb);

  padding: 40px;
}
/* =====================================
   About Card
===================================== */

.about-card {
  width: 100%;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 24px;

  padding: 35px;

  color: white;
}

.about-small-title {
  display: inline-block;

  margin-bottom: 20px;

  padding: 8px 16px;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.5px;
}

.about-card h3 {
  font-size: 32px;

  margin-bottom: 30px;

  line-height: 1.3;
}

.about-card ul {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.about-card li {
  font-size: 17px;

  color: #e2e8f0;
}

.section-tag {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 30px;

  background: #e8f1ff;

  color: #2563eb;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 46px;

  line-height: 1.2;

  margin-bottom: 25px;

  color: #111827;
}

.about-content p {
  font-size: 18px;

  line-height: 1.8;

  color: #6b7280;
}
/* ===========================
   About Features
=========================== */

.about-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 40px;
}

.feature-box {
  padding: 24px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 18px;

  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);

  border-color: #2563eb;
}

.feature-box h4 {
  font-size: 20px;

  color: #111827;

  margin-bottom: 12px;
}

.feature-box p {
  font-size: 15px;

  line-height: 1.7;

  color: #6b7280;
}
/* ===========================
   Services Section
=========================== */

.services-home {
  padding: 120px 0;

  background: #f8fafc;
}

.section-heading {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 70px;
}

.section-heading h2 {
  font-size: 46px;

  color: #111827;

  margin: 20px 0;
}

.section-heading p {
  font-size: 18px;

  color: #6b7280;

  line-height: 1.8;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.service-card {
  background: #ffffff;

  padding: 40px;

  border-radius: 24px;

  border: 1px solid #e5e7eb;

  transition: 0.35s;
  cursor: pointer;

  overflow: hidden;

  position: relative;
}
.service-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 0;

  height: 4px;

  background: #2563eb;

  transition: 0.35s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-12px);

  border-color: #2563eb;

  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.16);
}
.service-icon {
  width: 70px;
  height: 70px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 18px;

  background: #eaf2ff;

  margin-bottom: 25px;
}

.service-icon img {
  width: 34px;
  height: 34px;

  object-fit: contain;

  filter: brightness(0) saturate(100%) invert(35%) sepia(94%) saturate(1538%)
    hue-rotate(209deg) brightness(96%) contrast(96%);
}

.service-card h3 {
  font-size: 28px;

  margin-bottom: 18px;

  color: #111827;
}

.service-card p {
  color: #6b7280;

  line-height: 1.8;

  margin-bottom: 25px;
}

.service-card a {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #2563eb;

  font-weight: 600;

  transition: 0.3s ease;
}
/* ===========================
   Service Card Animation
=========================== */

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
}

.service-card:hover a {
  transform: translateX(8px);
}

.service-icon {
  transition: 0.35s ease;
}

.service-card a {
  transition: 0.35s ease;
}
/* ===========================
   Why Choose Us
=========================== */

.why-us {
  padding: 120px 0;

  background: #ffffff;
}

.why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.why-card {
  padding: 35px;

  border-radius: 22px;

  background: #f8fafc;

  border: 1px solid #e5e7eb;

  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-12px);

  border-color: #2563eb;

  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.14);
}

.why-card h3 {
  font-size: 24px;

  color: #111827;

  margin-bottom: 18px;
}

.why-card p {
  color: #6b7280;

  line-height: 1.8;
}
/* ===========================
   Why Card Icons
=========================== */

.why-icon {
  width: 70px;
  height: 70px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 25px;

  border-radius: 18px;

  background: #eaf2ff;

  transition: 0.35s ease;
}

.why-icon img {
  width: 34px;
  height: 34px;

  filter: brightness(0) saturate(100%) invert(35%) sepia(94%) saturate(1538%)
    hue-rotate(209deg) brightness(96%) contrast(96%);
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
}
/* ===========================
   Professional Certifications
=========================== */

.training-home {
  padding: 120px 0;

  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.training-content {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

.training-content h2 {
  font-size: 46px;

  color: #111827;

  margin: 20px 0;
}

.training-content p {
  font-size: 18px;

  line-height: 1.8;

  color: #6b7280;
}

/* ===========================
   Certification Pills
=========================== */

.training-courses {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 18px;

  margin: 60px 0;
}

.course-pill {
  padding: 16px 28px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 50px;

  font-weight: 600;

  color: #111827;

  transition: 0.35s;

  cursor: default;
}

.course-pill:hover {
  transform: translateY(-4px);

  border-color: #2563eb;

  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.1);
}

/* ===========================
   Training Stats
=========================== */

.training-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-bottom: 60px;
}

.stat {
  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 24px;

  padding: 40px;

  text-align: center;

  transition: 0.35s ease;
}

.stat:hover {
  transform: translateY(-10px);

  border-color: #2563eb;

  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.12);
}

.stat h3 {
  font-size: 42px;

  color: #2563eb;

  margin-bottom: 10px;
}

.stat p {
  color: #6b7280;

  font-size: 16px;
}

/* ===========================
   Training Button
=========================== */

.training-btn {
  text-align: center;
}
/* ===========================
   Training Stats Icons
=========================== */

.stat-icon {
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #eaf2ff;

  border-radius: 20px;

  transition: 0.35s ease;
}

.stat-icon img {
  width: 34px;
  height: 34px;

  filter: brightness(0) saturate(100%) invert(35%) sepia(94%) saturate(1538%)
    hue-rotate(209deg) brightness(96%) contrast(96%);
}

.stat:hover .stat-icon {
  transform: rotate(-8deg) scale(1.08);
}
/* ===========================
   Industries
=========================== */

.industries {
  padding: 120px 0;

  background: #ffffff;
}

.industries-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-top: 60px;
}

.industry-card {
  padding: 28px 25px;
  position: relative;

  overflow: hidden;

  cursor: pointer;

  background: #f8fafc;

  border: 1px solid #e5e7eb;

  border-radius: 22px;

  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 180px;

  transition: 0.35s ease;
  cursor: pointer;
}
.industry-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 0;

  height: 4px;

  background: #2563eb;

  transition: 0.35s ease;
}

.industry-card:hover::before {
  width: 100%;
}

.industry-card:hover {
  transform: translateY(-10px);

  border-color: #2563eb;

  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.14);
}

.industry-card h3 {
  font-size: 20px;

  color: #111827;

  font-weight: 600;
}
/* ===========================
   Industry Icons
=========================== */

.industry-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 25px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #eaf2ff;

  border-radius: 20px;

  transition: 0.35s ease;
}

.industry-icon img {
  width: 34px;
  height: 34px;

  filter: brightness(0) saturate(100%) invert(35%) sepia(94%) saturate(1538%)
    hue-rotate(209deg) brightness(96%) contrast(96%);
}

.industry-card:hover .industry-icon {
  transform: rotate(-8deg) scale(1.08);
}
/* ===========================
   Process Section
=========================== */

.process {
  padding: 120px 0;
  background: #f8fafc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 35px 30px;
  transition: 0.35s ease;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: #2563eb;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.35s ease;
}

.process-card:hover .process-number {
  transform: rotate(-10deg) scale(1.08);
}

.process-card h3 {
  font-size: 24px;
  color: #111827;
  margin-bottom: 15px;
}

.process-card p {
  color: #6b7280;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   Final CTA
========================================== */

.final-cta {
  padding: 120px 0;

  background: #ffffff;
}

.cta-box {
  max-width: 950px;

  margin: auto;

  padding: 70px;

  border-radius: 32px;

  text-align: center;

  background: linear-gradient(135deg, #0f172a, #1e3a8a, #2563eb);

  color: #ffffff;

  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.22);
}

.cta-box h2 {
  font-size: 52px;

  margin: 25px 0;

  line-height: 1.2;
}

.cta-box p {
  max-width: 720px;

  margin: 0 auto;

  font-size: 18px;

  line-height: 1.8;

  color: #dbeafe;
}

.cta-buttons {
  margin-top: 40px;

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.btn-secondary-dark {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 14px 30px;

  border-radius: 50px;

  border: 2px solid rgba(255, 255, 255, 0.3);

  color: #ffffff;

  font-weight: 600;

  transition: 0.3s ease;
}

.btn-secondary-dark:hover {
  background: #ffffff;

  color: #2563eb;
}
/* ===========================
   Footer
=========================== */

.footer {
  background: #081120;
  color: #cbd5e1;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
  color: #94a3b8;
  line-height: 1.9;
  font-size: 15px;
}

.footer-col h3 {
  color: #ffffff;
  margin-bottom: 22px;
  font-size: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #60a5fa;
  padding-left: 6px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col ul {
    align-items: center;
  }
}
.footer-legal-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #94a3b8;
  transition: 0.3s;
}

.footer-legal-links a:hover {
  color: #60a5fa;
}

.footer-legal-links span {
  color: #475569;
}
/* =====================================
   Navbar Actions
===================================== */

.nav-actions {
  display: flex;

  align-items: center;

  gap: 18px;
}

.portal-link {
  font-weight: 600;

  color: #ffffff;

  transition: 0.3s;
}

.portal-link:hover {
  color: #60a5fa;
}
/* =====================================
   About Page
===================================== */

.about-hero{

    min-height:60vh;

    padding:140px 0 90px;

}

.about .section-heading{

    max-width:850px;

}

.about .section-heading p{

    font-size:19px;

}

.about .why-grid{

    grid-template-columns:repeat(4,1fr);

}
/* =====================================
   About Values
===================================== */

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.value-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:35px 28px;

    text-align:center;

    transition:.35s ease;

}

.value-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:
        0 20px 45px rgba(37,99,235,.12);

}

.value-icon{
    width:70px;
    height:70px;

    margin:0 auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#EAF2FF;
    border-radius:20px;

    transition:.35s ease;
}

.value-icon img{
    width:34px;
    height:34px;

    object-fit:contain;

    filter: brightness(0) saturate(100%)
            invert(35%) sepia(94%)
            saturate(1538%)
            hue-rotate(209deg)
            brightness(96%)
            contrast(96%);
}

.value-card:hover .value-icon{
    transform:rotate(-8deg) scale(1.08);
}

.value-card h3{

    margin-bottom:15px;

    color:#111827;

}

.value-card p{

    color:#6B7280;

    line-height:1.8;

}
.why-icon img{

    width:48px;

    height:48px;

    object-fit:contain;

}
/* =====================================
   About Hero Stats
===================================== */

.hero-stats{

    display:flex;

    gap:18px;

    margin:40px 0;

    flex-wrap:nowrap;

}

.hero-stat{

    min-width:220px;

    padding:18px 22px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

}
.hero-stat h3{

    color:#FFFFFF;

    font-size:18px;

    margin-bottom:6px;

}

.hero-stat span{

    color:#CBD5E1;

    font-size:14px;

}
.about-hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

.about-hero .hero-content{

    max-width:720px;

}
/* =====================================
   About Hero Layout
===================================== */

.about-hero{

    min-height:60vh;

    padding:140px 0 90px;

}

.about-hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.about-hero .hero-content{

    max-width:720px;

}

.about-hero-visual{

    display:flex;

    justify-content:center;

    align-items:center;

    transform:translateY(-40px);

}

.about-hero-visual img{

    width:100%;

    max-width:420px;

    animation:float 6s ease-in-out infinite;

}
@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}/* =====================================
   Services Page
===================================== */

.services-section{

    padding:100px 0;

    background:#F8FAFC;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#FFFFFF;

    border-radius:24px;

    padding:40px;

    border:1px solid #E5E7EB;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#EFF6FF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon img{

    width:38px;

    height:38px;

}

.service-card h3{

    margin-bottom:15px;

}

.service-card p{

    color:#6B7280;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    color:#2563EB;

    font-weight:600;

    text-decoration:none;

}
/* =====================================
   Training Process
===================================== */

.training-process{

    padding:100px 0;

    background:#F8FAFC;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.process-card{

    background:#FFFFFF;

    border-radius:24px;

    padding:40px;

    text-align:center;

    border:1px solid #E5E7EB;

}

.process-card h4{
    margin-bottom:15px;
}

.process-card h4{

    margin-bottom:15px;

}

.process-card p{

    color:#6B7280;

    line-height:1.8;

}
/* =====================================
   Course Tags
===================================== */

.course-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin:25px 0;

}

.course-tags span{

    padding:8px 14px;

    border-radius:50px;

    background:#EFF6FF;

    color:#2563EB;

    font-size:13px;

    font-weight:600;

}
/* =====================================
   FAQ Section
===================================== */

.faq-section{

    padding:100px 0;

    background:#FFFFFF;

}

.faq-container{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    background:#F8FAFC;

    border:1px solid #E5E7EB;

    border-radius:16px;

    margin-bottom:18px;

    overflow:hidden;

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    padding:22px 28px;

    font-size:18px;

    font-weight:600;

    color:#111827;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    float:right;

    font-size:22px;

    color:#2563EB;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item p{

    padding:0 28px 24px;

    color:#6B7280;

    line-height:1.8;

}
/* =====================================
   Contact Page
===================================== */

.contact-section{

    padding:100px 0;

    background:#F8FAFC;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-item{

    margin-top:30px;

}

.contact-item h4{

    margin-bottom:8px;

}

.contact-item p{

    color:#6B7280;

}

.contact-form{

    background:#FFFFFF;

    padding:45px;

    border-radius:24px;

    border:1px solid #E5E7EB;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

    width:100%;

    max-width:620px;

    margin-left:auto;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;

    padding:16px;

    border:1px solid #D1D5DB;

    border-radius:12px;

    font-size:16px;

}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    outline:none;

    border-color:#2563EB;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

    transition:.25s ease;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form button{

    width:100%;

    padding:18px;

    font-size:17px;

    font-weight:700;

}
/* =====================================
   Contact Cards
===================================== */

.contact-cards{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:18px;

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:22px;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-card img{

    width:32px;

    height:32px;

}

.contact-card h4{

    margin-bottom:6px;

}

.contact-card p{

    color:#6B7280;

    margin:0;

}
/* =====================================
   Google Map
===================================== */

.map-section{

    padding:100px 0;

    background:#FFFFFF;

}

.map-container{

    margin-top:60px;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.map-container iframe{

    width:100%;

    height:450px;

    border:none;

}
.feature-icon{

    width:58px;
    height:58px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:16px;

    background:#EAF2FF;

    margin-bottom:18px;

    transition:.35s ease;

}

.feature-icon svg{

    width:28px;
    height:28px;

    color:#2563EB;

}

.feature-box:hover .feature-icon{

    transform:rotate(-8deg) scale(1.08);

}
.process-icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:20px auto;

    background:#EAF2FF;
    border-radius:18px;

    transition:all .35s ease;
}

.process-icon img{
    width:34px;
    height:34px;
}

.process-card:hover .process-icon{
    transform:translateY(-5px) scale(1.08);
    background:#2563EB;
}

.process-card:hover .process-icon img{
    filter:brightness(0) invert(1);
}

.toast{

    position:fixed;

    top:25px;

    right:-400px;

    min-width:300px;

    padding:18px 22px;

    border-radius:12px;

    color:#fff;

    font-weight:600;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.35s;

    z-index:99999;

}

.toast.show{

    right:25px;

}

.toast.success{

    background:#16A34A;

}

.toast.error{

    background:#DC2626;

}

.toast.info{

    background:#2563EB;

}

.toast.warning{

    background:#D97706;

}