@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body{
  overflow-x: clip;
}

:root {
  /* --bahns-font-family: "Albert Sans", sans-serif; */
  --sans-font-family: "Noto Sans", sans-serif;
  --primary-background-color: #243F9A;
  --secondary-background-color: #0C9EE1;
}

p, li {
  font-family: var(--sans-font-familyy);
}

h1 {
  text-transform: capitalize;
}

ul {
  padding-left: 0 !important;
}

.btn-main{
  background-color: var(--primary-background-color);
  border: none;
  padding: 12px;
  color: #fff;
  font-weight: bold;
}
.secondary-btn{
  background-color: var(--secondary-background-color);
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
}

  .contact-info a
  {
      text-decoration:none !important;
      color:black !important;
      
  }

/* Top bar */
.topbar {
  background: var(--primary-background-color);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.topbar img {
  margin-left: 0.6rem;
  width: 1.2rem;
}

/* Navbar */
.custom-navbar {
  background: #fff;
  padding: 10px 0;
  position: relative;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  font-size: 15px;
  margin: 0 5px;
  position: relative;
}

.navbar-brand img 
{
  height: 80px;
}

.navbar-brand img:focus-visible{
    outline: none !important;
}

.services-link::after {
    content: "˅";
    font-size: 8px;
    margin-left: 6px;
}

.nav-item.dropdown:hover .services-link::after {
    transform: rotate(180deg);
    display: inline-block;
    transition: 0.3s;
}

.contact-wrapper img 
{
  height: 80px;

}

.navbar-nav .nav-link.active {
  color: var(--primary-background-color);
}

.dropdown-menu {
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    display: none;
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.nav-item.dropdown .nav-link::after {
    display: none !important;
}


.dropdown-menu {
    transition: all 0.3s ease;
}

/* Underline hover effect */
.navbar-nav .nav-link::after {
  content: '';
  width: 0;
  height: 2px;
  background: var(--primary-background-color);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -45px;
  width: calc(100% - 67%);
  height:108px;
  background: var(--primary-background-color);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.contact-wrapper img{
  position: relative;
  z-index: 2;
}

/* Contact Button */
.contact-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn img {
  margin-right: 0.5rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(33, 33, 33, 0.6), rgba(28, 26, 26, 0.6)), url('../images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.acknowledgement-slider .owl-nav button{
    width: 3rem;
    height: 3rem;
    border-radius: 50% !important;
    position: relative;
    background: var(--primary-background-color) !important;
}

.acknowledgement-slider .owl-nav button span{
    color: #fff;
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: 1;
    height: 100%;
    transform: translate(-50%, -50%);
}

.title-box {
  background: var(--primary-background-color);
  padding: 16px 24px;
  display: inline-block;
  margin-top: 5%;
}

.title-box::before {
    content: "";
    position: absolute;
    left: 2.2rem;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 10px;
    background: #fff;
}

.title-box h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-left: 2rem;
  color: #fff;
}

.botm-text {
  margin-top: 22rem;
  font-size: 2.2rem;
  font-weight: 500;
  padding: 0 2rem;
  color: #fff;
}


/* Form Section */
.form-section {
  background: linear-gradient(135deg, #0f2a6b, #1e3d8f);;
  padding: 60px 40px;
}

/* Form Container */
.form-box {
  width: 100%;
  max-width: 33rem;
  margin: auto;
  color: #fff;
}

.form-box .form-check{
  margin-left: 0.8rem;
}

/* Title */
.form-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

/* Labels */
.form-box label {
  margin-bottom: 10px;
  display: block;
}

/* Inputs */
.form-control {
  background: #e9e9e9;
  border: none;
  border-radius: 3px;
  padding: 10px;
  font-size: 13px;
}

.form-control:focus {
  box-shadow: none;
  border: none;
}

/* Upload Text */
.upload-text {
  font-size: 12px;
  margin-bottom: 8px;
  color: #dcdcdc;
}

/* File Input */
.file-input {
  background: transparent;
  color: #fff;
  border: 1px solid #ccc;
}

/* Checkbox */
.form-check-label {
  font-size: 12px;
}

.form-check-label span {
  text-decoration: underline;
  cursor: pointer;
}

.feature-slider {
  margin-bottom: 40px;
}

/* Feature box */
.feature-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  white-space: nowrap;
}

.feature-icon img{
    width: auto !important;
}

/* Icon circle */
.feature-icon {
  width: 70px;
  height: 70px;
  background: #eaeaea;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.feature-top h6 {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Controls visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-background-color);
  border-radius: 50%;
  padding: 10px;
}

/* Top Text */
.top-text {
  font-size: 1.2rem;
  color: #2b2a2a;
  line-height: 1.6;
  font-weight: 600;
  margin-top: -2rem;
  padding-bottom: 2rem;
}

/* Icon Circle */
.icon-box {
  width: 70px;
  height: 70px;
  /*border: 3px solid var(--primary-background-color);*/
  /*border-radius: 50%;*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

/*.map-box */
/*{*/
/*    width:100%;*/
/*}*/

/*.map-box iframe */
/*{*/
/*    width:100%;*/
/*}*/
.roundicn{
  width: 5rem;
}

/* Text under icons */
.down-section p {
  font-size: 1.1rem;
  color: #252525;
  font-weight: 600;
}

/* Video Box */
.video-wrapper {
  background: #2f4da0;
  padding: 26px;
  border-radius: 30px;
  position: relative;
  display: inline-block;
  margin-right: -40%;
  width: 42rem;
  margin-top: -10%;
}

.video-wrapper img {
  border-radius: 15px;
  width: 100%;
}

.third-section {
  font-size: 2.5rem;
  font-weight: 600;
  /*margin: 1rem 0;*/
  margin-bottom:2rem;
  text-align: center;

}

.seventh_section  
{
    padding-top:0 !important;
}
.card-box {
              background: #fff;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin: 19px;
}
.card-box p {
    margin-top: 0;
    margin-bottom: 3rem;
    text-align:justify;
}
.img-card {
    width: 100%;
    /*border: 1px solid #ccc;*/
    padding: 4px;
    background: #fff;
}
.img-card::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #ccc;
}
/* Cards */
.vehicle-card {
  position: relative;
  overflow: hidden;
}

/* Overlay Card */
.card-overlay {
  background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    height: 100%;
}
.circle-img {
     width: 70px;
  height: 70px;
  border: 3px solid var(--primary-background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.circle-img img{
 height: 52px;
    width: 49px;
}
/* 3rd sec */

.sixth-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--primary-background-color), var(--secondary-background-color));
  color: #fff;
  margin-bottom: 5%;
}

/* HEADING */
.how-it-works h2 {
  font-size: 2rem;
  font-weight: 700;
}

.how-it-works h2 span {
  font-weight: 800;
}

.subtitle {
  margin: 15px auto 50px;
  max-width: 600px;
  font-size: 15px;
  color: #fff;
}

/* STEPS */
.work-steps {
  position: relative;
}

.step {
  padding: 20px;
  position: relative;
}

/* VERTICAL DIVIDER */
.step.border-left {
  border-left: 1px solid rgba(255,255,255,0.3);
}

/* ICON BOX */
.icon-box{
  margin-bottom: 1rem;
}

/* TEXT */
.step h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 3rem;
}

