  :root{
      --brand: #d11a2a;
    }

    *{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}
/*     body{background:#fff;  } */
    html{
       scroll-behavior: smooth;
    }

  nav {
  width: 100%;
  height: 80px;
 
  position: absolute;

  left: 0px;
  display: flex;
  align-items: center;
  background-color:transparent;
  z-index: 1000;
  padding: 0;
  background-color: transparent;
   transition: background-color 0.3s ease, box-shadow 0.3s ease;

}
nav.scrolled {
  position: sticky;
  top: 0;
  background-color: black;
  color:white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  
}

/* Logo */
.logo {
    transform: translateY(14%);
}
.logo img {
  height: 60px; /* logo size stays */
  width: 180px;
}

/* Nav links */
.nav-links {
  display: flex;
  justify-content: flex-end;
  flex: 1;
 margin-right: 60px;
}
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 50px;
  
}
.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: .3s;
}
.nav-links ul li a:hover,
.nav-links ul li a.active { color: #fff; }

/* Hamburger menu */
.actions {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-btn {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 80px;
  right: 40px;
  width: 220px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  padding: 15px 0;
  flex-direction: column;
  animation: fadeIn .3s ease;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #1d2430;
}
.dropdown a:hover,
.dropdown a.active { color: #d11a2a; background: #f4f4f9; }

nav.open .dropdown { display: flex; }

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

/* Responsive */
@media(max-width: 991px){
  .nav-links { display: none; }
  .menu-btn { display: block; }
}

@media(max-width: 576px){
  .logo img { height: 60px; width: 150px; }
  .menu-btn { font-size: 28px; }
  .dropdown { width: 200px; right: 10px; }
}

@media(max-width: 400px){
  .logo img { height: 40px; width: 100px;          margin-right: 167px;
        margin-bottom: 19px; }
  .menu-btn { font-size: 24px; }
  .dropdown { width: 180px; right: 5px; }
}
    /* ===== Banner ===== */
    .banner {
      background: rgb(239,68,68);
      color: #fff;
      overflow: hidden;
      height: 40px;
      display: flex;
      align-items: center;
    }
    .banner .container {
      max-width: 100%;
      width: 100%;
      margin: 0;
      padding: 0 20px;
      overflow: hidden;
    }
    .scroll-wrapper {
      display: flex;
      white-space: nowrap;
    }
    .scroll-content {
      display: flex;
      animation: scroll-left 25s linear infinite;
    }
    .scroll-content span {
      margin: 0 40px;
      font-size: 15px;
      font-weight: 500;
      color: #fff;
    }
    .scroll-content i {
      color: #fff;
      margin-right: 6px;
    }
    @keyframes scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
/* === Hero Video Section === */
.hero-video {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.hero-video video.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

/* Subtle dark overlay for contrast */
.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 0;
}

/* === Clean Hero Content === */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 32px;
}

/* CTA Button */
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #d11a2a;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
}

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

/* === Animation === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero-content {
    left: 5%;
    right: 5%;
    text-align: center;
    transform: translateY(-50%);
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}




/* ===== About Section (Flex Version) ===== */
.about {
  padding: 200px 8%;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.about-container {
  display: flex;                
  gap: 60px;
  align-items: stretch;       
  
}

/* Left side (stats) */
.about-left {
  flex: 1;
  display: flex;
  flex-wrap: wrap;           
  gap: 16px;
  
}
.about-left > * {
  flex: 1 1 calc(50% - 20px); 
  margin: 0;

 
}

.about-left .stat-box,
.about-left .tags-box {
  display: flex;
  flex-direction: column;
  justify-content: center;   
  align-items: center;       
  text-align: center;
}


.about-left .tags-box {
  align-items: center;
}

.stat-box,
.image-box,
.tags-box {
  flex: 1 1 calc(50% - 22px); 
  border-radius: 16px;
  
}

.stat-box {
  padding: 28px 20px;
  text-align: center;
  color: #fff;
}
.stat-box.red { background: var(--brand); }
.stat-box.dark { background: #0f172a; }
.stat-box h2 { font-size: 32px; font-weight: 800; }
.stat-box p { font-size: 14px; margin-top: 8px; line-height: 1.5; }


.stat-box.circle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.circle-progress {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  background: #fff;
  color: #0f172a;
  margin-bottom: 10px;
}


.image-box {
  position: relative;
  overflow: hidden;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.satisfaction-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #fff;
  color: #1d1d1d;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 14px;
}
.satisfaction-box strong {
  display: block;
  color: var(--brand);
  font-size: 18px;
  font-weight: bold;
}

.tags-box {
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  
}
.tag {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  animation: floatTag 3s ease-in-out infinite;
}
.tag.dark { background: #0f172a; animation-delay: 0s; }
.tag.red { background: var(--brand); animation-delay: 0.5s; }
.tag.blue { background: #2563eb; animation-delay: 1s; }


.about-right {
  flex: 1.1;   
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.about .section-tag {
 
  font-weight: 800;
 
   /* padding: 8px 18px;
  border-radius: 20px;
  background: #fff0f0; */
  color: var(--brand);

  font-weight: bold;
  margin-bottom: 18px;
   display: block;
  /* margin: 0px auto 50px;  */
  /* text-align: center;  */
font-size: clamp(26px, 3vw + 10px, 30px);


  
 
}
.about-right h2 {

  margin-top: 0;
  margin-bottom: 30px;
 font-weight: 400;
 font-size: 20px;

}
.about-right h2 span { color: var(--brand); }

.about-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  
}
.point i {
  font-size: 24px;
  color: var(--brand);
  margin-top: 5px;


}
.point h4 {
  font-size: 18px;
  font-weight: 700;
  
  margin: 0 0 8px 0;

}
.point p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;

 
}
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
  .about-container { flex-direction: column; }
  .about-left { flex-wrap: wrap; }
  .about-right { padding: 30px; }
}

@media (max-width: 576px) {
  .about-left > * { flex: 1 1 100%; } 
  .about-right h2{
    font-size: 20px;
  }
}
/* ==============================
   Work Showcase Section
   ============================== */

.work-showcase {
  position: relative;
  padding: 80px 6%;
  text-align: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
  height: auto;
}

/* Gradient Overlay */
.work-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content Above Overlay */
.work-container {
  position: relative;
  z-index: 2;
}

/* Section Tag */
.work-container .section-tag {
  display: inline-block;
  font-size: clamp(26px, 3vw + 10px, 42px);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--brand);
  font-weight: bold;
  margin-bottom: 18px;
}

/* Heading */
.work-container h2 {
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff !important;
  font-weight: 700;
  font-size: 30px;
}

.work-container h2 span {
  color: var(--brand);
}

/* Optional subtitle (like "LIMITED TIME DISCOUNT") */
.work-container p {
  font-size: 16px;
  color: #f44336;
  letter-spacing: 1px;
  margin-bottom: 70px;
}

/* Swiper Slider */
.swiper {
margin-top: 90px !important;
  padding-bottom: 60px ;
}

.swiper-wrapper {
  align-items: stretch;
}

/* Work Box */
.work-box {
  background: white;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: transform .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
  height: 350px !important; /* Increased height */
  padding: 20px 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.work-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
}

/* Work Image */
.work-icon {
  width: 100%;
  height: 250px !important; /* Increased image height */
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.work-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.work-box:hover .work-icon img {
  transform: scale(1.15);
}

/* Text */
.work-box h6 {
  font-size: 14px;
  font-weight: 500;
  color: #f44336;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.work-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: black;
  line-height: 1.4;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #666 !important;
  opacity: 1 !important;
  
}

.swiper-pagination-bullet-active {
  background: var(--brand) !important;
  transform: scale(1.2);
}


/* ===== Why Choose Us Section ===== */
.why-choose {
  padding: 120px 8% 100px;
  background: #f9fafb;
}

.choose-container {
  display: flex;                
  gap: 40px;
  align-items: stretch;        
}
.choose-left,
.choose-right {
  flex: 1;               
}

.image-wrapper {
  flex: 1;                      
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;                 
}
.image-wrapper img {
  width: 100%;
  height: 100%;                
  object-fit: cover;             
  border-radius: 18px;
  display: block;
}

.choose-right {
  flex: 1;                       
  display: flex;
  flex-direction: column;
  justify-content: center;      
}

.choose-right .section-tag {
display: inline-block;
font-size: clamp(24px, 2.5vw + 12px, 26px);
  padding: 8px 18px;
  border-radius: 20px;
  background: #fff0f0;
  color: var(--brand);
  font-weight: bold;
  margin-bottom: 20px;
}
.choose-right h2 {

   font-size: 22px; 
  margin-left: 0;
  margin-top: 0;
  line-height: 1.4;
  word-break: break-word;
  hyphens: auto;
  max-width: 800px;
  font-weight: 400;
}
.choose-right h2 span { color: var(--brand); }
.choose-right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.65;
}


.choose-grid {
  display: flex;
  flex-wrap: wrap;          
  gap: 24px;
  margin-bottom: 36px;
}

.choose-box {
  flex: 1 1 calc(50% - 24px);  
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
 
}

.choose-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.choose-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
   margin-top: 0;
}

.choose-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
}


