
:root{
  --blue-dark:#0b2a4a;
  --blue:#0d4fa3;
  --red:#e53935;
}

/* FULL WIDTH BACKGROUND WRAPPER */
.vm-bg-wrapper{
  width: 100%;
  padding: 80px 0;
  position: relative;

background-image:
  linear-gradient(
    90deg,
    rgba(13,79,163,0.65),   /* blue */
    rgba(229,57,53,0.65)    /* red */
  ),
  url("images/bar.jpg");


  background-repeat: no-repeat;

  /* 🔑 WIDTH REDUCED */
  background-size: 90% auto;   /* ↓ less zoom horizontally */
  background-position: center center;
}

.vm-bg-wrapper{
  background-size: 95% auto;
}

@media (max-width: 1200px){
  .vm-bg-wrapper{
    background-size: 100% auto;
  }
}

@media (max-width: 768px){
  .vm-bg-wrapper{
    background-size: cover;        /* mobile safe */
    background-position: top center;
  }
}


/* INNER CONTAINER (CENTERED CONTENT) */
.vm-horizontal-section{
  max-width: 1300px;
  margin: auto;
  padding: 40px 30px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;

  /* subtle dot texture */
  background-image:
    radial-gradient(rgba(11,42,74,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 28px;
}

/* CARD */
.vm-horizontal-card{
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(11,42,74,.18);
  overflow: hidden;
}

/* TOP BORDER */
.vm-top-border{
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

/* CARD BODY */
.vm-card-body{
  display: flex;
  gap: 24px;
  padding: 36px 42px;
}

/* ICON */
.vm-icon{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.vision-icon{ background: var(--blue); }
.mission-icon{ background: var(--red); }

/* TEXT */
.vm-text h4{
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.vm-text p{
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
}

/* RESPONSIVE (KEEP LEFT–RIGHT) */
@media(max-width: 768px){
  .vm-card-body{
    padding: 28px;
  }
}

@media (max-width: 768px){

  /* Full background padding fix */
  .vm-bg-wrapper{
    padding: 60px 0;
  }

  /* Container becomes single column */
  .vm-horizontal-section{
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 0;
  }

  /* Card spacing */
  .vm-horizontal-card{
    border-radius: 16px;
  }

  /* Card body compact */
  .vm-card-body{
    padding: 22px 20px;
    gap: 16px;
  }

  /* Icon smaller */
  .vm-icon{
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  /* Text size optimized */
  .vm-text h4{
    font-size: 18px;
  }

  .vm-text p{
    font-size: 14.5px;
    line-height: 1.65;
  }
}
/* Simple hover animation */
.vm-horizontal-card{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-horizontal-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}
/* Base card */
.vm-horizontal-card{
  position: relative;
  overflow: hidden;
}

/* Gradient border layer */
.vm-horizontal-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 5px; /* border thickness */

  background: linear-gradient(
    90deg,
    #0d4fa3,
    #e53935,
    #0d4fa3
  );

  background-size: 200% 200%;
  opacity: 0;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  transition: opacity 0.3s ease;
}

/* Hover → show + animate */
.vm-horizontal-card:hover::before{
  opacity: 1;
  animation: borderRun 1.5s linear infinite;
}

/* Animation */
@keyframes borderRun{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}/* ===== CTA BUTTON ===== */
.cta-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #e63946, #0d6efd);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 10px 30px rgba(13,110,253,.35);
}

/* Arrow animation */
.cta-btn i{
  transition: transform .3s ease;
}

/* Hover effect */
.cta-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(230,57,70,.6);
}

.cta-btn:hover i{
  transform: translateX(6px);
}

/* ===== SHINY EFFECT ===== */
.cta-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.55),
    rgba(255,255,255,0)
  );
  transform: skewX(-25deg);
}

/* Trigger shine */
.cta-btn.shine::before{
  animation: shineMove 1s ease;
}

@keyframes shineMove{
  from{left:-75%;}
  to{left:130%;}
}

/* ===== INDUSTRY EXPERIENCE ===== */
.industry-card{
  text-align:center;
  transition:.35s ease;
}

.industry-img{
  width:110px;
  height:110px;
  margin:0 auto 12px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  animation: float 4s ease-in-out infinite;
  transition:.35s;
}