.step p {
  font-size: 1rem;
  color: #fff;
  padding: 0 15%;
}


.feature-box {
  padding: 20px;
}

.icon-circle1 {
  width: 70px;
  height: 70px;
  border: 3px solid var(--primary-background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.icon-circle1 img{
  width: 2.3rem;
}

.feature-box p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* eighth-section start */

.eighth-section {
  background: linear-gradient(to bottom, #2f4596 60%, #ffffff 40%);
}

.media-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  padding: 1rem;
}

.media-card img {
  width: 220px;
  height: auto;
}

.media-card p {
  line-height: 1.6;
  margin: 0;
  padding-top:10px;
  /*font-weight: 500;*/

}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2f4596;
  color: #fff;
  border: none;
  font-size: 20px;
}

.nav-btn:hover {
  background-color: #1f2f70;
}


.nav-btn img{
  width:2rem;
}


/* eighth-section end */

.cta-box1 {
  background-color: var(--primary-background-color);
  border-radius: 50px;
  margin-top: 65px;
}

.cta-input {
  background: #fff;
  border-radius: 50px;
  padding: 4px;
  display: flex;
  align-items: center;
}
.cta-input input {
  border-radius: 30px;
  border: none;
  padding: 10px 15px;
  min-width: 250px;
}

.cta-input button {
  border-radius: 30px;
  background-color: var(--secondary-background-color);
  color: #fff;
  font-weight: 700;
  border: none;
  width: 220px;
  padding: 0.8rem;
}

.cta-input button:hover {
  background-color: #e6e6e6;
}

/* ninth-section start */

.small-title {
  color: var(--primary-background-color);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 5%;
}

.main-title {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-top: 3%;

}

.stat-box{
    padding: 3% 0;
}

.stat-box h3 {

  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--secondary-background-color)!important;
}

.stat-box p {
  font-size: 1.2rem;
  color: #111;
  margin: 0;
  font-weight:600;
  margin-top: 3%;
  /*margin-left:3%;*/

}

.container
{
    max-width:1282px !important;
}

.hsdfsdfdf 
{
    width:100%;
    height:300px;
}

.hsdfsdfdf img
{
    width:100%;
    height:100%;
    object-fit: contain;
}

.map-box img {
  border-radius: 4px;
}

.bottom-text {
  font-size: 16px;
  color: #444;
}

.bottom-text span {
  color: var(--primary-background-color);
  font-weight: 600;
}
.map-box iframe{
  height:30rem;
  width:100%;
}

/* ninth-section end */


