.rahul a,i {
	text-decoration: unset !important;
	color: #fff;
}

.dropdown-item i{
	color: #000 !important;
}


.hero-section h1{
	font-size: 70px !important;
	font-weight: 700 !important;
}


@media screen and (max-width: 580px){
	.hero-section h1{
		font-size: 50px !important;
	}
}

.icon-design{
	display: flex;
}


.icon-design i{

	color: #000;
	font-size: 30px;

	border-radius: 7px;
}

.box{
		background: #fff;
	padding: 5px;
	border-radius: 4px;

	border: 1px solid red;
}


.icon-design{
	background: rgba(255, 255, 255, .8);
	-webkit-box-shadow: 5px 5px 15px 5px #FFFFFF; 
box-shadow: 5px 5px 15px 5px #FFFFFF;
}



.bg-section{
	
	background: url(../img/banner-1.png);
	background-position: center;
	background-size: cover;
	padding-bottom: 5em !important;
}



.hero-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0 25px;
    color: #172033;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .3px;
}

.hero-tagline i {
    color: #d71920;
    font-size: 19px;
}

.hero-tagline strong {
    color: #d71920;
    font-weight: 800;
}

.tagline-line {
    width: 35px;
    height: 2px;
    background: #d71920;
    display: inline-block;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .hero-tagline {
        font-size: 13px;
        gap: 7px;
        margin: 10px 0 18px;
    }

    .hero-tagline i {
        font-size: 15px;
    }

    .tagline-line {
        width: 20px;
    }
}/* ================================
   TRUST STATISTICS SECTION
================================ */
.trust-stats {
  width: 100%;
  background: #102957;
  padding: 15px 20px;
  box-sizing: border-box;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 1;
}

.trust-content h3 {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.trust-content p {
  margin: 0;
  color: #d9e2f2;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.2;
  font-family: Arial, sans-serif;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
}

/* Tablet */
@media (max-width: 768px) {
  .trust-stats {
    padding: 14px 10px;
  }

  .trust-container {
    flex-wrap: wrap;
  }

  .trust-item {
    width: 50%;
    flex: 0 0 50%;
    margin: 6px 0;
  }

  .trust-divider {
    display: none;
  }

  .trust-content h3 {
    font-size: 15px;
  }

  .trust-content p {
    font-size: 8px;
  }

  .trust-icon {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .trust-stats {
    padding: 12px 5px;
  }

  .trust-item {
    gap: 7px;
  }

  .trust-icon {
    font-size: 20px;
    width: 27px;
  }

  .trust-content h3 {
    font-size: 14px;
  }

  .trust-content p {
    font-size: 7px;
  }
}
/* ================================
   GET FREE QUOTE FORM
================================ */

.quote-form-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  box-sizing: border-box;
}

.quote-form-box {
  width: 100%;
  max-width: 335px;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.20);
  border: 1px solid #ddd;
}

/* Header */
.quote-form-header {
  background: #102957;
  color: #fff;
  text-align: center;
  padding: 12px 8px 10px;
}

.quote-form-header h2 {
  margin: 0 0 3px;
  font-size: 24px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.quote-form-header p {
  margin: 0;
  font-size: 9px;
  color: #e5eaf3;
  font-family: Arial, sans-serif;
}

/* Form */
.quote-form-box form {
  padding: 9px;
  background: #fff;
}

.quote-input {
  position: relative;
  width: 100%;
  margin-bottom: 7px;
}

.quote-input input,
.quote-input select {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #d9dce1;
  border-radius: 4px;
  background: #fff;
  color: #444;
  font-size: 12px;
  padding: 0 28px 0 8px;
  outline: none;
  font-family: Arial, sans-serif;
}

.quote-input input::placeholder {
  color: #777;
}

.quote-input input:focus,
.quote-input select:focus {
  border-color: #102957;
  box-shadow: 0 0 0 1px rgba(16,41,87,0.08);
}

.quote-input select {
  appearance: auto;
  cursor: pointer;
}

.quote-input span {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b929c;
  font-size: 11px;
  pointer-events: none;
}

/* Submit Button */
.quote-submit {
  width: 100%;
  height: 31px;
  border: none;
  border-radius: 4px;
  background: #ff2424;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
}

.quote-submit span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.quote-submit:hover {
  background: #d90000;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 480px) {
  .quote-form-box {
    max-width: 290px;
  }
}

/* =========================
   ABOUT SECTION
========================= */

.aww-about {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.aww-about .container {
    max-width: 1250px;
}


/* IMAGE */

.about-image-wrap {
    position: relative;
    padding: 0 25px 30px 0;
}

.about-main-img {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 540px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.15);
}

.about-main-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(15,23,42,0.25)
    );
}

