* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  /* font-family: "Roboto", sans-serif; */
    font-family: 'Montserrat', sans-serif;
     /* font-family: "Playfair Display", serif; */
      /* font-family: "Lato", sans-serif; */
      /* font-family: "Inter", sans-serif; */
}

h1,h2,h3,h4,h5{
	font-family: 'Montserrat', sans-serif;
}

.header_wrap {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  padding-bottom: 15px;
}

#mega-menu-wrap-primary {
    width: fit-content;
    margin: 0 auto;
}

.top_header {
  padding: 5px 40px 0px 40px;
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: end;
  gap: 40px;
  align-items: center;
}

.top_header a {
  text-decoration: none;
  display: inline-block;
  color: #626262;
  font-size: 15px;
}

.main-header {
  display: grid;
  justify-content: space-between;
  align-items: end;
  grid-template-columns: 250px 1fr 250px;
  padding: 0px 40px;
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

/* .logo img {
  width: 185px;
  margin-right: 10px;
} */

.logo a {
  display: inline-block;
  text-decoration: none;
}

a {
  transition: all 0.5s ease;
}

a:hover {
  transition: all 0.5s ease;
  color: #0070bb;
}

/* Navigation */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 0;
}

.nav-links ul li {
  position: relative;
  padding-right: 10px;
}

.nav-links ul li.has_submenu:hover a {
  color: #0070bb;
  ;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
}

.nav-links a:hover {
  color: #0070bb;
}

.has_submenu {
  position: relative;
}

/* .has_submenu::after {
  content: '\f107';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  pointer-events: none;
  transition: rotate 0.3s ease-in;
} */

.nav-links > ul > li.has_submenu::after {
  content: '\f107'; 
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  pointer-events: none;
  transition: transform 0.3s ease-in;
  /* color: #444; */
}

.nav-links > ul > li.has_submenu:hover::after {
  color: #0070bb;
  transform: translateY(-50%) rotateX(180deg);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
}


/* Register Button */
.contact-btn {
  background-color: #0070bb;
  color: white;
  padding: 5px 30px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 18px;
}

.contact-btn:hover {
  background-color: #0584d9;
  color: white;
}


.breadcrumb {
  display: none;
  margin-bottom: 0;
}

.breadcrumb .line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #0070bb;
  margin: 5px;
  transition: all 0.3s ease-in;
}

.nav-links ul li .submenu {
  position: absolute;
  top: 17px;
  width: max-content;
  transition: all 0.5s ease-in;
  padding: 34px 0 30px 0;
  transform: translateX(-30%);
  z-index: 9;
  display: none;
}

.nav-links ul li .submenu:before {
  content: "";
  position: absolute;
  left: 46%;
  top: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #ffffff transparent;
}


.nav-links ul li .submenu ul {
  flex-direction: column;
  gap: 0; 
  background: #fff;
  padding: 0 10px 15px;
}

.nav-links ul li:hover .submenu {
  display: block;
}


.nav-links ul li .submenu ul li a {
  text-transform: capitalize;
  display: block;
  line-height: 23px;
  color: #444 !important;
}

.nav-links ul li .submenu ul li a:hover {
  color: #0070bb !important;
}

.nav-links ul li .submenu ul li {
  padding: 10px 20px;
  display: inline-block;
  border-bottom: 2px solid #0070bb;
}

.nav-links ul li .submenu ul li .submenu{
 display: none;
}
.nav-links ul li .submenu ul li:hover .submenu {
    display: block;
    transform: translateX(100%);
    right: 0;
    top: 0px;
    padding: 0px 10px 0 18px;
}
.nav-links ul li .submenu ul li:hover .submenu:before {
    content: "";
    position: absolute;
    left: 3%;
    top: 17px;
    width: 0;
    height: 0;
    transform: rotate(-90deg);
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #ffffff transparent;
}

.nav-links ul li .submenu ul li.has_submenu{
 position: relative; 
}
.nav-links ul li .submenu ul li.has_submenu::after {
  content: '\f105'; 
  position: absolute;
  right: 0px;    
  top: 50%;        
  transform: translateY(-50%);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  pointer-events: none;
 
}
.nav-links ul li .submenu ul li.has_submenu:hover::after {     
  transform: translateY(-50%)rotateX(-180deg); 
  color: #0070bb;
}




/* hero section  */

.hero-section {
  position: relative;
  max-width: 1700px;
  margin: 108px auto 0 auto;
  z-index: 1;
}

/* .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #004aad 50%, #f5f5f5 50%);
  padding: 80px 60px;
} */

.hero-content {
  flex: 1;
  color: #fff;
  max-width: 600px;
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 2.4vw;
    line-height: 1.1;
    font-weight: 400;
}

