/********** Template CSS **********/
:root {
    --primary: #1c4742;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
    --parit: #90da10;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: var(--parit);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.back-to-top {
    position: fixed;
    display: none;
    bottom: 85px;
    right: 30px;
    z-index: 99;
    width: 50px;
    height: 50px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* <!-- --------------------------------------------------------------
    # All Button styling / custom classes
    -------------------------------------------------------------- --> */
.fw-medium {
    font-weight: 500;
}

.bg-green {
    background-color: var(--primary);
}

.text-green {
    color: var(--parit) !important;
}

.dark {
    color: var(--primary);
}

.border-green {
    border: 2px solid var(--primary) !important;
}

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
    background-color: var(--parit);
    border: #8bd40e;
}

.btn-primary:hover {
    background-color: var(--primary);
    border: var(--primary);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* <!-- --------------------------------------------------------------
    # header  Responsive Fixes
    -------------------------------------------------------------- --> */
/* .index-banner {
    background-image: url(../img/unnamed\ \(1\).jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    width: auto;
    object-fit: cover;
    background-attachment: scroll;
} */

/* 
@media (max-width:959px) and (min-width: 300px) {
    .index-banner {
        background-size: contain !important;
       
    }
} */

@media (max-width: 991.98px) {
    header {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
        display: none;
    }

    header img {
        max-width: 120px !important;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
        color: var(--primary);
    }

    .navbar {
        background-color: var(--green);
    }
}

/* <!-- --------------------------------------------------------------
    # contact-info start
    -------------------------------------------------------------- --> */
@media (max-width: 1199.98px) {
    .contact-info span {
        font-size: 13px !important;
    }

    .contact-info i {
        font-size: 12px !important;
        margin-right: 4px !important;
    }
}

@media (min-width: 1200px) {
    .contact-info span {
        font-size: 15px !important;
    }

    .contact-info i {
        font-size: 14px !important;
    }
}

/* <!-- --------------------------------------------------------------
    # Navbar start
    -------------------------------------------------------------- --> */

.navbar .nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 17px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--parit);
}

.sticky-top {
    top: 0;
    transition: all 0.4s ease-in-out;
    z-index: 999;
}

/* <!-- --------------------------------------------------------------
    # offcanvas start
    -------------------------------------------------------------- --> */
.offcanvas-end {
    background: #fff;
    border-left: 4px solid var(--parit);
}

.offcanvas-header {
    background: var(--primary);
    color: white !important;
}

.offcanvas .nav-link {
    color: var(--dark);
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px solid #e3e0e0;
}

.offcanvas .nav-link:hover {
    background: var(--parit);
    color: #fff;
}

/* <!-- --------------------------------------------------------------
    # carousel start
    -------------------------------------------------------------- --> */
 .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .2);
    z-index: 1;
    width: 100%;
  }

  .banner-img {
    object-fit: cover;
    width: 100%;
    height: 80vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    border: 10px solid var(--primary);
  }

  /*  Mobile Responsive */
  @media (max-width: 992px) {
    .banner-img {
      height: 50vh; 
    }
    .carousel-control-prev-icon,
  .carousel-control-next-icon {
   display: none;
  }

    .carousel-caption {
      background: rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .carousel-caption h1 {
      font-size: 2rem;
    }
  }

/* <!-- ==============================================================
    # features start
    ================================================================= --> */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    /* background: #e8f5f3; */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-primary {
    color: #73ad0d !important;
}

/* <!-- ==============================================================
    # about start
    ================================================================= --> */
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/freepik__relaxed-weekend-workspace-with-hub360-logo-on-wind__39435.jpg) left center no-repeat;
    background-size: cover;
    object-fit: contain;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

/* <!-- ==============================================================
    # Video Modal Start
    ================================================================= --> */
.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*  <!-- ==============================================================
    # services Start
    ================================================================= --> */
.service {
    background-image: url(../img/blog-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item .service-text img {
    transition: transform 0.5s ease, color 0.3s ease;
}

.service-item .service-text:hover img {
    transform: rotateY(180deg);
}


.service-item:hover .service-text {
    box-shadow: 0 0 45px rgba(56, 107, 27, 0.947);

}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--parit);
}


/* <!-- ==============================================================
    # packages Start
    ================================================================= --> */

.section-heading {
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
    color: white;
    margin-bottom: 50px;
}

.section-subheading {
    text-align: center;
    font-size: 1rem;
    color: var(--parit);

}

.package-features {
    list-style: none;
    padding: 30px 35px;
    margin: 0;
}

.package-features li {
   position: relative;
      padding-left: 40px;
      margin-bottom: 12px;
      line-height: 1.6;
      color: white;
}

.package-features li::before {
   content: '✔';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      color: #1b4b42;
      border-radius: 50%;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: bold;
}

/* Card container */
.package-card1 {
    background: #35607e;
    /* border: 1px solid #1f3a33; */
    position: relative;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    padding-bottom: 60px;
    transition: all 0.3s ease;
    height: 100%;
    width: 90%;
}
.packages-p{
    position: absolute;
    content: "";
   top: 70px;
  left: 195px;
    /* background-color: red; */
    color: white;
}