.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.6s ease;
}

.about-main-img:hover img {
    transform: scale(1.05);
}


/* EXPERIENCE */

.experience-box {
    position: absolute;
    left: -20px;
    bottom: 15px;
    background: #d71920;
    color: #fff;
    padding: 18px 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(215,25,32,0.3);
}

.experience-box i {
    font-size: 35px;
}

.experience-box strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.experience-box span {
    font-size: 12px;
    font-weight: 600;
}


/* FLOATING CARD */

.about-floating-card {
    position: absolute;
    right: -5px;
    top: 35px;
    background: #fff;
    padding: 13px 17px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff0f0;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.about-floating-card strong {
    display: block;
    color: #172033;
    font-size: 14px;
}

.about-floating-card small {
    display: block;
    color: #777;
    font-size: 10px;
    margin-top: 2px;
}


/* CONTENT */

.about-subtitle {
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
}

.about-subtitle span {
    width: 35px;
    height: 3px;
    background: #d71920;
    border-radius: 10px;
}

.about-content h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #101a30;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #d71920;
}

.about-content p {
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 13px;
}

.about-intro {
    font-weight: 500;
}


/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #edf0f5;
    border-radius: 12px;
    transition: 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-3px);
    border-color: #f2b9bb;
    box-shadow: 0 8px 20px rgba(15,23,42,0.07);
}

.feature-icon {
    min-width: 43px;
    width: 43px;
    height: 43px;
    border-radius: 10px;
    background: #cb0404;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-feature h5 {
    margin: 0 0 3px;
    font-size: 14px;
    color: #172033;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    color: #7b8495;
}


/* BUTTON */

.about-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 28px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 8px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 7px 20px rgba(215,25,32,0.2);
    transition: 0.3s ease;
}

.about-btn:hover {
    color: #fff;
    background: #b90007;
    transform: translateY(-2px);
}

.about-trust {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #172033;
    font-size: 13px;
    font-weight: 700;
}

.about-trust i {
    color: #d71920;
    font-size: 17px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .aww-about {
        padding: 65px 0;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-image-wrap {
        padding: 0 20px 30px 20px;
    }

    .experience-box {
        left: 5px;
    }

    .about-floating-card {
        right: 5px;
    }
}

@media (max-width: 576px) {

    .aww-about {
        padding: 50px 0;
    }

    .about-main-img {
        height: 350px;
        border-radius: 18px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .experience-box {
        padding: 13px 17px;
    }

    .experience-box i {
        font-size: 27px;
    }

    .experience-box strong {
        font-size: 24px;
    }

    .about-floating-card {
        top: 15px;
        right: 0;
    }

}.aww-why {
    padding: 90px 0;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

.aww-why .container {
    max-width: 1250px;
}


/* HEADING */

.why-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.why-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.why-subtitle span {
    width: 35px;
    height: 3px;
    background: #d71920;
    border-radius: 20px;
}

.why-heading h2 {
    color: #101a30;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-heading h2 span {
    color: #d71920;
}

.why-heading p {
    color: #687386;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* IMAGE */

.why-image-box {
    height: 100%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.12);
}

.why-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .6s ease;
}

.why-image-box:hover img {
    transform: scale(1.05);
}

.why-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(5,15,35,.85) 100%
    );
}

.why-image-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: rgba(255,255,255,.96);
    padding: 17px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.why-check {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #d71920;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.why-image-content strong {
    display: block;
    color: #101a30;
    font-size: 15px;
    font-weight: 800;
}

.why-image-content span {
    display: block;
    color: #777;
    font-size: 11px;
    margin-top: 3px;
}


/* CARDS */

.why-card {
    position: relative;
    height: 100%;
    min-height: 155px;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 15px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    transition: .35s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #f0b6b8;
    box-shadow: 0 12px 30px rgba(15,23,42,.09);
}

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: #e30000;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    transition: .3s ease;
}

.why-card:hover .why-icon {
    background: #d71920;
    color: #fff;
}