.hero-content h1 span {
  font-weight: 700;
}

.explore-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 30px;
  background: #fff;
  color: #000000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.1s ease;
  font-size: 18px;
  border: 1px solid #fff;
}

a.explore-btn:hover {
  background: transparent;
  color: #fff;

}




.hero-image img {
  max-width: 100%;
  height: auto;
}

.stats-bar {
    display: grid;
    align-items: center;
    background: #fbfbfb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 50%);
    max-width: 1100px;
    width: 100%;
    border-radius: 8px;
    z-index: 2;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 32px 26px;
    gap: 30px;
}

.stat-item {
  padding: 0 12px;
  border-right: 1px solid #adadad;
}

.stat-item:nth-child(4) {
  border-right: 0;
}

.stat-item.d_flex {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 0px;
  grid-template-columns: 87px 1fr;
}

.stat-item h2 {
  color: #0070bb;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
}

.stat-item h2 sup {
    top: -0.1em;
    font-weight: 700;
    font-size: 0.9em;
    position: absolute;
}

.stat-item h2 span {
    font-size: 46px;
    color: #0070bb;
    font-weight: 700;
    display: inline-block;
    line-height: 36px;
}

.stat-item p {
    color: #555;
    font-size: 20px;
    margin: 0px;
    font-weight: 500;
    line-height: 1.1;
}



.experience_about {
  max-width: 800px;
  margin: 90px auto 0 auto;
  padding: 60px 30px 90px;
  text-align: center;
  background: url(../images/map.png)no-repeat center center;
  background-size: cover;
}

.experience_about p {
    font-size: 34px;
    color: #464646;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

.weServe_industries {
  position: relative;
  padding: 20px 20px 90px 20px;
}

.weServe_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.weServe_title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 45px;
    font-weight: 800;
}

h1.entry-heading {
    position: absolute;
    top: 50%;
    left: 15%;
    margin-top: 0;
    transform: translateY(-50%);
    color: #fff;
    font-weight: 700;
}

.weServe_single_box {
  flex: 1;
  position: relative;
  transition: all 0.5s ease;
}
.weServe_single_box:hover {
    transform: translateY(-5px);
}

.weServe_single_box img {
  width: 100%;
}

.text_with_icon {
  position: absolute;
  bottom: 0;
  color: white;
  width: 100%;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0070bb9e;
}

.text_with_icon a {
  text-decoration: none;
  color: #fff;
  transition: all 0.5s ease;
  margin-right: 5px;
}

.text_with_icon a:hover {
  margin-right: 0;
}

.text_with_icon p {
  margin: 0;
  font-size: 18px;
}

.readmore_btn {
  padding: 10px 35px;
}


/* ================= Featured Products ================= */

.section-title {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 35px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  /* overflow: hidden; */
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
    color: #003b95;
    font-size: 24px;
    margin-bottom: 0px;
    font-weight: 600;
}

.product-content span {
  font-size: 13px;
  display: inline-block;
  color: #ababab;
  margin-bottom: 10px;
}

.product-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.product-detail {
  color: #0070bb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 16px;
}

.product-detail:hover {
  color: #004aad;
}

.view-all {
  text-align: right;
  margin-top: 20px;
}

.view-all a {
  color: #64676a;
  font-weight: 600;
  text-decoration: none;
  font-size: 19px;
}

.view-all a i {
  margin-left: 5px;
  width: 21px;
  text-align: left;
  transition: all 0.3s ease;
}

.view-all a:hover i {
  text-align: end;
}

/* ================= About Section ================= */
.about-section {
  background: #f9f9f9;
  margin-top: 90px;
  padding: 50px 20px 70px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-left h3 {
    font-size: 26px;
    color: #7c7c7c;
    font-weight: 500;
}

.about-left h2 {
    font-size: 27px;
    color: #003b95;
    margin: 10px 0;
    line-height: 1.3;
}
.about-left .italic {
  font-style: italic;
  color: #444;
  font-size: 24px;
  line-height: 1.3;
}

.video-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-box img {
  width: 100%;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.0rem;
  color: white;
  background: rgba(0, 59, 149, 0.8);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-right img {
  width: 100%;
  margin-bottom: 25px;
}

.about-right p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}



/* licence_free_products */

.licence_free_products {
  padding: 90px 20px;
}

.licence_free_products .product-detail {
  background: #0070bb;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
}

.licence_free_products .product-detail:hover {
  background-color: #0584d9;
  color: white;
}


.licence_free_products .view-all {
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 5px 40px;
  border: 1px solid #0070bb;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.licence_free_products .view-all:hover {
  background-color: #0070bb;
  border: 1px solid #0070bb;
}

.licence_free_products .view-all:hover a {
  color: #fff;
}

.licence_free_products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.box_shadow {
  background: #ffffff;
  padding: 30px;
  box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.3);
}