.industry-img img{
  width:55%;
  height:auto;
}

.industry-card p{
  font-weight:600;
  color:#002855;
  font-size:15px;
}

/* Hover effect (desktop) */
.industry-card:hover .industry-img{
  transform:translateY(-8px) scale(1.05);
  box-shadow:0 18px 40px rgba(0,40,85,.25);
}

/* Floating animation */
@keyframes float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
  100%{ transform:translateY(0); }
}

/* Mobile optimization */
@media(max-width:576px){
  .industry-img{
    width:90px;
    height:90px;
  }
  .industry-card p{
    font-size:14px;
  }
}
.industry-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}







/* Founder Section */
.about-main {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}

.about-main::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0, 40, 85, 0.03);
  border-radius: 50%;
}

.about-main::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: rgba(230, 57, 70, 0.03);
  border-radius: 50%;
}
/* Founder Section - Updated */
.founder-image-container {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.founder-image-wrapper {
  position: relative;
  width: 380px;  /* Increased from 320px */
  height: 380px; /* Increased from 320px */
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  padding: 10px; /* Increased padding for larger border effect */
  box-shadow: 
    0 20px 60px rgba(0, 40, 85, 0.25),
    0 0 0 20px rgba(230, 57, 70, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
  overflow: hidden; /* Ensure content stays within circle */
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the entire circle */
  object-position: center; /* Center the image */
  border-radius: 50%;
  border: 8px solid var(--white); /* Thicker border */
  transition: var(--transition);
  filter: brightness(1.05) contrast(1.05); /* Slight enhancement */
}

.founder-image:hover {
  transform: scale(1.08);
  box-shadow: 
    0 0 40px rgba(230, 57, 70, 0.3),
    inset 0 0 40px rgba(255, 255, 255, 0.3);
}

.founder-image-container h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.8rem; /* Increased from 1.5rem */
  letter-spacing: -0.5px;
}

.founder-image-container p {
  color: var(--text-dark);
  font-size: 1.1rem; /* Slightly larger */
  font-weight: 500;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 5px 15px;
  border-radius: 25px;
  display: inline-block;
  border: 1px solid rgba(0, 40, 85, 0.1);
}

/* Add decorative elements around the image */
.founder-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(45deg, transparent, rgba(0, 40, 85, 0.1), transparent);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add professional badge */
.founder-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(-5deg);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
  z-index: 2;
  border: 2px solid white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .founder-image-wrapper {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  .founder-image-wrapper {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .founder-image-wrapper {
    width: 280px;
    height: 280px;
  }
  
  .founder-image-container h4 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .founder-image-wrapper {
    width: 240px;
    height: 240px;
  }
  
  .founder-image-container h4 {
    font-size: 1.4rem;
  }
  
  .founder-image-container p {
    font-size: 1rem;
  }
  
  .founder-badge {
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

.section-title {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2.5px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-content {
  animation: fadeInRight 1s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.about-content .lead {
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 400;
}

.highlight-text {
  color: var(--secondary-color);
  font-weight: 700;
}

/* History Section */
.history-section {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.timeline-content {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--secondary-color);
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 40, 85, 0.2);
}

.timeline-content h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
}

.timeline-content ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-dark);
}

.timeline-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}
/* SIMPLIFIED MOBILE TIMELINE */
@media (max-width: 768px) {
  .history-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .history-timeline::before {
    display: none;
  }
  
  .timeline-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin: 0;
  }
  
  .timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .timeline-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-height: auto;
  }
  
  .timeline-content h5 {
    margin-top: 0;
  }
}
/* Our Values */
.values-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.02)"/></svg>');
  background-size: cover;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-color);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: rgba(230, 57, 70, 0.2);
  transform: rotateY(180deg);
}

