/* Root Variables */
:root {
  --primary-red: #cc0000;
  --secondary-navy: #000040;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "arial", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--secondary-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  color: #cc0000;
}
.cta-section a.btn:first-child{
margin-right: 10px;
}
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Helpers */
.text-red {
  color: var(--primary-red);
}
.text-navy {
  color: var(--secondary-navy);
}
.text-white {
  color: white;
}
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-3xl {
  max-width: 48rem;
}
.w-full {
  width: 100%;
}
.color-black {
  color: black;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-red {
  background-color: var(--primary-red);
  color: white;
}

.btn-red:hover {
  background-color: #a30000;
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--secondary-navy);
  color: white;
}

.btn-navy:hover {
  background-color: #000060;
  transform: translateY(-2px);
}

.btn-navy-outline {
  border-color: var(--secondary-navy);
  color: var(--secondary-navy);
}

.btn-navy-outline:hover {
  background-color: var(--secondary-navy);
  color: white;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Header & Nav */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.video-editing-service h4 {
      color: #cc0000;
    text-align: center;
    margin-bottom: 10px;
    font-size: 19px;
}

/* added dropdown styles for navigation */
.nav-links li {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
  border-top: 3px solid var(--primary-red);
  padding: 1rem 0;
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  padding: 0.6rem 1.5rem;
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.dropdown a:hover {
  background-color: var(--bg-light);
  color: var(--primary-red);
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links .chevron {
  width: 14px;
  height: 14px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary-navy);
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 64, 0.7), rgba(0, 0, 64, 0.7)), url("img/banner-video-production.jpg")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-navy {
  background-color: var(--secondary-navy);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.page-header {
  padding: 6rem 0 4rem;
  background-color: var(--bg-light);
  text-align: center;
   background: linear-gradient(rgba(206, 52, 6, 0.7), rgba(177, 39, 11, 0.7)), url("img/header-bg-pattern.png")
    center / cover no-repeat;
}
.event-hero {
  background-image: url(/assets/img/Event-Video-Production-Company.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.facility-hero {
    background-image: url(/assets/img/Facility-Video-Production-Company.webp);
background-repeat: no-repeat;
  background-size: cover;
}
.green-hero {
      background-image: url(/assets/img/Green-Screen-Studio-For-Video-Editing.webp);
      background-repeat: no-repeat;
  background-size: cover;
}
.production-hero {
        background-image: url(/assets/img/Video-Production-Services.webp);
        background-repeat: no-repeat;
  background-size: cover;

}
.testimonial-hero {
   background-image: url(/assets/img/Testimonial-Video.webp);
   background-repeat: no-repeat;
  background-size: cover;
}
.training-hero {
   background-image: url(/assets/img/Training-Video.webp);
   background-repeat: no-repeat;
  background-size: cover;
}
.commercial-hero {
    background-image: url(/assets/img/TV-Commercial-Video.webp);
   background-repeat: no-repeat;
  background-size: cover;
}
.editing-hero {
   background-image: url(/assets/img/Video-Editing-Company.webp);
   background-repeat: no-repeat;
  background-size: cover;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.btn-navy {
  background: #000040;
  color: #fff;
}
.btn-red-outline {
  border: 1px solid #cc0000;
}
.process-steps-facility {
  grid-template-columns: repeat(4, 1fr) !important;
}

.subtitle {
  font-size: 1.25rem;
  color:white;
  margin-bottom: 2rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Cards & Components */
.image-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.card ul {
  margin-top: 1rem;
}
.card ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card ul li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.check-list li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-red);
  color: white;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-weight: bold;
}

/* Stats */
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}
/* Comparison Table */
.comparison-wrapper {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background-color: var(--secondary-navy);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td.feature-name {
  font-weight: 700;
  color: var(--secondary-navy);
  background-color: var(--bg-light);
  width: 20%;
}
/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.process-step {
  position: relative;
  padding-top: 2rem;
}

.step-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(204, 0, 0, 0.529);
  position: absolute;
  top: -25px;
  left: 0;
  line-height: 1;
}

.process-step h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  position: relative;
}

.process-step p {
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}
.sub-para {
  color: #cc0000;
  font-size: 24px;
  font-weight: 600;
  text-align: center
}

/* Cards & Components */
.image-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

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

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-item i {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.choice-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-red);
}

.choice-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.list-check {
  list-style: none;
}
.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.check-list li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}
.benefit-item h4 {
  color: #cc0000;
}
.benefit-item i {
  width: 40px;
  height: 40px;
  color: var(--primary-red);
  flex-shrink: 0;
}
.service-btn-flex {
  display: flex;
  align-items: center;
}

