/**************************************/
/************ General CSS *************/
/**************************************/
body {
    color: #555555;
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
}

a {
    color: #353896;
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    outline: none;
    text-decoration: none;
}

p {
    color: #555555;
    font-weight: 400;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    padding: 0;
}

h4,
h5,
h6 {
    font-weight: 400;
}

img {
    border-radius: 4px;
}



/**************************************/
/********** Back to Top CSS ***********/
/**************************************/
.back-to-top {
    position: fixed;
    display: none;
    background: #111111;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 35px;
    right: 15px;
    bottom: 15px;
    border-radius: 4px;
    transition: all 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #353896;
}

.back-to-top:hover {
    background: #353896;
}

.back-to-top:hover i {
    color: #ffffff;
}


/**************************************/
/************** Nav CSS ***************/
/**************************************/
#nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid #353896;
    transition: all .3s;
    z-index: 999;
}

#nav.nav-sticky {
    height: inherit;
    padding: 0;
    background: #ffffff;
    transition: all .3s;
    border-bottom: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

#nav .navbar {
    transition: all .3s;
    background: transparent !important;
}

#nav.nav-sticky .navbar {
    transition: all .3s;
    background: #ffffff !important;
}

#nav .navbar-brand {
    font-size: 35px;
    font-weight: 700;
    line-height: 0;
font-family: "Poppins", sans-serif;
}

#nav .nav-link,
#nav .nav-link:focus,
#nav .nav-link:hover,
#nav .nav-link.active {
    color: #ffffff;
}

#nav.nav-sticky .nav-link,
#nav.nav-sticky .nav-link:focus,
#nav.nav-sticky .nav-link:hover,
#nav.nav-sticky .nav-link.active {
    color: #000000;
    font-weight: 600;
}

#nav .nav-link:hover,
#nav .nav-link.active {
    color: #ffffff;
}

#nav.nav-sticky .nav-link:hover,
#nav.nav-sticky .nav-link.active {
    color: #353896;
}

#nav .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    #nav,
    #nav .container,
    #nav .navbar {
        background: #ffffff !important;
    }
    
    #nav .nav-link,
    #nav .nav-link:focus,
    #nav .nav-link:hover,
    #nav .nav-link.active {
        color: #666666;
    }
    
    #nav .nav-link:hover,
    #nav .nav-link.active {
        color: #4F84C4;
    }
}



/**************************************/
/************* Header CSS *************/
/**************************************/

.header {
        background-repeat: no-repeat;
        position: relative;
        padding: 180px 0 100px 0;
        text-align: center;
        background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../img/banner.jpg) no-repeat top center;
        background-size: cover;
        background-position: center;
    }


.header h1 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 55px;
    font-weight: 700;
  
  
}

.header h1 span {
    color: #111111;
}

.header h1::after {
    position: absolute;
    content: "";
    width: 90%;
    height: 1px;
    left: 5%;
    bottom: 0;
    background: #353896;
}

.header p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 40px;
}

.header .btn {
    padding: 15px 35px;
    color: #353896;
    font-size: 22px;
    font-weight: 500;
    background: #ffffff;
}

.header .btn:hover {
    background: #111111;
}

.header .btn i {
    margin-right: 5px;
}

@media(max-width: 767.98px) {
    .header h1 {
        font-size: 60px;
    }
    
    .header p {
        font-size: 25px;
    }
}

@media(max-width: 575.98px) {
    .header h1 {
        font-size: 40px;
    }
    
    .header p {
        font-size: 20px;
    }
}



/**************************************/
/******** Section Header CSS **********/
/**************************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-header h4 {
    color: #353896;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.section-header h2 {
    display: inline-block;
    color: #111111;
    font-size: 35px;

    letter-spacing: 5px;
}

.section-header h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 1px;
    left: calc(50% - 30px);
    bottom: 0;
    background: #353896;
}

@media(max-width: 767.98px) {
    .section-header h4 {
        font-size: 17px;
    }
    
    .section-header h2 {
        font-size: 40px;
    }
}

@media(max-width: 575.98px) {
    .section-header h4 {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 35px;
    }
}



/**************************************/
/************* About CSS **************/
/**************************************/
.about {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

.about .about-img {
    position: relative;
    overflow: hidden;
}

.about .about-img img {
    width: 100%;
}

.about .about-content {
    position: relative;
    width: 100%;
}

.about .about-content:first-child {

    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.about .about-content h3 {
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.about .about-content p {
    position: relative;
    font-size: 18px;
}

.about .btn {
    position: relative;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    background: #353896;
}

.about .btn:hover {
    color: #353896;
    background: #111111;
}

@media(max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
    }
}



/**************************************/
/*************** Team CSS *************/
/**************************************/
.team {
    position: relative;
    padding: 100px 0 70px 0;
    background: #f6f8fa;
}

.team .team-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    
}
img.img-fluid1 {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.team .team-item .team-link {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    transition: 0.3s;
    opacity: 0;
}

.team .team-item .team-link a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 2px -100px 2px;
    padding: 6px 0;
    text-align: center;
    font-size: 16px;
    color: #353896;
    background: #ffffff;
    border-radius: 4px;
}

.team .team-item:hover .team-link {
    opacity: 1;
}

.team .team-item:hover .team-link a {
    margin: 0 2px;
}

.team .team-item .team-link a:hover {
    color: #ffffff;
    background: #111111;
}

.team .team-item .team-info {
    position: relative;
    width: 100%;
    padding-top: 15px;
}

.team .team-item .team-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.team .team-item .team-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}