.vertel_talky_offers {
  background: #f1f1f1;
  position: relative;
  padding: 50px 10px;
}

.vto_grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 80px;
}

.vto_title h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 0;
  padding-left: 12px;
  border-left: 3px solid #0070bb;
  line-height: 1.2;
  font-weight: 400;
}

.vto_about {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  text-align: center;
}

.vto_card .box_img {
    margin-bottom: 25px;
    width: 100px;
    margin: 0 auto 20px auto;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    height: 100px;
}
.vto_card .box_img img {
    width: 100%;
}

.vto_card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}

.vertel_talky_offers.Partner_with_us {
  position: relative;
  margin: 90px 0;
  padding: 0;
  background: none;
}

.partner_with_banner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 150px 20px;
  background: url(../images/partner-with-us-banner.png)no-repeat;
  background-size: cover;
  background-position: center;
}

.Partner_with_us .vto_title h2 {
  color: #ffffff;
  border-left: 0;
  padding-left: 0px;
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 20px;
}

.Partner_with_us .vto_title h2::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}

.Partner_with_us .vto_title p {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}

.dealer-registration-btn {
    text-decoration: none;
    background: #fff;
    padding: 13px 24px;
    border-radius: 30px;
    color: #000;
    display: inline-block;
    font-size: 16px;
    border: 1px solid #fff;
}

.Partner_with_us .vto_card .box_img {
    padding: 5px;  
}

.dealer-registration-btn:hover {
  background: transparent;
  color: #fff;
}

.Partner_with_us .vto_card p {
  color: #fff;
}

.Partner_with_us .vto_grid {
  align-items: center;
  gap: 50px;
}

.Partner_with_us .vto_card.d_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate {
  padding: 0px 20px 50px 20px;
  position: relative;
}

.certificate h2 {
  font-size: 45px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 30px;
}

.certificate_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.certificate_card {
  width: 100%;
  height: 120px;
  background: #d7d7d7;
}

.brochure {
  padding: 40px 20px;
  position: relative;
}

.brochure_box {
  max-width: 1700px;
  margin: 0 auto;
  background: #0070bb;
  padding: 40px 10px;
}

.brochure_grid {
    display: grid;
    grid-template-columns: 1fr 215px;
    align-items: center;
    gap: 20px;
}

.brochure_grid p {
  font-size: 28px;
  color: #fff;
  margin: 0;
}



/* Footer Base */
.footer {
  background: #fff;
  color: #333;
  padding: 50px 10px 0px 10px;
}

.footer-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 0 50px;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1.4fr;
  gap: 30px;
}

.footer-logo img {
  /* max-width: 160px;   */
}

/* Column Titles */
.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.footer-column h5 {
    font-size: 16px;
    font-weight: 600;
}

/* List */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #0070bb;
}

/* Contact Section */
.contact-info {
  font-size: 15px;
  margin-top: 10px;
  color: #444;
}

.email {
  margin: 10px 0;
  color: #000000;
}

.email i {
  color: #0070bb;
}

.email a {
  text-decoration: none;
  display: inline-block;
  color: #000;
  margin-left: 4px;
}

/* Toll Free Button */
.toll-btn {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid #0070bb;
  background: #f8faff;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 22px;
}

.toll-btn:hover {
  background: #0070bb;
  color: #fff;
}

/* Social Links */
.social-icons {
  margin-top: 15px;
}

.social-icons p {
  margin-bottom: 5px;
  font-size: 16px;
  color: #555;
}

.social-icons a {
  margin-right: 10px;
  color: #555;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0070bb;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #ddd;
}


/* ==============Product Category css ================== */

.product_cat_box {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: start;
}

.product_category {
  background: #fff;
  padding: 80px 0;  
}

.product_cat_box .product_layout {
  max-width: 900px;
  width: 100%;
}

.swiper_navigation_box {
  position: absolute;
  top: 80%;
  left: 0px;
  width: 100px;
}

.swiper_navigation_box .swiper-button-next::after,
.swiper_navigation_box .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.swiper_navigation_box .swiper-button-next,
.swiper_navigation_box .swiper-button-prev {
  background-color: #007bff;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.swiper_navigation_box .swiper-button-next:hover,
.swiper_navigation_box .swiper-button-prev:hover {
  background-color: #042549;
}

.product_cat_box h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;

}

.product_cat_box h2::after {
  content: "";
  width: 41%;
  height: 3px;
  position: absolute;
  background-color: #0070bb;
  left: 0;
  bottom: 0;
}

