/* ================= ABOUT PAGE STYLES ================= */

/* Import Sora font if not already imported */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&display=swap');

* {
  font-family: 'Sora', sans-serif;
}

body {
  background: #000000;
  color: #ffffff;
}

/* ================= ABOUT HERO SECTION ================= */

.about-hero-section {
  height: 70vh;
  min-height: 500px;
  background:
    linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
    url('/images/aboutbg.jfif')
    center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  border-bottom: 4px solid #2171ff;
}

.hero-content-about h1 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: #2471ff;
  margin-bottom: 24px;
  letter-spacing: 0.6px;
}

.hero-description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* ================= SECTION COMMON STYLES ================= */

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2078ff;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 0.6px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto 50px;
}

.section-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* ================= FOCUS SECTION ================= */

.focus-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #000000,
    #0e2041
  );
  background-attachment: fixed;
  border-bottom: 4px solid #2171ff;
}

.focus-image-wrapper img,
.team-image-wrapper img,
.roots-image-wrapper img,
.careers-image-wrapper img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.focus-image-wrapper img:hover,
.team-image-wrapper img:hover,
.roots-image-wrapper img:hover,
.careers-image-wrapper img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(32, 120, 255, 0.3);
}

/* ================= TEAM INTRO SECTION ================= */

.team-intro-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #0e2041,
    #000000
  );
  background-attachment: fixed;
  border-bottom: 4px solid #2171ff;
}

/* ================= ROOTS SECTION ================= */

.roots-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #000000,
    #0e2041
  );
  background-attachment: fixed;
  border-bottom: 4px solid #2171ff;
}

/* ================= TEAM MEMBERS SECTION ================= */

.team-members-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #0e2041,
    #1a2f5c
  );
  background-attachment: fixed;
  border-bottom: 4px solid #2171ff;
}

/* Team Cards */
.team-card {
  height: 100%;
  padding: 40px 25px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(45, 90, 190, 0.35),
    rgba(65, 120, 235, 0.25)
  );
  box-shadow:
    0 28px 80px rgba(30, 70, 160, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Avatar Circle */
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;

  /* Glassmorphism background */
  background: linear-gradient(
    145deg,
    rgba(20, 50, 120, 0.25),
    rgba(10, 30, 90, 0.15)
  );

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 4px 10px rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  overflow: hidden; /* 🔑 important for images */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image styling */
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* no distortion */
  border-radius: 50%;
}

/* Hover effect */
.team-card:hover .team-avatar {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    inset 0 6px 14px rgba(255, 255, 255, 0.2);
}

.team-avatar i {
  font-size: 36px;
  color: #2078ff;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  border-color: rgba(120, 180, 255, 0.5);
}

.team-card:hover .team-avatar i {
  color: #ffffff;
}

/* Team Info */
.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.4px;
}

.team-role {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
  line-height: 1.5;
}

.team-detail {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-bottom: 0;
}

/* ================= CAREERS SECTION ================= */

.careers-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(10,20,40,0.95),
    rgba(20,40,60,0.85)
  ),
  url('https://images.unsplash.com/photo-1522071820081-009f0129c71c')
  center/cover no-repeat;
  background-attachment: fixed;
}

/* ================= INVESTORS SECTION ================= */

.investors-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #000000,
    #0e2041
  );
  background-attachment: fixed;
}

.investor-card {
  height: 100%;
  padding: 30px 20px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.investor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(32, 120, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(45, 90, 190, 0.25),
    rgba(65, 120, 235, 0.15)
  );
}

.investor-placeholder {
  text-align: center;
}

.investor-placeholder span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.6px;
}

/* ================= CORE (STORY) SECTION ================= */

.core-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #0e2041,
    #000000
  );
  background-attachment: fixed;
}