.package-card2 {
    background: #d45f3c;
    /* border: 1px solid #1f3a33; */
    position: relative;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    padding-bottom: 60px;
    transition: all 0.3s ease;
    height: 100%;
    width: 90%;
}

.package-card3 {
    background: #35455e;
    /* border: 1px solid #1f3a33; */
    position: relative;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    padding-bottom: 60px;
    transition: all 0.3s ease;
    height: 100%;
    width: 90%;
}

/* Header bar */
.package-header {
    width: 45%;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: -1px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    padding: 25px 0;
    border-top: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
}

.silver-header {
    background: linear-gradient(180deg, #4fa6d5, #256b94);
}

.gold-header {
    background: linear-gradient(180deg, #ec8b3e, #c26215);
}

.diamond-header {
    background: linear-gradient(180deg, #2d4266, #182a4c);
}

/* Price box */
.price-box1 {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #35607e;
    text-align: center;
    width: 105%;
    padding: 12px 0;
    font-weight: 700;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.price-box1 small {
    font-size: 0.8rem;
    vertical-align: super;
}

.price-box1 span {
    font-size: 1.8rem;
    font-weight: 800;
}

.price-box2 {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #d45f3c;
    text-align: center;
    width: 105%;
    padding: 12px 0;
    font-weight: 700;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.price-box2 small {
    font-size: 0.8rem;
    vertical-align: super;
}

.price-box2 span {
    font-size: 1.8rem;
    font-weight: 800;
}

.price-box3 {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #35455e;
    text-align: center;
    width: 105%;
    padding: 12px 0;
    font-weight: 700;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.price-box3 small {
    font-size: 0.8rem;
    vertical-align: super;
}

.price-box3 span {
    font-size: 1.8rem;
    font-weight: 800;
}

@media (max-width: 991px) {
    .package-header {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 1.6rem;
    }

    .section-subheading {
        font-size: 1.6rem;
    }
}

/*  <!-- ==============================================================
    # projects Start
    ================================================================= --> */

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    /* adjust based on number of logos */
    animation: scroll 30s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    width: 250px;
    /* adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    max-width: 80%;
    transition: transform 0.3s ease;
}

.client-logo img:hover {
    transform: scale(1.05);
}

/* Continuous scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .client-logo {
        width: 150px;
    }

    .logo-track {
        animation-duration: 20s;
    }
}

/* <!-- ==============================================================
    # excellence section Start
    ================================================================= --> */

.excellence-section {
    padding: 100px 0;
    background-color: #3e756c;
    font-family: 'Poppins', sans-serif;
    color: #fff;

}

.badge-custom {
    background-color: #03f560;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.excellence-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.3;
}

.excellence-title span {
    color: #03f560;
}

.info-text {
    max-width: 550px;
    margin: 15px auto 30px;
    color: #ccc;
}

.btn-custom {
    background-color: #03f560;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #03f560;
}

/* Circle Style */
.stats-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Rotating dotted border */
.stats-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed #03f560;
    animation: rotateBorder 10s linear infinite;
    z-index: 1;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stats-circle h3 {
    font-weight: 700;
    font-size: 40px;
    margin: 0;
    z-index: 2;
}

.stats-circle p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #ccc;
    z-index: 2;
}

@media (max-width: 991px) {
    .excellence-title {
        font-size: 34px;
    }

    .stats-circle {
        width: 150px;
        height: 150px;
    }
}

/* <!-- ==============================================================
    # Testimonial section Start
    ================================================================= --> */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary);
}

/* <!-- ==============================================================
    #  Mission, Vision, and Values section Start
    ================================================================= --> */

#mission {
    background-image: url(../img/Untitled.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-tinted {
    background-color: #f8f9fa;
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.text-primary {
    color: #73ad0d !important;
    /* Your custom theme color */
}


.check-icon {
    font-size: 1.5rem;
    color: #73ad0d;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.value-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: #ffffff;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #e8f5e2;
    color: #73ad0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    color: #73ad0d;
    font-size: 1.2rem;
}

.icon-circle {
    background-color: #e8f5f3;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #143F3C;
}

.value-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive Adjustments */
@media (max-width: 991px) {

    #mission h2,
    #mission h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    #mission p.lead {
        font-size: 1rem;
        text-align: center;
    }

    .value-card {
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 575px) {

    #mission h2,
    #mission h3 {
        font-size: 1.5rem;
    }

    #mission p {
        font-size: 0.95rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

/* <!-- ==============================================================
    #  Footer section Start
    ================================================================= --> */

/*** Footer ***/
.footer {
    color: #B0B9AE;
    background-image: url(../img/Artboard\ 1@4x-100.jpg);
    background-position: center center;
    background-repeat: no repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

.copyright a:hover {
    color: var(--primary) !important;
}


/* <!-- ==============================================================
    #  About  Page Start
    ================================================================= --> */
/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-social li:nth-child(5) {
    transition-delay: .5s;
}

.primary-blue {
    color: var(--primary) !important;
}

.light-blue {
    color: var(--parit) !important;
}

.border-light-blue {
    border-color: rgba(59, 130, 246, 0.2) !important;
}

.team-card {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem;
    background: white;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.owner-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #dce3f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e0e7ff;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    /* border-color: #3b82f6; */
}

/*========================== Every page contain page-header===========================================  */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    /* optional rounded corners */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}