/* Left Side Pagination */
.swiper-pagination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.swiper-pagination-bullet {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: #fff;
  padding: 10px 0 20px 0;
  border-bottom: 1px solid #d1d1d1;
  text-align: left;
}

.swiper-pagination span img {
  margin-right: 8px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 78px;
  left: 0;
  bottom: auto;
  max-width: 320px;
}

.swiper-pagination span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
  color: #000000;
  font-weight: 600;
}

.slide-content {
  position: relative;
}

.slide-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* Make sure slides don't overlap */
.swiper-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.product_info {
  position: absolute;
  bottom: 34px;
  left: 29px;
  background: #ffffffd9;
  padding: 43px 30px 53px;
}

.product_info h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 900;
  line-height: 1.3;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.product_info h3::after {
  content: "";
  width: 25%;
  height: 3px;
  position: absolute;
  background-color: #0070bb;
  left: 0;
  bottom: 0;
}

.product_info p {
  font-size: 16px;
  margin-bottom: 30px;
}

.product_info a {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  color: #5f8fb7;
  transition: all 0.5s ease;
}

.product_info a:hover {
    color: #0070bb;
}


/* vertel about page */

.about_grid {
    display: grid;
    grid-template-columns: 1fr 1.28fr;
    gap: 40px;
}

.about_grid .left img {
    width: 100%;
}

.about_grid .right {
    padding: 0 47px 0 20px;
}

.about_grid .right h2 {
    font-size: 24px;
    line-height: 31px;
    color: #0070bb;
    font-weight: 700;
    margin-bottom:15px;
}

.about_grid .right p {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 0;
    color: #585858;
    font-weight: 400;
}

.vertel_about_page .pcag {
    margin-top: 100px;   
}
.pcag h2 {
    font-size: 36px;
    text-align: center;
    font-weight: 800;
    padding-bottom: 5px;
    line-height: 1.3;
	position:relative;
}
.pcag h2::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 5px;
    background: #0070bb;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.data_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* margin-top: 50px; */
    background: url(../images/map2.png)no-repeat center;
    padding: 40px 0 70px 0;
    background-position: bottom;
    /* background-size: contain; */
}
.gvmnt_clients {
    width: fit-content;
    margin: 0 auto;
}
.gvmnt_clients span {
    display: inline-block;
    font-size: 48px;
    color: #0070bb;
    font-weight: 800;
    line-height: 1;
}
.gvmnt_clients h3 {
    font-size: 21px;
	margin-bottom:0px
}
.gvmnt_clients p {
    font-size: 18px;
    color: #585858;
    line-height: 1.2;
}

.history {
    background-color: #f6f6f6;
    padding: 50px 0;
    margin-top: 50px;
}


.container_sec {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.history_box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 20px;
    position: relative;
    top: -90px;
}

.history_tab {
    position: relative;
    background-color: #fff;
}

/* Hide dropdown by default */
.history_select {
    display: none;
} 
.history .swiper-slide{
	opacity:1;
}

.history_tab ul {
    position: relative;
    display: flex;
    gap: 5vw;
    padding: 23px 0 23px 80px;
}

.history_tab ul li {
    list-style: none;
    
}

.history_tab ul li a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #0070bb;
    padding: 0 0 7px 0;
}


.tab-underline {
    position: absolute;
    bottom: 17px;
    height: 3px;
    background: #083971;
    transition: 0.3s;
}


.history_grow {
    display: flex;
    gap: 40px;
}


.history_content {
    max-width: 640px;
}

.history_content h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 29px;
}

.history_content h4 {
    color: #0070bb;
    font-size: 26px;
    font-weight: 600;
    line-height: 35px;
    margin: 20px 0;
}

.history_content p {
    font-size: 21px;
    line-height: 1.7;
    word-spacing: 0.5px;
}

.history_img {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.history_img img {
    width: max-content;
}


.top-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}


.arrow_button {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    cursor: pointer;
}

.history .arrow_button i {
    color: #fff;
    font-size: 27px;
    padding-top: 10px;
}


.arrow_button .left_arr {
    width: 50px;
    height: 50px;
    background-color: #0070bb;
    text-align: center;
	transition:all 0.3s ease
}

.arrow_button .rgt_arr {
    width: 50px;
    height: 50px;
    background-color: #0070bb;
    text-align: center;
	transition:all 0.3s ease
}

.arrow_button .left_arr:hover,.arrow_button .rgt_arr:hover {
    background: #000;
}

/* ---------- 1399px and below ---------- */
@media (max-width: 1399px) {
 .history {
    padding: 0 35px 50px 35px;
}

  .history_box {
    top: -40px;
  }

.history_grow {   
    gap: 30px;   
}

  .history_content {
    max-width: 560px;
  }

  .history_content h3 {
    font-size: 24px;
  }

  .history_content h4 {
    font-size: 23px;
    line-height: 32px;
  }

  .history_content p {
    font-size: 19px;
   
  }

  .top-row,
  .bottom-row {
    gap: 15px;
  }

/*   .top-row img,
  .bottom-row img {
    width: 100%;
    height: auto;
  } */
}