.benefit-mini {
  padding: 1.5rem;
}
.benefit-mini i {
  width: 32px;
  height: 32px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.process-steps p {
  color: black;
}
.process-step p{
  color: #ffffff;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-red);
  color: white;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-weight: bold;
}

.industry-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.p-6 {
  padding: 1.5rem;
}
.text-sm {
  font-size: 0.875rem;
}

/* Stats */
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--secondary-navy);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-item.active i {
  transform: rotate(180deg);
}

/* Industry Grid */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.industry-grid span {
  padding: 0.5rem 1.5rem;
  background: white;
  color: var(--secondary-navy);
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.map-wrapper {
  height: 400px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.pin {
  width: 20px;
  height: 20px;
  background: var(--primary-red);
  border-radius: 50%;
  margin: 0 auto 10px;
  box-shadow: 0 0 0 10px rgba(204, 0, 0, 0.2);
  animation: pulse 2s infinite;
}
.map-label {
  background: white;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--secondary-navy);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(204, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
  }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}
.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}
.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}
.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.show {
  opacity: 1;
  transform: translate(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Footer */
.footer {
  background-color: var(--secondary-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}
.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer-logo {
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul a:hover {
  color: var(--primary-red);
}
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-cta {
    display: none;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  .nav-links.active {
    display: flex;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.policy-content h2 {
    font-size: 20px;
}
.privacy-hero {
    padding-top: 50px;
}



.why-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 80px 20px
}

.why-section .heading {
    text-align: center;
    margin-bottom: 50px
}

.why-section .tag {
    color: #c62828;
    font-weight: 700
}

.why-section .heading h2 {
    font-size: 42px;
    color: #0a1f44;
    margin: 12px 0
}

.why-section .line {
    width: 80px;
    height: 4px;
    background: #c62828;
    margin: auto
}

.why-section .layout {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 30px;
    align-items: center
}

.why-section .features {
    display: flex;
    flex-direction: column;
    gap: 22px
}

.why-section .feature {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s
}

.why-section .feature:hover {
    transform: translateY(-8px)
}

.why-section .feature i {
    width: 60px;
    height: 60px;
    background: #0a1f44;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0
}

.why-section .feature h3 {
    color: #0a1f44;
    margin-bottom: 8px
}

.why-section .feature p {
    color: #666;
    line-height: 1.7
}

.why-section .main {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2)
}

.why-section .thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -35px
}

.why-section .thumbs img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 4px solid #fff
}

.why-section .cta {
    text-align: center;
    margin-top: 50px
}

.why-section .cta a {
    display: inline-block;
    background: #0a1f44;
    color: #fff;
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold
}

.why-section .cta a:hover {
    background: #c62828
}

@media(max-width:1100px) {
   .why-section .layout {
        grid-template-columns: 1fr
    }

    .why-section .image-box {
        order: -1;
        max-width: 500px;
        margin: auto
    }
}

@media(max-width:768px) {
   .why-section .heading h2 {
        font-size: 32px
    }
}
.image-box{
    position: relative;
    max-width: 430px;
    margin: auto;
}

.image-box .main{
    width: 100%;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    transition: .6s ease;
}

.image-box:hover .main{
    transform: scale(1.03);
}

.image-box .thumbs{
    display:flex;
    justify-content:center;
    gap:18px;

    position:absolute;
    left:50%;
    bottom:-45px;
    transform:translateX(-50%);
    width:100%;
}

.image-box .thumbs img{
    width:95px;
    height:95px;
    object-fit:cover;

    border-radius:16px;
    border:5px solid #fff;

    box-shadow:0 12px 30px rgba(0,0,0,.18);

    transition:all .45s cubic-bezier(.25,.8,.25,1);

    cursor:pointer;

    animation:floatImage 4s ease-in-out infinite;
}

.image-box .thumbs img:nth-child(2){
    animation-delay:.4s;
}

.image-box .thumbs img:nth-child(3){
    animation-delay:.8s;
}

/* hover effect */

.image-box .thumbs:hover img{
    transform:scale(.92);
    opacity:.65;
}

.image-box .thumbs img:hover{
    transform:translateY(-18px) scale(1.18) rotate(0deg) !important;

    opacity:1;

    z-index:20;

    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.image-box .thumbs img:first-child:hover{
    transform:translateY(-18px) rotate(-7deg) scale(1.18) !important;
}

.image-box .thumbs img:last-child:hover{
    transform:translateY(-18px) rotate(7deg) scale(1.18) !important;
}

@keyframes floatImage{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}




 .corporate-video-section{
    width:100%;
    overflow:hidden;
}

.corporate-video-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:650px;
}

.corporate-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.corporate-content{
    background:#000040;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding:40px 70px;
}


.corporate-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    opacity:.95;
}

.corporate-content .list-check{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.corporate-content .list-check li{
    position:relative;
    padding-left:38px;
    margin-bottom:22px;
    font-size:18px;
}



.btn-light{
    display:inline-block;
    width:max-content;
    background:#fff;
    color:#000040;
    padding:16px 36px;
    font-weight:700;
    text-transform:uppercase;
    text-decoration:none;
    transition:.3s;
}

.btn-light:hover{
    background:#e6e6e6;
}
/* Initial State */
.reveal-left,
.reveal-right{
    opacity:0;
    transition:all .9s ease;
}

.reveal-left{
    transform:translateX(-120px);
}

.reveal-right{
    transform:translateX(120px);
}

/* Active State */
.reveal-left.active,
.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}
@media (max-width:991px){

    .corporate-video-grid{
        grid-template-columns:1fr;
    }

    .corporate-image{
        height:420px;
    }

    .corporate-content{
        padding:50px 30px;
    }

    .corporate-content h2{
        font-size:34px;
    }

}




.industrySwiper{
    width:100%;
    /* padding:60px 0; */
}

.industrySwiper .swiper-slide{
    width:420px !important;
}

.industry-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.4s;
}

