:root {
  --bg-dark: #070708;
  --card-bg: #121214;
  --red-color: #f7071f;
  --text-muted: #8E8E93;
  --border-color: rgba(255, 255, 255, 0.08);
}

body {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 576px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.text-red {
  color: var(--red-color);
}

.text-muted{
  color: rgb(188, 186, 186) !important;
}
.bg-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.btn-red {
  background-color: var(--red-color);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 26px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-green {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 26px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}


.btn-green:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

 

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

.btn-outline-custom {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  background: transparent;
  padding: 12px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.active {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  background: transparent;
  padding: 12px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

.navbar {
  background-color: rgba(7, 7, 8, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  font-weight: 500;
  margin: 0 12px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--red-color) !important;
}

.nav-link.active {
  color: var(--red-color) !important;
  font-weight: 600;
}

.counterSections .counterText{
  font-size: 40px;
  font-weight: bold;
  color: var(--red-color);
}



.headingText{
  font-size: 40px;
  color: #fff;
  font-weight: 700;
}
.headingText span{
  color: var(--red-color);
}

.policy-intro {
  max-width: 760px;
  margin: 0 auto;
}

.policy-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
}

.policy-section h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.policy-section p,
.policy-section li {
  color: rgba(255, 255, 255, 0.8);
}

.policy-section ul,
.policy-section ol {
  padding-left: 1.2rem;
}

.policy-section li {
  margin-bottom: 0.8rem;
}

.policy-note {
  color: rgba(255, 255, 255, 0.75);
}


.main-title {
  font-size: 3.0rem;
  font-weight: 830;
  line-height: 1.05;
  letter-spacing: -1px;
}

.video-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  width: 100%;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  z-index: 2;
}

.brand-logos img {
  max-height: 26px;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.brand-logos img:hover {
  opacity: 1;
}

.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.dark-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 7, 8, 0.95) 20%, rgba(7, 7, 8, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.work-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
}

.side-panel-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.side-panel-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.mini-video-container {
  width: 130px;
  height: 85px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.mini-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-video-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 320px;
}

.service-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border:1px solid  rgb(95, 70, 70)
}

.service-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 70%);
  z-index: 2;
  border:1px solid rgb(95, 70, 70)
}

.service-video-title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.whyChooseCard{
  border: 1px solid gray;
  /*box-shadow: 0px 0px 10px 0px rgb(166, 102, 102);*/
  border-radius: 10px;
  padding: 20px;
}
.testimonial-card {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  position: relative;
}