/* ---------- 1199px and below ---------- */
@media (max-width: 1199px) {
  .history_box {
    margin-bottom: 50px;
    top: -60px;
  }

  .history_tab ul {   
    padding: 20px 0 20px 50px;
    flex-wrap: wrap;
  }

  .history_tab ul li a {
    font-size: 18px;
  }

  .history_grow {
    gap: 25px;
  }

  .history_content {
    max-width: 500px;
  }

  .history_content h3 {
    font-size: 22px;
  }

  .history_content h4 {
    font-size: 22px;
    line-height: 30px;
  }

  .history_content p {
    font-size: 15px;
  }

  .top-row,
  .bottom-row {
    gap: 12px;
  }
}

/* ---------- 991px and below (tablet view) ---------- */
@media (max-width: 991px) {
  .history_tab ul {   
    padding: 18px 0 18px 40px;
  }
.history_img img {
    width: auto;
}
  .history_tab ul li a {
    font-size: 17px;
  }

  .history_box {
    top: -40px;
  }

  .history_grow {
    flex-direction: column;
    gap: 30px;
  }

  .history_content {
    max-width: 100%;
  }

  .history_img {
    width: 100%;
  }

  .top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .bottom-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .top-row img,
  .bottom-row img {
    width: 100%;
    height: auto;
  }

  .arrow_button {
    justify-content: center;
    margin-top: 20px;
  }
}

/* ---------- 767px and below (mobile landscape) ---------- */
@media (max-width: 767px) {
  /* Hide tab list */
  .history_tab ul {
    display: none;
  }

  /* Show dropdown instead */
  .history_select {
    display: block;
    width: 100%;
    margin: 15px auto;
    font-size: 16px;
    padding: 18px 26px;
    border: none;
    color: #0070bb;
    font-weight: 600;
    background-color: #fff;
  }

  .history_select:focus-visible {
    outline: 0px;
  }

  .history_content h3 {
    font-size: 20px;
  }

  .history_content h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .history_content p {
    font-size: 15px;
    line-height: 23px;
  }

  .top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .bottom-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .top-row img,
  .bottom-row img {
    width: 100%;
    height: auto;
  }

  .arrow_button .left_arr,
  .arrow_button .rgt_arr {
    width: 45px;
    height: 45px;
  }

  .history .arrow_button i {
    font-size: 22px;
  }
}

/* ---------- 575px and below (mobile portrait) ---------- */
@media (max-width: 575px) {
  .history_grow {
    gap: 25px;
  }

  .history_content h3 {
    font-size: 18px;
  }

  .history_content h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .history_content p {
    font-size: 14px;
    line-height: 22px;
  }

  .top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .bottom-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .top-row img,
  .bottom-row img {
    width: 100%;
    height: auto;
  }

  .arrow_button {
    gap: 15px;
  }

  .arrow_button .left_arr,
  .arrow_button .rgt_arr {
    width: 40px;
    height: 40px;
  }

  .history .arrow_button i {
    font-size: 20px;
  }
}


/* ==============Product Category css end ================== */


