* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1b2a5e;
  --navy2: #243380;
  --navy-dark: #0d1a3e;
  --navy-card: #2d3f7a;
  --blue-mid: #3d5cc4;
  --blue-light: #5b7be8;
  --off-white: #f0f3fa;
  --light-bg: #e8eefa;
  --text: #1a1a2e;
  --text-muted: #555566;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  --glow-blue: 0 0 40px rgba(91, 123, 232, 0.25);
}

html {
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.no-padding {
  padding: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  font-family: Poppins;
  overflow-x: hidden;
}

.custom-container {
  max-width: 1610px;
  margin: 0px auto;
  padding: 0px 15px;
}

.cmn-gap {
  padding: 80px 0px;
  margin: 0px;
}

.cmn-butn {
  font-family: Poppins;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 12px 40px;
  transition: all 0.3s ease-in-out;
}

.blue-butn {
  background: #17275b;
  border: 1px solid #17275b;
  color: #fff;
  transition: all 0.25s;
}

.blue-butn:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  transform: translateY(-2px);
}

.wht-butn {
  background: transparent;
  border: 1px solid #fff;
  color: #dee5f0;
  transition: all 0.25s;
}

.wht-butn:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  transform: translateY(-2px);
}

.cmn-gap {
  padding: 80px 0px;
}

/* =================================== */
/* =============my-css-start===========*/
/* =================================== */

/* =================================== */
/* ============header-section===========*/
/* =================================== */

/* ========NAVBAR===========*/

.main-nav {
  margin: 0px 0px;
  padding: 10px 0px;
  width: 100%;
  height: auto;
  background: #ffffff00;
  transition: all 0.1s ease 0s;
  z-index: 999;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.06);
  position: absolute;
}

.main-nav.scroll {
  background: var(--navy-dark);
  height: auto;
  padding: 0px 0px;
  transition: background-color 0.5s ease 0s;
  top: 0;
  position: fixed;
  transition: all 0.3s ease 0s;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.07);
}

.site-nav {
  padding: 10px 20px;
  transition:
    box-shadow 0.3s,
    padding 0.3s;
  background: linear-gradient(
    360deg,
    rgba(17, 34, 93, 0.9) 0%,
    rgba(28, 44, 102, 0.9) 100%
  );
  border-radius: 15px;
  margin-top: 20px;
}

.main-nav.scroll .site-nav {
  background: var(--navy-dark);
  border-radius: 0px;
  margin-top: 0px;
}

.logo {
  width: 250px;
  height: auto;
  margin: 0px;
  padding: 0px 0px;
  position: relative;
}

.logo img {
  width: 100%;
}

.main-nav.scroll .logo {
  width: 163px;
  margin: 11px 0px 16px 0px;
}

.stellarnav.mobile.right > ul {
  z-index: 99;
  background: #f0d04d;
}

.stellarnav {
  position: relative;
  width: 100%;
  line-height: normal;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  /*display: none;*/
}