.industry-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.industry-content{
    padding:30px;
}

.industry-content h3{
    color:#000040;
    margin-bottom:15px;
    font-size:24px;
}

.industry-content p{
    color:#666;
    line-height:1.7;
}

.industrySwiper .swiper-slide-active .industry-card{
    transform:scale(1.08);
}

.industrySwiper .swiper-slide-prev .industry-card,
.industrySwiper .swiper-slide-next .industry-card{
    transform:scale(.9);
    opacity:.8;
}

/* Flip box */

.compare-wrap .blue {
    color: #081b5c
}

.compare-wrap .red {
    color: #a00000
}

.compare-wrap .vs {
    color: #8b0000;
    font-style: italic
}

.compare-wrap .compare-grid {
    display: grid;
    grid-template-columns: 270px 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.compare-wrap .feature-col,
.compare-wrap .card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12)
}

.compare-wrap .feature-head {
    background: #081b5c;
    color: #fff;
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
    text-align: center
}

.compare-wrap .feature {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 22px 15px;
    border-top: 1px solid #eee;
    font-size: 20px;
    font-weight: 700
}

.compare-wrap .feature i {
    font-size: 20px;
    color: #b00000
}

.compare-wrap .card-head {
    position: relative;
    color: #fff;
    padding: 10px 30px 10px 85px;
    border-radius: 24px;
}

