/********** Template CSS **********/
:root {
  --primary: #081552;
  --secondary: #525368;
  --light: #e8f5e9;
  --dark: #081552;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.custom-dropdown {
  border: none;
  border-radius: 8px;
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.custom-dropdown {
  right: 0;
  left: auto;
  position: absolute;
}

.custom-dropdown .dropdown-item {
  font-size: 15px;
  padding: 5px 42px 5px 16px;
  transition: all 0.3s ease;
  color: #333;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #081552;
  color: #fff;
  padding-right: 20px;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .custom-dropdown {
    position: static !important;
    box-shadow: none;
    width: 100%;
  }

  .custom-dropdown .dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  .custom-dropdown .dropdown-item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/

#header-carousel {
  overflow: hidden;
  width: 100%;
}
.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  .carousel-img {
    height: 300px;
  }

  #header-carousel .carousel-item {
    min-height: 300px;
  }

  #header-carousel .carousel-item img {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .carousel-img {
    height: 550px;
    object-fit: cover;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
    margin-top: -155px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .abt {
    margin-top: -177px;
  }
}

/* page header */
.page-header {
  position: relative;
  background: url("../img/pg-banner.png") center/cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  object-fit: contain;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 21, 82, 0.6);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  font-size: 3rem !important;
}

.breadcrumb {
  background: rgba(4, 9, 30, 0.6);
  padding: 10px 0;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.breadcrumb-item a {
  color: #f8f9fa;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: #ffc107;
}

.breadcrumb-item.active {
  color: #ddd;
}

@media (max-width: 992px) {
  .page-header {
    min-height: 260px;
    padding: 40px 20px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    min-height: 200px;
    padding: 30px 15px;
  }
  .page-header h1 {
    font-size: 1.6rem;
  }
  .breadcrumb {
    font-size: 0.9rem;
  }
  .navbar-brand h2 {
    font-size: 10px;
  }
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 1;
  }
}

/*** Facts & Quote ***/
.facts {
  background: #081552;
}
.quote-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .quote-image {
    margin-bottom: 20px;
  }
}
/*** Service ***/
.pro-img {
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.pro-img img {
  width: 200px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Hover zoom effect */
.pro-img img:hover {
  transform: scale(1.05);
}

/* Card style */
.service-item {
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
  height: 477px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .pro-img {
    height: 200px;
    /* smaller for tablets */
  }
}

@media (max-width: 576px) {
  .pro-img {
    height: 180px;
    /* smaller for mobiles */
  }
}
/*** Project Portfolio ***/
#portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--dark);
  border-color: var(--dark);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #081552;
  transition: 0.5s;
}

.portfolio-inner::after {
  left: auto;
  right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
  width: 50%;
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
  transition-delay: 0.3s;
  opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
}

.team-item .team-text {
  position: absolute;
  width: calc(100% - 45px);
  left: -100%;
  bottom: 45px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  background: var(--light);
  color: var(--primary);
}

.team-item .team-social .btn:hover {
  background: var(--primary);
  color: var(--light);
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: 0.3s;
  opacity: 1;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 4px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: white;
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: var(--light);
  background: #040404;
}

.copyright a {
  color: #ffffff;
}

.copyright a:hover {
  color: var(--primary);
}

/* why choose */
.trust-section {
  color: #0b0808;
  padding: 60px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  /* responsive wrap */
}

/* Content Styling */
.trust-content {
  flex: 1 1 500px;
}

.trust-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #060505;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

/* Animated underline */
.trust-content h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: rgb(3, 3, 3);
  border-radius: 2px;
  animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
  from {
    width: 0;
  }

  to {
    width: 60px;
  }
}

.trust-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-content ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 28px;
}

.trust-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: rgb(9, 7, 7);
  /* gold checkmark */
  font-weight: bold;
}

.trust-content ul li span {
  font-weight: 600;
  color: rgb(10, 9, 9);
  /* highlight keywords */
}

/* Image Styling */
.trust-image {
  flex: 1 1 400px;
  text-align: center;
}

.trust-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #081552;
  margin-bottom: 50px;
}

/* Industries */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-box {
  background: #fff;
  border-radius: 14px;
  padding: 25px 15px;
  box-shadow: 0 4px 12px rgba(8, 21, 82, 0.12);
  text-align: center;
  transition: transform 0.3s;
}

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

.industry-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #081552;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.industry-box p {
  font-size: 15px;
  font-weight: 500;
  color: #081552;
  margin: 0;
}