.stellarnav ul {
  margin: 0px 0px;
  padding: 0px 0px 0px 0px;
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.stellarnav > ul > li > a {
  padding: 2px 0px;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.stellarnav > ul > li > a:hover {
  color: #a4b4e8;
  text-decoration: none;
}
.stellarnav > ul > li > a.active {
  color: #a4b4e8 !important;
  text-decoration: none;
  font-weight: 600;
}
.main-nav-socialicon {
  margin: 20px 0px 0px 0px;
  padding: 0px 0px;
  position: relative;
  text-align: right;
}
.main-nav .stellarnav ul ul {
  width: 263px;
  padding: 12px 0px;
}
.main-nav .stellarnav li li {
  margin: 0px 0px;
  width: 100% !important;
  border-bottom: #ccccccb8 1px solid;
}
.main-nav .stellarnav li li a {
  font-size: 15px;
  padding: 8px 12px;
  color: #2c2c2c;
  font-weight: 400;
}
.stellarnav li.has-sub a {
  padding-right: 0px !important;
}
.main-nav .stellarnav li li a:hover {
  background: #f9f9f9;
  color: #a4b4e8;
}
.main-nav .stellarnav li li a.active {
  background: #f9f9f9;
  color: #a4b4e8;
}
.stellarnav li.has-sub > a::after {
  content: "\f107";
  margin-left: 7px !important;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #267ec3;
  display: inline-block;
  border: none !important;
  font: normal normal normal 16px/1 FontAwesome;
}

.rightlink {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: end;
  height: 100%;
}

.btn-request-quote {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-request-quote:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ========NAVBAR===========*/

/* =======banner-section===========*/

.banner-section {
  margin: 0px 0px;
  padding: 0px;
  width: 100%;
  position: relative;
  z-index: 99;
}

.banner-section #overlay {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0px;
  background-image: linear-gradient(180deg, #000, #201e1e00);
  z-index: 999;
}

.banner-section .custom-container {
  position: relative;
  width: 100%;
}

.bannercarousel-text {
  position: absolute;
  bottom: 150px;
  width: 100%;
  left: 0px;
  text-align: left;
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.hero-text-bar h1 {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 120px;
  line-height: 100px;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #fff;
  margin: 0px 0px 50px 0px;
  padding: 0px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-text-bar p {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: 2%;
  color: #fff;
  margin: 0px 0px 80px 0px;
  padding: 0px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  max-width: 100%;
}

.btn-hero {
  margin: 0px 0px 90px 0px;
}

/* Info bar at bottom of hero */

.hero-info-bar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin: 0 0 32px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-info-bar h6.info-text {
  font-family: Poppins;
  font-weight: 500;

  font-size: 20px;

  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0px;
  padding: 0px;
}

.hero-info-bar .info-contact h6 {
  font-family: Poppins;
  font-weight: 500;

  font-size: 20px;

  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0px;
  padding: 0px;
}

.hero-info-bar .info-contact h6 span {
  margin-right: 10px;
}

.hero-info-bar .info-contact h6 span i {
  font-size: 20px;
}

.hero-info-bar .info-contact h6 a {
  color: #fff;
}

.hero-info-bar .info-contact h6 a:hover {
  color: #ccc;
}

/* =======banner-section===========*/

/* =================================== */
/* ============header-section===========*/
/* =================================== */

.cmn-tittle {
  font-family: PT Sans Narrow;
  font-weight: 700;
  font-size: 75px;
  line-height: 85px;
  letter-spacing: 0%;
  color: #000;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

.cmn-text {
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #363636;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

/* =================================== */
/* ==========About-section===========*/
/* =================================== */

.about-section {
  background: url("../images/about-bg.png") center/cover no-repeat;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
}

.about-section .custom-container {
  position: relative;
  z-index: 2;
}

.about-section-text {
  padding: 0px 80px 0px 0px;
  margin: 0px;
}

.about-section-text h2 {
  text-align: left;
}

.about-section-text p {
  text-align: left;
}

.about-img {
  border-radius: 0px 50px 0px 50px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-top: 40px;
}

.about-img img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.about-img:hover img {
  transform: scale(1.04);
}

/* Service cards (stacked, offset) */

.service-card {
  background: #3c4d8c;
  border-radius: 0px 50px 0px 50px;
  padding: 50px;
  color: var(--white);

  transition:
    transform 0.35s,
    box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 26, 62, 0.3);
  border: 7px solid #a4b4e8;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 26, 62, 0.45);
}

.service-card h4 {
  font-family: Poppins;
  font-weight: 600;

  font-size: 35px;

  line-height: 120%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0px 0px 20px 0px;
  padding: 0px;
}

.service-card p {
  font-family: Poppins;
  font-weight: 500;

  font-size: 18px;

  line-height: 32px;
  letter-spacing: 0%;
  color: #f5f5f5;
  margin: 0px 0px 20px 0px;
  padding: 0px;
}

.service-card-two {
  margin-top: 105px;
}

/* =================================== */
/* ==========About-section===========*/
/* =================================== */

/* =================================== */
/* =========sectors-section===========*/
/* =================================== */

.sectors-section {
  background: #efefef;
}

.section-title {
  text-align: center;
  margin-bottom: 100px;
}

.section-title p {
  max-width: 1200px;
  margin: 0px auto;
}

.sector-card {
  background: var(--white);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0px 0px 30px 0px #00000080;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  cursor: pointer;
  height: 100%;
  padding: 30px;
}

.sector-card:hover {
  transform: translateY(-50px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
  border: 2px solid #242f5c;
}

.sector-img {
  overflow: hidden;
  position: relative;
}

.sector-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.sector-card:hover .sector-img img {
  transform: scale(1.07);
}

.sector-body {
  padding: 30px 0px 0px 0px;
  margin: 0px;
}

.sector-body h4 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0%;
  margin: 0px 0px 20px 0px;
  padding: 0px;
  color: #000;
}

.sector-body p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  margin: 0px 0px 30px 0px;
  padding: 0px;
  color: #212121;
}

.sector-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dedede;

  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  margin: 0px auto;
}

.sector-card:hover .sector-arrow {
  background: #242f5c;
  transform: translateX(4px);
}

/* =================================== */
/* =========sectors-section===========*/
/* =================================== */

/* =================================== */
/* =========cta-banner-section===========*/
/* =================================== */

.cta-banner {
  background: url("../images/tag-banner-bg.png") center/cover no-repeat;
  position: relative;
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(15,20,35,.78), rgba(15,20,35,.82)); */
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: #fff;
}

.btn-cta-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-family: PT Sans Narrow;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 4%;
  text-decoration: none;
  transition: all 0.3s;
  color: #3c4d8c;
}

.btn-cta-quote img {
  height: 35px;
}

.btn-cta-quote:hover {
  background: #efefef;
  color: var(--navy-dark);
  border: 2px solid #efefef;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

/* =================================== */
/* =========cta-banner-section===========*/
/* =================================== */

/* =================================== */
/* =========diff-section===========*/
/* =================================== */

.diff-section {
  background: url("../images/about-1.png") center/cover no-repeat;
  position: relative;
  padding: 90px 0;
}

.diff-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ebebebc9;
}

.diff-section h2 {
  text-align: center;
  margin: 0px 0px 80px 0px;
}

.diff-section .custom-container {
  position: relative;
  z-index: 2;
}

.diff-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;

  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1.5px solid transparent;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 40px;
  box-shadow: 0px 0px 20px 0px #00000021;
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(91, 123, 232, 0.25);
}

.diff-num {
  margin-bottom: 12px;
  background: #f3f3f3;
  border-radius: 15px;
  text-align: center;
  font-family: PT Sans Narrow;
  font-weight: 400;
  font-style: Regular;
  font-size: 55px;
  line-height: 55px;
  letter-spacing: 0%;
  color: #000000;
  padding: 0px;
  width: 200px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diff-card-text {
  padding: 0px;
  margin: 0px;
}

.diff-card-text h4 {
  font-family: PT Sans Narrow;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0%;
  color: #3c4d8c;
  margin: 0px 0px 20px 0px;
  padding: 0px;
}

.diff-card-text p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
  letter-spacing: 0%;
  color: #000000;
  margin: 0px;
  padding: 0px;
}

/* =================================== */
/* =========diff-section===========*/
/* =================================== */

/* =================================== */
/* =========ENQUIRY FORM===========*/
/* =================================== */

.enquiry-section {
  background: url("../images/Inquiry-form.png") center/cover no-repeat;
  position: relative;
}

.enquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(10,15,30,.82), rgba(10,15,30,.86)); */
}

