/* Hero Video Start */

.hero-video {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background: white;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-video video {
  height: 80vh;
  }
}

@media (max-width: 1068px) {
  .hero-video video {
  height: 80vh;
  }
}

/* Hero Video End */

/* About Start */

/* ABOUT VIRAT TWO-COLUMN SECTION */
.about-virat-two-col {
  padding: 80px 20px;
  background-color: #f9fafb;
}

.about-virat-two-col .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT COLUMN */
.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h2 {
  font-size: 35px;
  color: #173054;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* MINI HIGHLIGHTS */
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.about-highlights li {
  font-size: 16px;
  color: #173054;
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.about-highlights i {
  color: #00a896;
  margin-right: 10px;
  font-size: 18px;
}

/* CTA BUTTON */
.about-left .cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  color: white;
  background: #171994;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.about-left .cta-btn:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
}

/* COLLAGE (RIGHT COLUMN) */
.about-right {
  flex: 1;
  min-width: 300px;
}

.collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.collage img {
  width: 100%;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.collage img:hover {
  filter: grayscale(0%);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-virat-two-col .container {
    flex-direction: column;
  }

  .collage {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .about-left h2 {
    font-size: 26px;
  }

  .about-left p {
    font-size: 15px;
  }

  .about-highlights li {
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* About End */

/* Services Start */

.departments {
  background: linear-gradient(135deg, #3a868f, #171994);
  padding-bottom: 40px;
}

.departments-heading {
  /* background: linear-gradient(135deg, #3a868f, #171994); */
  text-align: center;
  padding: 40px 20px;
  color: white;
}

.departments-heading h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 5px;
  padding: 10px 20px;
  background: transparent;
}

.department-card {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border 0.4s ease;
}

.department-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(70%);
}

.department-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: transform 0.5s ease;
  z-index: 1;
}

.department-card:hover img {
  transform: scale(1.1);
}

.department-card:hover {
  border: 3px solid whitesmoke;
}

.department-card .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: white;
}

.department-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.dept-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  background: #171994;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}
.dept-btn:hover {
  background: #3a868f;
  transform: translateY(-3px);
}
/* Services End */

/* Steps Start */

.virat-approach {
  position: relative;
  padding: 50px 0;
  background: #f7fafc;
}

.approach-container {
  width: 90%;
  margin: auto;
  text-align: center;
}

.approach-title {
  font-size: 35px;
  font-weight: 800;
  color: #173054;
  margin-bottom: 60px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.approach-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 5%;
  width: 90%;
  height: 2px;
  border-top: 2px dashed #00a896;
  z-index: 0;
}

.approach-steps::after {
  content: "➜";
  position: absolute;
  top: 42px;
  right: 5%;
  font-size: 26px;
  color: #00a896;
  font-weight: bold;
}

.step {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.step:hover {
  border-color: #00a896;
  box-shadow: 0 12px 28px rgba(0,0,0,0.09);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00a896;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0,168,150,0.25);
}

.step h3 {
  font-size: 25px;
  font-weight: 700;
  color: #173054;
  margin-bottom: 10px;
}

.step p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.approach-line {
  margin: 40px 0 25px;
  font-size: 20px;
  font-weight: 600;
  color: #173054;
}

.approach-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  color: white;
  background: #171994;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.approach-btn:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
}

@media (max-width: 900px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-steps::before,
  .approach-steps::after {
    display: none;
  }
}

/* Steps End */

/* USP Start */

.why-choose-virat {
  padding: 40px 0;
  background: linear-gradient(135deg, #173054, #00a896);
}

.why-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-text h2 {
  font-size: 35px;
  font-weight: 800;
  color: seashell;
  margin-bottom: 25px;
  text-decoration: underline;
}

.why-points {
  list-style: none;
  padding: 0;
}

.why-points li {
  font-size: 17px;
  color: whitesmoke;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.why-points li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: white;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-image img {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .why-points li {
    padding-left: 0;
  }

  .why-points li::before {
    left: auto;
    margin-right: 10px;
  }
}

/* USP End */

/* Founder Start */

.founder-message {
  padding: 40px 0;
  padding-bottom: 1px;
  background: #ffffff;
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.founder-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.founder-text h2 {
  font-size: 35px;
  font-weight: 800;
  color: #173054;
  margin-bottom: 20px;
}

.founder-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.founder-cta {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  color: white;
  background: #171994;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.founder-cta:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
}

/* Responsive */
@media (max-width: 992px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-photo img {
    max-width: 80%;
    margin-bottom: 30px;
  }
}

/* Founder End */