@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Monda:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	/* box-sizing: border-box; */
	font-family: "Monda", sans-serif;
}

.container {
	width: 100%;
	max-width: 1500px;
	margin: auto;
}

/* ===================== */
/* TOP BAR */
/* ===================== */
.top-bar {
	background: linear-gradient(to right, #CE1126 24%, #002654 24%);
	color: #fff;
	font-size: 13px;
	font-weight: 400;
        position: sticky;
        top: 0;
        z-index: 10;
}

.top-bar .container .footer-widget{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
}

.top-left {
	font-size: 15px;
}

.top-left a {
	color: #fff;
	margin-right: 12px;
	text-decoration: none;
}

.top-right span {
	margin-left: 16px;
}

.top-right a {
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
}

.top-right span:nth-child(1) {
	padding-right: 16px;
	border-right: 1px solid #fff;
}

/* ===================== */
/* MAIN HEADER */
/* ===================== */
.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    /* position: relative; */
    position: sticky;
    top: 0;
    z-index: 999999999999;
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}

/* LOGO */
.logo img {
	max-height: 65px;
}

/* ===================== */
/* NAVIGATION */
/* ===================== */
nav.nav-menu {
	margin-left: auto;
	margin-right: 43px;
	padding-right: 43px;
	border-right: 1px solid #D2C8C8;
}

.nav-menu ul {
	list-style: none;
	display: flex;
	gap: 40px;
}

.nav-menu ul li a {
	text-decoration: none;
	color: #000;
	font-size: 18px;
	font-weight: 400;
}

.nav-menu ul li a i {
	font-size: 12px;
}

/* ===================== */
/* SUB MENU */
/* ===================== */
.menu-item-has-children {
	position: relative;
}

ul.sub-menu {
	display: none;
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	list-style: none;
	padding: 10px 0;
	border-radius: 6px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 999;
}

.sub-menu li a {
	display: block;
	padding: 10px 18px;
	color: #000;
	text-decoration: none;
	font-size: 14px;
}

.sub-menu li a:hover {
	background: #f5f5f5;
	color: #c8102e;
}

/* Desktop hover */
.menu-item-has-children:hover .sub-menu {
	display: block;
}

/* ===================== */
/* BUTTON */
/* ===================== */
a.btn-primary {
    background: #CE1126;
    border-radius: 8px;
    border: 1px solid #ce1126;
    color: #fff;
    transition: 0.3s ease-in-out;
    display: flex;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    gap: 12px;
    align-items: center;
}

a.btn-primary:hover {
    background: #ff0825;
    transition: 0.3s ease-in;
}

a.btn-primary svg {
	background: #fff;
	padding: 5px;
	border-radius: 50%;
	width: 19px;
	height: 19px;
}

/* ===================== */
/* HAMBURGER */
/* ===================== */
.menu-toggle {
	width: 30px;
	height: 22px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.menu-toggle span {
	height: 3px;
	width: 100%;
	background: #000;
	border-radius: 3px;
	transition: all 0.4s ease;
}

/* Cross animation */
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}


/* hero section */
.hero {
	background-image: url('../images/hero-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	padding: 60px 0;
	color: #fff;
}

/* 👇 NEW INNER WRAPPER */
.hero-flex {
	display: flex;
	align-items: center;
	gap: 50px;
}

/* LEFT */
.hero-content {
	flex: 1.2;
}

.hero-content h1 {
	font-size: 66px;
	line-height: 72px;
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-content p,
.hero-points {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 25px;
	font-weight: 400;
	list-style: none;
	padding: 0;
	max-width: 78%;
}

.hero-points li,
.tabs-content ul li {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 2px;
	font-weight: 400;
	color: #fff;
	display: flex;
	align-items: baseline;
	gap: 9px;
}

.hero-points li img {
    transform: translateY(4px);
    width: auto;
}
/* CTA */
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px;
}

.btn-primary {
	background: #e50914;
	color: #fff;
	padding: 14px 26px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

.reviews a {
	display: flex;
	align-items: center;
	font-size: 15px;
	line-height: 21px;
	font-family: "Jost", sans-serif !important;
	gap: 10px;
	color: #fff;
	text-decoration: none;
}

.reviews strong {
	font-family: "Jost", sans-serif !important;
	font-weight: 500;
}

.stars {
	font-size: 17px;
	font-weight: 500;
	font-family: 'Jost';
}

.stars i {
	color: #F5C705;
	font-size: 13px;
	box-shadow: 0 0 30px #b5a252;
}

/* RIGHT FORM */
.hero-form {
	width: 456px;
	background: #fff;
	color: #000;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.hero-form small {
	display: block;
	font-size: 14px;
	line-height: 19px;
	font-weight: 400;
	margin: 12px 0 22px 0;
	color: #1D1D1D;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
}

.form-row>div {
	width: calc(50% - 8px);
}

.form-row label {
	font-size: 15px;
	line-height: 30px;
	color: #1D1D1D;
}

.hero-form h3 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
}

span.required {
	color: #FF2A2A;
}

.hero-form input,
.hero-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 12px;
	border: 1px solid #D4D4D4;
	border-radius: 5px;
	box-sizing: border-box;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	color: #BDB6B6;
	font-family: "Poppins", sans-serif;
}

.hero-form textarea {
	height: 90px;
	resize: none;
	margin-bottom: 15px;
}