.why-card h4 {
    color: #172033;
    font-size: 16px;
    font-weight: 800;
    margin: 2px 0 7px;
}

.why-card p {
    color: #7a8495;
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}

.why-number {
    position: absolute;
    right: 12px;
    bottom: -9px;
    color: #f1f3f7;
    font-size: 55px;
    font-weight: 900;
    line-height: 1;
}


/* STATS */

.why-stats {
    margin-top: 45px;
    padding: 25px 35px;
    background: #101d3a;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(15,23,42,.15);
}

.why-stat {
    display: flex;
    align-items: center;
    gap: 13px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.why-stat strong {
    display: block;
    color: #fff;
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
}

.why-stat span {
    display: block;
    color: #aeb8cb;
    font-size: 11px;
    margin-top: 5px;
}

.why-divider {
    height: 45px;
    width: 1px;
    background: rgba(255,255,255,.15);
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .aww-why {
        padding: 65px 0;
    }

    .why-heading h2 {
        font-size: 36px;
    }

    .why-image-box {
        min-height: 450px;
    }

    .why-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .why-divider {
        display: none;
    }
}


@media (max-width: 576px) {

    .aww-why {
        padding: 50px 0;
    }

    .why-heading {
        margin-bottom: 30px;
    }

    .why-heading h2 {
        font-size: 29px;
    }

    .why-heading p {
        font-size: 13px;
    }

    .why-image-box {
        min-height: 360px;
    }

    .why-image-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 13px;
    }

    .why-card {
        min-height: auto;
    }

    .why-stats {
        grid-template-columns: 1fr;
        padding: 22px;
    }

}

/* =========================
   WORK PROCESS
========================= */

.aww-process {
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.aww-process .container {
    max-width: 1250px;
}


/* HEADING */

.process-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.process-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.process-subtitle span {
    width: 35px;
    height: 3px;
    background: #d71920;
    border-radius: 20px;
}

.process-heading h2 {
    color: #101a30;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
}

.process-heading h2 span {
    color: #d71920;
}

.process-heading p {
    color: #697386;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* PROCESS WRAPPER */

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}


/* ITEM */

.process-item {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 2;
}


/* ICON */

.process-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #ff0000;
    border: 2px solid #d71920;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    box-shadow:
        0 0 0 8px #fff0f0,
        0 10px 25px rgba(215,25,32,.12);
    transition: .35s ease;
}

.process-item:hover .process-icon {
    background: #d71920;
    color: #fff;
    transform: translateY(-5px);
    box-shadow:
        0 0 0 8px #fff0f0,
        0 15px 30px rgba(215,25,32,.25);
}

.process-icon span {
    position: absolute;
    right: -7px;
    top: -7px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #101d3a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}


/* CONTENT */

.process-content h4 {
    color: #172033;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.process-content p {
    color: #7a8495;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}


/* CONNECTING LINE */

.process-line {
    width: 9%;
    height: 2px;
    margin-top: 41px;
    background: linear-gradient(
        90deg,
        #d71920,
        #101d3a
    );
    position: relative;
}

.process-line::after {
    content: "›";
    position: absolute;
    right: -4px;
    top: -13px;
    color: #d71920;
    font-size: 22px;
    font-weight: 800;
}


/* BOTTOM CTA */

.process-bottom {
    margin-top: 55px;
    padding: 22px 28px;
    background: #101d3a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.process-bottom strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.process-bottom span {
    display: block;
    color: #aeb8cb;
    font-size: 12px;
    margin-top: 4px;
}

.process-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s ease;
}

.process-bottom a:hover {
    background: #b90007;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .aww-process {
        padding: 65px 0;
    }

    .process-heading h2 {
        font-size: 36px;
    }

    .process-wrapper {
        flex-wrap: wrap;
        gap: 35px 0;
    }

    .process-item {
        width: 45%;
    }

    .process-line {
        display: none;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .aww-process {
        padding: 50px 0;
    }

    .process-heading {
        margin-bottom: 35px;
    }

    .process-heading h2 {
        font-size: 29px;
    }

    .process-heading p {
        font-size: 13px;
    }

    .process-wrapper {
        display: block;
    }

    .process-item {
        width: 100%;
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 30px;
    }

    .process-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        margin: 0;
        font-size: 23px;
        box-shadow:
            0 0 0 6px #fff0f0,
            0 8px 20px rgba(215,25,32,.1);
    }

    .process-icon span {
        width: 23px;
        height: 23px;
        font-size: 9px;
    }

    .process-content h4 {
        margin-top: 2px;
        font-size: 16px;
    }

    .process-content p {
        font-size: 12px;
    }

    .process-bottom {
        margin-top: 15px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .process-bottom a {
        width: 100%;
        justify-content: center;
    }

}/* =========================
   CUSTOM FORM DROPDOWN
========================= */

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    display: block;
    margin-bottom: 8px;
    color: #172033;
    font-size: 14px;
    font-weight: 700;
}