/**************************************/
/************ Services CSS ************/
/**************************************/
.service {
    position: relative;
    padding: 100px 0 40px 0;
    background: #ffffff;
}

.service .row {
    margin-bottom: 60px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-detail h3 {
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.service .service-detail h3 i {
    margin-right: 20px;
}

@media(max-width: 767.98px) {
    .service .service-img {
        margin-bottom: 30px;
    }
    .mud {
    height: 285px!important;
}
}



/**************************************/
/********* Call To Action CSS *********/
/**************************************/
.call-to-action {
    position: relative;
    padding: 100px 0;
    background: #353896;
}

.call-to-action .container {
    max-width: 700px;
}

.call-to-action .section-header h4 {
    color: #ffffff;
}

.call-to-action .section-header h2::after {
    background: #111111;
}

.call-to-action .section-header p {
    color: #ffffff;
}

.call-to-action .btn {
    padding: 15px 30px;
    color: #353896;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
}

.call-to-action .btn:hover {
    color: #353896;
    background: #111111;
}

.call-to-action .btn i {
    margin-right: 5px;
}



/**************************************/
/************ Portfolio CSS ***********/
/**************************************/
.portfolio {
    position: relative;
    padding: 100px 0 70px 0;
    background: #ffffff;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    
}

.portfolio .portfolio-item .portfolio-link {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 111, 97, .95);
    transition: 0.3s;
    opacity: 0;
}

.portfolio .portfolio-item .portfolio-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 5px -100px 5px;
    padding: 6px 0;
    text-align: center;
    font-size: 18px;
    color: #353896;
    background: #ffffff;
    border-radius: 4px;
}

.portfolio .portfolio-item:hover .portfolio-link {
    opacity: 1;
}

.portfolio .portfolio-item:hover .portfolio-link a {
    margin: 0 5px;
}

.portfolio .portfolio-item .portfolio-link a:hover {
    color: #ffffff;
    background: #111111;
}

.portfolio .portfolio-item .portfolio-info {
    position: relative;
    width: 100%;
    padding-top: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.portfolio .portfolio-item .portfolio-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}


/**************************************/
.pricing {
    position: relative;
    padding: 100px 0 70px 0;
    background: #ffffff;
}

.pricing .price-content {
    position: relative;
    background: #f1f1f1;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.pricing .price-plan {
    position: relative;
    background: #353896;
 
}

.pricing .price-plan h3 {
    color: #111111;
    font-size: 35px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pricing .price-plan p {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
}

.pricing .price-plan i {
    color: #ffffff;
    font-size: 45px;
}
.f1{
    margin-top: 20px;
    font-size: 20px;
}

.pricing .price-details {
    padding: 0px 0px;
    font-size: 16px;
    list-style: none;
    text-align: center;
}

.pricing .price-details li {
    padding: 6px 30px;
    border-bottom: 1px solid #f6f8fa;
}

.pricing .price-details li:last-child {
    border: none;
}
.color {
color: #353896;
font-weight: 700;
}


.pricing .price-content .btn {
    margin-bottom: 30px;
    padding: 10px 30px;
    color: #ffffff;
    background: #353896;
    border: none;
}

.pricing .price-content .btn:hover {
    color: #353896;
    background: #111111;
}



/**************************************/
/************* Contact CSS ************/
/**************************************/
.contact {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient( rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) ), url(../img/contact.jpg) no-repeat top left;
}

.contact .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact .form-control:focus {
    border: 1px solid #353896;
    box-shadow: none;
}

.contact .btn {
    display: block;
    width: 100%;
    color: #ffffff;
    background: #353896;
}

.contact .btn:hover {
    color: #353896;
    background: #111111;
}



/**************************************/
/************* Footer CSS *************/
/**************************************/
.footer {
    position: relative;
background-image: url(../img/banner2.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
WIDTH:100%;
}

.footer .footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #353896;
}

