@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Barlow", sans-serif;
}
.container {
	max-width: 1170px;
}

.banner a img {
	display: block;
	width: 100%;
}
.header {
	position: relative;
}
.position {
	position: absolute;
	top: 0;
	width: 100%;
	padding: 20px 0;
}
img {
	max-width: 100%;
}
.header-promo {
	gap: 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.header-promo .promo-content a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #fff;
  text-decoration: none;
}
.header-promo .promo-content p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
}
.banner a img.mobile {
	display: none;
}
/* ====================== menu ======================== */
.main_menu {
	width: 100%;
}
.main_menu .toggle, .main_menu #drop {
	display: none;
}
.main_menu ul.navigation {
	display: flex;
	list-style: none;
	justify-content: center;
	align-items: center;
}
.main_menu ul.navigation a {
	color: #060448;
	text-decoration: none;
	padding: 13px 30px;
	font-weight: 700;
	border-bottom: 3px solid transparent;
	font-size: 18px;
	letter-spacing: .5px;
	display: block;
	text-transform: capitalize;
}
.main_menu ul.navigation a:hover {
	background: #e70101;
	color: #fff;
	transition: ease-in-out .5s;
}
.menubar {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
	margin-bottom: 50px;
}

/* ====================== end menu ======================== */
/* ====================== description ===================== */

.description-title {
  background: #f4f6f9;
  padding: 50px 20px;
  border-radius: 18px;
}

.description-title h2 {
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #060448;
}

.description-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.brand-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.brand-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 15px;
	border-left: 4px solid #060448;
	padding-left: 10px;
}

.ref-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ref-list span {
  background: #e2e8f0;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  transition: 0.2s ease;
}

.ref-list span:hover {
	background: #060448d1;
	color: #ffffff;
}
/* ======================== end =============================== */
/* ======================== description-2 ===================== */

.tech-grid-wrapper {
  margin: 60px 0;
}

.tech-grid-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #060448;
	border-left: 4px solid #060448;
	padding-left: 10px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.tech-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.tech-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 12px;
}

.tech-value {
  font-size: 18px;
  font-weight: 600;
  color: #060448;
}
.injector-content h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #060448;
}
.injector-content p {
	font-size: 16px;
	letter-spacing: 0.5px;
	line-height: 1.4;
	margin-bottom: 40px;
}

/* ===================== end ========================== */
/* ========================== description three =========================== */
.compatible-section h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #060448;
	border-left: 4px solid #060448;
	padding-left: 10px;
}

/* DESKTOP TABLE STYLE */

.responsive-table {
	width: 100%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
}
.description-three-sec {
	margin-bottom: 40px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2fr 1fr;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.table-head {
  background: #f4f6f8;
  font-weight: 600;
}

.table-row div {
  font-size: 14px;
}

/* MOBILE STYLE */

@media (max-width: 768px) {

  .table-head {
    display: none;
  }

  .table-row {
    display: block;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
  }

  .table-row div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .table-row div::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
  }

}

/* ======================= youtube ====================== */
.video-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.img-box {
	background: #ffffff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
	text-align: center;
}
.img-box-title h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #060448;
	border-left: 4px solid #060448;
	padding-left: 10px;
}
.youtube-video {
	margin-top: 60px;
}
.img-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

/* ============================ end ============================= */

.hover-grid-section {
	padding: 60px 0px;
	background: #f6f6f6;
	margin: 50px 0;
	margin-bottom: 0;
}

.hover-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #060448;
  border-left: 4px solid #060448;
  padding-left: 10px;
}

.hover-grid {
	display: flex;
	gap: 25px;
	justify-content: center;
	margin: auto;
}

.hover-card {
	background: #fff;
	padding: 30px 15px;
	border-radius: 20px;
	width: 100%;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
}

.hover-card:hover {
  transform: scale(1.08);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.hover-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: #060448;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.hover-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 500;
}

.hover-card p {
  font-size: 14px;
  color: #555;
}

.hover-grid-section.second-section {
	margin: 0;
	background: #fff;
}

/* ============================== end ======================== */

.important-section {
  padding: 40px 20px;
  background: #f2f2f2;
}

.important-box {
	background: #fff3cd;
	border-left: 6px solid #e6a100;
	padding: 25px 35px;
	border-radius: 15px;
	max-width: 1200px;
	margin: auto;
}

.important-header {
	font-size: 1.1rem;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: #856404;
}

.info-icon {
  width: 28px;
  height: 28px;
  background: #e6a100;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.important-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.important-list {
  margin: 0;
  padding-left: 20px;
}

.important-list li {
	margin-bottom: 7px;
	line-height: 1.6;
	font-size: 15px;
	color: #856404;
}

/* ======================= end ================== */
/* ======================= promo ==================== */
.promo-box-content {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.13);
	padding: 20px 20px;
}
.promo-section {
	margin: 40px 0;
}
.promo-img {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.promo-img img.mobile {
	display: none;
}
.promo-img img {
	padding: 20px 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.13);
	margin: 10px 0;
}
/* ========================== end =========================== */
.footer {
	background: #060448;
	padding: 60px 0;
}
.footer-content-grid {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.footer-content h2 {
	color: #fff;
	margin-bottom: 20px;
}
.footer-logo {
	max-width: 250px;
}
.footer-logo {
	max-width: 250px;
	display: flex;
	align-items: center;
}
.footer-content ul li a {
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	display: flex;
	align-items: first baseline;
	gap: 7px;
}
.footer-content ul li a:hover {
	color: #e70101;
	transition: ease-in-out .5s;
}
.footer-content ul li {
	list-style: none;
	margin-bottom: 8px;
}
.footer-content {
	max-width: 300px;
	width: 100%;
}
.suscribe-text p {
	color: #fff;
	font-size: 15px;
	line-height: 1.4;
}
.suscribe-text a:hover {
	background: #e70101;
	color: #fff;
	transition: ease-in-out .5s;
}
.suscribe-text a {
	text-decoration: none;
	background: #fff;
	color: #060448;
	padding: 8px 12px 12px;
	max-width: max-content;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 6px;
}
.copyright {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}
.copy {
	padding: 10px 0;
	background: #e70101;
	color: #fff;
}
.copyright p {
	margin: 0;
	font-size: 14px;
}