.form-group-custom label i {
    color: #d71920;
    margin-right: 6px;
    font-size: 14px;
}


/* SELECT BOX */

.select-box {
    position: relative;
    width: 100%;
    height: 52px;
}

.select-box .select-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #d71920;
    font-size: 17px;
    z-index: 2;
    pointer-events: none;
}

.select-box select {
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 9px;
    padding: 0 45px 0 48px;
    color: #4c5668;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: all .3s ease;
}

.select-box select:hover {
    border-color: #d71920;
}

.select-box select:focus {
    border-color: #d71920;
    box-shadow: 0 0 0 3px rgba(215,25,32,.10);
}


/* ARROW */

.arrow-icon {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #697386;
    font-size: 12px;
    pointer-events: none;
}


/* MOBILE */

@media (max-width: 576px) {

    .form-group-custom {
        margin-bottom: 15px;
    }

    .form-group-custom label {
        font-size: 13px;
    }

    .select-box {
        height: 49px;
    }

    .select-box select {
        font-size: 13px;
    }

}.quote-trust-box {
    height: 100%;
    background: #101d3a;
    border-radius: 18px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.quote-trust-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(215,25,32,.12);
    right: -70px;
    top: -70px;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    background: #d71920;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
}

.quote-trust-box h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin: 18px 0 10px;
}

.quote-trust-box h2 span {
    color: #ff3038;
}

.quote-trust-box > p {
    color: #b8c1d1;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    transition: .3s ease;
}

.trust-item:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 9px;
    background: #d31717;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.trust-item small {
    display: block;
    color: #9da8bb;
    font-size: 9px;
    margin-top: 3px;
    line-height: 1.4;
}

.trust-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-bottom strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.trust-bottom small {
    color: #aeb8c9;
    font-size: 11px;
}

.trust-bottom > i {
    color: #d71920;
    font-size: 28px;
}


/* Mobile */

@media (max-width: 576px) {

    .quote-trust-box {
        padding: 25px 20px;
    }

    .quote-trust-box h2 {
        font-size: 28px;
    }

    .trust-list {
        grid-template-columns: 1fr;
    }

}.calculator-title {
    font-size: 31px;
    font-weight: 800;
    color: #101d3a;
    margin: 0 0 20px;
    line-height: 1.2;
    position: relative;
    padding-left: 15px;
}

.calculator-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 34px;
    background: #d71920;
    border-radius: 5px;
}

.calculator-title span {
    color: #d71920;
}

@media (max-width: 576px) {
    .calculator-title {
        font-size: 25px;
    }

    .calculator-title::before {
        height: 28px;
    }
}/* From Uiverse.io by cssbuttons-io */ 
button {
 position: relative;
 border: none;
 background: transparent;
 padding: 0;
 cursor: pointer;
 outline-offset: 4px;
 transition: filter 250ms;
 user-select: none;
 touch-action: manipulation;
}