.upload-box {
	border: 1px dashed #e50914;
	padding: 14px;
	text-align: center;
	color: #e50914;
	border-radius: 6px;
	cursor: pointer;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-form button {
	background: #CE1126;
	color: #fff;
	border: none;
	padding: 14px 24px;
	font-size: 17px;
	border-radius: 6px;
	cursor: pointer;
	line-height: 26px;
	font-weight: 500;
}

.wpcf7-form-control.wpcf7-submit{
	background: #CE1126;
	color: #fff;
	border: none;
	padding: 14px 24px;
	font-size: 17px;
	border-radius: 6px;
	cursor: pointer;
	line-height: 26px;
	font-weight: 500;
	width: 110px;
}


/* about section */
section.about {
	background: #fff;
	padding: 70px 0;
}
.about-left img {
    width: 100%;
}
.about-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 80px;
}

.about-flex>div {
	width: calc(50% - 40px);
}

h2.custom-heading {
	font-size: 40px;
	line-height: 61px;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
}

p.custom-para,
.about-flex li {
	font-size: 18px;
	font-weight: 400;
	color: #000;
}

.about-right p {
	margin-bottom: 20px;
	width: 90%;
}


/* service section */
section.service {
	background: #F7F8F9;
	padding: 60px 0;
	position: relative;
}

.service-wrapper .shape {
	position: absolute;
}

section.service .container {
	max-width: 1400px;
}

span.shape.shape1 {
	left: 5%;
	top: 10%;
}

span.shape.shape2 {
	right: 5%;
	top: 10%;
}

span.shape.shape3 {
	left: 8%;
	bottom: 27%;
}

span.shape.shape4 {
	right: 11%;
	bottom: 9%;
}

.service-section {
	position: relative;
}

.slider-nav {
	position: absolute;
	top: -70px;
	right: 0;
	z-index: 99;
	/* HIGH */
}

.card::before,
.card::after {
	pointer-events: none;
}

.card-image {
	transition: transform 0.9s ease;
}


.card:hover .card-image {
	transform: scale(1.08);
}

/* 🖤 BLACK – BOTTOM ONLY */
.card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 45%;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.95),
			rgba(0, 0, 0, 0));
	transform: translateY(0);
	transition: transform 0.3s ease, opacity 0.6s ease;
	z-index: 1;
}

/* 💗 PINK – STARTS NARROW IN CENTER */
.card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(229, 9, 20, 0.5) 0%,
			rgba(229, 9, 20, 0.5) 35%,
			rgba(229, 9, 20, 0.25) 60%,
			rgba(229, 9, 20, 0.05) 80%,
			rgba(229, 9, 20, 0) 100%);

	/* spread-in state */
	clip-path: inset(0 45% 0 45%);
	transform: translateY(-100%);
	transition:
		clip-path 0.4s ease,
		transform 0.6s ease;
	z-index: 1;
	border-radius: 18px;
}

/* HOVER – SPREAD OUT */
.card:hover::before {
	transform: translateY(100%);
	opacity: 0;
}

.card:hover::after {
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

/* CONTENT */
.card-content {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 64px;
	color: #fff;
	z-index: 2;
}

.card-content p {
	font-size: 14px;
	margin-top: 6px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(14px);
	transition: all 0.4s ease;
}

.card:hover .card-content p {
	max-height: 60px;
	opacity: 1;
	transform: translateY(0);
}

/* PLUS ICON */
.plus-icon {
	position: absolute;
	bottom: 24px;
	right: 24px;
	width: 50px;
	height: 44px;
	text-decoration: none;
	border-radius: 50%;
	border: 2px solid #fff;
	color: #fff;
	font-size: 44px;
	padding-bottom: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.7);
	transition: all 0.4s ease;
	z-index: 2;
}

.nav-buttons {
	position: absolute;
	right: 0;
	bottom: 0;
}

.card:hover .plus-icon {
	opacity: 1;
	transform: scale(1);
}

.service-section h2 {
	font-size: 36px;
}

.service-section p {
	max-width: 83%;
	margin-top: 10px;
}

.nav-buttons button {
	background: #c40014;
	color: #fff;
	border: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 23px;
	cursor: pointer;
	margin-left: 10px;
	padding-bottom: 4px;
}

.slider-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 40px;
}

.slider {
	display: flex;
	gap: 24px;
	transition: transform 0.5s ease;
	will-change: transform;
}

.card {
	min-width: 32%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	flex: 0 0 calc((100% - 48px) / 3);
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* BLACK GRADIENT */
.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0));
}

.card p {
	color: #fff;
	font-size: 18px;
	list-style: 1.3;
	width: 90%;
	z-index: 2;
	transition: all 0.4s ease;
}

.card h3 {
	color: #fff;
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	width: 70%;
	z-index: 2;
	transition: all 0.4s ease;
}

.card:hover .card-content h3 {
	transform: translateY(-10px);
	width: 100%;
	transition: 0.3s ease-in-out;
}

/* .card:hover h3 {
    transform: translateY(-24px);
    transition: all 0.4s ease;
} */
/* DOTS */
.dots {
	text-align: center;
	margin-top: 40px;
}

.dots span {
	width: 30px;
	height: 7px;
	background: #f3c0c0;
	display: inline-block;
	margin: 0 4px;
	border-radius: 4px;
	cursor: pointer;
}

