body {
    margin: 0;
    
    &:has(input#modal_menu_flg:checked) {
      overflow: hidden;
    }
  }

  p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
  }
  .heading{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    padding-bottom: 30px;
    font-size: 35px;
    color: #3a3a3a;
  }
  
  header.global_header {
        top: 0;
        left: calc(100vw - 7rem);
        // right: 0;
        display: flex;
        width: 85px;
        z-index: 2;
        
        
          input {
            display: none;
          }
          label.modal_toggle_btn {
            position: absolute;
            top: 1px;
            right: 10px;
            display: flex;
            justify-content: center;
            width: 55px;
            height: 55px;
            background-color: #00377a;
            border-radius: 50%;
            cursor: pointer;
            z-index: 99999;
            transition: all .35s ease;
            
            span {
                position: absolute;
                left: 50%;
                display: block;
                width: 1.5rem;
                height: 3px;
                background-color: #fff;
                transform: translateX(-50%);
                
                &:first-of-type {
                  top: calc(50% - 12px);
                }
                &:last-of-type {
                  top: 50%;
                  
                  &::after {
                    content: "MENU";
                    position: absolute;
                    top: calc(50% + 8px);
                    left: 50%;
                    color: #fff;
                    font-size: .575rem;
                    transform: translateX(-50%);
                  }
                }
              }
            &:hover {
              background-color: rgba($theme-color, .5);
              transition: all .35s ease;
            }
          }
          .modal_menu {
            position: fixed;
            top: 0;
            left: 0;
            // display: none;
            width: 100%;
            height: 100%;
            background-color: rgba(#fff, .95);
            z-index: 99998;
            transition: ALL 0.35s ease;
            opacity: 0;
            pointer-events: none;
            overflow-y: scroll;
            padding: 0;
            
            div.global_menu {
              padding: 1rem 30px;
              
              ul {
                  list-style: none;
                  max-width: 400px;
                  width: 100%;
                  height: 100%;
                  margin: 0 auto;
                  padding: 0;
                  
                  li.main_menu {
                    width: 100%;
                    
                    a {
                      display: block;
                      color: #2d2d2d;
                      text-decoration: none;
                      border-bottom: 1px solid #999;
                      padding: .625rem;
                      transition: all .35s ease;
                      
                      &::after {
                        display: none;
                      }
                      &:hover {
                        color: #fff;
                        background-color: #999;
                        transition: all .35s ease;
                      }
                    }
                    .sub_menu {
                      position: static;
                      display: block;
                      transform: unset;
                      opacity: 1;
                      padding: 0;
                      
                      ul.inner {
                        background-color: transparent;
                        padding: 0;
                        
                        li {
                          a {
                            border-color: #999;
                            padding-left: 1.625rem;
                          }
                        }
                        &::before {
                          display: none;
                        }
                      }
                    }
                  }
                }
            }
          }
        
          &:has(input:checked) {
                right: 2.5rem;
  
                .modal_menu {
                  opacity: 1;
                  pointer-events: auto;
                }
                span {
                  &:first-of-type, &:nth-of-type(2) {
                    top: calc(50% - 5px);
                  }
  
                  &:first-of-type {
                    transform: translate(-50%, -50%) rotate(-20deg);
                  }
                  &:last-of-type {
                    transform: translate(-50%, -50%) rotate(20deg);
  
                    &::after {
                      content: "CLOSE";
                      transform: rotate(-20deg);
                      top: calc(50% + 10px);
                      left: 8px;
                      letter-spacing: .023em;
                    }
                  }
                }
              }
  }
  nav.global_nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 65px;
        background-color: #ffffff;
        
        h4 {
          display: flex;
          margin: 0;
          margin-left: 20px;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          font-weight: 700;
          color: #00549e;
          
          a {
              display: inline-flex;
              transition: all .35s ease;
              
              img {
                max-width: 100%;
              }
              &:hover {
                opacity: .5;
                transition: all .35s ease;
              }
            }
        }
        .global_menu {
          margin-right: 120px;
          
          ul {
            list-style: none;
            margin: 0;
            padding: 0;
          }
          & > ul {
            display: flex;
            gap: .25rem 2rem;
            
            li.main_menu {
              a {
                  position: relative;
                  display: inline-block;
                  color: #2d2d2d;
                  font-size: 1.125rem;
                  font-weight: 500;
                  letter-spacing: .304em;
                  text-decoration: none;
                  padding-bottom: 5px;
                  
                  &::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    width: 0;
                    height: 1px;
                    background-color: #2d2d2d;
                    transform: translateX(-50%);
                    transition: all .35s ease;
                  }
                  &:hover {
                    &::after {
                      width: 100%;
                    }
                  }
                }
              .sub_menu {
                  position: absolute;
                  display: none;
                  padding-top: 11px;
                  z-index: 1;
                  
                  ul.inner {
                    position: relative;
                    background-color: rgba($theme-color, .7);
                    padding: 1.25rem;
                    
                    li {
                      margin-bottom: 5px;
                      
                      a {
                        white-space: nowrap;
                      }
                      &:last-of-type {
                        margin-bottom: 0;
                      }
                    }
                    
                    &::before {
                      content: "";
                      position: absolute;
                      bottom: 100%;
                      left: 1rem;
                      width: 12px;
                      height: 11px;
                      clip-path: polygon(50% 0%, 0% 11px, 12px 11px);
                      background-color: rgba($theme-color, .7);
                    }
                  }
                }
            }
          }
        }
    
        @media (max-width: 1270px) {
                h1 a {
                  width: 200px;
                }
                .global_menu {
                  & > ul {
                    column-gap: 1rem;
  
                    li.main_menu {
                      a {
                        font-size: 1rem;
                        letter-spacing: .15em;
                      }
                    }
                  }
                }
  
  }
        @include mq-down(md) {
                height: 50px;
  
                h1 a {
                  width: 180px;
                }
                .global_menu {
                  display: none;
                }
              header.global_header {
                label.modal_toggle_btn {
                  right: 0;
                  width: 60px;
                  height: 60px;
  
                  span {
                    width: 2rem;
                    height: 2px;
  
                    &:last-of-type::after {
                      font-size: .5rem;
                    }
                  }
                }
              }
  }
  }
  @media only screen and (max-width: 600px){
    .search{
        display: none;
    }
    .whatsapp{
      display: none;
    }
    .contact-form{
      display: none;
    }



  }


  /* Fixed Contact Form */
  .contact-form {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.589);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    z-index: 2;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #035182;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #014fa9;
}