.shadow {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 border-radius: 12px;
 background: hsl(0deg 0% 0% / 0.25);
 will-change: transform;
 transform: translateY(2px);
 transition: transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.edge {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 border-radius: 12px;
 background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.front {
 display: block;
 position: relative;
 padding: 12px 27px;
 border-radius: 12px;
 font-size: 1.1rem;
 color: white;
 background: hsl(345deg 100% 47%);
 will-change: transform;
 transform: translateY(-4px);
 transition: transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

button:hover {
 filter: brightness(110%);
}

button:hover .front {
 transform: translateY(-6px);
 transition: transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

button:active .front {
 transform: translateY(-2px);
 transition: transform 34ms;
}

button:hover .shadow {
 transform: translateY(4px);
 transition: transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

button:active .shadow {
 transform: translateY(1px);
 transition: transform 34ms;
}

button:focus:not(:focus-visible) {
 outline: none;
}
/* =========================
   ALL INDIA BRANCHES
========================= */

.aww-branches {
    padding: 90px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.aww-branches .container {
    max-width: 1250px;
}


/* HEADING */

.branch-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.branch-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: #d71920;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.branch-subtitle span {
    width: 32px;
    height: 3px;
    background: #d71920;
    border-radius: 10px;
}

.branch-heading h2 {
    margin: 0 0 13px;
    color: #101d3a;
    font-size: 42px;
    font-weight: 800;
}

.branch-heading h2 span {
    color: #d71920;
}

.branch-heading p {
    margin: 0;
    color: #707b8d;
    font-size: 14px;
    line-height: 1.8;
}


/* BRANCH CARD */

.branch-card {
    min-height: 82px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

.branch-card:hover {
    border-color: #d71920;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(15,23,42,.08);
}

.branch-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    background: #ff0000;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s ease;
}

.branch-card:hover .branch-icon {
    background: #d71920;
    color: #fff;
}

.branch-card h4 {
    margin: 0;
    color: #172033;
    font-size: 15px;
    font-weight: 800;
}

.branch-card span {
    display: block;
    margin-top: 3px;
    color: #8992a2;
    font-size: 10px;
}

.branch-arrow {
    margin-left: auto;
    color: #b5bcc8;
    font-size: 12px;
    transition: .3s ease;
}

.branch-card:hover .branch-arrow {
    color: #d71920;
    transform: translateX(4px);
}


/* BOTTOM */

.branch-bottom {
    margin-top: 35px;
    padding: 22px 25px;
    border-radius: 15px;
    background: #101d3a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.branch-bottom-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.branch-bottom-text {
    flex: 1;
}

.branch-bottom-text strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.branch-bottom-text span {
    display: block;
    color: #aeb8ca;
    font-size: 11px;
    margin-top: 4px;
}

.branch-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    background: #d71920;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .3s ease;
}

.branch-btn:hover {
    background: #b90007;
    color: #fff;
    transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 991px) {

    .aww-branches {
        padding: 65px 0;
    }

    .branch-heading h2 {
        font-size: 36px;
    }

}


/* MOBILE */

@media (max-width: 576px) {

    .aww-branches {
        padding: 50px 0;
    }

    .branch-heading {
        margin-bottom: 30px;
    }

    .branch-heading h2 {
        font-size: 29px;
    }

    .branch-heading p {
        font-size: 13px;
    }

    .branch-bottom {
        flex-wrap: wrap;
        padding: 20px;
    }

    .branch-bottom-text {
        width: calc(100% - 65px);
    }

    .branch-btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

}


.bg-section1{
	    background: url(../img/banner-1.png);
	    background-size: cover;
	    background-position: center;
}.page-title {
    font-size: 42px;
    font-weight: 800;
    color: #101d3a;
    line-height: 1.2;
    margin: 0;
    position: relative;
    padding-left: 18px;
}

.page-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 43px;
    background: #d71920;
    border-radius: 5px;
}

.page-title span {
    color: #d71920;
}

@media (max-width: 576px) {
    .page-title {
        font-size: 32px;
        padding-left: 14px;
    }

    .page-title::before {
        width: 4px;
        height: 34px;
        top: 3px;
    }
}/* =========================
   SERVICE DETAIL SECTION
========================= */

.service-detail-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.service-detail-section .container {
    max-width: 1200px;
}


/* LEFT CONTENT */

.service-content {
    background: #fff;
    padding: 42px;
    border-radius: 16px;
    border: 1px solid #e8ecf2;
}

.service-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d71920;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin-bottom: 12px;
}

.service-label i {
    font-size: 13px;
}

.service-content h2 {
    color: #101d3a;
    font-size: 38px;
    font-weight: 800;
    margin: 0;
}

.service-content h2 span {
    color: #d71920;
}

.service-line {
    width: 55px;
    height: 4px;
    background: #d71920;
    border-radius: 10px;
    margin: 16px 0 20px;
}

.service-content p {
    color: #697386;
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 13px;
}


/* POINTS */

.service-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.service-points div {
    color: #172033;
    font-size: 12px;
    font-weight: 700;
}

.service-points i {
    color: #d71920;
    margin-right: 6px;
}


/* =========================
   SERVICE MENU
========================= */

.service-menu {
    background: #101d3a;
    border-radius: 16px;
    padding: 25px 18px;
    box-shadow: 0 15px 35px rgba(16,29,58,.12);
}


/* MENU HEADING */

.menu-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 8px 18px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.menu-heading > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #d71920;
    color: #fff;
    font-size: 16px;
}

.menu-heading span {
    display: block;
    color: #8f9bb0;
    font-size: 9px;
    letter-spacing: 1.3px;
    font-weight: 700;
}

.menu-heading strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}