.enquiry-section .container {
  position: relative;
  z-index: 2;
}

.enquiry-section h2 {
  color: #fff;
  text-align: center;
  margin: 0px 0px 50px 0px;
  padding: 0px;
}

.form-field {
  position: relative;
  background: #e0e0e08c;
  border: 1px solid #e0e0e08c;
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.form-field:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: #e0e0e08c;
  border: none;
  outline: none;
  color: var(--white);
  padding: 14px 44px 14px 16px;
  font-family: Poppins;
  font-weight: 300;
  font-size: 20px;
  color: #000;
  line-height: 130%;
  letter-spacing: 0px;
  text-transform: capitalize;
  border-radius: 4px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #000;
}

.form-field textarea {
  min-height: 52px;
  resize: none;
}

.form-field .field-icon {
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  font-size: 20px;
  pointer-events: none;
}

.form-confidential {
  font-family: Poppins;
  font-weight: 300;
  font-size: 25px;
  line-height: 34px;
  letter-spacing: -1%;
  text-transform: capitalize;
  color: #fff;
  margin: 45px 0px;
  padding: 0px;
  text-align: center;
}

.btn-submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: var(--white);
  color: #000000;
  border: none;
  padding: 16px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* =================================== */
/* =========ENQUIRY FORM===========*/
/* =================================== */