@media(max-width:1399px){
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    max-width: 250px;
}
.product_cat_box .product_layout {
    max-width: 800px; 
}
.product_cat_box h2 {
    font-size: 28px;
}
.swiper-pagination-bullet {  
    padding: 10px 0 14px 0;
}
.about-grid {
    grid-template-columns: 1fr 1.4fr 1fr;
}
.about-left h3 {
    font-size: 23px;
}
.about-left h2 {
    font-size: 22px;
    line-height: 1.2;
}
.about-left .italic {
    font-size: 20px;
    line-height: 1.2;
}
.about-right p {
    font-size: 16px; 
}
.vto_grid {
    grid-template-columns: 300px 1fr;
}
.vto_card p {
    font-size: 16px;
}
.vto_title h2 {
    font-size: 30px;
}
.vto_card .box_img {
    width: 90px;
    height: 90px;
}
.product-content {
    padding: 20px 13px;
}
.licence_free_products .product-grid { 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.product-content p {
    font-size: 16px;
}
.Partner_with_us .vto_grid {
    grid-template-columns: 280px 1fr;
    gap: 25px;
}
.Partner_with_us .vto_title p {
    font-size: 18px;
}
.Partner_with_us .dealer-registration-btn { 
    padding: 10px 14px;
    font-size: 15px;
}
}
@media(max-width:1366px){
.main-header {
    grid-template-columns: 197px 1fr 197px;
    padding: 0px 27px;
}
.nav-links a {
    font-size: 15px;
}
.hero-content {
    max-width: 550px;
}
.explore-btn {
    font-size: 16px;
}
.hero-content h1 {
    line-height: 1.3;
}
.stats-bar {   
    max-width: 920px; 
}
.stat-item h2 span {
    font-size: 38px;
}
.stat-item h2 sup {
    font-size: 0.7em;  
}
.stat-item h2 {
    font-size: 30px;
}
.stat-item p {  
    font-size: 18px;
}
.stat-item.d_flex {
    grid-template-columns: 73px 1fr;
}
.experience_about p {
    font-size: 30px;
}
.weServe_title,.section-title,.certificate h2 {  
    font-size: 36px;
}
.toll-btn {
    font-size: 16px;
}
.product-content h3 {
    font-size: 21px;
}
		.about_grid .right h2 {
    font-size: 22px;
}
	.about_grid .right p {
    font-size: 19px;
}
	.pcag h2 {
    font-size: 30px;
}
	.pcag h2::before {   
    width: 150px;
    height: 3px;
}
	.gvmnt_clients span { 
    font-size: 40px;
}
	.gvmnt_clients h3 {
    font-size: 18px;
}
}
@media(max-width:1199px){
.weServe_box {
    gap: 10px;
}
.product_cat_box .product_layout {
    max-width: 680px;
}
.product_cat_box h2 {
    font-size: 23px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
    max-width: 220px;
}
.swiper_navigation_box {
    top: 95%;
}
.swiper-pagination span {
    font-size: 16px;
}
.product_info { 
    padding: 35px 22px 41px;
}
.product_info p {
    font-size: 14px;
}
.about-left img {
    width: 100%;
}
.about-left h2 {
    font-size: 20px;
}
.about-left .italic {
    font-size: 17px;
}
.about-right p {
    font-size: 15px;
    line-height: 1.3;
}
.about-left h2 br {
    display: none;
}
.about-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
}
.nav-links ul {
    gap: 20px; 
}
.nav-links a {
    font-size: 14px;
}
.main-header {
    grid-template-columns: 123px 1fr 142px;   
}
.header-actions .contact-btn {   
    padding: 5px 20px;
    font-size: 16px;
}
.hero-section {
    margin: 95px auto 0 auto;  
}

.hero-content {
    max-width: 335px;
    left: 52px;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.product-content h3 {
    font-size: 18px;
}
.vto_grid {
    grid-template-columns: 214px 1fr;
    gap: 20px;
}
.vto_title h2 {
    font-size: 22px;
    line-height: 1.6;
}
.vto_card p {
    font-size: 15px;
}
.Partner_with_us .vto_grid {
    grid-template-columns: 197px 1fr;
}
.Partner_with_us .vto_title p {
    font-size: 16px;
}
.Partner_with_us .vto_about {
    grid-template-columns: 1fr 1fr 1fr 200px; 
}

.footer-grid {
    gap: 20px;
}
.contact-info {
    font-size: 14px;
}
	.about_grid .right {
    padding: 0 0px 0 0px;
}
	.about_grid .right h2 {
    font-size: 20px;
}
	.about_grid .right p {
    font-size: 17px;
}

}