/* MENU ITEMS */

.service-menu-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 8px 10px;
    margin-top: 7px;
    border-radius: 9px;
    text-decoration: none;
    color: #c1c9d6;
    transition: .3s ease;
}

.service-menu-item:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
    transform: translateX(3px);
}

.service-menu-item.active {
    background: #d71920;
    color: #fff;
}

.menu-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    font-size: 13px;
}

.service-menu-item.active .menu-icon {
    background: rgba(255,255,255,.16);
}

.service-menu-item span {
    flex: 1;
    font-size: 11px;
    font-weight: 700;
}

.service-menu-item > i {
    font-size: 10px;
    opacity: .6;
}

.service-menu-item:hover > i {
    opacity: 1;
    transform: translateX(3px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .service-detail-section {
        padding: 50px 0;
    }

    .service-content {
        padding: 28px 20px;
    }

    .service-content h2 {
        font-size: 29px;
    }

    .service-content p {
        font-size: 12px;
    }

    .service-points {
        grid-template-columns: 1fr;
    }

    .service-menu {
        padding: 20px 14px;
    }

}

/* =========================
   FOOTER
========================= */

.aww-footer {
    background: #0b1429;
    color: #fff;
}


/* =========================
   TOP CTA
========================= */

.footer-cta {
    background: #d71920;
    padding: 28px 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-cta-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,.75);
    margin-bottom: 5px;
}

.footer-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.footer-cta h2 span {
    color: #101d3a;
}

.footer-cta p {
    margin: 5px 0 0;
    color: rgba(255,255,255,.85);
    font-size: 12px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #101d3a;
    color: #fff;
    padding: 13px 22px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s ease;
}

.footer-cta-btn:hover {
    background: #fff;
    color: #101d3a;
    transform: translateY(-2px);
}


/* =========================
   MAIN FOOTER
========================= */

.footer-main {
    padding: 65px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-main .container {
    max-width: 1250px;
}


/* LOGO */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: #d71920;
    color: #fff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.footer-logo strong {
    display: block;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.1;
}

.footer-logo span {
    display: block;
    color: #aeb8ca;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 3px;
}


/* ABOUT */

.footer-about > p {
    color: #9ba7bb;
    font-size: 12px;
    line-height: 1.8;
    max-width: 370px;
    margin-bottom: 18px;
}


/* TAGLINE */

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #dce2ec;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-tagline i {
    color: #d71920;
    font-size: 18px;
}

.footer-tagline strong {
    color: #fff;
}


/* SOCIAL */

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    color: #b8c2d2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: .3s ease;
}

.footer-social a:hover {
    background: #d71920;
    border-color: #d71920;
    color: #fff;
    transform: translateY(-3px);
}


/* COLUMNS */

.footer-column h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 4px 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: #d71920;
    border-radius: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9ba7bb;
    text-decoration: none;
    font-size: 12px;
    transition: .25s ease;
}

.footer-column ul li a i {
    color: #d71920;
    font-size: 9px;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 4px;
}


/* CONTACT */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    background: rgba(215,25,32,.12);
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.contact-item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-bottom: 3px;
}

.contact-item span {
    display: block;
    color: #9ba7bb;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================
   BOTTOM
========================= */

.footer-bottom {
    padding: 18px 0;
    background: #080f20;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #7f8ba0;
    font-size: 10px;
}

.footer-bottom p strong {
    color: #b8c2d2;
}

.footer-policy {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-policy a {
    color: #7f8ba0;
    font-size: 10px;
    text-decoration: none;
    transition: .25s ease;
}

.footer-policy a:hover {
    color: #fff;
}

.footer-policy span {
    color: #424c60;
    font-size: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .footer-main {
        padding: 50px 0 35px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

}


@media (max-width: 576px) {

    .footer-cta {
        padding: 25px 0;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta h2 {
        font-size: 22px;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        padding: 45px 0 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy {
        flex-wrap: wrap;
        justify-content: center;
    }

}