.dots span.active {
	background: #c40014;
}


/* about 2 section */
.startup-section .container {
	max-width: 1340px;
}

ul.hero-points.sector-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    max-width: 100% !important;
}

ul.hero-points.sector-list li {
	width: 37%;
}
ul.hero-points.sector-list li:last-child {
    width: 50%;
}
.about-flex h6 {
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	margin: 14px 0;
}

p.custom-para {
	width: 90%;
}


/* icon box section */
section.quality-section {
	background: #F7F8F9;
	padding: 60px 0;
}

section.quality-section .container {
	position: relative;
}

section.quality-section h2 {
	text-align: center;
	margin-bottom: 60px;
}

.quality-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 90px;
	width: 94%;
	margin: 40px auto;
}

.quality-boxes::after {
	content: "";
	position: absolute;
	background-image: url('../images/line.png');
	width: 1479px;
	height: 309px;
	top: 36%;
	right: 5px;
	z-index: 1;
}

.icon-box {
	display: flex;
	gap: 20px;
	background: #fff;
	padding: 40px 20px 20px 20px;
	border-radius: 24px;
	border: 3px solid #E8E8E8;
	width: calc(29% - 45px);
	position: relative;
	min-height: 150px;
	z-index: 99;
}

.icon-box::before {
	content: "";
	position: absolute;
	background-image: var(--before-bg);
	width: 112px;
	height: 103px;
	top: -19px;
	right: 15px;
	background-size: contain;
	background-repeat: no-repeat;
}

.icon-box:not(:nth-child(3)):not(:nth-child(6))::after {
	content: "";
	position: absolute;
	background-image: url('../images/doted.svg');
	width: 64px;
	height: 19px;
	top: 50%;
	right: -81px;
}

.icon-box2::before {
	background-image: url('../images/2.svg');
}

.icon-box3::before {
	background-image: url('../images/3.svg');
}

.icon-box4::before {
	background-image: url('../images/4.svg');
}

.icon-box5::before {
	background-image: url('../images/5.svg');
}

.icon-box6::before {
	background-image: url('../images/6.svg');
}

.icon-box .content h3 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	color: #000000;
	margin-bottom: 15px;
}

.icon-box .content p {
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	color: #000000;
	width: 90%;
}

/* call to action section */
.call-action {
	background-image: url('../images/hero2.png');
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 60px 0;
	color: #fff;
}

.call-action-content h2, .call-action-content p {
    color: #fff;
}
.call-action-content p.custom-para {
    width: 46%;
	margin: 0 auto;
}
.call-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0 0 0;
}
.hero-actions.call-btn a.btn-primary {
    background: transparent;
    border: 1px solid #fff;
}

/* img box section */
section.img-box-section {
    padding: 60px 0;
}
.img-box-content  {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.img-box-content  .img-box {
    width: calc((100% / 3) - 40px);
    text-align: center;
}
.img-box-content .img-box img {
    width: 100%;
}
.img-box p {
    color: #000000;
    width: 77%;
    margin: 0 auto;
}
.img-box h3 {
    margin: 12px 0;
    font-size: 24px;
    line-height: 32px;
}
section.img-box-section h2 {
    text-align: center;
    margin-bottom: 34px;
}









/* ================= TESTIMONIAL ================= */
.testimonial-main {
    background: url("../images/test-bgs.png") center/cover no-repeat;
    padding: 90px 0 0 0;
}
.testimonial-inner {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 25px;
}
/* LEFT FIXED */
.testimonial-left {
    width: 42%;
    border-right: 1px solid #8f8f8f;
    padding-right: 35px;
}
.testimonial-left img{
  width:100%;
  border-radius:12px;
}

/* RIGHT SLIDER */
.testimonial-right{
  width:50%;
  position:relative;
}

.slider-container{
  overflow:hidden;
}

.slider-track{
  display:flex;
  gap:0;
  transition:transform .4s ease;
}

/* CARD */
.testimonial-card{
  min-width:100%;   /* 🔥 ONLY ONE CARD */
  background:#fff;
  margin: 0;
  padding:20px 0;
  border-radius:12px;
}

.quote{
  font-size:40px;
  color:#e50914;
  line-height:1;
}

.stars{
  color:#f4b400;
  margin-bottom:10px;
}
.author{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:15px;
}

.avatar {
    width: 56px;
    height: 56px;
    background: #CE1126;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.testimonial-card .stars {
    margin: 10px 0;
}
/* ARROWS BOTTOM RIGHT */
.slider-arrows {
    position: absolute;
    bottom: 0;
    right: 0;
}

.slider-arrows button{
  width:44px;
  height:44px;
  border:none;
  background:#CE1126;
  color:#fff;
  border-radius:50%;
  font-size:18px;
  cursor:pointer;
  margin-left:8px;
}

.testimonial-card .stars i {
    box-shadow: unset;
}
.testimonial-card strong {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-weight: 500;
}
.testimonial-card small {
    font-size: 14px;
    line-height: 23px;
    color: #8f8f8f;
}

/* ================= FAQ ================= */
.faq-section {
  padding: 70px 20px;
  background: #fff;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-wrapper {
    max-width: 1430px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.faq-left {
    width: 54%;
}
.faq-right {
    width: 37%;
}
.faq-item {
    background: #fdf5f6;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #d7d0d1;
}
.faq-question {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
}
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 40px;
    color: #CE1126;
}
.faq-item.active .faq-answer {
    height: auto;
}
.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    transform 0.3s ease;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}