/* eleventh-section start */
 .eleventh-section{
    background: url('../images/eleventhsec.png') center/cover no-repeat;
    margin-top: 3%;
    }

    .faq-section {
      padding: 60px 0;
    }

    .faq-title {
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 20px;
    }

    .eleventh-section .accordion-item {
      border: none;
      margin-bottom: 10px;
      border-radius: 6px;
      overflow: hidden;
    }

    .eleventh-section .accordion-button {
      background: #f8f9fa;
      font-weight: 600;
      font-size: 15px;
      box-shadow: none;
      border: 1px solid #d1d1d1;
      border-radius: 8px;
    }

    .eleventh-section .accordion-button:not(.collapsed) {
      background-color: #e9f0ff;
      color: #000;
    }

    .eleventh-section .accordion-body {
      font-size: 14px;
      color: #555;
      background: #ffffff;
    }


/* FOOTER */
.footer-section {
  background: linear-gradient(180deg, #2f4fa2, #0b1d4a);
  color: #fff;
  padding: 60px 0 20px;
  font-size: 14px;
}

/* LOGO */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-about p {
  color: #dcdcdc;
  line-height: 2.3;
  padding-right: 30%;
  font-size: 15px;
}

/* HEADINGS */
.footer-section h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.social-icons a{
  margin-right: 0.5rem;
}
/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.social-icons img 
{
    width:35px;
    height:35px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.fdgdf85f a
{
    color:white;
    text-decoration:none;
    /*padding-bottom:10px;*/
}

.fdgdf85f a:hover 
{
    color:white;
}

.footer-bottom a
{
    color:white;
    text-decoration:none;
}

.footer-bottom a:hover 
{
    color:white;
}

.fdgdf85f 
{
    margin-bottom:5px;
}

.footer-links ul li a:hover {
  color: #fff;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 10px;
  color: #dcdcdc;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
}

/* Blog Page */

.banner-sec {
    position: relative;
    height: 350px;
    background: url('../images/blogbannerimage.png') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.banner-sec .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Title styling */
.banner-title {
    position: relative;
    font-size: 48px;
    font-weight: 600;
    z-index: 2;
}

.blog-section{
  margin-top: 3rem;
}
/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

.blog-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

/* Meta */
.meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}
.meta img{
  width: 0.7rem;
  height: 0.7rem;
}

/* Title */
.blog-card h6 {
    font-weight: 700;
    margin: 1.2rem 0;
    font-size: 1.4rem;
}

.blog-card a 
{
    color:black;
    text-decoration:none;
}

/* Read More */
.read-more {
    font-size: 1rem;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.read-more img{
  width: 0.8rem;
  height: 0.8rem;
}

/* Sidebar */
.rightside-box {
    background: #e9ebf0;
    padding: 20px;
    border-radius: 10px;
}

.rightside-box h5 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.6rem;
}

/* Latest Posts */
.latest-post {
    gap: 10px;
    margin-bottom: 12px;
}

.latest-post p {
    font-size: 16px;
    margin: 0;
    color:black;
}

/* Categories */
.category {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}
.categorybottom {
    font-size: 1.1rem;
    margin-top: -8px;
}

.navbar-brand:focus-visible{
    outline: 0;
}

.vbmjtrhgefbghwdfnhfedfbghn:hover .dropdown-menu.d-none{
    display: block !important;
    right: -67%;
    top: 0;
}

.gov-cont 
{
    text-align:center;
}
.archive-hero 
{
   text-align:center; 
}

.flkfff 
{
    width:100%;
    /*height:100%;*/
    text-align:center;
    background-color:#243f9a;
    color:white;
    font-weight:600;
    border-bottom:20px;
    margin-bottom:20px;
    border-radius:12px;
    padding:20px;
}

.ffgdfgdfg 
{
    width:100%;
}


.ffgdfgdfg  img
{
    width:100%;
}

.jhfff 
{
    width:100%;
}


.jhfff  img
{
    width:100%;
}

.flkfff h6 
{
    font-weight:bold;
    
}
.flkfff h2
{
    font-weight:bold;
    font-size:42px;
    
}

.flkfff h6
{
    font-weight:bold;
    font-size:18px;
    
}



.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 3rem;
}

/* Base Button */
.page-btn {
    border: 1px solid var(--primary-background-color);
    background: transparent;
    color: var(--primary-background-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover */
.page-btn:hover:not(:disabled) {
    background: var(--primary-background-color);
    color: #fff;
}

/* Disabled */
.page-btn:disabled {
    border-color: #ccc;
    color: #aaa;
    cursor: not-allowed;
}

/* Next button spacing */
.next-btn {
    padding: 6px 16px;
}

/* Blog Description */




/* Main Image */
.blog-image img {
    border-radius: 10px;
    width: 100%;
}

/* Meta */
.blog-meta {
    background: #f1f1f1;
    padding: 8px 12px;
    font-size: 13px;
    color: #777;
    border-radius: 5px;
    display: inline-block;
}

/* Title */
.blog-title {
    font-weight: 700;
    color: #1c2b36;
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
}

/* Paragraph */
.blog-details p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 4rem 0 0;
}



/* FAQs */

.faq-banner {
  background: url('../images/carman.png') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.faq-banner h1 {
  color: #fff;
  z-index: 2;
  font-size: 40px;
  font-weight: 500;
}

/* FAQs */

.faq-banner {
  background: url('../images/carman.png') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.faq-banner h1 {
  color: #fff;
  z-index: 2;
  font-size: 40px;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 40px 0;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
  background: #eaeaea;
}

.accordion-button {
  background: #eaeaea;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: #eaeaea;
  color: #000;
  box-shadow: none;
}

/* Remove default arrow */
.accordion-button::after {
  display: none;
}

.accordion-body {
  background: #fff;
  font-size: 13px;
  border-left: 3px solid #007bff;

}

/* Two column spacing */
.faq-col {
  padding: 0 10px;
}
.faq-section {
  margin-top: 30px;

}
.sub{
  margin-left:255px;
}
.sum{
  margin-left:295px;
}
/* contact */
.cont {
      /*background: url('../images/selladalecntbannr.png') no-repeat center center/cover;*/
      height: 250px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cont::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      top: 0;
      left: 0;
    }

    .cont h1 {
      position: relative;
      color: #fff;
      font-weight: 600;
    }

    /* SECTION */
    .contact-section {
      background: #ffffff;
      padding: 60px 0;
    }

    .img-box {
  border-radius: 10px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fdhdgfghjhgf p a{
    color: #000;
    text-decoration: none;
}


    .customer-box {
      background: #fff;
      padding: 30px;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .customer-box h3 {
      color: #1e3a8a;
      font-weight: bold;
    }

   .contact-info h6{
        font-size: 20px;
   }

    .contact-info p {
     margin-bottom: 5px;
    color: #555;
    margin-left: 28px;
    font-size: 16px;
    }

    .dots {
      position: absolute;
      left: -20px;
      top: 0;
      font-size: 10px;
    }
    .contact-section {
            padding: 60px 0;
        }

        .contact-title {
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 40px;
        }

        .form-control {
            height: 45px;
            border-radius: 4px;
        }

        textarea.form-control {
            height: 180px;
            resize: none;
        }

        .btn-submit {
            background-color: #2f3e8f;
            color: white;
            padding: 10px 40px;
            border-radius: 2px;
            float: right;
            border:none;
        }

        .btn-submit:hover {
            background-color: #1f2c6b;
        }

        label {
            font-weight: 500;
            margin-bottom: 5px;
        }
        
/* About Us Page */

.aboutus-banner {
  height: 370px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutus-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

.aboutus-banner h1 {
  color: #fff;
  z-index: 2;
  font-size: 3.2rem;
  font-weight: 600;
}

.vehicle-section{
  margin: 3rem 0;
}
.vehicle-section h2 {
  font-size: 2rem;
}

/* Card Base */
.vehicle-card {
  padding: 30px 20px;
  border-radius: 14px;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.aboutpgthird-sec .service-card ul li{
    color: #000;
}

.aboutpgthird-sec .service-card ul li i{
    color: var(--secondary-background-color);
    font-size: 1.1rem;
}

/* Hover Effect */
.vehicle-card:hover {
  background: linear-gradient(135deg, #2f3e9e, #2bb3df);
  transform: translateY(-8px);
}

/* Text Styling */
.vehicle-card h5 {
  font-weight: 600;
  margin-top: 1.2rem;
  color: #222;
  transition: 0.3s;
}

.vehicle-card p {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
  transition: 0.3s;
}

/* Text color on hover */
.vehicle-card:hover h5,
.vehicle-card:hover p {
  color: #ffffff;
}

/* ================= ICON CIRCLE ================= */

/* Circle Container */
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%; /* perfect circle */
  border: 2px dashed #4da3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: transparent;
  transition: all 0.4s ease;
}

/* Icon Image */
.icon-circle img {
  width: 3.5rem;
  height: auto;
  transition: 0.3s;
}

/* Icon circle on hover */
.vehicle-card:hover .icon-circle {
  background: #ffffff;
  border: none;
}

.why-choose {
  background: #F3F7FB;
}

/* Left Images */

.bg-circle-img {
  position: absolute;
  top: 20px;
  left: 43%;   /* adjust based on your design */
  z-index: 0;
  opacity: 1;
}

/* Keep images above */
.main-img,
.overlay-img {
  position: relative;
  z-index: 2;
}

.main-img img {
  border-radius: 12px;
}

.overlay-img {
  position: absolute;
  bottom: 16%;
  left: 44%;
  border-radius: 12px;
}

.overlay-img img {
  display: block;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

/* Text */
.sub-title {
  color: var(--primary-background-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

h2 span {
  color: var(--primary-background-color);
}

/* Features */
.featur-icon {
  width: 70px;
  height: 70px;
  background: #e9edf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.feature-icon + div h6 {
  margin: 0;
  font-weight: 600;
}

.feature-icon + div p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
/* Call Box */
.call-box {
  gap: 10px;
}


.how-section{
  margin: 5rem 0;
}
/* LEFT SIDE */
.how-left {
  position: relative;
  color: #fff;
  padding: 80px 60px;
  background: linear-gradient(rgba(30,50,130,0.9), rgba(30,50,130,0.9)),
              url('../images/aboutfourthsecimg.png') center/cover no-repeat;
}

.how-left h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  padding-left: 4rem;
}

.how-left p {
  color: #dcdcdc;
  font-size: 1.1rem;
  padding-left: 4rem;
}

/* STEPS */
.steps {
  margin-top: 30px;
  position: relative;
  padding-left: 4rem;
}

.steps::before {
  content: "";
  position: absolute;
  left: 10.3%;
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.3);
}

.stepcol {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.circle {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #2f3e9e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 0px;
  z-index: 1;
}

.stepcol p {
  margin: 0 -1.5rem;
  color: #fff;
}

/* RIGHT SIDE */
.how-right {
  background: linear-gradient(135deg, #1b2e7a, #0d1f5b);
  padding: 60px;
  color: #fff;
}

/* FORM */
.form-box h4 {
  margin-bottom: 25px;
}

.form-control {
  background: #dcdcdc;
  border: none;
  border-radius: 2px;
  height: 45px;
}

.form-control:focus {
  box-shadow: none;
}

.ffygdff 
{
    width:100%;
    height:570px;
}

.ffygdff img 
{
    width:100%;
    height:100%;
}



/*.form-control*/
/*{*/
/*  width:45% !important;  */
/*}*/
/* Upload */
.upload-text {
  font-size: 13px;
  color: #ccc;
}

.upload-btn {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

/* Checkbox */
.form-check-label {
  font-size: 13px;
}

.vehicles-section h2 {
  font-size: 2.2rem;
  color: #1c1c1c;
  margin-bottom: 4rem;
}

/* Item */
.vehicle-item {
  text-align: center;
  transition: 0.3s;
}

/* Text */
.vehicle-item p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #222;
}

/* Hover Effect */
.vehicle-item:hover .icon-box {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
 /*end  about us page*/
  /*end  about us page*/
 /*end  about us page*/
 
 
 
  /*start overview page css*/
  /*start overview page css*/
  /*start overview page css*/
  
/* Overview Page */

.overview-banner {
  height: 350px;
  background: url('/public/frontend/images/green.png') center/cover no-repeat;
  position: relative;
}

/* DARK OVERLAY */
.overview-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 0, 0.7); /* greenish dark overlay */
}

/* HERO TEXT */
.overview-banner h1 {
  font-size: 48px;
  letter-spacing: 1px;
}

.breadcrumb-text {
  font-size: 14px;
  opacity: 0.9;
}

/* INFO SECTION */
.info-section1 {
  background-color: #ffffff;
   /*padding: 60px 20px; */
   /*text-align:center;*/
}



.info-section h2 {
  font-size: 40px;
  color: #1c2b2d;
  text-align: left;
  /* margin-top: 45px; */
}

.dfjffdd
{
    text-align:center;
}

.mai6
{
  text-align: left;
}

.navbar-brand img 
{
  height: 80px;
}

.description1 {
  max-width: 700px;
font-size: 18px;
  color: #555;
  line-height: 1.8;
  text-transform: capitalize;
  margin-bottom: 60px;
}

.strategy-section {
  min-height: 550px;

  background: 
    linear-gradient(90deg, rgba(1,44,29,0.95) 30%, rgba(1,44,29,0.6) 60%, rgba(1,44,29,0.2) 100%),
    url('../images/clean.png') no-repeat center right;

  background-size: cover;
  display: flex;
  align-items: center;
}

/* CONTENT */
.content-wrapper {
  padding-left: 80px;
  /* max-width: 500px; */
}

/* TITLE */
.main-title {
  font-weight: 700;
    margin-bottom: 72px;
    margin-right: 200px;
}

/* MENU */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  padding: 16px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* BUTTON COLORS */
.menu-item.light {
  background: #ffffff;
  color: #000;
}

.menu-item.active {
  background: #2e4598;
  color: #fff;
}
.value-section{
  margin-bottom:60px;
}
/* HOVER */
.menu-item:hover {
  transform: translateX(6px);
  transition: 0.3s;
}
.cards-wrapper {
  background: #ffffff;
  padding: 60px 0;
}

/* CARD */
.card-custom {
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}

/* IMAGE */
.card-custom img {
    width: 100%;
    height: 254px;
    object-fit: cover;
    display: block;
}

/* BOTTOM CONTENT */
.card-bottom {
  padding: 30px;
  color: #fff;
  min-height: 150px;
}
.t12{
  height:70px;
  width:70px;
}
/* COLORS */
.gold {
  background-color: #d4a64a;
}

.blue {
  background-color: #2f4aa0;
}

/* TITLE */
.card-bottom h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
    text-align: left;

}

/* TEXT */
.card-bottom p {
  font-size: 16px;
  line-height: 1.6;
  height: 100px;
  /* height: 200px; */
  margin: 0;
  text-align: left;
  
}

/* ACTIVE (MIDDLE CARD BORDER EFFECT) */
.active-card {
  border: 3px solid #2f4aa0;
}

/* HOVER */
.card-custom:hover {
  transform: translateY(-6px);
.value-section {
  background: #ffffff;
  padding: 70px 0;
}

/* TEXT AREA */
.text-content {
  max-width: 520px;
  text-align: left;
  
}

/* HEADING */
.main-heading {
  font-size: 40px;
  font-weight: 700;
  color: #0f2d2b;
  margin-bottom: 20px;
  line-height: 1.2;
    text-align: left;

}

/* IMAGE */
.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.main-heading{
  text-align:left;
}
}

  
  
  /*end overview page css*/
  /*end overview page css*/
  /*end overview page css*/
  
  
  

/* Governance Section Start */
/* Governance Section Start */
/* Governance Section Start */



.gov-cont {
  background: url(../images/truckn.png) no-repeat center center / cover;
  height: 400px;
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gov-cont::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}

.gov-cont h1 {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 3.5rem;
}

.gov-cont p {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}

/* Governance Section End */

/* Upholding Trust Section */

.trust-section {
  padding: 70px 0;
  text-align: center;
  width: 60%;
  margin: auto;
}

.trust-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1c1c1c;
}

.trust-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.trust-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 18px;
  border: 1.5px solid #243F9A;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
}

.trust-card:hover {
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

/* Text */
.trust-card span {
  font-size: 14px;
  color: #0A0A5F;
  text-align: left;
  max-width: 85%;
}

/* Download Button */
.download-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #307FE2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.25s ease;
}

/* ICON FIX */
.download-btn img {
  width: 14px;
  /* very important */
  height: 14px;
  object-fit: contain;
}

/* HOVER EFFECT */
.download-btn:hover {
  background-color: #5b7cff;
}

/* OPTIONAL: invert icon if it's dark */
.download-btn:hover img {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
/* Governance Section end */
/* Governance Section end */
/* Governance Section end */
/* Governance Section end */



/* Archive Section Start */
/* Archive Section Start */
/* Archive Section Start */
/* Archive Section Start */

.archive-hero {
  background: url(/public/frontend/images/archive-page-hero.png) no-repeat center center / cover;
  height: 400px;
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}

.archive-hero h1 {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 3.5rem;
}

.archive-hero p {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}

/* Archive Section End */

/* Archive List Section */

.archive-section {
  padding: 60px 0;
  background: #f7f8fb;
  width: 60%;
  margin: auto;
}

/* Each row */
.archive-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #243F9A;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 20px;
  background: #fff;
  transition: 0.25s ease;
}

.archive-item:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

/* Left side */
.archive-item .left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.file-icon {
  width: 19px;
  height: 22px;
}

/* Text */
.archive-item span {
  font-size: 15px;
  color: #2c2c2c;
}

/* Download button */
.download-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #307FE2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  background: #fff;
}

.download-btn img {
  width: 14px;
  height: 14px;
}

/* Hover */
.download-btn:hover {
  background: #307FE2;
}

.download-btn:hover img {
  filter: brightness(0) invert(1);
}

/* Archive List Section  end*/
/* Archive List Section  end*/
/* Archive List Section  end*/
/* Archive List Section  end*/



/* Blog Page */

.banner-sec {
    position: relative;
    height: 350px;
    background: url('../images/blogbannerimage.png') no-repeat center center/cover;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.banner-sec .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Title styling */
.banner-title {
    position: relative;
    font-size: 48px;
    font-weight: 600;
    z-index: 2;
}

.blog-section{
  margin-top: 3rem;
}
/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

.blog-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

/* Meta */
.meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}
.meta img{
  width: 0.7rem;
  height: 0.7rem;
}

/* Title */
.blog-card h6 {
    font-weight: 700;
    margin: 1.2rem 0;
    font-size: 1.4rem;
}

/* Read More */
.read-more {
    font-size: 1rem;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.read-more img{
  width: 0.8rem;
  height: 0.8rem;
}

/* Sidebar */
.rightside-box {
    background: #e9ebf0;
    padding: 20px;
    border-radius: 10px;
}

.rightside-box h5 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.6rem;
}

/* Latest Posts */
.latest-post {
    gap: 10px;
    margin-bottom: 12px;
}

.latest-post p {
    font-size: 1.1rem;
    margin: 0;
}

/* Categories */
.category {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}
.categorybottom {
    font-size: 1.1rem;
    margin-top: -8px;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 3rem;
}

/* Base Button */
.page-btn {
    border: 1px solid var(--primary-background-color);
    background: transparent;
    color: var(--primary-background-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover */
.page-btn:hover:not(:disabled) {
    background: var(--primary-background-color);
    color: #fff;
}

/* Disabled */
.page-btn:disabled {
    border-color: #ccc;
    color: #aaa;
    cursor: not-allowed;
}

/* Next button spacing */
.next-btn {
    padding: 6px 16px;
}

/* Blog Description */




/* Main Image */
.blog-image img {
    border-radius: 10px;
    width: 100%;
}

/* Meta */
.blog-meta {
    background: #f1f1f1;
    padding: 8px 12px;
    font-size: 13px;
    color: #777;
    border-radius: 5px;
    display: inline-block;
}

/* Title */
.blog-title {
    font-weight: 700;
    color: #1c2b36;
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
}

/* Paragraph */
.blog-details p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 4rem 0 0;
}

/* Blog Description */



/* start spare parts css *//* start spare parts css */
/* start spare parts css *//* start spare parts css */


/* Search */
.search-box input {
    height: 54px;
    border-radius: 0;
}

.search-btn {
    background: #2d4bb3;
    color: #fff;
    width: 150px;
    border-radius: 0;
}

/* Tabs */
.nav-pills .nav-link {
    background: #eee;
    color: #000;
    margin-right: 10px;
    border-radius: 5px;
}

.nav-pills .nav-link.active {
    background: #243F9A !important;
    color: #fff;
    border:2px solid #243F9A !important;
}

/* Card */
.custom-card {
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    background: #fff;
}

.custom-card img {
    height: 180px;
    object-fit: contain;
}

.old {
    text-decoration: line-through;
    color: gray;
}

/* Button */
.buy-btn {
    border: 1px solid #2d4bb3;
    color: #2d4bb3;
    width: 100%;
}

.buy-btn:hover {
    background: #2d4bb3;
    color: #fff;
}

.fgdfgdfg {
    margin-bottom:20px;
}

/* Show More */
.show-more {
    background: #2d4bb3;
    color: #fff;
}
/* Search Button Fix */
.search-btn {
    background: #2d4bb3 !important;
    color: #fff !important;
    border: none;
    height: 55px;
    width: 150px;
    font-weight: 600;
}

.search-btn:hover {
    background: #1f3691 !important;
}

/* Tabs Center Align */
.nav-pills {
    justify-content: center;
}

.nav-pills .nav-link {
    text-align: center;
    min-width: 110px;
    margin: 5px;
    font-weight: 500;
    border:2px solid black !important;
}

/* ✅ 3 Column Layout */
.tab-pane .row > div {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

/* Responsive */
@media (max-width: 768px) {
    .tab-pane .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .tab-pane .row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Card */
.custom-card {
    text-align: center;
    height: 100%;
}

.custom-card img {
    height: 150px;
    object-fit: contain;
}

.buynow
{
    width:100%;
    height:45px;
    border:none;
    color:white;
    background:#243F9A;
    border-radius:4px;

    
}


.buynow12
{
    width:140px;
    height:45px;
    border:none;
    color:white;
    background:#243F9A;
    text-align:center;
    margin:auto;
    border-radius:4px;
}


/* Section */
.three-section {
    background: #f3f3f3;
    padding: 60px 0;
}

/* Title */
.three-title {
    text-align: center;
    font-weight: 700;
    color: #0a2a2a;
}

/* Top Boxes */
.three-box {
    background: #dde3ea;
    padding: 15px;
    border-radius: 10px;
    height: 100%;
}

/* Top Images */
.three-img {
    width: 100%;
    height: 135px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Text */
.three-box p {
    font-size: 14px;
    margin: 0;
    font-weight:500;
    color: #243F9A;
}

.sbgfndgsf:hover .dropdown-menu.d-none {
    display: block !important;
    right: -100%;
    top: 0;
}

/* Benefits */
.three-benefit {
    text-align: center;
}

/* Benefit Images */
.three-benefit-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Benefit Text */
.three-benefit p {
    font-size: 13px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .three-img {
        height: 80px;
    }
}

/* Wrapper */
.three-benefits {
    text-align: center;
    margin-top: 50px;
}

/* Title */
.three-title {
    font-weight: 700;
    margin-bottom: 30px;
}

/* Row */
.three-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Center row */
.three-row.center {
    justify-content: center;
}

/* Item */
.three-item {
    /*width: 30%;*/
    text-align: center;
    height:200px;
    padding:15px 30px;
    margin-bottom:25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius:8px;
}

/* Image */
.three-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Text */
.three-item p {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .three-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .three-item {
        width: 80%;
    }
}


.three-hero {
    background: #f2f2f2;
    padding: 60px 0;
}

/* Heading */
.three-heading {
    text-align: center;
    font-weight: 700;
    color: #0a2a2a;
}

/* Image */
.three-img-box img {
    width: 100%;
    max-width: 450px;
}

/* Form Box */
.three-form-box {
    background: #dce6ef;
    padding: 25px;
    border-radius: 10px;
}

/* Inputs */
.three-form-box input[type="text"],
.three-form-box input[type="file"] {
    width: 100%;
    height: 45px;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

/* Upload */
.upload-box {
    background: #eef3f8;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}

.upload-box span {
    font-weight: 600;
    font-size: 13px;
}

.upload-box p {
    font-size: 11px;
    margin: 0;
    color: #666;
}

/* Note */
.note {
    font-size: 12px;
    color: red;
    margin-bottom: 10px;
}

/* Checkbox */
.checkbox {
    font-size: 12px;
}

.checkbox span {
    color: #2d4bb3;
    font-weight: 600;
}

/* Button */
.three-btn {
    width: 100%;
    height: 45px;
    background: #2d4bb3;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
}

.three-btn:hover {
    background: #1f3691;
}

/* Small text */
small {
    font-size: 12px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .three-img-box {
        text-align: center;
        margin-bottom: 20px;
    }
}


.contact-box{
    background:#fff;
    border-radius:10px;
    padding:25px 25px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition:0.3s;
}

.contact-box:hover{
    transform:translateY(-3px);
}

/*.icon-box{*/
/*    width:50px;*/
/*    height:50px;*/
/*    background:#2f4aa0;*/
/*    border-radius:8px;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    color:#fff;*/
/*    font-size:22px;*/
/*}*/
.icon-box i{
    color:#fff;
    font-size:18px;
}

.contact-text h6{
    margin:0;
    font-weight:bold;
    font-size:18px;
    
}

.contact-text p{
    margin:0;
    font-size:14px;
    color:#555;
}

/* end spare parts css *//* end spare parts css */
/* end spare parts css *//* end spare parts css */


/* start service page css *//* start service page css */
/* start service page css *//* start service page css */

/* About Us Page */


/* Section Background */
.aboutpg-banner {
  height: 60vh;
  background: linear-gradient(180deg, #0d1b45, #213b91);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Title Styling */
.about-title {
  font-size: 5rem;
  font-weight: 700;
  position: absolute;
  top: 38%;
  left: 37%;
}

/* Image Wrapper */
.car-image-wrapper {
  position: absolute;
  right: -13%;
  margin-top: 8%;
}

.aboutsecond-sec{
  position: relative;
  margin: 4rem 0 1rem 0;
}

.years-box{
  position: absolute;
  top: 8%;
  left: 31%;
}
/* IMAGE GRID */
.image-grid img {
  object-fit: cover;
}

.grid-middle{
  position: absolute;
  top: 25.4%;
  left: 31%;
}
.grid-bottom{
  padding-top: 2.5%;
}
/* TITLE */
.title {
  font-size: 2.5rem;
  font-weight: 700;
  padding-bottom:20px;
  color: var(--primary-background-color);
}

.title span {
  color: #000;
}

/* Horizontal Divider */
.divider {
  width: 100%;
  height: 2px;
  background: #e5e5e5;
  margin: 25px 0;
}

/* Stats Styling */
.stat-item {
  position: relative;
  left: 4%;
}

/* Vertical Divider (ONLY middle one) */
.stat-item.middle::before,
.stat-item.middle::after {
  content: "";
  position: absolute;
  top: 10%;
  width: 2px;
  height: 90%;
  background: #e5e5e5;
}

.stat-item.middle::before {
  left: -2%;
}

.stat-item.middle::after {
  right: -1%;
}

/* DESCRIPTION */
.desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* STATS */
.stats h3 {
  font-size: 2.3rem;
  font-weight: 700;
}

.stats p {
  font-size: 1.1rem;
  color: #777;
}

/* CALL BOX */
.call-box {
  gap: 15px;
}

.call-box .icon {
  width: 50px;
  height: 50px;
  background: #e9eefb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2%;
}

.call-box span {
  font-size: 1rem;
  color: var(--primary-background-color);
  font-weight: 700;
}

.call-box h5 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}


/* TITLE */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 25px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* CARD TITLE */
.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* LIST */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* ICON */
.service-card ul li i {
  color: #000;
  margin-right: 10px;
  font-size: 16px;
}

/* MAIN TITLE */
.main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
}

.intro-text p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* CONTENT BLOCKS */
.content-block h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.content-block p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

.aboutpgfifth-sec {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 65%,
    #f5f5f5 65%,
    #f5f5f5 100%
  );
  padding-top: 4rem;
  padding-bottom: 7rem;
  margin-bottom: -5%;
}

/* TITLE */
.reliable-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #222;
}

.reliable-title .icon {
  margin-right: 3px;
}

/* CARD */
.reliable-card {
  background: #fff;
  padding: 20px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s;
}

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

.reliable-card h5 img{
  margin-right: 7px;
}
/* TITLE */
.reliable-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.reliable-card p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}



/* end service page css *//* end service page css */
/* end service page css *//* end service page css */





        
        
        
        