@media(max-width:991px){
  .logo {
    position: relative;
    z-index: 99;
}
	.about_grid {  
    grid-template-columns: 1fr; 
}
	.data_grid {
    grid-template-columns: 1fr 1fr;  
}
	.gvmnt_clients { 
    min-width: 170px;
}

.nav-links {
    position: fixed;
    background: #ffffff;
    height: 100%;
    top: 0px;
    left: 0;
    max-width: 280px;
    width: 100%;
    z-index: 9;
    padding: 150px 0 0;
    transform: translateX(-100%);
    transition: all 0.3s ease-in;
}
.nav-links.active {
    transform: translateX(0);
}
.nav-links ul {
    display: block;
}
.nav-links ul li {
    margin-bottom: 8px;
}
.nav-links a {
    font-size: 17px;   
}
.nav-links > ul > li.has_submenu::after{ 
    right: 14px; 
    top: 14px;
}
.nav-links ul li .submenu ul li:hover .submenu { 
    transform: translateX(0);
    padding:12px 0 0;
}
.nav-links ul li .submenu ul li.has_submenu::after {
    content: '\f107';
    position: absolute;
    right: 0px;
    top: 15px;
}
.nav-links ul li .submenu ul li.has_submenu .submenu  {
display: none;
}
.nav-links ul li .submenu ul li.has_submenu.open > a {
    color: #0070bb !important;
}
.nav-links ul li .submenu ul li.has_submenu.open .submenu  {
display: block;
}

.nav-links ul li .submenu:before {
   display: none;
}
.nav-links ul li .submenu {
    position: static;
    width: 100%; 
    transform: translateX(0%);
    padding: 20px 0 0px 0;
}
.nav-links ul li .submenu ul li {
    padding: 4px 10px;
    display: block;
    border-bottom: none;
}
.nav-links ul li .submenu ul li a {
    font-size: 15px;
}
.nav-links ul li:hover .submenu {
    display: none;
}
.nav-links ul li.open > .submenu {
    display: block;
}
.nav-links ul li.open > a {
    color: #0070bb;
}
.has_submenu.open::after {
    color: #0070bb;
    transform: translateY(-50%) rotateX(180deg);
}
.main-header {
    grid-template-columns: 123px 1fr 35px;
    gap: 40px;
}

.breadcrumb {
    display: inline-block;     
}
.breadcrumb.active{
 margin-bottom: 10px;  
}
.breadcrumb.active .line{
   margin: -1px; 
   transition: all 0.3s ease;
}
.breadcrumb.active .line:nth-child(2){
  display: none;
}
.breadcrumb.active .line:nth-child(1){
  transform: rotate(-45deg);
}
.breadcrumb.active .line:nth-child(3){
  transform: rotate(45deg);
}

.product_cat_box {
    flex-direction: column;
    gap: 236px;
}
.swiper_navigation_box {
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
}
.product_category { 
    padding: 30px 0 130px 0;
}
.swiper-pagination {
    gap: 8px;
}
.swiper-pagination-bullet {
    padding: 10px 0 5px 0;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 50px;
}

.stats-bar {
    max-width: 668px;
}
.explore-btn {  
    margin-top: 12px;
    padding: 6px 23px;
}
.stat-item h2 span {
    font-size: 30px;
}
.stat-item h2 {
    font-size: 24px;
}
.stat-item p {
    font-size: 16px;
}
.stat-item.d_flex {
    grid-template-columns: 51px 1fr;
}
.stats-bar {
    max-width: 668px;
    padding: 23px 26px;
}
.experience_about {
    max-width: 600px;
}
.experience_about p {
    font-size: 25px;
}
.weServe_title, .section-title, .certificate h2 {
    font-size: 30px;
}
.text_with_icon p { 
    font-size: 16px;
}
.about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "about-left about-center"
        "action action";
        gap: 40px 30px;
}
.about-right {
    grid-area: action;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.about-left h2 {
    font-size: 21px;
    margin: 20px 0 13px 0;
}
.about-left .italic {
    font-size: 18px;
    margin-bottom: 37px;
}
.about-right p {
    font-size: 16px;
    line-height: 1.5;
}
.vto_grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
.vto_title {
    width: 240px;
    margin-left: 35px;
}
.Partner_with_us .vto_grid {
    grid-template-columns: 1fr;
}
.footer-grid {   
    grid-template-columns: 1fr 1fr 1fr 1fr;    
}



}

@media(max-width:767px){
.top_header a {
    font-size: 11px;
}
.stats-bar {
    max-width: 95%;
    padding: 23px 10px;
    gap:0px
}
	.pcag h2 {
    font-size: 25px;
}
.stat-item {
    padding: 0 8px;  
    min-height: 48px;
    text-align: center;
}
.stat-item h2 {
    font-size: 23px;
    min-height: 33px;
}
.stat-item h2 span {
    font-size: 28px;
}
.stat-item p {
    font-size: 15px;
}
.weServe_box {
    display: grid;
    grid-template-columns: 1fr 1fr; 
}
.about-grid {
    grid-template-columns: 1fr;
    grid-template-areas: inherit;
}
.about-right {
    grid-area: inherit;
    grid-template-columns: 1fr;
    gap: 0px;
}
.vto_card .box_img {
    width: 75px;
    height: 75px;
    padding: 8px;
}
.brochure_grid {
    grid-template-columns: 1fr; 
}
.footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
}
.certificate_grid {
    grid-template-columns: 1fr;
}
.vto_about {
    grid-template-columns: 1fr 1fr;
    gap: 35px 17px;  
    text-align: left; 
}
.Partner_with_us .vto_about {
    grid-template-columns: 1fr 1.2fr;
}
.brochure_grid p {
    font-size: 25px;  
    text-align: center;
}
.dealer-registration-btn {
    width: fit-content;
    margin: 0 auto;
}
.stat-item.d_flex {
    grid-template-columns: 1fr;
}
.product_info h3 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.product_info h3::after {   
    width: 18%;
    height: 2px;    
}
.product_info {
    padding: 30px 15px 30px;
    left: 15px;
}
.product_info p {
    font-size: 12px;
    margin-bottom: 10px;
}
.product_info a {
    font-size: 14px;
}
.footer { 
    padding: 50px 20px 0px 20px;
}
.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.licence_free_products .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.vto_title { 
    margin-left: 0;
    margin-bottom: 25px;
}
.vto_card .box_img {
    margin: 0 0 25px 0;
}
.partner_with_banner {
    padding: 90px 20px;  
}
.Partner_with_us .vto_card.d_flex {  
    justify-content: start; 
}
.Partner_with_us .vto_card.d_flex .dealer-registration-btn{  
   margin: 0;
}
.about-section { 
    padding: 40px 20px 40px;
}
.hero-content h1 {
    font-size: 3.4vw;
}
}