.compare-wrap .blue-card .card-head {
    background: #081b5c
}

.compare-wrap .red-card .card-head {
    background: #a00000
}

 .compare-wrap .circle {
    position: absolute;
    left: 25px;
    top: 18px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.compare-wrap .blue-card .circle {
    color: #22b14c
}

.compare-wrap .red-card .circle {
    color: #a00000
}

.compare-wrap .card h3 {
    font-size: 18px;
    color: #fff;
}

.compare-wrap .card img {
    width: 100%;
    height: 250px;
    object-fit: cover
}

.compare-wrap .row {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    padding: 12px;
    border-top: 1px solid #ececec
}

.compare-wrap .row i {
    font-size: 20px;
    color: #081b5c;
    text-align: center
}

.compare-wrap .red-card .row i {
    color: #a00000
}

.compare-wrap .row p {
    font-size: 15px;
    line-height: 1.5
}

@media(max-width:1100px) {
    .compare-wrap .compare-grid {
        grid-template-columns: 1fr
    }

   .compare-wrap h2 {
        font-size: 40px
    }
}
.compare-wrap .card {
      padding: 0rem 1rem 1rem;
}
















.testimonial-asset-section{

    padding:60px 0;
    background:#f7f7f7;

}

.asset-wrapper{

    display:grid;
    grid-template-columns:1.05fr 1fr;
    align-items:center;
    gap:70px;

}


.asset-item{

    display:flex;
    align-items:flex-start;
    gap:25px;

}

.asset-icon{

    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#a30000;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:25px;

}

.asset-item p{

    margin-bottom:15px;
    color:#555;
    line-height:1.9;

}

.asset-features{

    position: relative;

    margin: -110px 0 0 auto;

    background:#081b3b;

    border-radius:22px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    overflow:hidden;

    z-index:10;

    box-shadow:0 25px 60px rgba(0,0,0,.2);

}

.feature-box{

    padding:20px;
    text-align:center;
    color:#fff;
    position:relative;

}

.feature-box::after{

    content:"";
    position:absolute;
    top:25%;
    right:0;

    width:1px;
    height:50%;

    background:rgba(255,255,255,.18);

}

.feature-box:last-child::after{

    display:none;

}

.feature-box i{

    display:block;

    font-size:30px;

    color:#ff3030;

    margin-bottom:18px;

}

.feature-box h4{

    font-size:18px;
    margin-bottom:12px;
    color:#fff;

}

.feature-box p{

    color:#d6dbe5;
    font-size:15px;
    line-height:1.7;

}

/************ Tablet ************/

@media(max-width:991px){

.asset-wrapper{

grid-template-columns:1fr;
gap:50px;

}

.asset-image{

order:-1;

}

.asset-content h2{

font-size:40px;

}

.asset-features{

grid-template-columns:repeat(2,1fr);

}

.feature-box:nth-child(2){

border-right:none;

}

.feature-box{

border-bottom:1px solid rgba(255,255,255,.15);

}

.feature-box:nth-last-child(-n+2){

border-bottom:none;

}

}

/************ Mobile ************/

@media(max-width:767px){

.testimonial-asset-section{

padding:30px 0;

}

.asset-content h2{

font-size:34px;

}

.asset-item{

flex-direction:column;

gap:20px;

margin-bottom:35px;

}

.asset-icon{

width:65px;
height:65px;
min-width:65px;
font-size:28px;

}

.asset-features{

grid-template-columns:1fr;

}

.feature-box{

border-right:none;
border-bottom:1px solid rgba(255,255,255,.15);

}

.feature-box:last-child{

border-bottom:none;

}

}



















.box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px 15px;
  width: 100%;
  gap: 15px;
}

@media screen and (min-width:1380px) {
  .box-container {
    flex-direction: row
  }
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 415px;
  margin-bottom: 35px;
  max-width: 100%;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  
  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}