/* =================================== */
/* =========Footer==========*/
/* =================================== */

footer {
  background: #0e183c;
}

.footer-main {
  padding: 80px 0px 0px;
  text-align: center;
}

.footer-logo img {
  height: 90px;

  width: 333px;
  margin: 0px;
  padding: 0px;
}

.footer-desc {
  padding: 0px;
  margin: 30px auto 60px;
  max-width: 1142px;
}

.footer-desc p {
  font-weight: 400;

  font-size: 18px;

  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #cccccc;
  padding: 0px;
  margin: 0px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.footer-socials a {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #28376e;
  border: 1px solid #28376e;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.25s;
}

.footer-socials a:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-nav a {
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;

  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  padding: 0px;
  margin: 0px;
}

.footer-nav a:hover {
  color: #96c3ff;
}

.footer-contact-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 0px;
  margin: 40px 0px;
}

.footer-contact-row .fc {
  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 400;

  font-size: 18px;

  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  text-align: center;
  color: #fff;
  padding: 0px;
  margin: 0px;
}

.footer-contact-row .fc i {
  color: #fff;
}

.footer-contact-row .fc a {
  color: #fff;
}

.footer-contact-row .fc a:hover {
  color: #ccc;
}

.footer-contact-row .fc span {
  margin-right: 15px;
}

.footer-copy {
  border-top: 1px solid #29386d;

  font-weight: 400;

  font-size: 15px;

  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  text-align: center;

  text-align: center;
  padding: 25px 0px;
}

/* =================================== */
/* =========Footer==========*/
/* =================================== */

/* =================================== */
/* ========SCROLL ANIMATIONS==========*/
/* =================================== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal-r.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 0.1s !important;
}

.d2 {
  transition-delay: 0.2s !important;
}

.d3 {
  transition-delay: 0.3s !important;
}

.d4 {
  transition-delay: 0.4s !important;
}

/* ══════════════════════════════════
       HERO TEXT ANIMATION
    ══════════════════════════════════ */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-h1 {
  animation: heroIn 0.9s ease both;
}

.hero-sub {
  animation: heroIn 0.9s ease 0.15s both;
}

.btn-hero {
  animation: heroIn 0.9s ease 0.3s both;
}

.hero-info-bar {
  animation: heroIn 0.9s ease 0.45s both;
}

/* =================================== */
/* ========SCROLL ANIMATIONS==========*/
/* =================================== */

/* =================================== */
/* =============my-css-end===========*/
/* =================================== */

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 100px;
  right: 20px;
  border-radius: 50%;
  background-color: #575d86;
  color: #ffffff;
  z-index: 999;
  width: 50px;
  text-align: center;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  -webkit-transition: var(--transition);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.go-top:hover {
  color: #ffffff;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  background-color: #000;
  border: 1px solid #000;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
  -webkit-animation: top-bottom 5s infinite linear;
  animation: top-bottom 5s infinite linear;
}

/*================================================
Go Top CSS
=================================================*/
/*================================================
inner page - About
=================================================*/

.breadcumb {
  margin: 0px 0px;
  position: relative;
  background: #000;
  height: 350px;
}

.hero-content {
  position: absolute;
  color: #ffffff;
  bottom: 50px;
  left: 0%;
  width: 100%;
}

.hero-content h1 {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: 2%;
  color: #fff;
  margin: 0px 0px 50px 0px;
  padding: 0px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.inner-pages-img-box {
  border-radius: 0px 50px 0px 50px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin: 0px;
  padding: 0px;
}

.inner-pages-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.inner-pages-img-box:hover img {
  transform: scale(1.04);
}

.full-wid-text {
  margin: 50px 0px;
  width: 100%;
}

/*================================================
inner page - About
=================================================*/

/* ==================================================================*/
/* end M.B css*/
/* ==================================================================*/
