body{
  margin:0;
  padding-top:0;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
}


/* ================= TOP BAR ================= */
.topbar{
  position: fixed;
  top:0;
  width:100%;
  background:#FF0000; 
  color:#FFFFFF;      
  font-size:14px;
  padding:6px 0;
  z-index:1030;
}

.topbar-left span{
  margin-right:12px;
  display:inline-block;
  white-space: nowrap;
}

.topbar-right a{
  width:32px;
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#FFFFFF;
  color:#000000;     
  border-radius:50%;
  text-decoration:none;
  margin-left:6px;
  font-size:14px;
  transition:0.3s;
}

.topbar-right a:hover{
  background:#000000;
  color:#FFFFFF;    
}

/* ================= NAVBAR ================= */
.main-navbar{
  position:fixed !important;
  top:43px;
  width:100%;
  background:#FFFFFF;
  border-bottom:1px solid #000000;
  z-index:1020;
}

.navbar-brand img{
  height:50px;
}

.navbar-toggler{
  border:1px solid #000000;
}
.btn-close {
    color: #FF0000;
}
.navbar-toggler-icon{
  filter:invert(0);
}

.navbar-nav .nav-link{
  color:#000000;
  margin:0 15px;
  font-weight:600;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover{
  color:#FF0000; 
}
.mobile-menu{
  background:#FFFFFF;
}

.mobile-menu .nav-link{
  color:#000000;
  font-size:18px;
  margin-bottom:12px;
}

@media (max-width:767px){
  .main-navbar{
    top:72px;
  }
}
.offcanvas-header img{
  height: 78px;
  width: 115px;
}
/* ================= HERO CAROUSEL ================= */
.hero-carousel,
.carousel-inner,
.carousel-item{
  height:100vh;
}
  .carousel-item{
  position:relative;
  background-size:cover;
  background-position:center;
  display:flex;   
  align-items:center;      

}
.hero-carousel .container{
  position:relative;
  z-index:2;
}


.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:1;
}

.hero-carousel h1{
    color:#FFF;
    font-size:48px;
    font-weight:700;
    text-transform: uppercase;
}
.hero-carousel h5{
    color:#FF0000;
    font-size: 28px;
}
.hero-carousel p{
    color:#FFF;
    font-size: 18px;
}