.flip-box-header {
  font-size: 26px;
  color: #fff;
}

.flip-box p {
  font-size: 20px;
  line-height: 1.5em;
  color: #fff;
}

.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}

.video-filming-conterolled {
  background: #a30000;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin: 20px 0;
}
.assets-features {
    overflow: hidden;
      /* margin: -110px 0px 0px auto; */
    background: rgb(8, 27, 59);
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 25px 60px;
    position: relative;
    color: #fff;
    padding: 20px;
}

.editing-service{

    padding:5rem 0;
    background:#f7f8fc;

}



.editing-service .editing-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-bottom:60px;

}

.editing-service .editing-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;

}

.editing-service .editing-card:hover{

    transform:translateY(-8px);

}

.editing-service .icon{

    width:70px;
    height:70px;
    border-radius:18px;
    background:#081b5c;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.editing-service .editing-card h3{

    margin-bottom:15px;

}

.editing-service .editing-card p{

    color:#666;
    line-height:1.8;

}
.editing-sub-content {
  text-align: center;
    margin: 15px auto;
    background: #a30000;
    display: flex;
        padding: 30px;
    border-radius: 50px;
    align-items: center;
    gap: 60px;
    justify-content: center;
}
.editing-card p {
      display: flex;
    align-items: center;
    gap: 10px;
}
.btn-white {
  background-color: #fff;
}
.editing-sub-content-white {
    text-align: center;
    max-width: 700px;
    margin: 15px auto;
}
.service-detail .mb-6 {
  margin-bottom: 25px;
}
.editing-sub-content p {
  margin-bottom: 15px;
}
.button-center {
  margin: 0 auto;
}

@media(max-width:768px){

.editing-service .editing-grid{

grid-template-columns:1fr;

}


}

 .expert-section{
    padding:100px 0;
    overflow:hidden;
}

.expert-wrapper{
    position:relative;
    min-height:600px;
}
.expert-section img {
    width: 100%;
}

/* Background Image */
.expert-bg{
    position:absolute;
    right:0;
    top:0;
    width:82%;
    height:100%;
    background:url("/assets/img/video-expert.webp") center center/cover no-repeat;
    border-radius:15px;
}

/* Floating Content Box */
.expert-content{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:480px;
    background:#a30000;
    color:#fff;
    padding:55px;
    border-radius:12px;
    z-index:5;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.expert-content h2{
    color:#fff;
    margin-bottom:25px;
    font-size:36px;
}

.expert-content p{
    color:#f5f5f5;
    line-height:1.8;
    margin-bottom:20px;
}

.btn-light{
    display:inline-block;
    padding:14px 34px;
    background:#fff;
    color:#a30000;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
}

@media(max-width:991px){

    .expert-wrapper{
        min-height:auto;
    }

    .expert-bg{
        position:relative;
        width:100%;
        height:350px;
    }

    .expert-content{
        position:relative;
        width:100%;
        transform:none;
        margin-top:-60px;
        padding:35px;
    }

}
@media(max-width:767px){
  .business-growth .grid-4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .asset-features{
      margin: -15px 0 0 auto;
    }
  }


.expect-section{
    padding:50px 0;
    background:#f8f9fc;
}

.expect-section .expect-wrapper{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
}





.expect-section .expect-item{
    display:flex;
    gap:22px;
    margin-bottom:32px;
}

.expect-section .expect-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:#061d4a;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    flex-shrink:0;
    position:relative;
}

.expect-section .expect-icon::after{
    content:"";
    position:absolute;
    right:-8px;
    top:8px;
    width:100%;
    height:100%;
    border:3px solid #d70000;
    border-radius:50%;
    z-index:-1;
}

.expect-section .expect-item h3{
    font-size:24px;
    margin-bottom:10px;
    color:#d10000;
}

.expect-section .expect-item p{
    color:#555;
    line-height:1.8;
    margin:0;
}