/* Process */
.process-wrap {
  background: #f8f9fa;
  padding: 3rem 0;
}
.process-title {
  text-align: center;
  color: #081552;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.process-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.process-box:hover {
  transform: translateY(-4px);
}
.icon-wrap {
  width: 56px;
  height: 56px;
  background: #081552;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}
.process-content h5 {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
  color: #081552;
}
.process-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}
/* Quality */
.quality {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.quality p {
  margin-bottom: 18px;
  text-align: justify;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .process-box {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .industries {
    gap: 18px;
  }

  .industry-box {
    padding: 18px 10px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .trust-container {
    flex-direction: column;
    text-align: center;
  }

  .trust-content {
    order: 2;
  }

  .trust-image {
    order: 1;
    margin-bottom: 30px;
  }
}

.market-area {
  padding: 20px 15px 60px;
}

.market-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.market-box {
  width: 220px;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: #081552;
  font-weight: 600;
  background: #e8edfb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, background 0.3s;
  display: block;
}

.market-box:hover {
  transform: scale(1.05);
  background: #d6defa;
}

.market-icon {
  font-size: 40px;
  margin-bottom: 12px;
  color: #081552;
  display: block;
}

.market-title {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .market-box {
    width: 90%;
  }
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }
  .about-subtitle {
    font-size: 1.2rem;
  }
  .about-text {
    font-size: 0.95rem;
  }
}

/* clients logo */
.client-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ✅ Responsive scaling */
@media (max-width: 992px) {
  .client-logo {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 768px) {
  .client-logo {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .client-logo {
    width: 75px;
    height: 75px;
  }
}
.vendor-logo {
  width: 100%;
  max-width: 250px;
  height: 180px;
  border: 2px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.vendor-logo:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .vendor-logo {
    max-width: 200px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .vendor-logo {
    max-width: 160px;
    height: 120px;
  }
}

/* products pages content */
.heading-style {
  color: #081552;
  font-weight: 700;

  margin-bottom: 20px;
}

.main-products {
  max-width: 1277px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}

.main-products h2 {
  font-size: 26px;
  color: #081552;
  margin-bottom: 15px;
  font-weight: bold;
}

.main-products p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.main-products img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 500px;
  border-radius: 8px;
  background-color: #d6cfcf;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-products {
    padding: 15px;
  }

  .main-products p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .main-products p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .heading-style {
    font-size: 1.75rem;
  }

  .intro-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .heading-style {
    font-size: 1.5rem;
  }

  .intro-text {
    font-size: 0.9rem;
    text-align: left;
  }
}

/* Product card */
.product-card {
  background: #fff;
  border: 2px solid #081552;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Card content layout */
.product-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-content .text {
  flex: 1 1 60%;
  padding: 20px;
}

.product-content .image {
  flex: 1 1 40%;
  padding: 20px;
  text-align: center;
  object-fit: contain;
}

.product-img {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.product-img img {
  border: 2px solid #081552;
}

/* Specs list */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.product-specs li {
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.product-specs li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .product-content {
    flex-direction: column;
  }

  .product-content .image {
    order: -1;
  }
}

/* market area content */

.market-content {
  max-width: 1309px;
  margin: auto;
}

.market-content h3,
.market-content h5,
.market-content h6 {
  color: #081552;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.market-block {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-block:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 6px 12px;
}

.market-block p {
  color: #050404;
  font-size: 16px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .market-content h3,
  .market-content h5,
  .market-content h6 {
    font-size: 22px;
  }

  .market-block {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .market-content {
    padding: 20px 15px;
  }

  .market-content h3,
  .market-content h5,
  .market-content h6 {
    font-size: 20px;
  }
}

.video-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.video h2 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #222;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 16 / 9;
  /* keeps same height */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* privacy policy */
.privacy-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 30px;
  background: #f9fbfd;
  border-radius: 12px;
  border: 1px solid #e1e8f0;
  line-height: 1.8;
  color: #222;
}

/* Headings style (same for h2–h6) */
.privacy-section h2,
.privacy-section h3,
.privacy-section h4,
.privacy-section h5,
.privacy-section h6 {
  color: #081552;
  font-weight: 700;
  margin: 25px 0 15px;
  padding-bottom: 6px;
}

/* Paragraphs */
.privacy-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Lists */
.privacy-section ul {
  margin: 12px 0 20px;
  padding-left: 22px;
}

.privacy-section ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-section {
    padding: 25px 20px;
    margin: 20px;
  }
}