@media (max-width: 768px) {
  .choose-box {
    flex: 1 1 100%;
  }
}



.growth-stat h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--brand);
}
.growth-stat span {
  font-size: 15px;
  color: #444;
}


@media (max-width: 992px) {
  .choose-container {
    flex-direction: column;   
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about { padding: 50px 20px; }
  .about-right { padding: 20px; }
}

@media (max-width: 992px) {
  .choose-container { grid-template-columns: 1fr; }
  .image-wrapper img { height: auto; max-height: 400px; }
  .icon { width: 60px; height: 60px; } 
}
 /* Why Choose Section */
/* Why Choose Section */





.testimonial-section{
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  position: relative;

}
.testimonial-header{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 50px;
}
.testimonial-header .quote{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgb(239,68,68);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  color: #fff;
  font-weight: bold;

}
.testimonial-header h2{
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-left: 0;
  margin-bottom: 0;
}


.testimonial-cards{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  
}
.testimonial-card{
  padding-right: 20px;
  border-right: 1px solid #ccc;
  margin-top: 0;
}
.testimonial-card:last-child{
  border: none;
}
.testimonial-card h3{
  font-size: 20px;
  margin-bottom: 15px;
}
.testimonial-card p{
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 25px;
}
.testimonial-profile{
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-profile img{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-profile h4{
  font-size: 15px;
  font-weight: 600;
}
.testimonial-profile span{
  font-size: 13px;
  color: #666;
}

.testimonial-arrows.bottom-arrows{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.testimonial-arrows .arrow{
  padding: 6px 12px;   
  border-radius: 6px;  
  border: none;
  background: rgb(239,68,68);
  color: #fff;
  font-size: 16px;     
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transform: translateX(-20px);
}

.testimonial-arrows .arrow:hover{
  background: #000;
}

@media(max-width:768px){
  .testimonial-cards{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .testimonial-card{
    border: none;
    padding-right: 0;
  }
  .testimonial-header{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Contact Form Banner */
.contact-form-banner {
  background: #f7f7f7;   
  padding: 60px 20px;
  margin-top: 60px;
}


.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea,
.contact-form form select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .note {
  font-size: 13px;
  color: #666;
}

.contact-form button {
  background: rgb(239,68,68);
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 10px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #000;
}
.footer {
  background: #fff;       
  padding: 50px 20px 20px;   
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  align-items: right; 
}

.footer-logo {
  width: 300px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 10px; 
  display: block;


}
.footer h4 {
  font-size: 22px;
 

  margin-bottom: 10px;
  color: #111;
  font-weight: bold;
}

.footer p {
  margin: 0 0 15px; 
  font-size: 16px;
  line-height: 1.4;
  color: rgb(120 130 147);

}
.footer-address-link{
  position: relative;
  bottom: 70px;
  margin-left: 50px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgb(120 130 147);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #e63946; 
}

/* Social icons */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: rgb(120 130 147);
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #e63946;
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
 
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}
.footer-container > div:not(:first-child) {

  margin-top: 100px;
  margin-left: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer p{
    font-size: 14px;
  }

}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    text-align: left; 
    justify-items: start;
  }

  .footer-social {
    margin-top: 10px;
  }
  .footer-logo{
   margin-bottom: 10px;
   width: 180px;
   margin-left:30px;
  }
}

