/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #1f2933;
  line-height: 1.6;
  background: #f1f5f9;
}



/* #38bdf8 → #1e40af (deep royal blue)

#0ea5e9 → #1e3a8a (slightly darker navy)

#0284c7 → #1e40af (matches first one, keeps harmony) */

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* BACKGROUND SHAPES */
.hero-bg-shapes span.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 10s ease-in-out infinite;
}

.shape1 {
  width: 200px;
  height: 200px;
  background: #1e40af !important;
  top: 10%;
  left: 5%;
}

.shape2 {
  width: 150px;
  height: 150px;
  background: #1e3a8a !important;
  bottom: 15%;
  right: 10%;
}

.shape3 {
  width: 100px;
  height: 100px;
  background: #06b6d4 !important;
  top: 50%;
  right: 30%;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

.hero-content {
  max-width: 50%;
  animation: slideInLeft 1s ease-out;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #e2e8f0;
  animation: fadeIn 1.5s ease forwards;
}

/* HERO IMAGE */
.hero-image {
  max-width: 50%;
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  transform: translateY(0);
  transition: transform 1s ease;
}

.hero-image img:hover {
  transform: translateY(-10px) scale(1.05);
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
  margin-right: 15px;
}

.btn-primary {
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  color: #fff;
  box-shadow: 0 10px 25px rgba(56,189,248,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(56,189,248,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #1e40af;
  border: 1px solid #1e40af;
  box-shadow: 0 10px 25px rgba(14,165,233,0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(14,165,233,0.5);
}

/* ANIMATIONS */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    padding: 60px 5%;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    margin-bottom: 30px;
  }
}


/* SECTIONS */
section {
  padding: 80px 10%;
  position: relative;
}

h2 {
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
}

h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #1e40af;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* INTRO */
/* INTRO SECTION */
.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

/* BACKGROUND SHAPES */
.intro-bg-shapes span.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 12s ease-in-out infinite;
}

.intro-bg-shapes .shape1 {
  width: 180px;
  height: 180px;
  background: #1e40af;
  top: 10%;
  left: 5%;
}

.intro-bg-shapes .shape2 {
  width: 120px;
  height: 120px;
  background: #1e3a8a;
  bottom: 10%;
  right: 10%;
}

/* CONTENT */
.intro-content {
  max-width: 50%;
  animation: fadeUp 1.2s ease-out;
}

.intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

.intro h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  display: block;
  margin-top: 10px;
  border-radius: 2px;
  animation: growLine 1s ease forwards;
}

.gradient-text {
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro p {
  max-width: 750px;
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  margin-top: 15px;
  animation: fadeUp 1.5s ease forwards;
}

/* IMAGE */
.intro-image {
  max-width: 45%;
  animation: slideInRight 1s ease-out;
}

.intro-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.6s ease;
}

.intro-image img:hover {
  transform: translateY(-8px) scale(1.03);
}

/* ANIMATIONS */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes growLine {
  0% { width: 0; }
  100% { width: 80px; }
}


/* FEATURES */
.features {
  background: #f8fafc;
  padding: 100px 10%;
  position: relative;
}

.features h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.features h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

/* FEATURE CARD */
.feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg,#1e40af,#1e3a8a);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
  opacity: 0.2;
}

.feature-card:hover::before {
  transform: rotate(45deg) scale(1);
}

.feature-card i {
  font-size: 42px;
  color: #1e40af;
  margin-bottom: 15px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover i {
  transform: rotate(20deg) scale(1.15) translateY(-3px);
  color: #1e3a8a;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ANIMATIONS */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* MODULES */
.modules {
  background: #f1f5f9;
  padding: 100px 10%;
  position: relative;
}

.modules h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.modules h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.modules p {
  text-align: center;
  font-size: 17px;
  color: #334155;
  margin-bottom: 50px;
}

/* MODULE GRID */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

/* MODULE CARD */
.module-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

.module-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg,#1e40af,#1e3a8a);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
  opacity: 0.15;
}

.module-card:hover::before {
  transform: rotate(45deg) scale(1);
}

.module-card i {
  font-size: 42px;
  color: #1e40af;
  margin-bottom: 15px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.module-card:hover i {
  transform: rotate(20deg) scale(1.15) translateY(-3px);
  color: #1e3a8a;
}

.module-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.module-card p {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.module-card a.btn-secondary {
  margin-top: 10px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.module-card a.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ANIMATIONS */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* BENEFITS */
.benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  padding: 100px 10%;
  background: #f0f9ff;
  position: relative;
}

.benefits-text {
  flex: 1;
  animation: fadeLeft 1s ease forwards;
  opacity: 0;
}

.benefits-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.benefits-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.benefits-text li {
  margin-bottom: 18px;
  font-size: 18px;
  position: relative;
  padding-left: 35px;
  color: #334155;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.benefits-text li:nth-child(1) { animation-delay: 0.1s; }
.benefits-text li:nth-child(2) { animation-delay: 0.2s; }
.benefits-text li:nth-child(3) { animation-delay: 0.3s; }
.benefits-text li:nth-child(4) { animation-delay: 0.4s; }
.benefits-text li:nth-child(5) { animation-delay: 0.5s; }

.benefits-text li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #1e3a8a;
  font-size: 20px;
  line-height: 1;
  transform: scale(0);
  animation: pop 0.5s ease forwards;
}

.benefits-text li:nth-child(1)::before { animation-delay: 0.1s; }
.benefits-text li:nth-child(2)::before { animation-delay: 0.2s; }
.benefits-text li:nth-child(3)::before { animation-delay: 0.3s; }
.benefits-text li:nth-child(4)::before { animation-delay: 0.4s; }
.benefits-text li:nth-child(5)::before { animation-delay: 0.5s; }

.benefits-image {
  flex: 1;
  text-align: center;
  animation: fadeRight 1s ease forwards;
  opacity: 0;
}

.benefits-image img {
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.6s ease;
}

.benefits-image img:hover {
  transform: translateY(-10px) scale(1.02);
}

/* ANIMATIONS */
@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(-40px);}
  100% { opacity: 1; transform: translateX(0);}
}

@keyframes fadeRight {
  0% { opacity: 0; transform: translateX(40px);}
  100% { opacity: 1; transform: translateX(0);}
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes pop {
  0% { transform: scale(0);}
  50% { transform: scale(1.4);}
  100% { transform: scale(1);}
}


/* INDUSTRIES */
.industries {
  padding: 100px 10%;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  text-align: center;
  position: relative;
}

.industries h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.industries p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #334155;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.industry-list span {
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.industry-list span:hover {
  transform: scale(1.15) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ENTRY ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* CONTACT FORM */
.contact {
  padding: 100px 10%;
  background: linear-gradient(135deg,#f0f9ff,#e0f2fe);
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(90deg,#1e40af,#1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.contact p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #334155;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Contact cards */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background: #fff;
  padding: 40px 30px;
  width: 250px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: #1f2933;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-card i {
  font-size: 40px;
  color: #1e40af;
  margin-bottom: 15px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.contact-card:hover i {
  transform: rotate(15deg) scale(1.1);
  color: #1e3a8a;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-card p {
  font-size: 16px;
  color: #334155;
}

/* ENTRY ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* ANIMATIONS */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