.expect-section .expect-image{
    position:relative;
}

.expect-section .expect-image img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.expect-section .floating-card{
    position:absolute;
    bottom:-30px;
    left:-30px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    width:240px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.expect-section .play-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#071b3b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.expect-section .floating-card h4{
    font-size:48px;
    color:#d00000;
    margin-bottom:5px;
}

.expect-section .floating-card p{
    color:#666;
    margin:0;
    font-size:18px;
}

@media(max-width:992px){

.expect-section .expect-wrapper{
    grid-template-columns:1fr;
}



.expect-section .expect-image{
    margin-top:40px;
}

.expect-section .floating-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin:-60px auto 0;
}

}

@media(max-width:576px){



.expect-section .expect-item{
    gap:16px;
}

.expect-section .expect-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

.expect-section .expect-item h3{
    font-size:20px;
}

.expect-section .floating-card{
    width:100%;
}

}


/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap"); */


.training-stand-out .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
     max-width: 1280px;
    margin: auto;
    padding: 80px 20px
}

.training-stand-out .card {
  position: relative;
  min-width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 30px;
  transition: 0.5s;
}



.training-stand-out .card .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #061d4a;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

.training-stand-out .card .box:hover {
  transform: translateY(-50px);
}

.training-stand-out .card .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.training-stand-out .card .box .content {
  padding: 20px;
  text-align: center;
}

.training-stand-out .card .box .content h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
}