/* Core Cards */
.core-card {
  height: 100%;
  padding: 50px 35px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.core-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(45, 90, 190, 0.35),
    rgba(65, 120, 235, 0.25)
  );
  box-shadow:
    0 28px 80px rgba(30, 70, 160, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.core-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  background: linear-gradient(
    145deg,
    rgba(20, 50, 120, 0.25),
    rgba(10, 30, 90, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 4px 10px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.core-icon i {
  font-size: 36px;
  color: #2078ff;
  transition: all 0.35s ease;
}

.core-card:hover .core-icon {
  transform: scale(1.15);
}

.core-card:hover .core-icon i {
  color: #ffffff;
}

.core-title {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Vision & Mission Cards */
.vision-mission-card {
  height: 100%;
  padding: 60px 45px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
  text-align: center;
}

.vision-mission-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(45, 90, 190, 0.35),
    rgba(65, 120, 235, 0.25)
  );
  box-shadow:
    0 28px 80px rgba(30, 70, 160, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.vm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  background: linear-gradient(
    145deg,
    rgba(20, 50, 120, 0.25),
    rgba(10, 30, 90, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 0 4px 10px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.vm-icon i {
  font-size: 32px;
  color: #2078ff;
  transition: all 0.35s ease;
}

.vision-mission-card:hover .vm-icon {
  transform: scale(1.1);
}

.vision-mission-card:hover .vm-icon i {
  color: #ffffff;
}

.vm-title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.vm-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* ================= CONTACT CTA SECTION ================= */

.contact-cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #000000,
    #0e2041
  );
  background-attachment: fixed;
}

.cta-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: 0.6px;
}

.cta-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.cta-email {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.cta-email a {
  color: #2078ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-email a:hover {
  color: #4a9aff;
  text-decoration: underline;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 42px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2078ff, #0e2041);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(32, 120, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(32, 120, 255, 0.5);
  color: #ffffff;
}

/* ================= FOOTER ================= */

.footer-section {
  padding: 80px 0 40px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #2078ff;
  padding-left: 5px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2078ff;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #2078ff;
}

/* ================= RESPONSIVE STYLES ================= */

@media (max-width: 991px) {
  .about-hero-section {
    height: auto;
    min-height: 400px;
    padding: 120px 0 80px;
  }

  .hero-content-about h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 36px;
  }

  .focus-section,
  .team-intro-section,
  .roots-section,
  .team-members-section,
  .careers-section,
  .investors-section,
  .core-section,
  .contact-cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-content-about h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .team-card,
  .core-card {
    padding: 35px 25px;
  }

  .vision-mission-card {
    padding: 45px 30px;
  }

  .cta-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .hero-content-about h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-text {
    font-size: 15px;
  }

  .team-avatar,
  .core-icon {
    width: 75px;
    height: 75px;
  }

  .team-avatar i,
  .core-icon i {
    font-size: 30px;
  }

  .team-name {
    font-size: 16px;
  }

  .team-role {
    font-size: 13px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}



/* ================= GUIDED DEMO FORM SECTION ================= */

.guided-demo-form-section {
  background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
  padding: 100px 0;
  position: relative;
}

.guided-demo-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2078ff, #0e2041, #2078ff);
}

/* ================= LEFT INTRO CONTENT ================= */

.demo-form-intro {
  padding-right: 30px;
}

.demo-form-intro h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0e2041;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.intro-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-points p {
  font-size: 16px;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}

.intro-points p.highlight {
  font-weight: 600;
  color: #0e2041;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid rgba(32, 120, 255, 0.3);
}

/* ================= RIGHT FORM ================= */

.guided-contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 45px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(32, 120, 255, 0.1);
}

/* Form Labels */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.required {
  color: #e74c3c;
  font-weight: 700;
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  color: #2c3e50;
  background: #f8f9fa;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  background: #ffffff;
  border-color: #2078ff;
  box-shadow: 0 0 0 4px rgba(32, 120, 255, 0.1);
}

.form-input::placeholder {
  color: #95a5a6;
  font-weight: 300;
}

/* Field Helper Text */
.field-helper {
  display: block;
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 5px;
  font-weight: 300;
}

/* Textarea */
textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: 'Sora', sans-serif;
}

/* ================= CUSTOM CHECKBOX ================= */

.form-check-wrapper {
  margin: 25px 0;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 22px;
  width: 22px;
  background: #f8f9fa;
  border: 2px solid #cbd5e0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover .checkmark {
  border-color: #2078ff;
  background: rgba(32, 120, 255, 0.05);
}

.custom-checkbox input:checked ~ .checkmark {
  background: #2078ff;
  border-color: #2078ff;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-label {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
  font-weight: 400;
}

/* ================= LEGAL NOTICE ================= */

.legal-notice {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #2078ff;
}

.legal-notice p {
  font-size: 12px;
  line-height: 1.7;
  color: #5a6c7d;
  margin-bottom: 12px;
}

.legal-notice a {
  color: #2078ff;
  text-decoration: none;
  font-weight: 500;
}

.legal-notice a:hover {
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links a {
  font-size: 13px;
  color: #2078ff;
  text-decoration: underline;
  font-weight: 500;
}

/* ================= SUBMIT BUTTON ================= */

.submit-btn-demo {
  width: 100%;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #ffffff;
  background: linear-gradient(135deg, #2078ff, #0e2041);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(32, 120, 255, 0.3);
}

.submit-btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(32, 120, 255, 0.5);
  background: linear-gradient(135deg, #1a5fd6, #0a1a2e);
}

.submit-btn-demo:active {
  transform: translateY(-1px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .demo-form-intro {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .demo-form-intro h2 {
    font-size: 32px;
  }

  .guided-contact-form {
    padding: 40px 30px;
  }
}

@media (max-width: 575px) {
  .guided-demo-form-section {
    padding: 60px 0;
  }

  .demo-form-intro h2 {
    font-size: 26px;
  }

  .intro-points p {
    font-size: 15px;
  }

  .guided-contact-form {
    padding: 30px 20px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .submit-btn-demo {
    padding: 14px 30px;
    font-size: 15px;
  }
}




/* ================= CAROUSEL SECTION ================= */
.carousel-section-2 {
  background: white;
  padding-bottom: 100px !important;


}

.carousel-title-2 {
  font-size: 32px;
  font-weight: 600;
  color: #3370dc;
  margin-bottom: 30px;
  text-align: center;
}

/* Swiper slide item */
.carousel-item-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(14,32,65,0.25);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.carousel-item-2 img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.carousel-item-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

/* Pagination dots */
.swiper-pagination {
  text-align: center;

}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #0e2041;
}

/* Responsive */
@media(max-width:1200px){
  .carousel-item-2 img { height: 100px; }
}
@media(max-width:991px){
  .carousel-item-2 img { height: 90px; }
}
@media(max-width:768px){
  .carousel-item-2 img { height: 80px; }
}
@media(max-width:575px){
  .carousel-item-2 img { height: 70px; }
}


.team-social {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(10, 30, 90, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #0a66c2; /* LinkedIn blue */

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.35),
    inset 0 2px 6px rgba(255, 255, 255, 0.15);

  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #0a66c2;
  color: #fff;
  transform: translateY(-3px);
}



.video-box {
  padding: 20px;
  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(20, 50, 120, 0.22),
    rgba(10, 30, 90, 0.15)
  );

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  height: 100%;
}

.video-title {
  text-align: center;
  margin-bottom: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.video-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover effect */
.video-box:hover {
  transform: translateY(-6px);
  transition: all 0.35s ease;
}



.video-coming-soon {
  width: 100%;
  height: 280px;
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(
    145deg,
    rgba(20, 50, 120, 0.25),
    rgba(10, 30, 90, 0.15)
  );

  /* border: 1px dashed rgba(255, 255, 255, 0.35); */
  color: #ffffffcc;
  font-size: 1rem;
  font-weight: 500;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-coming-soon i {
  font-size: 2rem;
  opacity: 0.8;
}


@media (max-width: 768px) {
  .pic1 ,.pic2 {
    display: none;
  }
}