* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* ----------------------------------Navbar--------------------------------- */
.navbar-brand img {
  width: 150px;
}

.navbar {
  -webkit-box-shadow: 0px 5px 9px -8px rgba(0, 0, 0, 0.86);
  -moz-box-shadow: 0px 5px 9px -8px rgba(0, 0, 0, 0.86);
  box-shadow: 0px 5px 9px -8px rgba(0, 0, 0, 0.86);
  background-color: #fff;
}

.nav-item a {
  color: #202e59;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item a:hover {
  color: #e1153e;
}

/* .carousel-item img {
  width: 100%;
  height: 500px;
}
.carousel-control-prev {
  display: none !important;
}
.carousel-control-next {
  display: none !important;
} */

/* --------------------------------------Banner----------------------------------- */

.banner {
  display: flex;
  height: 100vh;
}
.left-section {
  width: 40%;
  background: url("img/world-map.jpeg") no-repeat center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 0 10px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.left-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 3, 3, 0.7);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.left-section h2,
.left-section p,
.left-section button {
  position: relative;
  font-weight: 600;
  font-size: 2.6rem;
  z-index: 2;
}

/* --------------------- */

.left-section button {
  background-color: #e1153e;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.left-section button i {
  font-size: inherit;
  display: flex;
  align-items: center;
}

.left-section button:hover {
  color: black;
}
.right-section {
  width: 60%;
  background: url("img/banner-bg-img.jpeg") no-repeat center center;
  background-size: cover;
}

/* Adding blur effect */

.right-section .content {
  position: relative;
  color: white;
  text-align: center;
}
/* --------------------------------------------Our-Service------------------------ */
.ourService {
  padding: 20px;
}

.card-padding {
  padding: 10px;
}

.card {
  margin: 10px;
}

.alert-box {
  padding: 10px;
}

.custom-card {
  color: #202e59 !important;
  padding: 50px !important;
  border-radius: 5px;
}

.custom-card:hover {
  background-color: #e1153e;
  color: #fff !important;
  transition: 0.7s;
}

.card-head-color {
  color: #e1153e;
}

.header {
  text-align: center;
  text-transform: uppercase;
  color: #202e59;
  padding: 30px;
}

.our-services-p {
  text-transform: uppercase;
  letter-spacing: 5px;
  border: 0.8px solid rgb(234, 166, 166);
  display: inline;
  padding: 0 20px 0 20px;
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
  font-weight: 600;
  background-color: #fff;
}

.card-padding {
  padding-bottom: 20px;
}

/* -----------------------------------------Hover-UnderLine-Animation------------------------------------ */

.hover-underline-animation {
  display: inline-block;
  position: relative;
  /* color: #0087ca; */
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e1153e;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ------------------------------------------------Our-Story---------------------------------- */

.ourstory {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  width: 100%;
}

.ourstory-paragraph p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #202e59;
  /* background-color: #888; */
  margin-right: 70px;
  margin-top: 30px;
}
.ourstory-head {
  text-transform: uppercase;
  font-weight: 600;
  color: #202e59;
  margin-bottom: 40px;
  /* border-bottom: 3px solid #e1153e; */
  display: inline;
}

.ourstory-img img {
  width:100%;
  height: auto;
  border-radius: 15px;
}
.mission,
.vision,
.values {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 20px;
}

.mission-head {
  /* text-align: center; */
  padding: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.mission-head span {
  color: #e1153e;
}

/* ----------------------------------------Alert-Box------------------------------ */

.alert-box {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.alert-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: #e1153e;
  text-decoration: none;
  cursor: pointer;
}

/* --------------------------------Caption---------------------------------- */

/* .carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.2rem;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 10px;
} */

/* ---------------------------------------Contact------------------------------- */

.contact-section {
  padding: 50px 0;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-header {
  font-size: 2rem;
  font-weight: bold;
}
.contact-info p {
  margin-bottom: 10px;
  color: black;
}

.form-control {
  border-color: #dee2e6 !important;
  border: none;
  /* background-color: transparent !important; */
}
.form-control:focus {
  box-shadow: none !important;
}
.Send-button {
  background-color: #333 !important;
  cursor: pointer;
}
.submit-btn1x {
  background-color: transparent !important;
  border: none;
  color: white;
  font-weight: bold;
  padding: 10px;
}
.Send-button:hover {
  background-color: #e1153e !important;
  /* border: none; */
}

/* --------------------------Footer-------------------------------- */
.custom-footer {
  background-color: #333;
  color: white;
  padding: 35px 0;
}
.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 25px;
}
.social-icons a:hover {
  color: #e1153e;
}

/* -------------------------------------------Company-Promise--------------------------------- */

.Company-promise {
  background-image: url("img/cp.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.company-promise-heading {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 2rem;
  border-bottom: 2px solid #e1153e;
}

.company-promise-p {
  color: #fff;
  font-size: 1.2rem;
  padding: 20px 80px;
}

/* For smaller screens */
@media (max-width: 768px) {
    .card {margin-top:10px;}
    .ourstory-paragraph p{    margin-right:0px;}
    .right-section{ display:none; }
    .left-section{width: 100%;}
  .ourstory {
    flex-direction: column;
  }

  .ourstory-img,
  .ourstory-paragraph {
    flex: none;
    width: 100%;
  }
}