/* jab active ho */
.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}
.faq-question::after {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	content: "−";
  transform: rotate(180deg);
}
.faq-right img {
  width: 100%;
  border-radius: 12px;
}


/* blog section */
section.blog-section {
    background: #F7F8F9;
    padding: 60px 0;
}
section.blog-section h2 {
    text-align: center;
    margin-bottom: 40px;
}
/* section.blog-section img {
    width: 100%;
}
.blog-btn img {
    width: auto !important;
} */
.blog-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.blog-date {
    display: flex;
    align-items: center;
    gap: 7px;
}
.blog-main img {
	width: 100%;
}
.blog-main .blog-btn a img{
	width: auto;
}
.blog-section .container{
	width: 1430px;
}
/* LEFT BIG BOX */
.blog-left {
    width: 44%;
}
/* RIGHT SIDE (2 boxes column) */
.blog-right {
    width: 51%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.blog-card.small {
    display: flex;
    gap: 20px;
    align-items: center;
}
section.blogs-section .blog-content p {
    line-height: 28px;
}
.blog-date {
    font-size: 14px;
    line-height: 23px;
    color: #958585;
    font-weight: 400;
    margin: 10px 0;
}
.blog-main h3 {
    font-size: 24px;
    line-height: 33px;
    color: #000;
    font-weight: 400;
}
.blog-main p {
    margin: 10px 0;
}
.blog-btn a {
    font-size: 18px;
    line-height: 29px;
    color: #CE1126;
    text-decoration: none;
}
.blog-card.small .blog-date {
    margin: 0;
}


/* footer section */
footer.footer-section {
    background: #051426;
}

.site-footer {
  background: radial-gradient(circle at top, #0b1c2f, #040d1a);
  color: #fff;
  font-size: 14px;
}

.footer-main {
    display: inline-flex;
    gap: 40px;
    flex-wrap: wrap;
	padding: 60px 0;
}

.footer-col.brand.col1 {
    width: 22%;
}
.footer-col.col2 {
    width: 11%;
}
.footer-col.col3 {
    width: 43%;
}
.footer-col h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #fff;
}


.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfd6df;
  text-decoration: none;
  transition: 0.3s;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
.footer-col ul li a:hover img {
	transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #CE1126;
}
.footer-col.col3 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 70px;
}
.footer-col.brand.col1 p {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
}
.footer-col.col3 ul li {
    max-width: 100%;
    width: 40%;
}

/* BRAND */
.brand img {
  max-width: 170px;
  margin-bottom: 20px;
}