.testimonial-quote-icon {
  font-size: 22px;
  color: var(--red-color);
  opacity: 0.8;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar2 {
  width: 144px;
  height: 154px;
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
}


.cta-premium-box {
  border-radius: 20px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(95deg, #111113 0%, #291202 100%);
  border: 1px solid rgba(255, 107, 0, 0.15);
}

.cta-bg-camera {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background-image: url('https://images.openai.com/static-rsc-4/d3G4iTtwLmNs67CFUdmY2Sq7_qxaw1gbQoWjSrIOXvV5PeK1_3ylsX0SQ3AxGSCQaYxBk4iYQ3tPFXTVAL2kLAWmrfZFzzYPlqwDumVcmSEtot-Kfp-DOJBwuGbjL32fhm2LCd2cZzhUkZDwkbxRZHN3-C10bCt2bvLDMdkkU0Wzswtm6W66lbyoN5gRVLB9?w=600&auto=format&fit=crop&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.2s;
}

footer a:hover {
  color: white;
}

footer a.footer-link-active {
  color: var(--red-color);
  font-weight: 600;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.footer-social-icon:hover {
  background: var(--red-color);
  color: white;
}

.whatsapp-premium-box {
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(95deg, #111113 0%, #291202 100%);
  border: 1px solid rgba(3, 252, 98);
}

.whatsapp-bg-camera{
    position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background-image: url('https://images.openai.com/static-rsc-4/d3G4iTtwLmNs67CFUdmY2Sq7_qxaw1gbQoWjSrIOXvV5PeK1_3ylsX0SQ3AxGSCQaYxBk4iYQ3tPFXTVAL2kLAWmrfZFzzYPlqwDumVcmSEtot-Kfp-DOJBwuGbjL32fhm2LCd2cZzhUkZDwkbxRZHN3-C10bCt2bvLDMdkkU0Wzswtm6W66lbyoN5gRVLB9?w=600&auto=format&fit=crop&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.04);
  min-height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 7, 31, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.pricing-featured {
  border-color: rgba(247, 7, 31, 0.45);
  background: rgba(247, 7, 31, 0.08);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(247, 7, 31, 0.12);
  color: var(--red-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.price {
  font-size: 2.7rem;
  font-weight: 800;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-features li {
  margin-bottom: 0.9rem;
  padding-left: 1.35rem;
  position: relative;
}

.plan-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--red-color);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .plan-price {
    align-items: baseline;
    flex-wrap: wrap;
  }
}

/* Animation utilities */
.animate-fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 700ms cubic-bezier(.16,.84,.28,1) forwards;
}

.animate-fade-up[data-delay="0"]{ animation-delay: 0s; }
.animate-fade-up[data-delay="1"]{ animation-delay: 0.08s; }
.animate-fade-up[data-delay="2"]{ animation-delay: 0.16s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-badge {
  animation: floatBadge 3.6s ease-in-out infinite;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.contact-link {
  opacity: 1;
  transform: none;
  position: relative;
  z-index: 1030;
}
.contact-animate {
  opacity: 0;
  transform: translateX(8px);
  animation: slideInRight 600ms cubic-bezier(.16,.84,.28,1) forwards;
}
.contact-animate[data-delay="0"]{ animation-delay: 0.05s; }
.contact-animate[data-delay="1"]{ animation-delay: 0.12s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.navbar-brand {
  animation: brandPulse 1.2s ease forwards;
}

@keyframes brandPulse {
  0% { transform: scale(0.98); opacity: 0.9 }
  100% { transform: scale(1); opacity: 1 }
}

/* subtle shine on primary CTA */
.btn-red {
  position: relative;
  overflow: hidden;
}
.btn-red::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 40%;
  height: 180%;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  transform: rotate(25deg) translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-red:hover::after {
  transform: rotate(25deg) translateX(120%);
}

.contact-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.contact-icon-btn i { font-size: 0.95rem; }
.contact-icon-btn:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }

/* Contact Page Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.contact-form:hover {
  border-color: rgba(247, 7, 31, 0.3);
  background: rgba(247, 7, 31, 0.05);
}

.contact-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: rgba(247, 7, 31, 0.6);
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(247, 7, 31, 0.15);
}

.contact-form .form-label {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(247, 7, 31, 0.3);
  background: rgba(247, 7, 31, 0.05);
  transform: translateY(-4px);
}

.stat-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(247, 7, 31, 0.3);
  transform: translateY(-4px);
}

/* About Page Styles */
.mission-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.mission-card:hover {
  border-color: rgba(247, 7, 31, 0.3);
  background: rgba(247, 7, 31, 0.05);
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(247, 7, 31, 0.3);
  background: rgba(247, 7, 31, 0.05);
  transform: translateY(-4px);
}

.team-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(247, 7, 31, 0.3);
  transform: translateY(-6px);
}

.team-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* FAQ Page Styles */
.faq-container {
  max-width: 100%;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-header {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: rgba(247, 7, 31, 0.08) !important;
  border-color: rgba(247, 7, 31, 0.3) !important;
}

.faq-content {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  animation: slideDown 300ms cubic-bezier(0.16, 0.84, 0.28, 1) forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-outline-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  border-color: rgba(247, 7, 31, 0.6);
  color: white;
  background: rgba(247, 7, 31, 0.1);
}

/* Form Input Styling */
.form-control:disabled,
.form-control[readonly] {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 24px;
  }

  .cta-premium-box {
    padding: 40px 20px;
  }

  .contact-info-card {
    padding: 16px;
  }

  .team-card {
    padding: 16px;
  }

  .mission-card {
    padding: 24px;
  }
}