.training-stand-out .card .box .content h3 {
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

.training-stand-out .card .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

.training-stand-out .card .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border-radius: 5px;
  text-decoration: none;
  color: #cc0000;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.training-stand-out .card .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}










.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  perspective: 1000px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 20% 0%, #1c1730 0%, transparent 55%),
    radial-gradient(1000px 600px at 100% 100%, #10283a 0%, transparent 55%),
    var(--bg);
}

.hero-stage {
  position: relative;
  width: min(1080px, 100%);
  aspect-ratio: 16 / 10;
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
  will-change: transform;
}

.layer {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
}

.layer-bg {
  inset: -8%;
  border-radius: 32px;
  background:
    radial-gradient(600px 380px at 70% 30%, rgba(110,168,255,.22), transparent 60%),
    radial-gradient(500px 320px at 25% 75%, rgba(255,111,97,.22), transparent 60%),
    linear-gradient(160deg, #151925, #0c0e15);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.layer-mid {
  width: 42%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 1;
  top: 12%;
  right: 6%;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.9);
  border: 1px solid rgba(255,255,255,.1);
}
.layer-mid-2 {
  width: 26%;
  top: auto;
  bottom: 8%;
  right: 30%;
  left: auto;
  border-radius: 20px;
}

.accent {
  display: block;
  border-radius: 50%;
  filter: blur(.5px);
}
.accent-1 {
  width: 74px; height: 74px;
  top: 16%; left: 10%;
  background: linear-gradient(140deg, var(--accent), #ffb199);
  box-shadow: 0 20px 50px -12px rgba(255,111,97,.7);
}
.accent-2 {
  width: 44px; height: 44px;
  bottom: 20%; left: 22%;
  background: linear-gradient(140deg, var(--accent-2), #a5c8ff);
  box-shadow: 0 16px 40px -10px rgba(110,168,255,.7);
}
.accent-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255,255,255,.25);
  bottom: 6%; right: 4%;
  filter: none;
}

.hero-content {
  position: absolute;
  left: 6%;
  top: 70%;
  transform: translateZ(0);
  translate: 0 -50%;
  max-width: 30rem;
  z-index: 2;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  margin: 1.4rem 0 2rem;
  font-weight: 500;
  z-index: 999;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  color: #0b0d12;
  background: linear-gradient(120deg, #e63804, var(--accent));
  box-shadow: 0 18px 40px -16px rgba(217, 37, 21, 0.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -16px rgba(255,111,97,.85); }
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at 50% 120%, rgba(110,168,255,.14), transparent 70%);
}

@media (max-width: 720px) {
  .hero-stage { aspect-ratio: 3 / 4; }
  .hero-content { position: static; translate: 0; max-width: none; text-align: left; padding-top: 8%; }
  .layer-mid { width: 46%; top: 4%; }
  .layer-mid-2 { width: 32%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage, .layer { transition: none !important; animation: none !important; }
}

:root {
  --bg: #0b0d12;
  --ink: #f2f4fa;
  --muted: #a2acbd;
  --accent: #cc0000;
  --accent-2: #061d4a;
}

.contact-banner {
    background-image: url(/assets/img/why-choose.webp);

}
.contact-form-section .image-wrapper {
  padding: 20px;
}
.contact-form-section .image-wrapper btn {
  margin: 0 auto;
  display: block;
}
.tv-compare-wrap .compare-grid {
      grid-template-columns: 1fr 1fr 1fr;
}
.tv-compare-div {
  margin-top: 20px;
}
.tv-compare-wrap .circle {
  width: 20px;
  height: 20px;
  font-size: 10px;
}
.tv-compare-wrap {
  padding: 60px 0;
}
.commercial-video-services .card h4 {
      font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}


.trusted-businesses{

    position:relative;

    background:#141b31;

    overflow:hidden;

    padding:90px 0 120px;

}

.trusted-businesses .overlay{

    position:absolute;

    inset:0;

    background:url("img/houston-skyline.jpg") center center/cover no-repeat;

    opacity:.18;

}

/* .container{

    width:90%;

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;

} */

.trusted-businesses .heading{

    text-align:center;

    margin-bottom:70px;

}

.trusted-businesses .heading span{

    display:inline-block;

    color:#ef4444;

    letter-spacing:8px;

    font-size:20px;

    font-weight:700;

    margin-bottom:15px;

}

.trusted-businesses .heading h2{

    color:#fff;

    font-size:2.5rem;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.trusted-businesses .heading p{

    color:#ddd;

    font-size:28px;

    max-width:900px;

    margin:auto;

    line-height:1.5;

}

.trusted-businesses .brands{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.trusted-businesses .brand-card{

    height:280px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(15px);

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    position:relative;

}

.trusted-businesses .brand-card:hover{

    transform:translateY(-10px);

    border-color:#ef4444;

    box-shadow:0 20px 40px rgba(239,68,68,.18);

}

.trusted-businesses .brand-card img{

    max-width:180px;

    width:80%;

}

.trusted-businesses .total-card{

    flex-direction:column;
    padding: 20px;

}

.trusted-businesses .people{

    font-size:55px;

    margin-bottom:15px;

}

.trusted-businesses .total-card h3{

    color:#ef4444;

    font-size:40px;

    font-weight:800;
line-height: 1.2;
    margin-bottom:10px;
    text-align: center;

}

.trusted-businesses .total-card p{

    color:#fff;

    font-size:28px;

    line-height:1.3;

    text-align:center;

    font-weight:600;

}

.trusted-businesses .camera-img{

    position:absolute;

    left:0;

    bottom:0;

    width:320px;

    z-index:3;

}

.trusted-businesses .bottom-line{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:#ef4444;

    box-shadow:0 0 20px #ef4444;

}

@media(max-width:1100px){

.trusted-businesses .brands{

grid-template-columns:repeat(2,1fr);

}

.trusted-businesses .camera-img{

display:none;

}

.trusted-businesses .heading h2{

font-size:48px;

}

.trusted-businesses .heading p{

font-size:22px;

}

}

@media(max-width:768px){

.trusted-businesses .brands{

grid-template-columns:1fr;

}

.trusted-businesses .heading h2{

font-size:38px;

}

.trusted-businesses .heading p{

font-size:18px;

}

.trusted-businesses .brand-card{

height:220px;

}

}
.corporate-video-section-main .btn {
  width: max-content;
}
.expect-section-main .expect-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
}