.footer .footer-top h2 {
    position: relative;
    color: #ffffff;
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.footer .footer-top h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #353896;
}

.footer .contact-info h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0;
}

.footer .contact-info p {
    color: #ffffff;
    font-size: 16px;
}

.footer .contact-info p:last-child {
    margin-bottom: 0;
}

.footer .social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    font-size: 22px;
    line-height: 1;
    padding: 11px 0;
    margin-right: 4px;
    text-align: center;
    background: #ffffff;
    color: #353896;
    border-radius: 4px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: #111111;
    color: #353896;
}

.footer .subscribe {
    position: relative;
    width: 100%;
}

.footer .subscribe .form-control {
    float: left;
    width: calc(100% - 115px);
    margin-right: 15px;
    border: none;
}

.footer .subscribe .form-control:focus {
    box-shadow: none;
    color: #ffffff;
    background: #111111;
}

.footer .subscribe .btn {
    width: 100px;
    color: #353896;
    background: #111111;
}

.footer .subscribe .btn:hover {
    color: #353896;
    background: #ffffff;
}

.footer .subscribe label {
    margin-top: 5px;
    font-size: 14px;
    color: #ffffff;
}

.footer .footer-bottom {
    padding: 30px 0;
}

.footer .copyright {
    color: #ffffff;
    text-align: left;
}

.footer .credit {
    color: #ffffff;
    text-align: right;
}

.footer .copyright a,
.footer .credit a {
    color: #ffffff;
    font-weight: 600;
}

.footer .copyright a:hover,
.footer .credit a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .contact-info,
    .footer .social-links {
        margin-bottom: 30px;
    }
    
    .footer .copyright,
    .footer .credit {
        text-align: center;
    }
}



/* popup form */
.overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
  }

  .overlay.open {
      opacity: 1;
      pointer-events: auto;
  }

  .card1 {
      width: 900px;
      max-width: 96%;
      display: flex;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
      position: relative;
  }

  .card1 .image {
      flex: 1;
      min-width: 280px;
      background-image: url("../img/banner.jpg");
      background-size: cover;
      background-position: center;
  }

  .card1 .form {
      flex: 1;
      padding: 28px;
  }

  .form h2 {
      margin: 0 0 10px;
      font-size: 1.2rem;
  }

  .form p {
      margin: 0 0 14px;
      color: #555;
  }

  .field {
      margin-bottom: 12px;
  }

  label {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 6px;
      color: #333;
  }

  input {
      width: 100%;
      padding: 10px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      font-size: 0.95rem;
  }

  .btn {
      display: inline-block;
      padding: 10px 14px;
      border-radius: 8px;
      border: 0;
      background: #0b74de;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
  }

  .close-btn {
      position: absolute;
      top: 8px;
      right: 10px;
      background: transparent;
      border: 0;
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
  }

  @media (max-width: 800px) {
      .card1 {
          flex-direction: column;
      }

      .card1 .image {
          height: 180px;
      }
  }

  .trigger-btn {
      margin: 20px;
      padding: 10px 14px;
      border-radius: 8px;
      border: 1px solid #ccc;
      background: #fff;
      cursor: pointer;
  }
  .price-plan img{
    width:100%;
    height: 250px;
  }
  .a1{
    list-style-type: none;
    text-align: left;
  }
  .a1 li{
   padding: 4px;      
  }
  .logo{
        width: 100%;
            max-width: 62px;
            margin-top: -15px;
        }
        .section-header1 h4 ,h2{
            color:white;
        }
        .pehra{
            color:white;
        }
                .price-tag {
                    /* border-bottom: solid 1px #cfcfcf; */
                    border-top: solid 1px #cfcfcf;
                    padding: 10px 0;
                    margin-top: 20px;
                   
                    width: 100%;
                    margin-bottom: 12px;
                }
                                .price-tag .price {
                                    font-size: 15px;
                                    font-weight: 600;
                                    display: inline-block;
                                    margin-top: 6px;
                                }
  
.btn-detail {
    display: inline-block;

    margin-top: 5px;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

.btn-detail .btn {
    background: #04aee4;
    border-radius: 50px;
    font-size: 15px;
    padding: 6px 21px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}
.whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 100px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 2;
}

.btn-mobile {
    display: none;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn-detail .btn {
    background: #04aee4;
    border-radius: 50px;
    font-size: 15px;
    padding: 6px 21px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-detail {
    display: inline-block;

    margin-top: 5px;
}
.btn-detail.btn-dsktp {
    background-color: #353896;
    padding: 10px;
    border-radius: 7px;
    color: white;
}
.btn-detail.btn-dsktp a{
    color:white;
}
.mud{
    width:100%;
    height: 500px;
}
/* popup */