.value-icon i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.value-card h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Professional Legacy */
.legacy-section {
  background: var(--gray-light);
  padding: 100px 0;
  position: relative;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.legacy-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 5px solid transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.legacy-card:nth-child(1) { 
  border-top-color: var(--primary-color);
  animation-delay: 0.1s; 
}
.legacy-card:nth-child(2) { 
  border-top-color: var(--secondary-color);
  animation-delay: 0.2s; 
}
.legacy-card:nth-child(3) { 
  border-top-color: #4CAF50;
  animation-delay: 0.3s; 
}
.legacy-card:nth-child(4) { 
  border-top-color: #FF9800;
  animation-delay: 0.4s; 
}

.legacy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.legacy-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legacy-card h5 i {
  color: var(--secondary-color);
}

.legacy-card p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Statistics */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  from { transform: translate(0, 0); }
  to { transform: translate(50px, 50px); }
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }
.stat-box:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '+';
  position: absolute;
  top: -10px;
  right: -15px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h3 {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
 background: linear-gradient(90deg, #dc3545, #0d6efd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-section p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  color: var(--white);
  border: none;
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 40, 85, 0.2);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 40, 85, 0.3);
  transform: translateY(20px);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 40, 85, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .founder-image-wrapper {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 992px) {
  .page-banner {
    height: 350px;
  }
  
  .banner-content h1 {
    font-size: 2.8rem;
  }
  
  .about-main,
  .history-section,
  .values-section,
  .legacy-section {
    padding: 80px 0;
  }
  
  .history-timeline::before {
    left: 30px;
  }
  
  .timeline-content {
    margin-left: 60px;
  }
  
  .timeline-year {
    left: 0;
    transform: translateX(-50%);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  
  .banner-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .founder-image-wrapper {
    width: 240px;
    height: 240px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .value-card,
  .legacy-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .page-banner {
    height: 200px;
  }
  
  .banner-content h1 {
    font-size: 1.8rem;
  }
  
  .about-main,
  .history-section,
  .values-section,
  .legacy-section {
    padding: 60px 0;
  }
  
  .founder-image-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .timeline-content {
    padding: 25px 20px;
    margin-left: 40px;
  }
  
  .stat-box {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
/* ===== FIX TIMELINE DATE CUTTING ON MOBILE ===== */
@media (max-width: 768px) {

  .timeline-item {
    overflow: visible; /* allow badge to show fully */
  }

  .timeline-year {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;

    display: inline-block;
    margin-bottom: 15px;

    font-size: 1rem;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgba(0, 40, 85, 0.25);
  }

  .timeline-content {
    margin-left: 0 !important;
  }
}


/* ===== HOVER MODAL OVERLAY ===== */
.hover-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  opacity:0;
  pointer-events:none;
  transition:.35s ease;
  z-index:9998;
}

/* Modal image */
.hover-overlay .hover-img{
  position:absolute;
  top:50%;
  left:50%;
  width:340px;
  height:340px;
  border-radius:22px;
  overflow:hidden;
  transform:translate(-50%,-50%) scale(.85);
  box-shadow:0 30px 70px rgba(0,0,0,.45);
  transition:.35s ease;
}

.hover-overlay .hover-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* SHOW ON HOVER */
.hover-modal:hover ~ .hover-overlay,
.hover-modal:hover + .hover-overlay{
  opacity:1;
  pointer-events:auto;
}

.hover-modal:hover ~ .hover-overlay .hover-img,
.hover-modal:hover + .hover-overlay .hover-img{
  transform:translate(-50%,-50%) scale(1);
}

/* Desktop only */
@media (max-width: 991px){
  .hover-overlay{
    display:none;
  }
}
/* ===== INDUSTRY CARDS ===== */
.industry-card{
  text-align:center;
}

.industry-img{
  width:110px;
  height:110px;
  margin:0 auto 12px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  cursor:pointer;
  transition:.35s;
}

.industry-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.industry-img:hover{
  transform:translateY(-8px) scale(1.05);
}

.industry-card p{
  font-weight:600;
  color:#002855;
  font-size:15px;
}

/* ===== HOVER MODAL EFFECT ===== */
.hover-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter: blur(3px);
  opacity:0;
  pointer-events:none;
  transition:.35s ease;
  z-index:9999;
}

.hover-overlay .hover-img{
  position:absolute;
  top:50%;
  left:50%;
  width:340px;
  height:340px;
  border-radius:22px;
  overflow:hidden;
  transform:translate(-50%,-50%) scale(.85);
  box-shadow:0 30px 70px rgba(0,0,0,.5);
  transition:.35s ease;
}

.hover-overlay .hover-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Show overlay when hovering any industry image */
.hover-modal:hover ~ .hover-overlay,
.hover-overlay:hover{
  opacity:1;
  pointer-events:auto;
}

.hover-overlay:hover .hover-img,
.hover-modal:hover ~ .hover-overlay .hover-img{
  transform:translate(-50%,-50%) scale(1);
}

/* Disable hover modal on mobile */
@media(max-width:991px){
  .hover-overlay{
    display:none;
  }
}


/* ================= Blog BAR ================= */
.blog-input,
.blog-select{
  border-radius:14px;
  border:1px solid #e6eaf0;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,40,85,.08);
  transition:.35s ease;
}
.blog-input::placeholder{ color:#9aa4b2; }
.blog-input:focus,
.blog-select:focus{
  border-color:#dc3545;
  box-shadow:0 0 0 .2rem rgba(220,53,69,.18);
}
.blog-select{
  background-image:
    linear-gradient(45deg, transparent 50%, #002855 50%),
    linear-gradient(135deg, #002855 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% + 2px),
    calc(100% - 16px) calc(50% + 2px);
  background-size:6px 6px;
  background-repeat:no-repeat;
  padding-right:48px;
}

/* ================= FANCY CARD ================= */
.fancy-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  transition:.45s ease;
  border:1px solid #e6eaf0;
  height:100%;
}
.fancy-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,40,85,.18);
}

/* Image */
.fancy-img{
  position:relative;
  overflow:hidden;
}
.fancy-img img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.8s ease;
}
.fancy-card:hover .fancy-img img{
  transform:scale(1.12);
}

/* Badge */
.fancy-badge{
  position:absolute;
  bottom:15px;
  left:15px;
  background:linear-gradient(135deg,#dc3545,#b02a37);
  color:#fff;
  padding:5px 14px;
  font-size:12px;
  border-radius:30px;
  box-shadow:0 6px 18px rgba(220,53,69,.45);
  letter-spacing:.4px;
}

/* Body */
.fancy-body{
  padding:22px;
}
.fancy-body h5{
  font-size:1.15rem;
  font-weight:600;
  color:#002855;
  margin-bottom:10px;
}
.fancy-body p{
  font-size:.92rem;
  line-height:1.6;
  color:#6c757d;
  margin-bottom:18px;
}

/* Button */
.fancy-btn{
  display:inline-block;
  padding:8px 18px;
  font-size:.85rem;
  color:#fff;
  background:linear-gradient(135deg,#dc3545,#b02a37);
  border-radius:30px;
  text-decoration:none;
  position:relative;
  overflow:hidden;
}
.fancy-btn::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
  transform:translateX(-100%);
}
.fancy-card:hover .fancy-btn::after{
  animation:shine 1.2s ease;
}
@keyframes shine{100%{transform:translateX(100%);}}

/* Footer */
.fancy-footer{
  padding:14px 22px;
  font-size:.82rem;
  color:#6c757d;
  border-top:1px solid #f1f3f5;
}

/* CTA */
.cta-section{
  background:linear-gradient(135deg,#002855,#003d7a);
}

/* Responsive */
@media(max-width:768px){
  .banner-title{ font-size:32px; }
  .fancy-img img{ height:190px; }
}
/* ================= MULTI SELECT ================= */
.multi-select{
  position: relative;
}

.select-box{
  background:#fff;
  border:1px solid #e6eaf0;
  border-radius:14px;
  padding:14px 18px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 10px 30px rgba(0,40,85,.08);
  transition:.3s ease;
}

.select-box:hover{
  border-color:#dc3545;
}

.checkbox-list{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#fff;
  border-radius:14px;
  box-shadow:0 20px 45px rgba(0,40,85,.18);
  padding:12px;
  margin-top:6px;
  display:none;
  z-index:99;
}

.checkbox-list label{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  font-size:.95rem;
  cursor:pointer;
  border-radius:8px;
}

.checkbox-list label:hover{
  background:#f8f9fa;
}

.checkbox-list input{
  accent-color:#dc3545;
}

/* ================= SEARCH BAR HOVER ================= */
.hover-field{
  border:1px solid #e6eaf0;
  border-radius:14px;
  padding:14px 18px;
  box-shadow:0 10px 30px rgba(0,40,85,.08);
  transition:all .35s ease;
  background:#fff;
}

/* Hover effect (same as category box) */
.hover-field:hover{
  border-color:#dc3545;
}