/* Responsive */
@media (max-width: 768px) {
   

  
 

          /* Fixed Contact Form */
  .cont-form {
    position: relative;
    top: 60%;
    background: rgb(193, 193, 193);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 350px;
    margin-top: 30px;
    border-radius: 10px;
    z-index: 2;
}

.cont-form h3 {
    text-align: center;
    margin-bottom: 10px;
}

.cont-form input, .cont-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cont-form button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #035182;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.cont-form button:hover {
    background: #014fa9;
}
}
/* Box Styles */
.info-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: #f2f2f3;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.info-box i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #025ab8;
    transition: color 0.3s;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.info-box p {
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
}

/* Hover Effect */
.info-box:hover {
    background: #0160cd;
    color: white;
    transform: translateY(-5px);
}

.info-box:hover i {
    color: white;
}

.info-box:hover p {
    color: white;
}

.accordion{
    margin: 40px 0;
  }
  .accordion .item {
      border: none;
      margin-bottom: 18px;
      background: none;
  }
  .t-p{

        padding: 20px 16px 0px 24px;
    color: #0a0113;
  }
  .accordion .item .item-header h2 button.btn.btn-link {
   
     background: #ebaa4c;
               color: white;
               border-radius: 0px;
    font-size: 17px;
    font-weight: 500;
    line-height: 2.5;
    text-decoration: none;

  }
  .accordion .item .item-header {
      border-bottom: none;
      background: transparent;
      padding: 0px;
      margin: 2px;
      border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  
  .accordion .item .item-header h2 button {
      color: white;
      font-size: 20px;
      padding: 15px;
      display: block;
      width: 100%;
      text-align: left;
  }
  
  .accordion .item .item-header h2 i {
      float: right;
      font-size: 30px;
      color: #eca300;
      background-color: rgb(255, 255, 255);
      width: 50px;
    height: 37px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 5px;
  }
  
  button.btn.btn-link.collapsed i {
      transform: rotate(0deg);
  }
  
  button.btn.btn-link i {
      transform: rotate(180deg);
      transition: 0.5s;
  }
  .card {
    /* position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0);
    transform: translateX(-50%) translateY(-50%) translateZ(0); */
    width: 370px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    -webkit-transition: box-shadow 0.5s;
    transition: box-shadow 0.5s;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.card a {
    color: inherit;
    text-decoration: none;
}

.card:hover {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}


/**
* DATE
**/

.card__date {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    padding-top: 10px;
    background-color: coral;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 13px;
}

.card__date__day {
    font-size: 14px;
}

.card__date__month {
    text-transform: uppercase;
    font-size: 10px;
}


/**
* THUMB
**/

.card__thumb {
    height: 313px;
    /* overflow: hidden; */
    /* background-color: #000; */
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}

.card__thumb img {
    width: 100%;
    display: block;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.card:hover .card__thumb {
    height: 130px;
}




/**
* card_BODY
**/

.card__body {
    position: relative;
    height: 62px;
    padding: 11px;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
}

.card:hover .card__body {
   height: 238px;
    bottom: -69px;
    background-color: #ffffff;
}

.card__category {
    position: absolute;
    top: -25px;
    left: 0;
    height: 25px;
    padding: 0 15px;
    background-color: coral;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 25px;
}

.card__title {
   margin-top: 6px;
   padding-bottom: 10px;
    /* padding: 0 0 10px 0; */
    color: #000;
    font-size: 16px;
    /* font-weight: bold; */
    text-transform: capitalize;
}

.card__subtitle {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 19px;
    color: coral;
}

.card__description {
    /* position: absolute; */
    /* left: 20px;
    right: 20px;
 bottom: 15px;; */
 margin-top: 12px;
    color: #666C74;
    line-height: 22px;
    opacity: 0;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.card:hover .card__description {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.tabs-container {
    text-align: center;
    justify-content: center !important;
    align-items: center !important;


}
.tabs {
    display: flex;
    justify-content: center !important;
    border-bottom: 2px solid #ddd;
    width: 400px;
    align-items: center;
    margin-left: 30%;
    
}
.tab {
    flex: 1;
    padding: 10px 20px;
    cursor: pointer;
    background: #eee;
    text-align: center;
    font-weight: bold;
    
}
.tab.active {
    background: #fbfbfb;
    color: rgb(46, 46, 46);
    
}
.tab-content {
    display: none;
    background: white;
    margin-top: 10px;
}
.tab-content.active {
    display: block;
}
.mt--50 {
    margin-top: 90px
}
.why {
    border: 1px solid #7d7d7d;
    padding: 30px;
    color: #707070;
    line-height: 30px;
    text-align: center;
}

.why:hover {
    box-shadow: 0 6px 20px 3px rgba(0, 0, 0, .2);
}
.logo{
  width: 200px;
  padding-left: 20px;
}

@media (max-width: 768px) {

    .heading{
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 700;
        padding-bottom: 30px;
        font-size: 25px;
        color: #3a3a3a;
      }

    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background-color: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .whatsapp-button i{
        padding-left: 18px;
        padding-top: 13px;
    }

    .logo{
        width: 200px;
        padding-left: 0px;
      }

  label.modal_toggle_btn {
    position: absolute;
    top: 80px !important;
    right: 10px;
    display: flex;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: #00377a;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99999;
    transition: all .35s ease;
    
    span {
        position: absolute;
        left: 50%;
        display: block;
        width: 1.5rem;
        height: 3px;
        background-color: #fff;
        transform: translateX(-50%);
        
        &:first-of-type {
          top: calc(50% - 12px);
        }
        &:last-of-type {
          top: 50%;
          
          &::after {
            content: "MENU";
            position: absolute;
            top: calc(50% + 8px);
            left: 50%;
            color: #fff;
            font-size: .575rem;
            transform: translateX(-50%);
          }
        }
      }
    &:hover {
      background-color: rgba($theme-color, .5);
      transition: all .35s ease;
    }
  }
 

  .tabs {
        display: flex;
        justify-content: center !important;
        border-bottom: 2px solid #ddd;
  width: 200px;
  align-items: center;
  margin-left: 40px;
  
    }
  }

  .chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #9a9a9a;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.chat-avatar i {
  
    width: 50%;
    border-radius: 50%;
}
.chat-bubble {
    background-color: #5a5a5a;
    color: white;
    padding: 10px 10px;
    border-radius: 15px;
    max-width: 200px;
    font-size: 11px;
    top: -30px;
    left: 38px;
    position: relative;
}
.chat-bubble::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #5a5a5a transparent transparent;
}
.testimonial-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 400px;
}
.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.testimonial-text {
  margin-top: 10px;
  font-size: 16px;
}
.owl-nav {
  text-align: center;
  margin-top: 20px;
}
.owl-nav button {
  background: #28a745 !important;
  color: white !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 5px;
}
.owl-nav button span {
  font-size: 24px;
}
.services-area .single-service-item .text-holder {
  position: relative;
  padding-top: 15px
}

.services-area .single-service-item .text-holder .icon {
  background: #f7f7f7;
  color: #292929;
  left: 0;
  position: absolute;
  top: 30px;
  width: 60px;
  height: 60px;
  display: block;
  text-align: center;
  padding: 18px 0;
  -webkit-transition: .5s;
  transition: .5s
}

.services-area .single-service-item .text-holder .icon span:before {
  font-size: 30px;
  -webkit-transition: .5s;
  transition: .5s
}

.services-area .single-service-item .text-holder .text h3 {
  margin: -6px 0 8px
}

.footer {
  background-color: #012a7e; /* Dark Blue */
  color: white;
  padding: 20px 0;
  text-align: center;
}
.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}
.footer-links {
  margin-bottom: 15px;
}
.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
}
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #ffffff;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #e1e1e1;
}
.footer-bottom {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

#search-box{
  display: none;
}


.popup-overlay {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px 6px 0px 0px;
    z-index: 9999 !important;
}


/* Popup Contact Form */
#popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: fadeIn 0.5s;
}

#popup-form h2 {
    margin-bottom: 10px;
}

#popup-form input,
#popup-form textarea,
#popup-form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#popup-form textarea {
    resize: none;
    height: 80px;
}

#popup-form button {
    background-color: #0958ae;
    color: white;
    border: none;
    cursor: pointer;
}

#popup-form button:hover {
    background-color: #0958ae;
}

/* Close Button */
.close-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}

.close-button:hover {
    background-color: #c82333;
}

/* Animation for Popup */
@keyframes fadeIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}
@media only screen and (max-width: 768px) {
    .popup {

        width: 100%;
        height: auto;

    }
}


@media only screen and (min-width: 768px) {
    .popup {
        width: 60%;
        height: auto;
    }
}
.imgst {
    border: 5px solid #262261;
    width: 100%;

}

.text-holder a{

    font-family: Arial, Helvetica, sans-serif;
    line-height: 22px;
    font-weight: 600;
}