.btn-danger{background:#FF0000;border:none;}
.btn-outline-light{border:1px solid #FFF;color:#FFF;}

.carousel-indicators button{
  width:12px;height:12px;
  border-radius:50%;
  background:#FFF;
  opacity:0.5;
}
.carousel-indicators .active{background:#FF0000;opacity:1;}

@media(max-width:767px){
  .hero-carousel h1{font-size:32px;}
 .hero-carousel,
.carousel-inner,
.carousel-item{
  height:120vh;
}
}

/* ABOUT SECTION  */
.about-section {
  background: #fff;
}

.about-subtitle {
  color: #FF0000;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  margin: 10px 0;
}

.about-title span {
  color: #FF0000;
}

.about-desc {
  color: #666;
  margin-bottom: 25px;
}
.about-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #FF0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}


    .abt-img img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
}


.rnt{
  height: 60px;
  width: 60px;
}

/* Client Box */
.client-box {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #FF0000;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }

}

/* WORK SECTION  */
.work-section {
  background: #1f2a2e;
}

.work-badge {
  border: 1px solid #fff;
  padding: 6px 16px;
  font-size: 13px;
  letter-spacing: 1px;
}

.work-title {
  font-size: 42px;
  font-weight: 700;
}

.work-step {
  position: relative;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #2c3a3f;
  color: #fff;
  border-radius: 10px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.step-content {
  background: #2c3a3f;
  padding: 25px;
  border-radius: 12px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 36px;
  height: 36px;
  background: #1f2a2e;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
}

.work-image img {
  width: 100%;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .work-title {
    font-size: 30px;
  }

  .work-step {
    flex-direction: column;
  }

  .step-icon {
    margin-bottom: 15px;
  }

  .step-number {
    left: 10px;
    top: -18px;
  }
}
/* Service Section  */

.services-section {
  background: #fff;
}

.service-line {
  width: 70px;
  height: 6px;
  background: #FF0000;
  border-radius: 10px;
  position: relative;
}
.service-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #FF0000;
}
.service-line::after {
  content: '';
  width: 10px;
  height: 6px;
  background: #FF0000;
  position: absolute;
  right: -15px;
  top: 0;
  border-radius: 10px;
}

.service-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.service-card img {
  width: 50px;
  height: 50px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: #6c757d;
}

@media (max-width: 575px) {
  .service-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* COUNTER SECTION  */


.counter-section {
  padding: 80px 0;
  background: #050b1e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg.jpg");
  opacity: 0.3;
}

.counter-box {
  position: relative;
  z-index: 1;
}

.icon-box {
  width: 90px;
  height: 90px;
  background: #FF0000;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #fff;
}

.counter-box h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.counter-box p {
  font-size: 15px;
  color: #cfcfcf;
}

/* Mobile */
@media (max-width: 576px) {
  .counter-box h2 {
    font-size: 32px;
  }
}

/* WHY CHOOSE US SECTION  */
/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  background: #ffffff;
  color: #000000;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #FF0000;
}

.section-subtitle {
  font-size: 15px;
  color: #555555;
  max-width: 480px;
}

/* IMAGE */
.image-box img {
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* whychoose CARD */
.whychoose-card {
  display: flex;
  gap: 15px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.whychoose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ICON */
.whychoose-card .icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd;
}

.whychoose-card .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.whychoose-card h5 {
  margin-bottom: 6px;
  font-weight: 600;
  color: #000000;
}

.whychoose-card p {
  font-size: 14px;
  color: #555555;
  margin: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }

  .whychoose-card {
    padding: 16px;
  }
}

/* Contact Section  */

.contact-section {
  padding: 90px 0;
  background: #ffffff;
}

.badge-title {
  color: #FF0000;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}
.text-primarys{
  color: #FF0000 !important;
}
.contact-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

.contact-title span {
  color: #FF0000;
}

.contact-img {
  width: 110px;
  border-radius: 10px;
}

.contact-info p {
  color: #666;
  font-size: 15px;
}

.phone-icon {
  width: 45px;
  height: 45px;
  background: #FF0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-box {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form-box label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.input-group-text {
  background: transparent;
}

.form-control {
  border-radius: 8px;
  padding: 12px;
}

.submit-btn {
  background: #FF0000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}

.submit-btn:hover {
  background: #FF0000;
  color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
  .contact-title {
    font-size: 30px;
  }
}

/* Testimonial css  */
.testimonial-section {
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 90px 0;
  overflow: hidden;
}

.testimonialSwiper {
  padding: 30px 0 60px;
}

.swiper-slide {
  width: 360px;   
}

.testimonial-card {
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background: #f5f7ff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

/* Active center slide */
.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
}

/* Stars */
.stars {
  color: #FF0000;
  font-size: 18px;
}

/* Client info */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #FF0000;
}

.client-info h6 {
  margin: 0;
  font-weight: 600;
}

.client-info span {
  font-size: 14px;
  color: #777;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #FF0000;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .swiper-slide {
    width: 90%;
  }
}

/* FAQ SECTION  */

.faq-section {
  background: #f8f9fc;
}

.faq-subtitle {
  color: #FF0000;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.faq-title {
  font-weight: 700;
  font-size: 36px;
  margin-top: 10px;
}

.faq-title span {
  color: #FF0000;
}

/* Accordion */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: #fff;
  font-weight: 600;
  padding: 18px;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
  box-shadow: none;
}

.accordion-body {
  color: #666;
}

/* Experience Box */
.experience-box {
  position: absolute;
  top: 10%;
  left: 0;
  background: #FF0000;
  color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  z-index: 2;
}

.experience-box h1 {
  font-size: 48px;
  margin: 0;
}

/* Images */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.img1 {
  grid-column: span 2;
}

/* Mobile */
@media(max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }

  .experience-box {
    position: relative;
    margin-bottom: 20px;
  }
}

/* ================= FOOTER BANNER / CTA ================= */
.footer-banner {
  background: linear-gradient(135deg, #FF0000, #cc0000);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-title span {
  color: #ffe6e6;
}

.cta-desc {
  font-size: 16px;
  opacity: 0.95;
  max-width: 650px;
}

.cta-btn {
  background: #fff !important;
  color: #FF0000;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-desc {
    font-size: 15px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* Fotter section  */

/* ================= FOOTER ================= */
.main-footer {
  background: url(../images/bgg.jpg);
  color: #bbb;
  padding-top: 70px;
  background-size: cover;
}

.footer-logo {
  max-width: 180px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #FF0000;
  display: block;
  margin-top: 8px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #FF0000;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: #FF0000;
  font-size: 18px;
}

/* Social Icons */
.footer-social a {
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #FF0000;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  background: url(../images/bgg.jpg);
  padding: 15px 0;
  margin-top: 50px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-title {
    margin-top: 20px;
  }
}