/* SOCIAL */
.social {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.social a {
    color: #fff;
    transition: 0.3s;
    font-size: 20px;
}

.social a:hover {
  color: #CE1126;
}

/* CONTACT */
.contact p {
  margin-bottom: 12px;
}
.footer-col.contact.col4 li a img {
    height: 20px;
    width: 20px;
	transform: translateY(5px);
}
.footer-col.col4 ul li a {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid #595959;
    text-align: center;
    padding: 18px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}
.scroll-fade {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.scroll-fade.show {
  opacity: 1;
}
.menu-item-has-children.active > .sub-menu {
  display: block;
}


/* service page css */

section.hero.document-hero {
	background-image: url('../images/french/document-hero.png') !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 700px;
}

.document-hero p {
	width: 41%;
}

section.translation {
	background: #F7F8F9;
	padding-top: 60px;
}

section.translation h2,
section.translation p.custom-para {
	text-align: center;
	width: 47%;
	margin: 0 auto;
}

.certified-flex {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 70px;
	width: 65%;
	margin: 70px auto 0;
}

.certified-flex .box {
	box-shadow: 3px 3px 5px 3px #b5b5b5;
	padding: 30px;
	border-radius: 20px;
	background: #fff;
}

.certified-flex .box h4 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	color: #000;
	margin-bottom: 10px;
}

.certified-flex .box p {
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #000;
	text-align: left;
}

.certified-flex .box {
	width: 27%;
}

/* tab section */
.tabs-section {
    padding: 60px 0;
    background: #fff;
    background-image: url(../images/french/tab-bg.png);
    background-position: top center;
}
.tabs-container {
	display: flex;
	background: #F3E9EA;
	border-radius: 12px;
	margin-top: 40px;
}

.tabs-list {
	width: 30%;
	background: #fbf1f1;
	border-radius: 12px;
	overflow: hidden;
}

.tab {
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	width: 100%;
	padding: 27px 20px;
	border: none;
	text-align: left;
	background: #FCF1F2;
	cursor: pointer;
	color: #bab2b3;
	transition: all 0.3s ease;
}

.tab:not(:last-child) {
	border-bottom: 1px solid #bab2b3;
}

.tab.active {
	background: #d90c2b;
	color: #fff;
	font-weight: 600;
}

.tabs-content {
	width: 70%;
	background: #F3E9EA;
	border-bottom-right-radius: 12px;
	border-top-right-radius: 12px;
	padding: 40px 80px;
	position: relative;
	overflow: hidden;
}

.tab-panel {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.tab-panel.active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	transition: 0.8s ease-in;
}

.tabs-content ul {
	margin: 12px 0;
}

.tabs-content ul li,
.tabs-content p {
	color: #000;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	align-items: center;
}

.tabs-content ul li img {
	transform: translateY(1px);
	width: auto;
	margin: 0;
}


.tab-panel h3 {
	font-size: 24px;
	font-weight: 500;
	color: #000;
	line-height: 32px;
}

.tab-panel .check {
	color: #d90c2b;
	font-weight: 500;
	margin-bottom: 10px;
}


.tab-panel img {
	width: 100%;
	border-radius: 14px;
	margin-top: 20px;
}

section.tabs-section h2,
section.tabs-section p.custom-para {
	text-align: center;
}

section.tabs-section p.custom-para {
	width: 60%;
	margin: 0 auto;
}


/* Blog page */
section.blog {
    /* background-image: url('../images/blog/blog-bg.png') !important; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 265px;
    display: flex;
}
section.blog h1 {
    font-size: 66px;
    line-height: 72px;
    color: #fff;
    text-align: center;
}
section.blogs-section {
    padding: 70px 0;
}
.blogs a {
    text-decoration: none;
    color: #000000;
    font-size: 24px;
    line-height: 33px;
}
.blogs h3 {
    font-size: 24px;
    line-height: 33px;
    font-weight: 400;
    margin: 7px 0;
}
.blog-btn span {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    color: #CE1126;
	transition: 0.4s ease;
    display: block;
}
.blog-btn span:hover {
    transform: translateY(-5px);
}
.blog-btn.btn2:hover {
    transform: translateY(-1px);
}
.blog-btn {
    margin-top: 10px;
	transition: 0.4s ease;
}	
.blog-btn.btn2 {
    margin-top: 2px;
}
.blogs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 45px 75px;
}
.blogs>a {
    width: calc(49% - 23px);
}
nav.custom-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}
.blogs-section .custom-pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blogs-section .custom-pagination li.active a {
    background-color: #CE1126;
    color: #ffffff;
    border-color: #CE1126;
}
.blogs-section .custom-pagination ul li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CE1126;
    color: #181818;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.blogs-section .custom-pagination ul li a:hover {
    background: #CE1126;
    transition: 0.3s ease-in;
    color: #fff;
}
.blogs-section .custom-pagination ul li.next a:hover {
    background: transparent !important;
}
.blogs-section .custom-pagination ul li.next a {
    border: unset;
}

/* blog detail page */

section.detail_blog_sec {
    padding: 60px 0;
}
.detail_blog_sec .detail_blog_sidebar {
    display: flex;
    align-items: start;
    gap: 70px;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: space-between;
}
.detail_blog_sec .detail_blog_sidebar .detail_blog {
    width: 69%;
}
.blog_sidebar {
    width: 26%;
    position: sticky;
    vertical-align: top;
    top: 0;
}
.detail_blog_sec .detail_blog_sidebar .detail_blog .main_img {
    margin-bottom: 30px;
}
.detail_blog_sec .detail_blog_sidebar .detail_blog .main_img img {
    width: 100%;
    height: 491px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
}
.detail_blog_sec .detail_blog_sidebar .detail_blog h3, .detail_blog_sec .detail_blog_sidebar .blog_sidebar h1 {
	font-size: 40px;
    color: #000000;
    line-height: 52px;
	font-weight: 600;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar h1 {
    margin-bottom: 24px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box input {
    width: 100%;
    height: 44px;
    padding: 0 48px 0 16px;
    border-radius: 999px;
    border: none;
    background: #F9E0E3;
    outline: none;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown .toc-btn {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    border: none;
    background: #F9E0E3;
    font-size: 24px;
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 18px;
    text-decoration: none;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog>div h5 {
    font-size: 24px;
    color: #000000;
    line-height: 34px;
    margin-bottom: 5px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog>div .read_btn {
    font-size: 17px;
    color: #CE1126;
    position: relative;
    text-align: center;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    display: block;
    width: fit-content;
    cursor: pointer;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown {
    position: relative;
    border-radius: 8px;
    margin: 50px 0 40px 0;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown:hover .toc-list {
    display: block;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown .toc-list {
    position: absolute;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none;
    top: 100%;
    left: 0;
    width: 100%;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown .toc-list li a {
    display: block;
    padding: 10px 16px;
    color: #1f1f1f;
    font-size: 14px;
    text-decoration: none;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #F9E0E3;
    border-radius: 26px;
    padding: 3px 6px;
    margin-bottom: 20px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box .search-btn {
    width: 89px;
    height: 44px;
    border-radius: 26px;
    background: #CE1126;
    border: none;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.blog_form_sec .footer-col.col4 ul li a, .contact-row .footer-col.col4 ul li a {
    color: #000;
    font-size: 18px;
    line-height: 27px;
}
.blog_form_sec .footer-col.contact.col4 li a img, .contact-row .footer-col.contact.col4 li a img, .footer-col ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(92%) saturate(4110%) hue-rotate(340deg) brightness(92%) contrast(98%);
}
.blog_form_sec .hero-form {
    box-shadow: 0 25px 60px rgb(0 0 0 / 9%);
	width: auto;
	padding: 20px;
}
.blog_form_sec label {
    font-size: 12px;
    line-height: 28px;
}
.blog_form_sec .upload-box {
    font-size: 12px;
}
.blog_form_sec .footer-col ul li {
    margin-bottom: 14px;
}
.blog_form_sec {
    margin-top: 30px;
}
.detail_blog p.border-top {
    border-top: 1px solid #dedede;
    padding-top: 18px;
}
.detail_blog p.mt {
    margin-top: 20px;
}
.detail_blog ul {
    padding: 20px 0 30px 20px;
    line-height: 30px;
}

/* blog details slider */
section.slider-section {
    background: #F7F8F9;
    padding: 60px 0 30px 0;
}
.blog-left.blog-box {
    background-color: #fff;
    border-radius: 22px;
    box-shadow: 0 0 8px #00000024;
}
.blog-left.blog-box .inner-content {
    padding: 20px 22px;
}
    .slick-slide {
      margin: 0px 20px;
    }

    .slick-slide img {
      width: 100%;
    }
ul.slick-dots {
    display: none;
}
.slick-list.draggable {
    padding-bottom: 20px;
}
    .slick-prev:before,
    .slick-next:before {
      color: #000;
    }
.blog-btn img {
    width: auto;
}

section.slider-section .blog-btn a {
    display: flex;
    gap: 8px;
}

    .slick-current {
      opacity: 1;
    }
section.slider-section h2 {
    margin-bottom: 30px;
	text-align: center;
}
.blog-left.blog-box h3 a {
    font-size: 24px;
    line-height: 33px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.blog-left.blog-box p {
    margin: 10px 0;
}
button.slick-prev.slick-arrow , button.slick-next.slick-arrow {
    background-color: #CE1126;
    padding: 23px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
button.slick-prev.slick-arrow {
    left: -50px;
}
 button.slick-next.slick-arrow {
    right: -50px;
	transform: rotate(180deg);
}
.slick-prev:before, .slick-next:before {
    content: "" !important;
    background-image: url('../images/blog/arrow.svg') !important;
    width: 20px;
    height: 20px;
    position: absolute;
    background-repeat: no-repeat;
    opacity: 1;
    top: 16px;
    display: flex;
    align-items: center;
}


/* contact us page */

section.contact-sec {
    background-image: url('../images/contact/contact-hero.png') !important;
}
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
    margin: 70px 0;
}
.contact-row .left-col h2 {
    margin-top: 10px;
}
.contact-row .hero-form {
    box-shadow: 0 25px 60px rgb(151 151 151 / 15%);
}
.contact-row .left-col ul li:not(:last-child) {
    margin-bottom: 22px;
}
.left-col img {
    width: 100%;
}
/* ===================== */
/* RESPONSIVE */
/* ===================== */


/* MOBILE */
@media(max-width:767px) {
	br {
		display: none;
	}
	.about-flex>div,
	.hero-form,
	.form-row>div,
	.quality-boxes,
	.icon-box,
	.img-box-content .img-box,
	.faq-left,
	.faq-right,
	.footer-col.brand.col1,
	.footer-col.col2,
	.footer-col.col3,
	.footer-col.col4,
	.testimonial-left,
	.testimonial-right,
	.call-action-content p.custom-para,
	p.custom-para,
	ul.hero-points.sector-list li,
	.document-hero p,
	.certified-flex,
	section.translation h2,
	section.translation p.custom-para,
	section.tabs-section p.custom-para,
	.certified-flex .box, 
	.blogs>a,
	.hero-content, 
	.blog_sidebar, 
	.detail_blog_sec .detail_blog_sidebar .detail_blog {
    width: 100%;
}
.hero-content br, .testimonial-right br {
    display: block;
}
	section {
		padding: 50px 0 !important;
	}

.header-btn {
    display: none;
}
.top-bar {
    background: linear-gradient(to right, #CE1126 33%, #002654 33%);
}
.top-right {
    display: flex;
    flex-direction: column;
}
.top-right span:nth-child(1) {
    padding-right: 0;
    border-right: 0;
}
.hero-content h1 {
    font-size: 40px;
    line-height: 50px;
}
.hero-content p, .hero-points {
    max-width: 100%;
}
.hero-form {
    box-sizing: border-box;
}
.faq-question {
    font-size: 20px;
    line-height: 30px;
	padding-right: 50px;

}
.faq-question::after {
    right: 0;
    top: 0;
}
.about-flex {
    gap: 20px;
}
.card {
    min-width: 100%;
}
.quality-boxes::after{
	display: none;
}
.col-rev {
    flex-direction: column-reverse;
}
.icon-box:not(:nth-child(6))::after {
    bottom: -58px !important;
    right: 50% !important;
    top: unset !important;
}
.icon-box:nth-child(3)::after {
	    content: "";
    position: absolute;
    background-image: url(../images/doted.svg);
		background-repeat: no-repeat;
		background-size: cover;
    width: 64px;
    height: 19px;
    bottom: -58px !important;
    right: 50% !important;
    top: unset !important;
}

.blog-card.small {
    display: block;
}
h2.custom-heading {
    font-size: 30px;
    line-height: 42px;
}
.testimonial-left {
    border-right: none;
}
.testimonial-main {
    padding: 60px 4px;
}
.testimonial-inner {
    padding: 20px;
	box-sizing: border-box;
}
span.shape.shape1 {
    top: 2%;
}
span.shape.shape3 {
    bottom: 10%;
}
span.shape.shape4 {
    right: 3%;
    bottom: 11%;
}
.service-section {
    position: unset;
}
.nav-buttons {
    right: 25px;
    bottom: 40px;
}
section.service {
    padding-bottom: 120px;
}
.footer-col.col3 ul {
    gap: 5px 40px;
}
.footer-col.col3 ul li {
    width: 43%;
}

	section.translation {
		padding: 50px 0;
	}

	.certified-flex {
		gap: 28px;
		justify-content: center;
		margin-top: 20px;
	}

	.flag-box {
		display: none;
	}

	.tabs-container {
		flex-direction: column;
		gap: 20px;
	}

	/* Tabs as horizontal scroll */
	.tabs-list {
		width: 100%;
	}

	.tabs-list::-webkit-scrollbar {
		display: none;
	}

	.tab {
		flex: 0 0 auto;
		white-space: nowrap;
		padding: 14px 16px;
		font-size: 14px;
		border-bottom: none;
		border-right: 1px solid #eee;
	}

	.tab:last-child {
		border-right: none;
	}

	.tab.active {
		border-radius: 0;
	}

	/* Content full width */
	.tabs-content {
		width: 100%;
		padding: 20px;
		box-sizing: border-box;
	}

	.tab-panel h3 {
		font-size: 18px;
	}

	.tab-panel p {
		font-size: 14px;
	}

	section.map-section.scroll-fade.show {
		padding: 0 !important;
	}
	section.blog h1 {
    font-size: 44px;
    line-height: 54px;
}
section.slider-section {
    padding: 40px 0 20px 0 !important;
}
.blog-left.blog-box h3 {
    font-size: 22px;
    line-height: 31px;
}
	.detail_blog_sec .detail_blog_sidebar .detail_blog .main_img img {
    height: 250px;
}
section.blogs-section .blogs img {
    width: 100%;
}
section.blogs-section .blog-btn img {
    width: auto;
}
section.blog {
    min-height: 170px;
}
.left-col, .right-col, .left-col img {
    width: 100%;
}
.contact-row {
    gap: 20px;
    margin: 0;
}
}


/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1199px) {

	/* Show toggle */
	.menu-toggle {
		display: flex;
	}

	/* Reset desktop nav styles */
	nav.nav-menu {
		margin: 0;
		padding: 0;
		border: none;
	}

	/* Mobile nav (SLIDE EFFECT) */
	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		border-top: 1px solid #eee;
		z-index: 9999;

		/* animation magic */
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transform: translateY(-10px);
		transition: all 0.45s ease;
	}

	.nav-menu.active {
		max-height: 600px;
		opacity: 1;
		/* transform: translateY(0); */
	}

	.nav-menu ul {
		flex-direction: column;
		gap: 0;
	}

	.nav-menu ul li {
		border-bottom: 1px solid #eee;
	}

	.nav-menu ul li a {
		padding: 15px 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	/* Mobile submenu */
	.sub-menu {
		position: static;
		box-shadow: none;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.menu-item-has-children:hover .sub-menu {
		display: block;
	}
ul.hero-points.sector-list li {
    width: 100%;
}

	h2.custom-heading, 
.detail_blog_sec .detail_blog_sidebar .detail_blog h3, 
.detail_blog_sec .detail_blog_sidebar .blog_sidebar h1 {
    font-size: 30px;
    line-height: 40px;
}
	.menu-item-has-children.active .sub-menu {
		max-height: 500px;
	}

	.sub-menu li a {
		padding-left: 35px;
		font-size: 13px;
	}
	
.blog_form_sec .hero-form h3 {
    font-size: 26px;
    line-height: 36px;
}
}



@media (max-width: 992px) {

	.hero-flex {
		flex-direction: column;
	}

	  .blog-wrapper {
    flex-direction: column;
  }

  .blog-left,
  .blog-right {
    width: 100%;
  }
    .footer-container {
    flex-direction: column;
  }
  .icon-box:not(:nth-child(6))::after {
    bottom: -58px !important;
    right: 50% !important;
    top: unset !important;
}
.icon-box:nth-child(3)::after {
	    content: "";
    position: absolute;
    background-image: url(../images/doted.svg);
		background-repeat: no-repeat;
    width: 64px;
    height: 19px;
    bottom: -58px !important;
    right: 50% !important;
    top: unset !important;
}
	.icon-box {
    max-width: 100%;
	width: 100%;
}
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
.icon-box {
    width: calc(44% - 45px);
}
.icon-box:nth-child(3)::after {
	    content: "";
    position: absolute;
    background-image: url(../images/doted.svg);
		background-repeat: no-repeat;
    width: 64px;
    height: 19px;
    top: 50%;
    right: -81px;
}
.icon-box:nth-child(even)::after{
	display: none;
}
.quality-boxes {
    width: 100%;
}
.blog-left {
    width: 43%;
}
span.shape.shape1 {
    left: 3%;
    top: 2%;
}
span.shape.shape3 {
    bottom: 5%;
}
}
/* ===================== */
/* SMALL MOBILE */
/* ===================== */
@media (max-width: 576px) {

	.logo img {
		max-height: 55px;
	}

	.header-flex {
		padding: 12px 0;
	}

	.header-btn a {
		padding: 8px 14px;
		font-size: 14px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
	.container {
    width: 95% !important;
}
.icon-box {
    width: calc(27% - 45px);
    justify-content: center;
}
.quality-boxes::after {
    width: 100%;
    top: 40%;
    background-repeat: no-repeat;
    right: 1%;
    background-size: contain;
}
span.shape.shape1 {
    top: 3%;
}
span.shape.shape3 {
    left: 5%;
    bottom: 6%;
}
span.shape.shape4 {
    right: 3%;
    bottom: 7%;
}
span.shape.shape2 {
    top: 6%;
}
.footer-col.col3 ul li {
    max-width: 100%;
    width: 100%;
}
.footer-col.brand.col1 {
    width: 26%;
}
.footer-col.col2 {
    width: 14%;
}
.footer-col.col3 {
    width: 25%;
}
.about-flex li {
    font-size: 16px;
}
h2.custom-heading {
    font-size: 36px;
    line-height: 54px;
}
ul.hero-points.sector-list li {
    width: 48%;
}
.hero-content h1 {
    font-size: 50px;
    line-height: 60px;
}
.nav-menu ul li a {
    font-size: 16px;
}
a.btn-primary {
    font-size: 17px;
}
.icon-box {
    display: block;
}
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	br{
		display: none;
	}

	section {
		padding: 50px 0 !important;
	}

	.hero-content h1 {
    font-size: 44px;
    line-height: 54px;
}
	h2.custom-heading {
    font-size: 30px;
    line-height: 44px;
}
.hero-form {
    margin-right: auto;
}
.call-action-content p.custom-para {
    width: 100%;
}
.about-flex {
    gap: 40px;
    align-items: flex-start;
}
.about-flex>div {
    width: calc(51% - 40px);
}

	.hero-content p,
	.hero-points,
	ul.hero-points.sector-list li {
    max-width: 100%;
	width: 100%;
}
.img-box-content  .img-box {
    width: calc((100% / 2) - 22px);
}
.quality-boxes::after {
    display: none;
}
.testimonial-left {
    width: 40%;
}
.testimonial-inner {
    box-sizing: border-box;
}
.faq-question {
    font-size: 20px;
    line-height: 30px;
	padding-right: 50px;

}
.footer-col.brand.col1 {
    width: 30%;
}
.footer-col.col2 {
    width: 20%;
}
.footer-col.col3 {
    width: 38%;
}

	.footer-col.col3 ul li,
	section.translation h2,
	.certified-flex, 
	.blogs>a {
    max-width: 100%;
    width: 100%;
}

	.tab {
		font-size: 18px;
		line-height: 24px;
		padding: 25px 15px;
	}

	.tabs-content {
		padding: 40px;
	}

	p.custom-para {
		width: 90% !important;
	}

	.certified-flex>div {
		width: calc(23% - 9px) !important;
	}

	.certified-flex {
		gap: 60px;
		margin: 40px auto 0;
	}

	section.translation {
		padding-bottom: 0 !important;
	}

	section.map-section.scroll-fade.show {
		padding: 0 !important;
	}
	.detail_blog_sec .detail_blog_sidebar .detail_blog {
    width: 50%;
}
.blog_sidebar {
    width: 39%;
}
.detail_blog_sec .detail_blog_sidebar .detail_blog .main_img img {
    height: 260px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog {
    display: block;
}
.blog_form_sec .form-row>div {
    width: 100%;
}
.left-col, .right-col {
    width: calc(48% - 7px);
}
.contact-row {
    gap: 40px;
    margin: 0;
}
.right-col .hero-form, .form-row>div {
    width: 100% !important;
    box-sizing: border-box;
}
section.blog h1 {
    font-size: 50px;
    line-height: 58px;
}
section.blog {
    min-height: 180px;
	}
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
	.hero-content h1 {
    font-size: 50px;
    line-height: 58px;
}
.hero-form {
    width: 330px;
}
.form-row>div {
    width: 100%;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
.quality-boxes::after {
    top: 43%;
}
}

@media only screen and (max-width: 1500px) {
.container {
    width: 90% !important;
}

}

.hidden-fields-container {
  display: none;
}
.custom-para .read-toggle {
    color: #0073aa;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 5px;
}
.menu-item-has-children > a::after {
    content: "\f107"; /* FontAwesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 6px;
    font-size: 14px;
	margin-top: 12px;
}

.sub-menu.active {
    max-height: 500px; /* adjust if needed */
}

/* Rotate arrow when submenu is active */
.menu-item-has-children > a.active::after {
    transform: rotate(180deg); /* arrow points up */
}

.blogs-section .custom-pagination ul li .page-numbers.current {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CE1126;
    color: #181818;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #CE1126;
    color: white;
}

.next.page-numbers:hover img {
     filter: brightness(0) invert(1);
}

.prev.page-numbers:hover img {
     filter: brightness(0) invert(1);
}

.prev.page-numbers img {
    transform: rotate(180deg);
}

.post-content.mt p {
    margin-top: 10px;
}

.post-content.mt h2 {
    margin-top: 10px;
}

.post-content.mt h3 {
    margin-top: 10px;
}

img.attachment-thumbnail.size-thumbnail.wp-post-image {
    border-radius: 6px;
}

.search-result {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.search-banner-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;
    padding: 8px;
    border-radius: 60px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.search-banner-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 19px;
}

.search-banner-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-banner-form button {
    padding: 14px 25px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #ce1126, #08134f);
    transition: 0.4s ease;
}

.search-banner-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.search-banner-form:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4),
                0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-actions.view-all-blogs {
    justify-content: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}