@media(max-width:575px){
  /* .stat-item p {
    font-size: 13px;
} */
.stat-item h2 span {
    font-size: 24px;
}
/* .stat-item h2 {
    font-size: 20px; 
} */
.hero-content h1 {
    font-size: 3.7vw;
}
.explore-btn {
    font-size: 14px;
}
.hero-content {
    max-width: 295px;
    left: 13px;
}
  .footer-grid {
    grid-template-columns: 1fr;
}
.hero-section {
    /* margin: 95px auto 0 auto; */
    background: #004088;
    padding: 50px 27px 140px 27px;
}
.hero-content {
    position: static;
    transform: translateY(0);
    margin: 0 auto;
    text-align: center;
}
.hero-image img {
    display: none;
}
.hero-content h1 {
    font-size: 22px;
}
.stats-bar {
    max-width: 89%;   
    gap: 20px 15px;
    grid-template-columns: 1fr 1fr;
}
.top_header {
    gap: 10px;
    margin-bottom: 10px;
    padding: 5px 12px 0px 40px;
}
.main-header {
    grid-template-columns: 1fr  31px;
}
.header-actions {
    display: none;
}
.logo img {
    height: 56px;
}
.stat-item {
   border-right: 0;       
}

.stats-bar::after {
 content: "";
 position: absolute;
 top: 50%;
 left: 50%;
 width: 1px;
 height: 90%;
 transform: translate(-50%,-50%);
 background-color: #b1b1b1;
}
.stats-bar::before {
 content: "";
 position: absolute;
 top: 50%;
 left: 50%;
 width: 90%;
 height: 1px;
 transform: translate(-50%,-50%);
 background-color: #b1b1b1;
}
.stat-item h2 {
    font-size: 21px;
}
.stat-item h2 sup {
    top: 0.2em;
    font-weight: 700;
    font-size: 1.05em; 
}
.stat-item.d_flex {
    margin-top: 10px;
}
.experience_about p {
    font-size: 19px;
}
	.gvmnt_clients {
    min-width: auto;
}
.readmore_btn {
    padding: 8px 27px;
    font-size: 16px;
}
.weServe_title, .section-title, .certificate h2 {
    font-size: 25px;
}
.weServe_box {  
    grid-template-columns: 1fr;
}
.weServe_industries {
    padding: 20px 10px 40px 10px;
}
.product_category {
    padding: 30px 10px 120px 10px;
}
.product_info p {
    font-size: 9px;
    margin-bottom: 5px;
}
.product_info h3 {  
    margin-bottom: 12px;
}
.product_info {
    padding: 18px 6px 10px;
    left: 6px;
    bottom: 10px;
}
.swiper_navigation_box {
    top: 107%;
}
.featured-products {
    padding: 0 10px;
}
.licence_free_products {
    padding: 90px 10px;
}
.product-grid {
    gap: 35px;
}
.product-content p { 
    margin-bottom: 10px;
}
.view-all a {
    font-size: 16px;
}
.product-content h3 {
    font-size: 17px;
}
.about-left h3 {
    font-size: 20px;
}
.about-left h2 {
    font-size: 18px;   
}
.about-left .italic {
    font-size: 16px;   
}
.licence_free_products .product-grid {
    gap: 35px;
}
.vto_title h2 {
    line-height: 1.4;
    border-left: 0;
}
.partner_with_banner {
    padding: 90px 10px;
}
.brochure_grid p {
    font-size: 18px;   
}
.dealer-registration-btn {
    padding: 8px 15px;
    font-size: 15px;
}
.footer-logo {
    margin-bottom: 30px;
}
.experience_about {
    padding: 60px 30px 40px;  
}
.about-section {
    margin-top: 70px;   
}
.vto_title { 
    width: 100%;
    text-align: center;
}
.vto_card {
    text-align: center;
}
.vto_card .box_img { 
    margin: 0 auto 20px auto;
}
.Partner_with_us .vto_title h2::after {
 display: none;
}
.footer-bottom { 
    font-size: 7px;   
}
}