/* ===============================
   GLOBAL
================================ */
* { transition: all 0.3s ease;  }
body {  
  font-family: Calibri, sans-serif; background: #f8f9fa; margin:0; 

}
/* ===============================
   TOP HEADER
================================ */
.top-header {
  background: #111;
  text-align: center;
 
}
.top-header a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem; /* 14px */
  display: inline-flex;
  align-items: center;
  gap: 0.3rem; /* 5px */
}
.top-header a:hover { color: #ffc107; }

/* ===============================
   NAVBAR LINKS
================================ */
.navbar-nav .nav-link {
  position: relative;
  color: #222;
  font-weight: 500;
  padding: 0.75rem 0.5rem;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ffc107;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }
.navbar-nav .nav-link:hover { color: #000; }

/* ===============================
   MEGA MENU
================================ */
.mega-menu {
  width: 100%;
  margin-top: -23px;
  border-radius: 0.75rem; /* 12px */
  background: #fff;
  top: 100%;
  left: 0;
  padding: 2rem;
  display: none;
  
}
.video-hero {
  overflow: hidden;
}

/* Desktop hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .mega-menu {
    display: block;
  }
}

/* Menu Cards */
.menu-card { cursor: pointer; border-radius: 0.5rem; transition: all 0.3s ease; }
.menu-card:hover { background-color: #f8f9fa; padding: 0.5rem; }

/* Feature Card Images */
.feature-card img { width: 100%; height: auto; object-fit: cover; }

/* Icons */
.menu-card .icon { font-size: 1.5rem; }

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 991px) {
  .navbar-nav { flex-direction: column; gap: 0.5rem; }
  .top-header { text-align: center; }
  .navbar-nav .nav-link::after { display: none; }
  .mega-menu.show { display: block; margin-top: 0; }
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}


/* Team Card */
.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 0 1px #eee;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Team Image */
.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
}

/* Text */
.team-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.role {
  color: #ff0000;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* .desc {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0;
} */

/* ================= CUSTOM GRID ================= */

/* Desktop → 5 cards */
@media (min-width: 992px) {
  .col-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Tablet → 3 cards */
@media (max-width: 991px) {
  .col-20 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* Mobile → 1 card */
@media (max-width: 576px) {
  .col-20 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* start box 4 */

@media (max-width: 768px) {
  .stat-box h3 {
    font-size: 1.5rem;
  }
}


/* section 4 */
.approach-section {
 
  color: #fff;
}
 
.approach-tag {
  color:#ff0000;
  font-weight: 600;
  letter-spacing: 1px;
 
  padding-bottom: 5px;
  font-size:2.5rem;
}
 
.approach-title {
  font-size: 35px;
  font-weight: 700;
  color: black;
 
}
 
.approach-subtitle {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}
 
.approach-card {
  background: #fff;
  color: #000;
  padding: 35px;
  border-radius: 12px;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}
 
.approach-card:hover {
  transform: translateY(-10px);
}
 
.approach-card h4 {
  margin-top: 20px;
  font-weight: 700;
}
 
.approach-card p {
  font-size: 14px;
  color: #444;
}
 
.icon {
  width: 100%;
  height: 60%;
}


.video-wrapper {
  cursor: pointer;
}

.video-wrapper img {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

/* Play button */
.play-btn{
  width:60px;
  height:60px;
  background: rgba(255,0,0,0.9);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
  transition: all 0.3s ease;
}

/* Hover animation */
.video-wrapper:hover .play-btn{
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 15px rgba(255,0,0,0.25);
}

/* Optional pulse animation */
.play-btn::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  border:2px solid rgba(255,0,0,0.6);
  animation: pulse 1.5s infinite;
}

@keyframes pulse{
  0%{
    transform: scale(1);
    opacity:1;
  }
  100%{
    transform: scale(1.6);
    opacity:0;
  }
}


/* Mobile tweaks */
@media (max-width: 768px) {
  .video-card {
    text-align: center;
  }

  .video-wrapper img {
    border-radius: 10px 10px 0 0;
    
  }

  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}



/* ===============================
   TESTIMONIAL CARDS
================================ */
.testimonial-card {
 background-color: rgb(0, 0, 0);
  border-radius: 0.9375rem; /* 15px */
  padding: 1.875rem 1.25rem; /* 30px 20px */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
 
}
.testimonial-card .client-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 0.9375rem auto; /* 15px */
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #007bff;
}
.testimonial-card .client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card .client-name {
  font-weight: 600;
  margin-bottom: 0.3125rem; /* 5px */
}
.testimonial-card .client-role {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.9375rem; /* 15px */
  display: block;
}
.testimonial-card .client-text {
  font-size: 0.95rem;
  color: #555;
}
.stars {
  color: gold;
  font-size: 14px;
}


/* tabs */
.nav-tabs .nav-link {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  color: #555;
}

.nav-tabs .nav-link.active {
  color: #0d6efd;
  border-bottom: 3px solid #0d6efd;
}

.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: rgb(255, 243, 243); /* black background */
  color: #0a0000; /* white text */
  padding: 1.5rem; /* optional padding */
  border-radius: 0.75rem; /* optional rounded corners */
  border: 2px solid #ff0000;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* slightly darker shadow for dark bg */
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}



body {
  font-family: 'Poppins', sans-serif;
}

.seo-section {
  background: #f8f9fc;
}

/* Left side */
.seo-badge {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.seo-title {
  font-size: 34px;
  font-weight: 700;
}

.seo-title span {
  color: #ff0000;
}

.seo-text {
  color: #6c757d;
  margin-top: 15px;
}

.feature-box {
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-weight: 500;
}

.seo-btn {
  background: #ff0000;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
}

.seo-btn:hover {
  background: #ff0000;
  color: #fff;
}

/* Right side */
.skill-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.skill-item {
  margin-bottom: 25px;
}

.progress {
  height: 8px;
  border-radius: 10px;
  background: #e9ecef;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  background: linear-gradient(90deg, #ff0000);
  transition: width 1.5s ease;
}

.stars {
  color:#ff0000; /* Bootstrap yellow */
  font-size: 18px;
  letter-spacing: 2px;
}

.progress {
  height: 8px;
}

@media (max-width: 768px) {
  .seo-section h2 {
    font-size: 1.6rem;
  }
}

/* content form  */
/* section 01 */
.contact-box {
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 40px;
  max-width: 900px;
  margin: auto;
  background: #fff;
}
 
.submit-btn {
  background: #27c2cf;
  color: #fff;
  font-weight: 600;
  border: none;
}
 
.icon-box {
  width: 70px;
  height: 70px;
  background: #eb8484;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -90px auto 0;
  font-size: 28px;
}
/*  info */
.info-section {
  background: #efefef;
  padding: 80px 0;
}
 
.info-section a {
  text-decoration: none;
  color: #000;
}
 
.info-section a:hover {
  color: #27c2cf;
}
 
h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
 
/* Form box */
.contact-box {
  background: #fff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
 
.contact-box:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
 
/* Inputs */
.form-control {
  border: 1px solid #e0e0e0;
  padding: 12px 18px;
  font-size: 15px;
}
 
.form-control:focus {
  border-color: #f45151;
  box-shadow: none;
}
 
/* Button */
.submit-btn {
  background: #f45151;
  color: #fff;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
}
 
.submit-btn:hover {
  background: #dc2626;
}
 
/* Info icons *
/* section 2 */
 
.icon-box {
  width: 70px;
  height: 70px;
  border: 2px solid #ef4444;
  color: #ef4444;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 26px;
  transition: 0.3s;
}
 
.icon-box:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.1);
}
 
/* Links */
.info-section a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}
 
.info-section a:hover {
  color: #ef4444;
}
 
/* Mobile responsive */
@media (max-width: 576px) {
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

.about-contact-section {
  background:#f8f9fc;
  
}

.contact-form-card {
  background:#fff;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  border: 2px solid #ff0000;
}

.contact-form-card .form-control {
  padding:12px 15px;
  border-radius:8px;
   
  
}

.contact-form-card .form-control:focus {
    border-color: #ff0000;
  box-shadow: 0 0 0 0.15rem rgba(255, 0, 0, 0.25);
}

.custom-btn{
  background-color:#ff0000;
  transition: all 0.3s ease;
}

.custom-btn:hover{
  background-color:#cc0000;   
  transform: translateY(-3px); 
  box-shadow: 0 8px 20px rgba(255,0,0,0.4);
}










